michaelsembwever commented on code in PR #3168: URL: https://github.com/apache/cassandra/pull/3168#discussion_r1536769996
########## conf/cassandra.yaml: ########## @@ -646,6 +646,50 @@ commitlog_disk_access_mode: legacy # # flush_compression: fast +# 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 class that implements ICompressor and has a public static 'create' method that accepts +# a Map<String, String> argument and returns an instance of the class. Review Comment: nit: ```suggestion # name of a ICompressor class. ``` more concise. no need to provide ICompressor implementation details here. -- 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]

