我正在使用Aerospike python客户端。我正在使用Aerospike加载程序将数据插入群集中。现在,我需要查看记录是否已成功存储在集群中。
使用的命令:
command = 'java -cp /aerospike-loader/aerospike-load-2.2-jar-with-dependencies.jar ' \
'-Dlog4j.configuration=file:/aerospike-loader/log4j.properties ' \
'com.aerospike.load.AerospikeLoad -h %s -p %d -n %s -c %s %s'
command_str = command % (self.host, self.port, self.namespace, tmp_json_file.name, data_file_path)
该文件tmp_json_file包含与以下内容完全相似的配置文件内容:https : //www.aerospike.com/docs/tools/asloader/examples.html
现在如何检查数据是否已成功传输?我尝试使用client.exists(key),但meta退货率None作为writePolicy=true没有设置。如何使用python客户端设置任何示例?还是通过其他方式检查记录是否已成功插入?
MYYA
相关分类