Open
Conversation
Closed
…ream(CSV in this case), and to merge results of each of the streams and return it to caller as a single one. the different executions can ran in parallel to eachother Signed-off-by: gal salomon <gal.salomon@gmail.com>
… node (sum,max ...) has 2 state to handle, first-phase(processing query), second-phase(aggregate results of all participants). Signed-off-by: gal salomon <gal.salomon@gmail.com>
…tiple execution flows for aggregation and non aggregation flow. bug fixes. Signed-off-by: gal salomon <gal.salomon@gmail.com>
Signed-off-by: gal salomon <gal.salomon@gmail.com>
…ts to be processed simultaneously Signed-off-by: gal salomon <gal.salomon@gmail.com>
Signed-off-by: galsalomon66 <gal.salomon@gmail.com>
0ee00db to
974593d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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_scaleupsimulates 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 gal.salomon@gmail.com