RiakCS has error Crash report

2014-12-19 Thread Nghiep Thoi Minh
I have a riak system consist of 5 nodes, when i start riak, riakcs then
it's appear following error:

2014-12-19 14:26:55.667 [error] 0.14696.39 CRASH REPORT Process
0.14696.39 with 0 neighbours crashed with reason: no case clause matching
{ok,{http_error,  \n},} in mochiweb_http:request/3 line 107
2014-12-19 14:47:00.433 [error] 0.27872.38 CRASH REPORT Process
0.27872.38 with 0 neighbours crashed with reason: no case clause matching
{ok,{http_error,  \n},} in mochiweb_http:request/3 line 107
2014-12-19 14:56:05.405 [error] 0.17704.39 CRASH REPORT Process
0.17704.39 with 0 neighbours crashed with reason: no case clause matching
{ok,{http_error,  \n},} in mochiweb_http:request/3 line 107
2014-12-19 15:18:23.942 [error] 0.28311.39 CRASH REPORT Process
0.28311.39 with 0 neighbours crashed with reason: no case clause matching
{ok,{http_error,  \n},} in mochiweb_http:request/3 line 107

. I don't understand what's it error?
Any cheers?
Nghiep
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


deleting a register (Python client)

2014-12-19 Thread Alex De la rosa
Hi there,

This is a pretty dumb question but I think I have never recalled doing it
before. Imagine that I have a register called something with a value:

obj.registers['something'].assign('blah')

If later on I want to remove this something register from the riak map
object, how to do it? I don't seem to find anywhere in the documentation
how to remove a register.

I could set up an empty string: obj.registers['something'].assign(''), as I
see that when you fetch a register that doesn't exist it returns an empty
string instead of a None. Is this the only way? Or can we remove it in some
other way?

Thanks,
Alex
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: RiakCS with Riak 2.x

2014-12-19 Thread Kota Uenishi
We've been working on Riak CS 2.0, and that version will be Riak 2.0
based unless any unexpected blocker comes up.

On Wed, Dec 17, 2014 at 11:12 PM, Felix Scheffer m...@felix-scheffer.de wrote:

 Hi everybody,

 I read in the documentation that RiakCS 1.5.x cannot be used with Riak 2.
 Are there any plans to release a version of RiakCS that can be used with
 Riak 2.x in the near future?

 Sincerely
 Felix Scheffer

 ___
 riak-users mailing list
 riak-users@lists.basho.com
 http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com




-- 
Kota UENISHI / @kuenishi
Basho Japan KK

___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: deleting a register (Python client)

2014-12-19 Thread Sean Cribbs
Alex,

This will remove the register from the map:

del obj.registers['something']
obj.store()


On Fri, Dec 19, 2014 at 5:37 AM, Alex De la rosa alex.rosa@gmail.com
wrote:

 Hi there,

 This is a pretty dumb question but I think I have never recalled doing it
 before. Imagine that I have a register called something with a value:

 obj.registers['something'].assign('blah')

 If later on I want to remove this something register from the riak map
 object, how to do it? I don't seem to find anywhere in the documentation
 how to remove a register.

 I could set up an empty string: obj.registers['something'].assign(''), as
 I see that when you fetch a register that doesn't exist it returns an empty
 string instead of a None. Is this the only way? Or can we remove it in some
 other way?

 Thanks,
 Alex

 ___
 riak-users mailing list
 riak-users@lists.basho.com
 http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com



-- 
Sean Cribbs s...@basho.com
Sr. Software Engineer
Basho Technologies, Inc.
http://basho.com/
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: deleting a register (Python client)

2014-12-19 Thread Alex De la rosa
Cool! good to know :) I think is not explained anywhere in the docs.

Thanks!
Alex

On Fri, Dec 19, 2014 at 3:50 PM, Sean Cribbs s...@basho.com wrote:

 Alex,

 This will remove the register from the map:

 del obj.registers['something']
 obj.store()


 On Fri, Dec 19, 2014 at 5:37 AM, Alex De la rosa alex.rosa@gmail.com
 wrote:

 Hi there,

 This is a pretty dumb question but I think I have never recalled doing it
 before. Imagine that I have a register called something with a value:

 obj.registers['something'].assign('blah')

 If later on I want to remove this something register from the riak map
 object, how to do it? I don't seem to find anywhere in the documentation
 how to remove a register.

 I could set up an empty string: obj.registers['something'].assign(''), as
 I see that when you fetch a register that doesn't exist it returns an empty
 string instead of a None. Is this the only way? Or can we remove it in some
 other way?

 Thanks,
 Alex

 ___
 riak-users mailing list
 riak-users@lists.basho.com
 http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com



 --
 Sean Cribbs s...@basho.com
 Sr. Software Engineer
 Basho Technologies, Inc.
 http://basho.com/

___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


Re: deleting a register (Python client)

2014-12-19 Thread Alex De la rosa
My bad, seems is explained here:

http://riak-python-client.readthedocs.org/en/master/datatypes.html

By the way, what's the difference between these calls?

*.*registers['user']*.*assign(alex)
*.*registers['user']*.*set(alex)
*.*registers['user']*.*set_value(alex)

Thanks,
Alex

On Fri, Dec 19, 2014 at 4:31 PM, Alex De la rosa alex.rosa@gmail.com
wrote:

 Cool! good to know :) I think is not explained anywhere in the docs.

 Thanks!
 Alex

 On Fri, Dec 19, 2014 at 3:50 PM, Sean Cribbs s...@basho.com wrote:

 Alex,

 This will remove the register from the map:

 del obj.registers['something']
 obj.store()


 On Fri, Dec 19, 2014 at 5:37 AM, Alex De la rosa alex.rosa@gmail.com
  wrote:

 Hi there,

 This is a pretty dumb question but I think I have never recalled doing
 it before. Imagine that I have a register called something with a value:

 obj.registers['something'].assign('blah')

 If later on I want to remove this something register from the riak map
 object, how to do it? I don't seem to find anywhere in the documentation
 how to remove a register.

 I could set up an empty string: obj.registers['something'].assign(''),
 as I see that when you fetch a register that doesn't exist it returns an
 empty string instead of a None. Is this the only way? Or can we remove it
 in some other way?

 Thanks,
 Alex

 ___
 riak-users mailing list
 riak-users@lists.basho.com
 http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com



 --
 Sean Cribbs s...@basho.com
 Sr. Software Engineer
 Basho Technologies, Inc.
 http://basho.com/


___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com


What is RiakResponseException unknown message code 56

2014-12-19 Thread Santi Kumar
HI

While creating a index and bucket in Java client, I was getting this error.
I remember getting the same earlier but I didn't remember. Can anyone throw
some light on that. When do we get this error and how to resolve this?

Thanks
Santi
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com