我有一个如下表创建的表:
CREATE TABLE my_table (
date text,
id text,
time timestamp,
value text,
PRIMARY KEY (id));
CREATE INDEX recordings_date_ci ON recordings (date);
我可以使用以下节点代码简单地向表中添加新行:
const cassandra = require('cassandra-driver');
const client = new cassandra.Client({ contactPoints: ['localhost'], keyspace: 'my_keyspace'});
const query = 'INSERT INTO my_table (date, id, time, url) VALUES (?, ?, ?, ?)';
client.execute(query, ['20160901', '0000000000', '2016-09-01 00:00:00+0000', 'random url'], function(err, result) {
if (err){
console.log(err);
}
console.log('Insert row ended:' + result);
});
但是,我收到以下错误:
'错误:日期(24)预计长8或0字节
当我将时间戳更改为epoc时间时:
client.execute(query, ['20160901', '0000000000', 1472688000, 'random url']
我得到: d
OverflowError:标准化天数太大而无法放入C int
我能够通过cqlsh插入新行,所以我可能会错过node.js驱动程序。
有什么想法吗?
由于
答案 0 :(得分:4)
如果您有字符串2016-09-01 00:00:00+0000
,请使用new Date('2016-09-01 00:00:00+0000')
。