jacek-lewandowski commented on code in PR #2295:
URL: https://github.com/apache/cassandra/pull/2295#discussion_r1178697680


##########
src/java/org/apache/cassandra/config/Config.java:
##########
@@ -359,9 +352,14 @@ public MemtableOptions()
 
     public String[] data_file_directories = new String[0];
 
-    public List<ParameterizedClass> sstable_formats = ImmutableList.of(new 
ParameterizedClass(BigFormat.class.getName(),// 
"org.apache.cassandra.io.sstable.format.big.BigFormat",
-                                                                               
               ImmutableMap.of(SSTABLE_FORMAT_ID, "0",
-                                                                               
                               SSTABLE_FORMAT_NAME, "big")));
+    public static class SSTableFormats
+    {
+        public String selected_format;
+        public String selected_version;

Review Comment:
   agreed; though I was also thinking about specifying the write format like:
   
   ```
   write_format: big
   ```
   or
   ```
   write_format: big-nc
   ```
   
   Though, as discussed in Jira, we will define a version per format.



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