Closed
Conversation
This PR changes the storage interface. To avoid copying ObjectReader::read now takes a pointer to a std::vector<char> as destination. Because this vector can transparently be cleared this allows us to fix a previous error, where we mixed up actual data and error messages from the SDK. Also, since in almost all use-cases the data from ::read is written to an vector, this simplifies using the storage classes. Tests are adapted accordingly. Co-authored-by: Thomas Bodner <thomas.bodner@hpi.de>
This PR defines container classes to define SQL PRIMARY KEY and UNIQUEconstraints for certain column ids. Key constraints can be used by future Optimizer rules for pruning or group-by reduction purposes. Also, they can be used to derive functional dependencies. Co-authored-by: Julian Menzler <Julian.Menzler@vm-skyrise-ap1.eaalab.hpi.uni-potsdam.de> Co-authored-by: Thomas Bodner <thomas.bodner@hpi.de>
…ion (#737) Adds a configuration file image.conf which contains the variables IMAGE_DATE and PREFIX. All Docker Bash scripts should source it, so that they use the same, most recent image version. After this PR, the Docker image version must only be updated in the image.conf configuration file. Co-authored-by: Thomas Bodner <thomas.bodner@hpi.de>
- orc projection pushdown - parallel reads of objects - enable multi bucket reads - add etag check - remove `ChunkReader` as this logic is now implemented directly in the `ImportOperator`
Member
Author
|
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.
Blocked by:
ToDos
In some cases, we want to reduce the object count for certain pipeline stages. This rule looks for partial results, and reduces the import object count for certain pipelines by inserting additional combiner pipelines below.
Currently, this rule focues on partial aggregates only.