View Revisions: Issue #2577

Summary 0002577: Separate thread for transfer and loading or extract
Revision 2016-04-28 14:55 by admin
Description For incoming, as each batch is written to staging, queue the loading of the batch to a thread pool of size 1, which lets batches load on a separate thread, but batches will still load in correct order. This would allow some parallelism of loading batches while batches are being transferred.

For outgoing, as each batch is extracted to staging, queue the sending of the batch to a thread pool of size 1, which lets batches send on a separate thread, but batches will still send in correct order. This would allow some parallelism of extracting batches while batches are being transferred.
Revision 2016-04-27 13:14 by elong
Description As each batch is written to staging, queue the loading of the batch to a thread pool of size 1, which lets batches load on a separate thread, but batches will still load in correct order. This would allow some parallelism of loading batches while batches are being transferred.