5

我目前正试图用 Erlang 来了解 Cassandra/thrift ......

我有一个名为“mq”的列族(如在消息队列中)......

我希望每个用户有一行(带有 user_id),每条消息都是一个新列,其中时间戳为名称,消息为值。

这是我在 Cassandra-cli 中所做的事情:

create keyspace my_keyspace;
use my_keyspace;
create column family mq with comparator=UTF8Type and key_validation_class=UTF8Type;

%% Adding to user_id (00000001) the message "Hello World!" 
set mq['00000001']['1336499385041308'] = 'Hello Wold';

一切都适用于 Cassandra-cli

但是,当我尝试从 Erlang 插入时,我遇到了一些问题:

1>rr(cassandra_types).
2>{ok, C}=thrift_client_util:new("localhost", 9160, cassandra_thrift,[{framed, true}]).
3>thrift_client:call(C, 'set_keyspace', ["peeem"]).
4>thrift_client:call(C,'insert',["00000001",
                     #columnPath{column_family="mq"},
                     #column{name="1336499385041308", value="Hello World!"},
                     1
                     ]
                   ).

这是错误:

{error,{bad_args,insert,
              ["00000001",
               #columnPath{column_family = "mq",super_column = undefined,
                           column = undefined},
               #column{name = "1336499385041308",value = "Hello World!",
                       timestamp = undefined,ttl = undefined},1]}}}

任何帮助,将不胜感激...

编辑 1:

我发现它应该是(因为它适用于其他人):

thrift_client:call(C,'insert', ["00000001", #columnParent{column_family="mq"}, #column{name="123456",value="Hello World!"}, 2]).

这是相关的错误消息:

** exception error: no match of right hand side value {{protocol,thrift_binary_protocol,
                                                                 {binary_protocol,{transport,thrift_framed_transport,
                                                                                             {framed_transport,{transport,thrift_socket_transport,
                                                                                                                          {data,#Port<0.730>,infinity}},
                                                                                                               [],[]}},
                                                                                  true,true}},
                                                       {error,closed}}
     in function  thrift_client:send_function_call/3 (src/thrift_client.erl, line 83)
     in call from thrift_client:call/3 (src/thrift_client.erl, line 40)
4

2 回答 2

1

好的,我发现了问题所在,或者问题是正确的......

这是我的代码,用于连接和插入...

rr(cassandra_types).
{ok, C}=thrift_client_util:new("localhost", 9160, cassandra_thrift,[{framed, true}]).
{C1, _} = thrift_client:call(C, 'set_keyspace', ["my_keyspace"]).
thrift_client:call(C1,'insert', ["00000001", #columnParent{column_family="mq"}, #column{name="1234567",value="Hello World !", timestamp=0}, 2]).

事实上,我们应该将“set_keyspace”返回的新的 thrift_client 插入......显然,对于通过 thrift 完成的每个调用,都会生成一个新的 thrift_client 并且应该使用它。

此外,我们应该使用 columnParent 而不是 columnPath (不知道为什么,它只是工作)。#column 中的时间戳是强制性的...

我希望这对其他人有帮助。

于 2012-05-09T13:23:49.783 回答
0

我建议查看https://github.com/ostinelli/erlcassa而不是重新发明 Thrift-wrestling 轮子。

于 2012-05-09T03:30:15.827 回答