Claudenw commented on code in PR #2199: URL: https://github.com/apache/cassandra/pull/2199#discussion_r1129722101
########## conf/cassandra.yaml: ########## @@ -1805,3 +1805,10 @@ drop_compact_storage_enabled: false # heartbeat_file: /var/lib/cassandra/data/cassandra-heartbeat # excluded_keyspaces: # comma separated list of keyspaces to exclude from the check # excluded_tables: # comma separated list of keyspace.table pairs to exclude from the check + +sstable_compressor: +# Defines the compression params used to read/write the sstables. If undefined the old default is used. + - class_name: org.apache.cassandra.io.compress.LZ4Compressor # the comnpressor class + parameters: + - chunk_length_in_kb: '16384' Review Comment: I was just using the parameters in the `CompressionParms` class. Are you saying that there should be a different name and we do mapping somewhere? Or should the `CompressionParms` be modified to use a different name? -- 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]

