Optimized Page Fetching - Timing Example
This example shows the expected performance improvements when using the new optimized page fetching implementation.
Before: Recursive Page Fetching
{
'timing': {
'stages': {
'fetch_objects': {
'duration_ms': 2616.31,
'description': 'Fetching objects from external source',
'objects_fetched': 21,
'rate_limited': false
},
'process_objects': {
'duration_ms': 641.42,
'description': 'Processing and synchronizing individual objects',
'objects_processed': 21,
'average_per_object_ms': 30.54
}
},
'total_ms': 3260.58,
'summary': {
'slowest_stage': {
'name': 'fetch_objects',
'duration_ms': 2616.31
},
'objects_per_second': 6.44
}
}
}