mysql의 show tables, show databases와 같은 기능은 다음과 같다. 




1.  show databases;


cqlsh:os_ui> select * from system.schema_keyspaces;


 keyspace_name | durable_writes | strategy_class                                       | strategy_options

---------------+----------------+------------------------------------------------------+----------------------------

         os_ui |           True |          org.apache.cassandra.locator.SimpleStrategy | {"replication_factor":"1"}




 

2.  show tables;

 

 cqlsh:os_ui> select * from system.schema_columnfamilies;


 keyspace_name | columnfamily_name       | bloom_filter_fp_chance | caching   | column_aliases                       | comment                             | compaction_strategy_class                                       | compaction_strategy_options | comparator                                                                                                                                                                                                                                                                                                                                                                                          | compression_parameters                                                   | default_time_to_live | default_validator                         | dropped_columns | gc_grace_seconds | index_interval | key_aliases                                        | key_validator                                                                                                                                                              | local_read_repair_chance | max_compaction_threshold | memtable_flush_period_in_ms | min_compaction_threshold | populate_io_cache_on_flush | read_repair_chance | replicate_on_write | speculative_retry | subcomparator | type     | value_alias

---------------+-------------------------+------------------------+-----------+--------------------------------------+-------------------------------------+-----------------------------------------------------------------+-----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------+----------------------+-------------------------------------------+-----------------+------------------+----------------+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------+--------------------------+-----------------------------+--------------------------+----------------------------+--------------------+--------------------+-------------------+---------------+----------+-------------

         os_ui |            cpu_util_pct |                   0.01 | KEYS_ONLY |                               ["ts"] |                                     | org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy |                          {} |                                                                                                                                                                                                                                                               org.apache.cassandra.db.marshal.CompositeType(org.apache.cassandra.db.marshal.TimestampType,org.apache.cassandra.db.marshal.UTF8Type) | {"sstable_compression":"org.apache.cassandra.io.compress.LZ4Compressor"} |                    0 | org.apache.cassandra.db.marshal.BytesType |            null |           864000 |            128 |                                           ["guid"] |                                                                                                                                   org.apache.cassandra.db.marshal.UTF8Type |                        0 |                       32 |                           0 |                        4 |                      False |                0.1 |               True |    99.0PERCENTILE |          null | Standard |        null

         

         

         

         






Posted by '김용환'
,