Uploaded image for project: 'Cassandra'
  1. Cassandra
  2. CASSANDRA-6370

Updating cql created table through cassandra-cli transform it into a compact storage table

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Urgent
    • Resolution: Fixed
    • 1.2.12
    • None
    • None
    • Critical

    Description

      To reproduce :

      echo "CREATE TABLE test (aid int, period text, event text, viewer text, PRIMARY KEY (aid, period, event, viewer) );" | cqlsh -kmykeyspace;

      echo "describe table test;" | cqlsh -kmykeyspace;

      Output >
      CREATE TABLE test (
      aid int,
      period text,
      event text,
      viewer text,
      PRIMARY KEY (aid, period, event, viewer)
      ) WITH
      bloom_filter_fp_chance=0.010000 AND
      caching='KEYS_ONLY' AND
      comment='' AND
      dclocal_read_repair_chance=0.000000 AND
      gc_grace_seconds=864000 AND
      read_repair_chance=0.100000 AND
      replicate_on_write='true' AND
      populate_io_cache_on_flush='false' AND
      compaction=

      {'class': 'SizeTieredCompactionStrategy'}

      AND
      compression=

      {'sstable_compression': 'SnappyCompressor'}

      ;

      Then do :

      echo "update column family test with dclocal_read_repair_chance = 0.1;" | cassandra-cli -kmykeyspace

      And finally again : echo "describe table test;" | cqlsh -kmykeyspace;

      Output >

      CREATE TABLE test (
      aid int,
      column1 text,
      column2 text,
      column3 text,
      column4 text,
      value blob,
      PRIMARY KEY (aid, column1, column2, column3, column4)
      ) WITH COMPACT STORAGE AND
      bloom_filter_fp_chance=0.010000 AND
      caching='KEYS_ONLY' AND
      comment='' AND
      dclocal_read_repair_chance=0.100000 AND
      gc_grace_seconds=864000 AND
      read_repair_chance=0.100000 AND
      replicate_on_write='true' AND
      populate_io_cache_on_flush='false' AND
      compaction=

      {'class': 'SizeTieredCompactionStrategy'}

      AND
      compression=

      {'sstable_compression': 'SnappyCompressor'}

      ;

      This is quite annoying in production. If it is happening to you:
      UPDATE system.schema_columnfamilies SET column_aliases = '["period","event","viewer"]' WHERE keyspace_name='mykeyspace' AND columnfamily_name='test'; should help restoring the table. (Thanks Sylvain for this information.)

      Attachments

        1. 6370.txt
          1 kB
          Sylvain Lebresne

        Activity

          People

            slebresne Sylvain Lebresne
            arodrime Alain RODRIGUEZ
            Sylvain Lebresne
            Jonathan Ellis
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: