-
Notifications
You must be signed in to change notification settings - Fork 3.7k
branch-3.1: [feat](outfile) support compression type for csv format in outfile and export #55392 #55561
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
Conversation
…d export (#55392) ### What problem does this PR solve? Outfile: ``` select * from tbl1 into outfile "file:///tmp/my_file_" FORMAT AS CSV PROPERTIES ( "compress_type" = "gzip" ); ``` Export: ``` EXPORT TABLE test_export_csv TO "file:///tmp/test_" PROPERTIES( "label" = "l4", "format" = "csv", "column_separator"=",", "compress_type" = "gzip" ); ``` Now support "plain", "gz", "bz2", "snappyblock", "lz4block", "zstd"
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
FE UT Coverage ReportIncrement line coverage |
TPC-H: Total hot run time: 33256 ms |
TPC-DS: Total hot run time: 192703 ms |
ClickBench: Total hot run time: 29.44 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
Cherry-picked from #55392