【发布时间】:2015-09-09 19:29:13
【问题描述】:
我想将选定的数据从 Cassandra 导出到 SQL。任何知道任何开源连接器或任何其他解决方法的人。仅供参考,两者都在不同的服务器上运行。 Cassandra 在 3 节点 centos 集群上运行,而 MSSQL 在 Windows 上。
下面是我的表格结构:
CREATE TABLE EventsByLogDate (
Id text,
impression bigint,
detailView bigint,
photoView bigint,
btnSellerView bigint,
response bigint,
totalViews bigint,
logdate timestamp,
PRIMARY KEY (logdate, Id)
);
我想每天将数据从 Cassandra 导出到 MSSQL。因此,内置复制命令不起作用,因为它不支持 where 子句。
【问题讨论】:
标签: sql-server cassandra cassandra-2.0