gpt4 book ai didi

node.js - 将时间戳插入 Cassandra

转载 作者:搜寻专家 更新时间:2023-10-31 22:41:51 24 4
gpt4 key购买 nike

我创建了一个表,如下所示:

CREATE TABLE my_table (
date text,
id text,
time timestamp,
value text,
PRIMARY KEY (id));

CREATE INDEX recordings_date_ci ON recordings (date);

我可以使用以下 Node 代码简单地向表中添加一个新行:

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);
});

但是,我收到以下错误:

'Error: Expected 8 or 0 byte long for date (24)

当我将时间戳更改为 epoc 时间时:

client.execute(query, ['20160901', '0000000000', 1472688000, 'random url']

我得到:

OverflowError: normalized days too large to fit in a C int

我可以通过 cqlsh 插入新行,所以我可能遗漏了 node.js 驱动程序的某些内容。

有什么想法吗?

谢谢

最佳答案

如果您有字符串 2016-09-01 00:00:00+0000,请改用 new Date('2016-09-01 00:00:00+0000' )

关于node.js - 将时间戳插入 Cassandra,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40222183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com