タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

cassandraとcommandに関するstarsky5のブックマーク (1)

  • cassandra CLIメモ(Hishidama's Apache Cassandra CLI Memo)

    CLIには(というかCassandraのクライアント側から)キースペースやカラムファミリーを作成したり追加・削除したりする機能は無い。 変更したい場合はstorage-conf.xmlのKeyspaceを修正し、Cassandraを再起動する必要がある。 connect Cassandraに接続するコマンド。 cassandra> connect localhost/9160 Connected to: "Test Cluster" on localhost/9160 接続に成功すると、クラスター名が表示される。 show cluster name 接続中のクラスター名を表示するコマンド。 →Thrift APIのdescribe_cluster_name() cassandra> show cluster name Test Cluster show keyspaces クラスター内のキ

  • 1