Open droserasprout opened 2 months ago
I am applying to this issue via OnlyDust platform.
i am developer with experience using python and some python frame work
Identify Current Batch Logic:
Locate where the batch handler processes one block at a time in _process_level_data. Make Batch Size Configurable:
Add configuration options for batch size, allowing users to set by number of blocks or matched handlers. Modify _process_level_data:
Update the function to check the configuration and process either a specific number of blocks or matched handlers in each batch. Test the New Configuration:
Ensure the system correctly handles different batch sizes and configurations without breaking the current functionality. Document Changes:
Update documentation to explain the new configurable batch options.
Unassigning for inactivity.
@droserasprout can I be assign to work on this?
A batch of matched handlers passed to
batch
handler currently always equals one block. It's called in_process_level_data
. The task is to make it configurable, either by number of blocks or matched handlers.