Alter a table
Alter table properties
Use ALTER TABLE to add or change table properties.
This example alters a table by changing the caching property:
ALTER TABLE cycling.comments WITH caching = {
  'keys' : 'NONE', 
  'rows_per_partition' : 10
};