[jira] [Updated] (CASSANDRA-7623) Altering keyspace truncates DESCRIBE output until you reconnect.

2014-11-10 Thread T Jake Luciani (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

T Jake Luciani updated CASSANDRA-7623:
--
Fix Version/s: (was: 2.1.2)
   2.1.3

 Altering keyspace truncates DESCRIBE output until you reconnect.
 

 Key: CASSANDRA-7623
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7623
 Project: Cassandra
  Issue Type: Bug
Reporter: Ryan McGuire
Assignee: Tyler Hobbs
Priority: Minor
  Labels: cqlsh
 Fix For: 2.1.3


 Run DESCRIBE on a keyspace:
 {code}
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = true;
 CREATE TABLE system_traces.events (
 session_id uuid,
 event_id timeuuid,
 activity text,
 source inet,
 source_elapsed int,
 thread text,
 PRIMARY KEY (session_id, event_id)
 ) WITH CLUSTERING ORDER BY (event_id ASC)
 AND bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = ''
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 CREATE TABLE system_traces.sessions (
 session_id uuid PRIMARY KEY,
 coordinator inet,
 duration int,
 parameters maptext, text,
 request text,
 started_at timestamp
 ) WITH bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = 'traced sessions'
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 {code}
 Alter it and run DESCRIBE again: 
 {code}
 cqlsh ALTER KEYSPACE system_traces WITH durable_writes = false;
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = false;
 {code}
 You can issue the DESCRIBE command multiple times and get the same output. 
 You have to disconnect and reconnect to get the table definition output to 
 show again.



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


[jira] [Updated] (CASSANDRA-7623) Altering keyspace truncates DESCRIBE output until you reconnect.

2014-10-16 Thread Philip Thompson (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Philip Thompson updated CASSANDRA-7623:
---
Labels: cqlsh  (was: )

 Altering keyspace truncates DESCRIBE output until you reconnect.
 

 Key: CASSANDRA-7623
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7623
 Project: Cassandra
  Issue Type: Bug
Reporter: Ryan McGuire
Priority: Minor
  Labels: cqlsh
 Fix For: 2.1.2


 Run DESCRIBE on a keyspace:
 {code}
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = true;
 CREATE TABLE system_traces.events (
 session_id uuid,
 event_id timeuuid,
 activity text,
 source inet,
 source_elapsed int,
 thread text,
 PRIMARY KEY (session_id, event_id)
 ) WITH CLUSTERING ORDER BY (event_id ASC)
 AND bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = ''
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 CREATE TABLE system_traces.sessions (
 session_id uuid PRIMARY KEY,
 coordinator inet,
 duration int,
 parameters maptext, text,
 request text,
 started_at timestamp
 ) WITH bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = 'traced sessions'
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 {code}
 Alter it and run DESCRIBE again: 
 {code}
 cqlsh ALTER KEYSPACE system_traces WITH durable_writes = false;
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = false;
 {code}
 You can issue the DESCRIBE command multiple times and get the same output. 
 You have to disconnect and reconnect to get the table definition output to 
 show again.



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


[jira] [Updated] (CASSANDRA-7623) Altering keyspace truncates DESCRIBE output until you reconnect.

2014-10-16 Thread Philip Thompson (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Philip Thompson updated CASSANDRA-7623:
---
Assignee: Tyler Hobbs

 Altering keyspace truncates DESCRIBE output until you reconnect.
 

 Key: CASSANDRA-7623
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7623
 Project: Cassandra
  Issue Type: Bug
Reporter: Ryan McGuire
Assignee: Tyler Hobbs
Priority: Minor
  Labels: cqlsh
 Fix For: 2.1.2


 Run DESCRIBE on a keyspace:
 {code}
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = true;
 CREATE TABLE system_traces.events (
 session_id uuid,
 event_id timeuuid,
 activity text,
 source inet,
 source_elapsed int,
 thread text,
 PRIMARY KEY (session_id, event_id)
 ) WITH CLUSTERING ORDER BY (event_id ASC)
 AND bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = ''
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 CREATE TABLE system_traces.sessions (
 session_id uuid PRIMARY KEY,
 coordinator inet,
 duration int,
 parameters maptext, text,
 request text,
 started_at timestamp
 ) WITH bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = 'traced sessions'
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 {code}
 Alter it and run DESCRIBE again: 
 {code}
 cqlsh ALTER KEYSPACE system_traces WITH durable_writes = false;
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = false;
 {code}
 You can issue the DESCRIBE command multiple times and get the same output. 
 You have to disconnect and reconnect to get the table definition output to 
 show again.



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


[jira] [Updated] (CASSANDRA-7623) Altering keyspace truncates DESCRIBE output until you reconnect.

2014-07-29 Thread Michael Shuler (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Shuler updated CASSANDRA-7623:
--

Fix Version/s: 2.1.1

 Altering keyspace truncates DESCRIBE output until you reconnect.
 

 Key: CASSANDRA-7623
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7623
 Project: Cassandra
  Issue Type: Bug
Reporter: Ryan McGuire
Priority: Minor
 Fix For: 2.1.1


 Run DESCRIBE on a keyspace:
 {code}
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = true;
 CREATE TABLE system_traces.events (
 session_id uuid,
 event_id timeuuid,
 activity text,
 source inet,
 source_elapsed int,
 thread text,
 PRIMARY KEY (session_id, event_id)
 ) WITH CLUSTERING ORDER BY (event_id ASC)
 AND bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = ''
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 CREATE TABLE system_traces.sessions (
 session_id uuid PRIMARY KEY,
 coordinator inet,
 duration int,
 parameters maptext, text,
 request text,
 started_at timestamp
 ) WITH bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = 'traced sessions'
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 {code}
 Alter it and run DESCRIBE again: 
 {code}
 cqlsh ALTER KEYSPACE system_traces WITH durable_writes = false;
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = false;
 {code}
 You can issue the DESCRIBE command multiple times and get the same output. 
 You have to disconnect and reconnect to get the table definition output to 
 show again.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (CASSANDRA-7623) Altering keyspace truncates DESCRIBE output until you reconnect.

2014-07-25 Thread Ryan McGuire (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ryan McGuire updated CASSANDRA-7623:


Tester: Ryan McGuire  (was: Alexander Ryssiouk)

 Altering keyspace truncates DESCRIBE output until you reconnect.
 

 Key: CASSANDRA-7623
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7623
 Project: Cassandra
  Issue Type: Bug
Reporter: Ryan McGuire
Priority: Minor

 Run DESCRIBE on a keyspace:
 {code}
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = true;
 CREATE TABLE system_traces.events (
 session_id uuid,
 event_id timeuuid,
 activity text,
 source inet,
 source_elapsed int,
 thread text,
 PRIMARY KEY (session_id, event_id)
 ) WITH CLUSTERING ORDER BY (event_id ASC)
 AND bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = ''
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 CREATE TABLE system_traces.sessions (
 session_id uuid PRIMARY KEY,
 coordinator inet,
 duration int,
 parameters maptext, text,
 request text,
 started_at timestamp
 ) WITH bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = 'traced sessions'
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 {code}
 Alter it and run DESCRIBE again: 
 {code}
 cqlsh ALTER KEYSPACE system_traces WITH durable_writes = false;
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = false;
 {code}
 You can issue the DESCRIBE command multiple times and get the same output. 
 You have to disconnect and reconnect to get the table definition output to 
 show again.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (CASSANDRA-7623) Altering keyspace truncates DESCRIBE output until you reconnect.

2014-07-25 Thread Ryan McGuire (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ryan McGuire updated CASSANDRA-7623:


Tester: Alexander Ryssiouk

 Altering keyspace truncates DESCRIBE output until you reconnect.
 

 Key: CASSANDRA-7623
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7623
 Project: Cassandra
  Issue Type: Bug
Reporter: Ryan McGuire
Priority: Minor

 Run DESCRIBE on a keyspace:
 {code}
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = true;
 CREATE TABLE system_traces.events (
 session_id uuid,
 event_id timeuuid,
 activity text,
 source inet,
 source_elapsed int,
 thread text,
 PRIMARY KEY (session_id, event_id)
 ) WITH CLUSTERING ORDER BY (event_id ASC)
 AND bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = ''
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 CREATE TABLE system_traces.sessions (
 session_id uuid PRIMARY KEY,
 coordinator inet,
 duration int,
 parameters maptext, text,
 request text,
 started_at timestamp
 ) WITH bloom_filter_fp_chance = 0.01
 AND caching = '{keys:ALL, rows_per_partition:NONE}'
 AND comment = 'traced sessions'
 AND compaction = {'min_threshold': '4', 'class': 
 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 
 'max_threshold': '32'}
 AND compression = {'sstable_compression': 
 'org.apache.cassandra.io.compress.LZ4Compressor'}
 AND dclocal_read_repair_chance = 0.0
 AND default_time_to_live = 0
 AND gc_grace_seconds = 0
 AND max_index_interval = 2048
 AND memtable_flush_period_in_ms = 360
 AND min_index_interval = 128
 AND read_repair_chance = 0.0
 AND speculative_retry = '99.0PERCENTILE';
 {code}
 Alter it and run DESCRIBE again: 
 {code}
 cqlsh ALTER KEYSPACE system_traces WITH durable_writes = false;
 cqlsh DESCRIBE KEYSPACE system_traces ;
 CREATE KEYSPACE system_traces WITH replication = {'class': 'SimpleStrategy', 
 'replication_factor': '2'}  AND durable_writes = false;
 {code}
 You can issue the DESCRIBE command multiple times and get the same output. 
 You have to disconnect and reconnect to get the table definition output to 
 show again.



--
This message was sent by Atlassian JIRA
(v6.2#6252)