Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
adding the capability to execute the same query across different input-stream(CSV in this case), merge results of each of the streams, and return them to the caller as a single one. the different execution flows can run in parallel to each other
3a. the non-aggregate flow is mainly about merging results of different execution flows.
3b. the aggregate flow handles the complexities of aggregation queries(sum, min, count ...), it splits the execution into 2 phases, the first is processing the query, the second is merging the results of all processes, in the case of aggregation query, it means that AST nodes, behave differently depends on thier phase.
s3select_scaleup
simulates a multi-threaded execution of a single query. the application defines a list of files as a single input data set for the query, each of the input files executed on a dedicated thread, and a single consumer merged the results of all producers. (this flow is for the sake of simulation and measurements)Signed-off-by: gal Salomon [email protected]