插入不插入相同的primay键后,Cassandra批处理语句删除

时间:2018-03-02 22:02:27

标签: node.js cassandra cassandra-3.0 cassandra-driver

这是我的方案,考虑我的表有cloumns id主键和clusterkey群集密钥。我想删除一个属于主键的记录,并插入具有相同主键但不同群集密钥的新记录。在这种情况下,由于某些并发性,它似乎一直没有发生插入?尝试使用时间戳,但同样的问题。

const query1 = 'delete from table where id=? and clusterkey=?';
const query2 = 'INSERT INTO table (id, clusterkey, name) VALUES (?, ?, ?)';
const queries = [
   { query: query1, params: ['1', '3'] },
   { query: query2, params: ['1', '8', 'GoodName'] } 
];
client.batch(queries, { prepare: true }, function (err) {
   console.log(err, 'done')
});

使用时间戳

const query1 = 'delete from table where id=? and clusterkey=? using timestamp ?';
const query2 = 'INSERT INTO table (id, clusterkey, name) VALUES (?, ?, ?) using timestamp ?';
const queries = [
   { query: query1, params: ['1', '3', Date.now() * 1000] },
   { query: query2, params: ['1', '8', 'GoodName', Date.now() * 1000] } 
];
client.batch(queries, { prepare: true }, function (err) {
   console.log(err, 'done')
});

表格信息:

create table sample (id text, group text, name text, PRIMARY KEY (id, group))

查询结果:

批次前选择结果

    id  |clusterkey |name 
----------------------------- 
    1   |3       |wrongname 
    2   |2       |Hello

批次后

    id  |clusterkey |name 
----------------------------- 
    2   |2       |Hello 

1 个答案:

答案 0 :(得分:0)

您已将这些查询添加到批处理中,但可能忘记执行这些查询。

尝试使用,

client.execute( queries, function (err, result) { 
     if (!err) {
         console.log("executed.");
     }
} );

请点击此链接了解详情:Cassandra executing a query