-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Custom compression codecs #3899
Conversation
|
It's not 100% ready, I still can do some refactoring and optimizations. However I'd be glad to see some review notices. |
00653_verification_monotonic_data_load and 00700_decimal_round broken in master. 00806_alter_update in unbundled mode seems strange. |
if (options.count("level")) | ||
level = options["level"].as<int>(); | ||
|
||
DB::CompressionCodecPtr codec = DB::CompressionCodecFactory::instance().get(method_family, level); |
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.
You can also introduce --codec
option that will allow to pass stacked codecs.
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.
…use into custom_compression_codecs
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
Category (leave one):
Short description (up to few sentences):
Add custom compression codecs.