[ 
https://issues.apache.org/jira/browse/CASSANDRA-8102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14480863#comment-14480863
 ] 

Stefania commented on CASSANDRA-8102:
-------------------------------------

In CQL3 the compaction thresholds come from the compaction options 
(*cql3.statements.CFPropDefs.applyToCFMetadata()*) and cqlsh only shows the 
values from the options.

I modified cassandra-cli to also set the options, so that they are reflected in 
cqlsh: https://github.com/stef1927/cassandra/commits/8102.

> 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
>            Assignee: Stefania
>            Priority: Minor
>              Labels: cli, cqlsh
>             Fix For: 2.0.15
>
>
> 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
> {code}
> {code}
> 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
> {code}
> {code}
> 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