The DESCRIBE
perintah adalah teman Anda. Anda bisa mendeskripsikan satu keyspace, daftar keyspaces, satu tabel atau daftar semua tabel di keyspace, cluster dan banyak lagi. Anda bisa mendapatkan ide lengkap dengan mengetik
HELP DESCRIBE
dalam cqlsh.
Terhubung ke mscluster di 127.0.0.1:9042. [cqlsh 5.0.1 | Cassandra 3.8 | CQL spec 3.4.2 | Native protocol v4] Gunakan BANTUAN untuk bantuan.
cqlsh> BANTUAN DESCRIBE
DESCRIBE [cqlsh only]
(DESC may be used as a shorthand.)
Outputs information about the connected Cassandra cluster, or about
the data objects stored in the cluster. Use in one of the following ways:...<omitted for brevity>
- DESCRIBE
<your key space name>
- menjelaskan perintah yang digunakan untuk membuat keyspace
cqlsh> DESCRIBE testkeyspace;
CREATE KEYSPACE testkeyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '3'} AND durable_writes = true;
- DESCRIBE keyspaces - mencantumkan semua spasi kunci
cqlsh> DESCRIBE KEYSPACES
system_schema system testkeyspace system_auth
system_distributed system_traces
- DESCRIBE TABLES - Daftar semua tabel di keyspace saat ini
cqlsh: system> DESCRIBE TABLES;
available_ranges peer paxos
range_xfers batch compaction_history batchlog
local "IndexInfo" sstable_activity
size_estimates hints views_builds_in_progress peer_events
built_views
- DESCRIBE
your table name
atau DESCRIBE TABLE your table name
- Memberikan detail tabel
cqlsh: system> DESCRIBE TABLE batchlog
CREATE TABLE system.batchlog (id UUID PRIMARY KEY, Data gumpalan, versi int, written_at timestamp) DENGAN bloom_filter_fp_chance = 0.01 DAN caching = { 'kunci': 'SEMUA', 'rows_per_partition': 'NONE'} DAN comment = ' BERLAKU LAGI batchlog entri .... dihilangkan untuk singkatnya