-
Notifications
You must be signed in to change notification settings - Fork 0
Managing Large Datasets in Fuuz Data Flow Engine Performance Optimization
Article Type: Troubleshooting Audience: Application Designers, Developers, Solution Architects Module: Data Flows, Script Editor Applies to Versions: Fuuz 2025.12+
As industrial operations scale, applications must process increasingly large datasets for analytics, reporting, and operational intelligence. Developers often encounter performance concerns when transitioning from small test datasets to production-scale data volumes. This article demonstrates how properly optimized transforms scale efficiently with the Fuuz Data Flow engine, and provides guidance on handling datasets ranging from thousands to tens of thousands of records.
- Concern about scaling transforms from development to production data volumes
- Uncertainty about which transform technology (JSONata vs JavaScript) to use for large datasets
- Need to process 10,000+ records for aggregations, analytics, or reporting
- Desire to understand performance characteristics before production deployment
Tip: Key insight — properly optimized JavaScript transforms in Fuuz scale nearly linearly with dataset size. A 6x increase in records results in approximately 2–3x increase in execution time, not 6x or worse as might be expected from poorly optimized code.
The following benchmarks compare transform performance across two real-world datasets using a workcenter history aggregation that performs complex grouping, duration calculations, and multi-dimensional analytics.
| Attribute | Small Dataset | Medium Dataset | Scale Factor |
|---|---|---|---|
| Total Records | 2,343 | 14,368 | 6.1x |
| Workcenters | 5 | 20 | 4x |
| Time Period | 1 month | 3 months | 3x |
| Payload Size | ~2.2 MB | ~13 MB | 6x |
| Output Days | 30 | 92 | 3x |
| Output Weeks | 5 | 14 | 2.8x |
| Implementation | Small (2.3K) | Medium (14.4K) | Actual Increase | Scaling Efficiency |
|---|---|---|---|---|
| JSONata (Original) | ~70 seconds | Not practical* | — | Poor (O(n²)) |
| JSONata (Optimized) | ~19 seconds | ~2+ minutes* | ~6x+ | Fair (O(n)) |
| JavaScript (Optimized) | ~1–3 seconds | ~3 seconds | ~1–2x | Excellent (O(n)) |
* Estimated based on algorithmic complexity; not tested due to impractical execution times.
Note: Key finding — the optimized JavaScript transform processes 6x more records with only a 1–2x increase in execution time. This sub-linear scaling demonstrates the efficiency of single-pass algorithms and native JavaScript array operations in the Fuuz Data Flow engine.
Transform performance scaling depends on algorithmic complexity. Understanding these patterns helps predict how transforms will behave as data volumes grow.
| Factor | JSONata | JavaScript |
|---|---|---|
| Execution Model | Interpreted expression language | JIT-compiled V8 engine |
| Array Operations | Functional, creates intermediates | Native, highly optimized |
| Sort Algorithm | Standard implementation | Timsort with adaptive optimization |
| Object Creation | Creates new objects per operation | Mutable accumulators, in-place updates |
| Hash Lookup | Object property access | O(1) hash maps with inline caching |
- O(n) — Linear: Time increases proportionally with data. Doubling records doubles time. Example: single-pass aggregation
- O(n log n) — Log-linear: Slightly worse than linear due to sorting. Example: sort then process
-
O(n²) — Quadratic: Time increases with the square of data. 10x records = 100x time. Example: nested loops,
$filterinside$map
The optimized JavaScript implementation achieves O(n log n) complexity — the sort operation is O(n log n), but all subsequent processing is O(n) single-pass. This explains why 6x more data results in only ~2x more time rather than 6x or 36x.
The Fuuz Data Flow Designer provides a visual environment for building and testing transforms with large datasets. JavaScript Transform nodes leverage the full power of the V8 engine for maximum performance.
- Create a new Data Flow or open an existing flow
- Add a Source Node to provide input data (GraphQL query, HTTP request, or static payload)
- Add a JavaScript Transform Node connected to the source
- Configure the JavaScript function with optimized aggregation logic
- Test execution and monitor timing in the debug output
Within the JavaScript Transform node, access input data via the $ variable. The transform function should return the processed result object.
// Access input data from the connected source node
const records = $.workcenterHistory;
// Perform optimized single-pass aggregation
const sorted = records.slice().sort((a, b) => {
if (a.workcenterId < b.workcenterId) return -1;
if (a.workcenterId > b.workcenterId) return 1;
if (a.occurAt < b.occurAt) return -1;
if (a.occurAt > b.occurAt) return 1;
return 0;
});
// Build all aggregations in single pass
// ... (see full optimized script)
return {
summary: { /* aggregated results */ },
aggregations: { byMonth, byWeek, byDay }
};The Fuuz Script Editor provides an interactive environment for developing and testing transforms before deploying them to Data Flows. Both JSONata and JavaScript transforms can be tested with real payload data.
- Open the Script Editor from the Fuuz application menu
- Select JavaScript as the transform language (not JSONata for large datasets)
- Paste or load the sample payload data into the input panel
- Paste the optimized JavaScript function into the script panel
- Execute the transform and observe execution time in the output
Note: Both the Script Editor and Data Flow Designer execute transforms using the same underlying engine. Performance characteristics are consistent between the two environments, making the Script Editor ideal for development and testing before deployment.
Apply these techniques to ensure transforms scale efficiently with data volume:
Build all groupings (by month, week, day, workcenter) in a single loop instead of multiple separate passes:
// EFFICIENT: Single pass builds all aggregations
for (let i = 0; i < records.length; i++) {
const rec = records[i];
// Update month aggregation
if (!byMonthMap[rec.month]) byMonthMap[rec.month] = initAccumulator();
byMonthMap[rec.month].total += rec.duration;
// Update week aggregation (same loop)
if (!byWeekMap[rec.yearWeek]) byWeekMap[rec.yearWeek] = initAccumulator();
byWeekMap[rec.yearWeek].total += rec.duration;
// Update day aggregation (same loop)
if (!byDayMap[rec.day]) byDayMap[rec.day] = initAccumulator();
byDayMap[rec.day].total += rec.duration;
}Never filter inside a loop — this creates O(n²) complexity:
// BAD - O(n²): Filters entire array for each record
records.forEach(rec => {
const related = records.filter(r => r.workcenterId === rec.workcenterId);
});
// GOOD - O(n): Pre-group, then process
const byWorkcenter = {};
records.forEach(rec => {
if (!byWorkcenter[rec.workcenterId]) byWorkcenter[rec.workcenterId] = [];
byWorkcenter[rec.workcenterId].push(rec);
});Replace localeCompare() with direct comparison operators for 2–3x faster sorting:
// SLOWER
records.sort((a, b) => a.occurAt.localeCompare(b.occurAt));
// FASTER (ISO date strings compare correctly with < >)
records.sort((a, b) => {
if (a.occurAt < b.occurAt) return -1;
if (a.occurAt > b.occurAt) return 1;
return 0;
});Avoid recomputing the same values repeatedly:
// Cache year boundaries for week calculation
const jan1Cache = {};
function getJan1Ms(year) {
if (!jan1Cache[year]) {
jan1Cache[year] = Date.UTC(year, 0, 1);
}
return jan1Cache[year];
}Use these guidelines to plan for production workloads:
| Record Count | Expected Time (JS) | Recommended Approach |
|---|---|---|
| < 1,000 | < 1 second | JSONata or JavaScript |
| 1,000 – 5,000 | 1–2 seconds | JavaScript recommended |
| 5,000 – 20,000 | 2–4 seconds | JavaScript required |
| 20,000 – 100,000 | 5–15 seconds | JavaScript + consider pre-aggregation |
| > 100,000 | 15+ seconds | Pre-aggregate at database level or batch |
Important: For datasets exceeding 100,000 records, consider architectural alternatives such as database-level aggregation via GraphQL, scheduled batch processing during off-peak hours, or incremental aggregation that processes only new/changed records.
Contact Fuuz Support if:
- Optimized JavaScript transforms take longer than expected based on capacity guidelines
- Data Flow execution fails with memory or timeout errors
- Performance degrades significantly after Fuuz platform updates
- You need guidance on architectural patterns for very large datasets (>100K records)
- The issue persists after implementing all optimization recommendations
- Fuuz_Flow_Large_Dataset_Javascript001.json — Importable Data Flow with the 14,368-record dataset and JavaScript transform
- payload_workcenter_history_medium.txt — Medium test dataset (14,368 records, 20 workcenters, 3 months)
- workcenter_history_aggregation_payloadquery.json — Small test dataset (2,343 records, 5 workcenters, 1 month)
- workcenter_history_aggregation_javascript_v1.txt — Optimized JavaScript aggregation function
Note: These sample files are attached to the original KB article on support.fuuz.com and must be downloaded from there (or re-attached/linked in this repo).
| Version | Date | Editor | Description |
|---|---|---|---|
| 1.0 | 2026-01-01 | Fuuz Documentation Team | Initial Release — Large dataset management and Data Flow performance optimization |
- Slow-Transform-Performance-JSONata-vs-JavaScript-Optimization-Guide
- JavaScript-in-the-Fuuz-Script-Editor
- Getting-started-with-Flow-Designer
- Transform-Nodes-Data-Flows
- Script-Editor
- Topic-Pattern-for-High-Volume-Data-Processing
Source: support.fuuz.com
Getting Started (14)
- Access Field Level Help within the Fuuz Platform
- Field-Level Help
- Fuuz Platform 101: Low/No-Code Technology in Manufacturing
- Fuuz Platform Architecture
- Getting to Know the Fuuz Platform
- Logging into Fuuz – Cloud Access
- Manage what displays in Field Level Help throughout Fuuz
- Recovering Your Fuuz Account
- Sharing A Page
- Switching Between Apps in Fuuz
- Switching between Fuuz Environments (Build, QA, Production)
- Trouble Logging Into Fuuz
- Unique Email Plus Addressing
- Welcome To Industry Accelerators!
Training Guides (52)
Applications
- Brand and Configure Your Application
- Create an Application
- Deactivate (Retire) an Application
- Find Pages Beyond the Left Menu
- Install a Fuuz Package
- Navigate the Application Designer
- Retire an Application
Access & Users
- Approve Access Requests
- Approve Application Access Requests
- Configure the Internal Password Policy
- Create a Role
- Create an API Key
- Deactivate and Reactivate a User
- Grant Permissions with Policies
- Investigate Login Activity
- Invite a User to an Application
- Manage App Users
- Request Access to an Application
- Switch Applications, Roles, and Environments
- Understand Developer Access
- Understand Web Access
- Use the User Menu (Profile, Theme, and More)
Data Models & Schema
- Add a Custom Field
- Create a Data Model
- Create a Sequence
- Design Model Fields in the Schema Designer
- Relate Two Data Models
Screens
Weather Lookup Series — guided 3-part build
- Part 1 · Build the Screen (Beginner)
- Part 2 · Store the Readings (Intermediate)
- Part 3 · Watched Locations & Scheduled Capture (Advanced)
Data Flows & Integrations
- Call an External API with a Flow
- Connect to External Systems
- Create a Data Flow
- Create a Notification Channel
- Create a Webhook
- Save Queries, Scripts, and Data Mappings
- Schedule a Data Flow
- Use the Script Editor
Data, Reporting & Monitoring
- Browse Data with Data Explorer
- Build a Document (Report or Label)
- Check Component References
- Create Configuration Records (Modules, Units, Calendars, and More)
- Explore the GraphQL API
- Export Data
- Import Data into an Application
- Investigate Application Logs
- Save an Export Configuration
- Trace a Data Change
Enterprise & Organizations
Platform Concepts & Architecture (10)
- Bridging the Red and Blue Data Divide - How Fuuz Became the First Industrial Platform to Merge Operational and Business Intelligence
- Claude AI Skills for the Fuuz Platform
- Cool Things we built with Fuuz Episode 1 12.5.2025 (Public)
- Differences between MES and ERP from an ERP Consultant Eric Kimberling
- Fuuz can be your "Connected Worker Platform"
- Listen and Learn what MES is and what makes it unique
- Manufacturers struggle with Build versus Buy for their MES and what are the Core 4 Elements
- Stock Price Application
- Why All Manufacturers Build their MES System Part 1
- Why All Manufacturers Build their MES System Part 2
Screens & Application Design (17)
- Application Designer Guide
- Array Input
- Combobox
- Dynamic Field Configurations
- Fuuz Deployment Methodologies
- Fuuz Form Detail Screen Specification
- Historical Data Table Screen Design Standard
- JSON
- JSON Form Fields in Action Steps
- JSON Schema Inputs
- Master Data Table Screen Design Standard
- Mobile Screen Design Standard
- Screen Context Container
- Screen Generation (AI) Flow Template V1.5.1
- Setup Data Table Screen Design Standard
- Table Column Conditional Formatting
- Transform Data in a Column
Data Models & Schema (8)
Data Flows & Scripting (51)
Designing Flows
- Data Flow Design Standards
- Data Flow Logs
- Debugging and Testing our Fuuz Data Flows
- Flow Schedules
- Fuuz Data Flows enable DataOps at Scale, ETL, iPaaS and more
- How to Create APIs Using Data Flows in Fuuz
- How To General E-Commerce Integrations using Data Flows in Fuuz iPaaS
- How to Setup a daily file import using Fuuz Data Flows
- Managing Large Datasets in Fuuz: Data Flow Engine Performance Optimization
- The Power of Data Flows - Unlocking Industrial Intelligence with Fuuz
- Using Fuuz with FTP integrations and Data Flows iPaaS
Data Flow Nodes
- Data Flow Nodes Reference
- Debugging & Context Nodes
- Flow Control Nodes
- Fuuz Platform Nodes
- IIoT & Gateway Nodes
- Integration Nodes
- Notification Nodes
- Source & Trigger Nodes
- Transform Nodes
JSONata Reference
- Aggregation Functions
- Array Functions
- Boolean Functions
- Boolean Operators
- Comparison Operators
- Composition
- Construction
- Constructs
- Custom Fuuz Only JSONata Library
- Date Time Functions
- Date Time Processing
- Expressions
- Fuuz Bindings: $predicateFilter
- Higher Order Functions
- Jsonata Tutorial
- Numeric Functions
- Numeric Operators
- Object Functions
- Other Operators
- Path Operators
- Predicate Expressions
- Processing Model
- Regex
- Simple Queries
- Slow Transform Performance: JSONata vs JavaScript Optimization Guide
- Sorting Grouping and Aggregation
- String Functions
Scripting
Integrations & Connectors (30)
General & iPaaS
- API Keys
- Cloud Connectors - Complete Reference Guide
- Connecting a CRM with your ERP using Fuuz
- Connecting a Vending Machine to your ERP system using Fuuz
- Creating a Scheduled Integration & Sending a CSV File in an Email
- Debug a NetSuite SOAP API integration
- Fuuz Connections help you integrate your Systems and Devices
- Fuuz has lists of Connectors and Drivers you can use
- Fuuz has pre-built integration Connectors
- How to create a check an ODBC connection with another system
- How to Create a RESTful API Using the Fuuz Platform
- How to create a simple Integration and Store data in Fuuz
- How To Design or Configure Policies and Policy Groups for my App in Fuuz
- How to Integrate Fuuz with another product or another API
- How to Integrate with an HR system like ADP using Fuuz iPaaS
- How to use API Explorer and GraphQL to Query Data in Fuuz for Beginners
- How you Integrate your ERP with your MES
- Industry 3 and Industry 4 differences in ERP and MES Integrations
- Integrated Carrier Package
- Make REST-Based Calls With An API Key
- Policy Groups
- System connectivity validation - testing a connection when your 3rd party moves its hosting
- Using Fuuz as an iPaaS to Connect - to an API, Collect - Data from the API, Store - that data in Fuuz tables
Plex
- How to connect using Plex UX datasources from Fuuz iPaaS
- How to integrate with Plex Classic using Fuuz iPaaS
- How to Setup and Connect to Plex APIs
EDI
IIoT & Edge Gateway (18)
- Edge Connections: Complete Industrial Integration Reference
- Edge Gateway Flows
- Edge Gateway Installation Step-by-Step
- Edge to Cloud Infrastructure
- Gateway Deployment & Architecture
- Gateway System Requirements
- How IIoT fits into the Industrial Data "Stack"
Physical Device Connectors
- Connecting To Kepware OPCUA Server
- Fanuc Robot Connectivity using Edge Gateway
- HMI Template Standard - ISA-101 Compliant
- How to connect OPC/UA simulator to the Edge Gateway
- Modbus TCP
- MQTT
- Omron PLC/HMI NX102 Connectivity with Edge Gateway
Edge Data Connectors
Reporting, Documents & Dashboards (8)
- Building a Non-Conformance Report (NCR) Application in Fuuz
- Create responsive structured dashboard layouts using the Grid Container and Grid Cell components
- How to add visualizations (charts and graphs) to reports in Fuuz for Beginners
- How to build real-time reports in Fuuz from scratch for Beginners
- How to modify existing reports in Fuuz for Beginners
- Non-Conformance Report Accelerator
- Printing Documents
- Printing Documents From Fuuz
Administration & Access Control (27)
- Access Control
- Access Requests
- Access Requests: Overview
- Access Type Overview
- Access Types
- Add Users to Fuuz Apps
- App Admin Access
- App Management
- App Users
- Applications (Tenants)
- Authentication Events
- Change a User's Access Type
- Configurations
- Create Users and Set Access Type
- Enterprise Admin Overview
- Enterprise Users
- Enterprise Users vs Access Requests
- How To Login to your Fuuz Enterprise - Non Single Sign On
- How To Login to your Fuuz Enterprise - Single Sign On
- Identity Providers
- Notifications
- Notifications
- Organizations
- Roles
- Settings
- Switching my active Role within Fuuz
- Troubleshooting User Login Errors Due to Identity Provider Misconfiguration
Data Management (8)
Accelerators, Templates & Packages (8)
- Create a Quality Batch Golden Record Analysis Tool in Fuuz
- Fuuz Developer 101 Bootcamp - 2026 Schedule & Enrollment
- Fuuz Developer 101 Bootcamp - Program Overview
- Fuuz Industry Accelerators - Installation & Best Practices
- Fuuz Industry Accelerators - Overview
- How-To: Managing Green/Blue Deployments with Fuuz Package Management Zero-Downtime
- Model Agnostic Scheduling System APS
- Setting up In-House Fuuz
Design Standards (1)
How-To Guides (8)
- Connecting to Fuuz from a remote system to execute a Fuuz API
- Connecting to Fuuz from a remote system to execute a Fuuz API - Extended Features Part 2
- Data Mapping
- Document your Application using Atlassian Confluence and our Pre-Built App
- Fuuz Platform Capabilities
- How to add multiple data records to the Fuuz database with a single API call
- How to on Best Practices for Designing Flows in Fuuz
- Using the Transformation Explorer
FAQ & Troubleshooting (1)
Release Notes (117)
2026
- 2026.1 (January 2026)
- 2026.2 (February 2026)
- 2026.3 (March 2026)
- 2026.4 (April 2026)
- 2026.5 (May 2026)
- 2026.6 (June 2026)
2025
- 2025.1 (January 2025)
- 2025.10 (October 2025)
- 2025.11 (November 2025)
- 2025.12 (December 2025)
- 2025.2 (February 2025)
- 2025.4 (April 2025)
- 2025.5 (May 2025)
- 2025.6 (June 2025)
- 2025.7 (July 2025)
- 2025.8 (August 2025)
- 2025.9 (September 2025)
2024
- 2024.1 (January 2024)
- 2024.10 (October 2024)
- 2024.11 (November 2024)
- 2024.12 (December 2024)
- 2024.2 (February 2024)
- 2024.3 (March 2024)
- 2024.4 (April 2024)
- 2024.5 (May 2024)
- 2024.6 (June 2024)
- 2024.7 (July 2024)
- 2024.8 (August 2024)
- 2024.9 (September 2024)
2023
- 2023.5 (May 2023)
- 2023.1 (January 2023)
- 2023.10 (October 2023)
- 2023.11 (November 2023)
- 2023.12 (December 2023)
- 2023.2 (February 2023)
- 2023.3 (March 2023)
- 2023.4 (April 2023)
- 2023.6 (June 2023)
- 2023.7 (July 2023)
- 2023.8 (August 2023)
- 2023.9 (September 2023)
2022
- 2022 Q1 Fuuz Package Updates (03/11/2022)
- 2022 Q1 Fuuz Release Notes v3.87.0 (03/17/2022)
- 2022 Q1 MFGx Release Notes v3.78.0 (01/06/2022)
- 2022 Q1 MFGx Release Notes v3.79.0 (01/13/2022)
- 2022 Q1 MFGx Release Notes v3.80.0 (01/20/2022)
- 2022 Q1 MFGx Release Notes v3.81.0 (01/27/2022)
- 2022 Q1 MFGx Release Notes v3.82.0 (02/03/2022)
- 2022 Q1 MFGx Release Notes v3.83.0 (02/10/2022)
- 2022 Q1 MFGx Release Notes v3.85.0 (02/28/2022)
- 2022 Q2 Fuuz Release Notes v3.90.0 (04/14/2022)
- 2022 Q2 Fuuz Release Notes v3.91.0 (04/21/2022)
- 2022 Q2 Fuuz Release Notes v3.92.0 (04/28/2022)
- 2022 Q2 Fuuz Release Notes v3.93.0 (05/06/2022)
- 2022 Q2 Fuuz Release Notes v3.94.0 - v3.97.0 (June 13, 2022)
- 2022 Q2 Fuuz Release Notes v3.98.0 (06/16/2022)
- 2022 Q2 Fuuz Release Notes v3.99.0 (06/30/2022)
- 2022 Q3 Fuuz Release Notes v3.100.0 🎉 (07/06/2022)
- 2022 Q3 Fuuz Release Notes v3.101.0 (07/21/2022)
- 2022 Q3 Fuuz Release Notes v3.102.0 (08/11/2022)
- 2022 Q3 Fuuz Release Notes v3.103.0 (08/18/2022)
- 2022 Q4 Fuuz Release Notes v3.107.0 - v3.109.0 (10/27/2022)
2021
- 2021 Q1 MFGx Release Notes v3.29.0 (1/7/2021)
- 2021 Q1 MFGx Release Notes v3.30.0 (1/14/2021)
- 2021 Q1 MFGx Release Notes v3.34.0 (2/4/2021)
- 2021 Q1 MFGx Release Notes v3.37.0 (2/26/2021)
- 2021 Q1 MFGx Release Notes v3.38.0 (3/5/2021)
- 2021 Q1 MFGx Release Notes v3.40.0 (3/25/2021)
- 2021 Q1 MFGx.io Release Notes v3.32.0 (1/21/2021)
- 2021 Q1 MFGx.io Release Notes v3.33.0 (1/28/2021)
- 2021 Q2 MFGx Release Notes v3.41.0 (4/1/2021)
- 2021 Q2 MFGx Release Notes v3.42.0 (4/8/2021)
- 2021 Q2 MFGx Release Notes v3.43.0 (4/16/2021)
- 2021 Q2 MFGx Release Notes v3.44.0 (4/22/2021)
- 2021 Q2 MFGx Release Notes v3.45.0 (4/29/2021)
- 2021 Q2 MFGx Release Notes v3.47.0 (5/13/2021)
- 2021 Q2 MFGx Release Notes v3.48.0 (5/20/2021)
- 2021 Q2 MFGx Release Notes v3.48.0 (5/27/2021)
- 2021 Q2 MFGx Release Notes v3.50.0 (6/03/2021)
- 2021 Q2 MFGx Release Notes v3.51.0 (6/10/2021)
- 2021 Q2 MFGx Release Notes v3.52.0 (6/17/2021)
- 2021 Q2 MFGx Release Notes v3.54.0 (6/28/2021)
- 2021 Q3 Fuuz Release Notes v3.58.0 (7/22/2021)
- 2021 Q3 MFGx Release Notes v3.55.0 (7/1/2021)
- 2021 Q3 MFGx Release Notes v3.60.0 (8/5/2021)
- 2021 Q3 MFGx Release Notes v3.61.0 (8/17/2021)
- 2021 Q3 MFGx Release Notes v3.62.0 (8/19/2021)
- 2021 Q4 MFGx Release Notes v3.68.0 (10/8/2021)
- 2021 Q4 MFGx Release Notes v3.69.0 (10/14/2021)
- 2021 Q4 MFGx Release Notes v3.70.0 (10/21/2021)
- 2021 Q4 MFGx Release Notes v3.71.0 (10/28/2021)
- 2021 Q4 MFGx Release Notes v3.72.0 (11/04/2021)
- 2021 Q4 MFGx Release Notes v3.73.0 (11/11/2021)
- 2021 Q4 MFGx Release Notes v3.74.0 (11/19/2021)
- 2021 Q4 MFGx Release Notes v3.75.0 (12/02/2021)
- 2021 Q4 MFGx Release Notes v3.76.0 (12/09/2021)
- 2021 Q4 MFGx Release Notes v3.77.0: The Holiday Update (12/16/2021)
2020
- 2020 Q2 MFGx Release Notes v2.32.0 (4/9/2020)
- 2020 Q2 MFGx Release Notes v2.33.0 (4/16/2020)
- 2020 Q2 MFGx Release Notes v2.35.0 (4/30/2020)
- 2020 Q2 MFGx Release Notes v3.5.0 (6/18/2020)
- 2020 Q2 MFGx Release Notes v3.6.0 (6/25/2020)
- 2020 Q2 MFGx.io Release Notes v2.32.0 (4/9/2020)
- 2020 Q3 MFGx Release Notes v3.10.0 (7/23/2020)
- 2020 Q3 MFGx Release Notes v3.11.0 (7/30/2020)
- 2020 Q3 MFGx Release Notes v3.13.0 (8/13/2020)
- 2020 Q3 MFGx Release Notes v3.17.0 (9/21/2020)
- 2020 Q3 MFGx Release Notes v3.7.0 (7/6/2020)
- 2020 Q3 MFGx Release Notes v3.8.0 (7/9/2020)
- 2020 Q4 MFGx Release Notes v3.20.0 (10/13/2020)
- 2020 Q4 MFGx Release Notes v3.21.0 (10/15/2020)
- 2020 Q4 MFGx Release Notes v3.22.1 (10/22/2020)
- 2020 Q4 MFGx Release Notes v3.23.0 (11/5/2020)
- 2020 Q4 MFGx Release Notes v3.24.0 (11/12/2020)
- 2020 Q4 MFGx Release Notes v3.26.0 (12/3/2020)
- 2020 Q4 MFGx Release Notes v3.27.0 (12/10/2020)
- 2020 Q4 MFGx Release Notes v3.28.0 (12/17/2020)