-
Notifications
You must be signed in to change notification settings - Fork 752
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
feat(cluster): support compression for query flight data #13934
feat(cluster): support compression for query flight data #13934
Conversation
Docker Image for PR
|
Docker Image for PR
|
Docker Image for PR
|
pub enum FlightCompression { | ||
Lz4, | ||
Zstd, | ||
} |
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.
pub enum FlightCompression { | |
Lz4, | |
Zstd, | |
} | |
pub enum FlightCompression { | |
LZ4, | |
ZSTD, | |
} |
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.
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.
this's the warehouse of pr-13934-1b647cd
version
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.
From the settings show, user may set as:
set query_flight_compression='Lz4';
not
set query_flight_compression='LZ4';
But possible values are:
possible_values: Some(vec!["None", "LZ4", "ZSTD"]),
Updated:
It's only a display issue, the query_flight_compression
is case insensitive.
I hereby agree to the terms of the CLA available at: https://databend.rs/dev/policies/cla/
Summary
feat(cluster): support compression for query flight data
This change is