-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize Avro Streaming with
zstd
Compression for Snowflake (#527)
- Introduced Zstandard (`zstd`) compression while streaming source rows, reducing post-processing time. - Generated unique `partitionID` with a random 16-character string. This enhancement not only bypasses Snowflake's automatic gzip compression but also ensures a more efficient data transfer by compressing data on-the-fly. `zstd` is also faster that Snowflake's default `gzip`. See `AUTO_COMPRESS` and `SOURCE_COMPRESSION` here https://docs.snowflake.com/en/sql-reference/sql/put for more details
- Loading branch information
1 parent
ddf0abc
commit e6003de
Showing
4 changed files
with
59 additions
and
5 deletions.
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