You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, a single writer function can only execute a batch of requests sequentially. However, the operations can be efficiently pipelined by pushing requests to storage in parallel while preserving the order of operations.
Implement a thread-pool-based execution of storage requests.
Turn each operation into a sequence of steps.
Add tests evaluating batch of requests.
The text was updated successfully, but these errors were encountered:
Currently, a single writer function can only execute a batch of requests sequentially. However, the operations can be efficiently pipelined by pushing requests to storage in parallel while preserving the order of operations.
The text was updated successfully, but these errors were encountered: