Closed
Conversation
More files will be added to the `physical_query_plan` folder. To stay organized, it makes sense to put all proxies into a dedicated subfolder.
This PR adds pipeline data structures so that PQPs can be modeled as a series of interdependent physical pipeline plans. Each pipeline consists of * an identity string (unique identifier) * pipeline fragments, described by * `PipelineFragmentTemplate`, a templated physical plan serving as a blueprint for all physical plans of the pipeline (data parallelism) * `PipelineFragmentDefinition`s encapsulating import/export configuration data, so that physical plans can be generated from the templated physical plan * references to successor pipelines * references to predecessor pipelines (weak)
…roughput_parallel_benchmark (#752) * add repetition metrics to LambdaBenchmarkOutput-builder * use new metrics in network_throughput_parallel_benchmark + add bool repetition metric to LambdaBenchmarkOutput-Builder (#713) * Fix clang format issues (#713) * trigger pipeline * Add throughput aggregates (percentiles) for invocations of a repetition to LambdaOutput of ThroughputParallelBenchmark (#713) * Implement review findings (#713) * fix readme * ... * Adjust includes in benchmark-result (#713) Co-authored-by: d-justen <33455240+d-justen@users.noreply.github.com>
This commit increases the compiler compatibility of the project. No functional features are added. The changes involve adding missing includes and refactoring a function to obtain the full path of the executable. The project (i.e. the unit tests) now compiles on MacOS.
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.
Depends on
ToDos
PqpPipelineandPipelineFragmentTemplate