Partition size computation for parallel loading in Integration Commons for CMDB
- UpdatedJul 31, 2025
- 2 minutes to read
- Zurich
- Now Platform Capabilities
Integration Commons for CMDB supports computed partition size for the parallel loading framework, if supported in a Service Graph Connector.
The parallel loading feature of ServiceNow AI Platform, executes data load using multiple threads. The partition size for a data source is computed by the Integration Commons for CMDB application used by the parallel loading feature. This partition size confirms that the workload is evenly distributed among the available threads. By balancing the data load, a data source within a Service Graph Connector can manage data loading uniformly across the available nodes, reducing processing time and improving overall efficiency. This approach promotes efficient data loading, minimizes latency, and optimizes the performance of data sources.
Partition size calculation
Partition size = Total data volume / (10% * Active primary nodes)4 active primary nodes and the data volume to be loaded is 1000 units, the partition size is calculated
as:Partition size = 1000 / (10% * 4) = 1000 / 0.4 = 25
Parallel jobs calculation
Number of parallel jobs = Total data volume/Partition size
1000 units and the partition size is 25, the number of parallel jobs created is calculated
as:Number of parallel jobs = 1000/25 = 40