-
-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use sort ordering on timestamp array #443
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ use datafusion::datasource::object_store::{ | |
}; | ||
use datafusion::error::DataFusionError; | ||
use datafusion::execution::runtime_env::RuntimeConfig; | ||
use datafusion::prelude::col; | ||
use futures::stream::FuturesUnordered; | ||
use futures::{StreamExt, TryStreamExt}; | ||
use object_store::aws::{AmazonS3, AmazonS3Builder, Checksum}; | ||
|
@@ -44,6 +45,7 @@ use std::path::Path as StdPath; | |
use std::sync::Arc; | ||
use std::time::{Duration, Instant}; | ||
|
||
use crate::event::DEFAULT_TIMESTAMP_KEY; | ||
use crate::metrics::storage::{s3::REQUEST_RESPONSE_TIME, StorageMetrics}; | ||
use crate::storage::{LogStream, ObjectStorage, ObjectStorageError}; | ||
|
||
|
@@ -474,12 +476,12 @@ impl ObjectStorage for S3 { | |
let file_format = ParquetFormat::default().with_enable_pruning(Some(true)); | ||
let listing_options = ListingOptions { | ||
file_extension: ".parquet".to_string(), | ||
file_sort_order: Vec::default(), | ||
file_sort_order: vec![vec![col(DEFAULT_TIMESTAMP_KEY).sort(true, false)]], | ||
infinite_source: false, | ||
format: Arc::new(file_format), | ||
table_partition_cols: vec![], | ||
collect_stat: true, | ||
target_partitions: 1, | ||
target_partitions: 32, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This section is repeated for local and s3 mode. Can we move it to the common abstraction? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, this needs refactoring |
||
}; | ||
|
||
let config = ListingTableConfig::new_with_multi_paths(prefixes) | ||
|
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What the significance of changing this field
target_partitions
here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Roughly the partition here is number of parallel streams that is generated by datafusion during execution. Having this 1 was causing all files to be grouped in one partition and datafusion is unable to use external sort information for files in a group as it cannot infer order between grouped files and if they are overlapping in time range or not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So at max datafusion will hold 32 streams to calculate the output and merge them back using SortPreservingMerge