Peter Haggerty created CASSANDRA-8102:
-----------------------------------------

             Summary: cassandra-cli and cqlsh report two different values for a 
setting, partially update it and partially report it
                 Key: CASSANDRA-8102
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-8102
             Project: Cassandra
          Issue Type: Bug
         Environment: 2.0.9
            Reporter: Peter Haggerty
            Priority: Minor


cassandra-cli updates and prints out a min_compaction_threshold that is not 
shown by cqlsh (it shows a different min_threshold attribute)

cqlsh updates "both" values but only shows one of them

{code}
cassandra-cli:
UPDATE COLUMN FAMILY foo WITH min_compaction_threshold = 8;

$ echo "describe foo;" | cassandra-cli -h `hostname` -k bar
      Compaction min/max thresholds: 8/32

$ echo "describe table foo;" | cqlsh -k bar `hostname`
  compaction={'class': 'SizeTieredCompactionStrategy'} AND



cqlsh:
ALTER TABLE foo WITH compaction = {'class' : 'SizeTieredCompactionStrategy', 
'min_threshold' : 16};

cassandra-cli:
      Compaction min/max thresholds: 16/32
      Compaction Strategy Options:
        min_threshold: 16
cqlsh:
  compaction={'min_threshold': '16', 'class': 'SizeTieredCompactionStrategy'} 
AND



cassandra-cli:
UPDATE COLUMN FAMILY foo WITH min_compaction_threshold = 8;

cassandra-cli:
      Compaction min/max thresholds: 8/32
      Compaction Strategy Options:
        min_threshold: 16

cqlsh:
  compaction={'min_threshold': '16', 'class': 'SizeTieredCompactionStrategy'} 
AND
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to