Cassandra Query Language (CQL) にはsource
、外部ファイルに格納された cql コマンドを実行できる便利なコマンドがあります。
SOURCE
Executes a file containing CQL statements. Gives the output for each
statement in turn, if any, or any errors that occur along the way.
Errors do NOT abort execution of the CQL source file.
Usage:
SOURCE '<file>';
しかし、この外部ファイルが追加の入力引数を取ることができるかどうか疑問に思っています。たとえば、2 つの入力引数を使用して次の cql ファイルを開発するとします。
create keyspace $1 with
strategy_class='SimpleStrategy' and
strategy_options:replication_factor=$2;
そして、次のような方法で cqlsh でこの cql を実行したいと考えています。
source 'cql-filename' hello_world 3
上記の例の cql を開発し、それを というファイルに保存し、create-keyspace.cql
思いつくコマンドをいくつか試しましたが、どれも機能しませんでした。
cqlsh> source 'create-keyspace.cql'
create-keyspace.cql:2:Invalid syntax at char 17
create-keyspace.cql:2: create keyspace $1 with strategy_class='SimpleStrategy' and strategy_options:replication_factor=$2;
create-keyspace.cql:2: ^
cqlsh> source 'create-keyspace.cql' hello_world 3
Improper source command.
cqlsh> source 'create-keyspace.cql hello_world 3'
Could not open 'create-keyspace.cql hello_world 3': [Errno 2] No such file or directory: 'create-keyspace.cql hello_world 3'
CQl にこのタイプのサポートがあるかどうかを知ることはできますか? はいの場合、どうすれば適切に行うことができますか?