从通过node.js

时间:2015-12-16 20:32:54

标签: node.js cassandra

我在cassandra(大约10000)中有超过5000行数据,我想用d3.js绘制。我目前正在使用node.js来查询cassandra。但是从cassandra到node.js的fetchSize有一个默认限制,即5000.有没有办法从cassandra获取所有数据?

1 个答案:

答案 0 :(得分:0)

several ways you can retrieve large amounts of data with the Node.js driver for Cassandra,内置支持流媒体和限制功能。

如果您不关心检索无限量行数以显示图表的时间,则可以使用execute()更大的fetchSize。

client.execute(query, params, { prepare: true, fetchSize: 100000}, function (err, result) {
  if (err) return handleError(err);
  renderGraph(result.rows);
});