You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Berenguer Blasi (Jira)" <ji...@apache.org> on 2021/05/05 06:22:00 UTC

[jira] [Created] (CASSANDRA-16653) Multinode counters don't get updated

Berenguer Blasi created CASSANDRA-16653:
-------------------------------------------

             Summary: Multinode counters don't get updated
                 Key: CASSANDRA-16653
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-16653
             Project: Cassandra
          Issue Type: Bug
            Reporter: Berenguer Blasi


A multi node setup with counters doesn't update counters value


{noformat}
ccm create counters40
ccm populate -n 2
ccm start
ccm node1 cqlsh
  CREATE KEYSPACE foo WITH REPLICATION = { 'class' : 'NetworkTopologyStrategy', 'datacenter1' : 1 } ;
  use foo;
  CREATE TABLE clicks ( userid int, url text, total counter, PRIMARY KEY (userid, url) ) WITH COMPACT STORAGE;
  ALTER TABLE clicks DROP COMPACT STORAGE;
  TRUNCATE clicks;
  UPDATE clicks SET total = total + 1 WHERE userid = 1 AND url = 'http://foo.com';
  SELECT total FROM clicks WHERE userid = 1 AND url = 'http://foo.com';

     total
    -------
         1
  UPDATE clicks SET total = total - 4 WHERE userid = 1 AND url = 'http://foo.com';
  SELECT total FROM clicks WHERE userid = 1 AND url = 'http://foo.com';

     total
    -------
         1
{noformat}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org