从 erlang 插入 cassandra

发布于 2024-11-15 21:17:42 字数 594 浏览 7 评论 0原文

我正在尝试从 Erlang R14B02 (通过 thrift 0.6.1)将某些内容插入 cassandra 0.7.6

我正在执行以下操作:

  1. 读取记录定义

    rr(cassandra_types)。

  2. 连接到卡桑德拉

    {ok, C}=thrift_client_util:new("localhost", 9160, cassandra_thrift,[{strict_read, false}, {strict_write, false}, {framed, true}])。

  3. 尝试插入一个值(时间戳=1, 2=Quorum)

    Reply1 = thrift_client:call(C, '插入', ["existing_keyspace", "new_key",#columnPath{column_family = "existing_column_family", column = "existing_column"}, "new_value",1,2])。

但是 nr3 给了我一个 bad_args 错误(1 和 2 工作完美)。正确的论点是什么?

I am trying to insert something into cassandra 0.7.6 from Erlang R14B02 (through thrift 0.6.1)

I am doing the following:

  1. Read record definitions

    rr(cassandra_types).

  2. Connect to cassandra

    {ok, C}=thrift_client_util:new("localhost", 9160, cassandra_thrift,[{strict_read, false}, {strict_write, false}, {framed, true}]).

  3. Try to insert a value (timestamp=1, 2=Quorum)

    Reply1 = thrift_client:call(C, 'insert', ["existing_keyspace", "new_key",#columnPath{column_family = "existing_column_family", column = "existing_column"}, "new_value",1,2]).

But nr3 gives me a bad_args error (1 and 2 work perfectly). What would be the right arguments?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无声情话 2024-11-22 21:17:43

不受支持的语言的 API 信息主要位于其 Cassandra Thrift API 文档中。

在 Cassandra 0.7 中,您不需要为大多数操作提供键空间,因此 insert 仅采用 [Key, ColumnPath, Column, ConsistencyLevel]。在尝试插入之前,您需要调用set_keyspace。 erlang 中的插入将是

Reply1 = thrift_client:call(C, 'insert',
                            [SomeKey,
                             #columnPath{column_family = "existing_column_family",
                                         column = "existing_column"},
                             #column{name="existing_column",
                                     value="new_value",timestamp=1},
                             ?cassandra_ConsistencyLevel_QUORUM]).

您的示例缺少插入的行键,我也认为是这样。

顺便说一句,请确保始终更新 C 的值 - 它在每次 thrift_client 调用后都会更改。

?cassandra_ConsistencyLevel_QUORUM 根据内存为 2。

What API information there is for unsupported languages is largely in their Cassandra Thrift API documentation.

In Cassandra 0.7, you don't supply the keyspace for most operations, so insert just takes [Key, ColumnPath, Column, ConsistencyLevel]. You need to call set_keyspace before attempting the insert. The insert in erlang would be

Reply1 = thrift_client:call(C, 'insert',
                            [SomeKey,
                             #columnPath{column_family = "existing_column_family",
                                         column = "existing_column"},
                             #column{name="existing_column",
                                     value="new_value",timestamp=1},
                             ?cassandra_ConsistencyLevel_QUORUM]).

Your example is missing the row key for the insert I think too.

As an aside, make sure you always update the value of C - it changes after every thrift_client call.

?cassandra_ConsistencyLevel_QUORUM is 2 from memory.

终陌 2024-11-22 21:17:43

这可能会有所帮助,尽管没有特定于 erlang 的代码: http://wiki.apache.org/cassandra/节俭示例

This might help, although there is no erlang-specific code: http://wiki.apache.org/cassandra/ThriftExamples

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文