Claudenw commented on code in PR #3168:
URL: https://github.com/apache/cassandra/pull/3168#discussion_r1557196890


##########
src/java/org/apache/cassandra/config/DatabaseDescriptor.java:
##########
@@ -2666,11 +2670,21 @@ public static void 
setFlushCompression(Config.FlushCompression compression)
         conf.flush_compression = compression;
     }
 
-    /**
-     * Maximum number of buffers in the compression pool. The default value is 
3, it should not be set lower than that
-     * (one segment in compression, one written to, one in reserve); delays in 
compression may cause the log to use
-     * more, depending on how soon the sync policy stops all writing threads.
-     */
+    public static ParameterizedClass getSSTableCompression()
+    {
+        return sstableCompression;
+    }
+
+    public static void setSSTableCompression(ParameterizedClass compressor)
+    {
+        conf.sstable.default_compression = compressor;

Review Comment:
   should now be fixed



-- 
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]

Reply via email to