jacek-lewandowski commented on code in PR #3168: URL: https://github.com/apache/cassandra/pull/3168#discussion_r1560762991
########## conf/cassandra.yaml: ########## @@ -1113,6 +1113,46 @@ snapshot_links_per_second: 0 #sstable: # selected_format: big +# Defines the default compression used on tables when none is specified +# in the CQL command. +# +# The class_name is the compressor class name. It may be one of the aliases, +# the class name of a system ICompressor implementation, or fully qualified +# name of a ICompressor class. +# +# class aliases are: +# Alias System compressor impl. +# deflate DeflateCompressor +# lz4 LZ4Compressor +# none (null) -- compresson disabled +# noop NoopCompressor +# snappy SnappyCompressor +# zstd ZstdCompressor +# +# The standard parameters are any required or optional parameter for the instantiation of the +# specified class, or one of the following standard parameters: +# Parameter Usage +# enabled Disables compression if set to false. Defaults to true. Review Comment: I think that things like this should be cleared out as a part of this ticket. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

