You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Philip Thompson (JIRA)" <ji...@apache.org> on 2015/03/31 16:28:53 UTC

[jira] [Commented] (CASSANDRA-8102) cassandra-cli and cqlsh report two different values for a setting, partially update it and partially report it

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

Philip Thompson commented on CASSANDRA-8102:
--------------------------------------------

[~krummas], is the cqlsh behavior here is correct?

> 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
>              Labels: cli, cqlsh
>             Fix For: 2.0.14
>
>
> 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)