Consolidation is currently done in a periodic background task that runs every 12 hours by default. An alternative approach would be to consolidate records as they come instead of doing it periodically.
A possible implementation would be to use a job queue. Each time an egress record is added, the corresponding job is enqueued so that it is consolidated as soon as possible.
Consolidation is currently done in a periodic background task that runs every 12 hours by default. An alternative approach would be to consolidate records as they come instead of doing it periodically.
A possible implementation would be to use a job queue. Each time an egress record is added, the corresponding job is enqueued so that it is consolidated as soon as possible.