Re: Unable to create anonymous user

2015-11-25 Thread Shawn Debnath
I have had issues where passing the POST body via —data didn’t work. # Create credentials curl -v --retry 5 --retry-delay 5 -XPOST "http://127.0.0.1:8080/riak-cs/user; \ -H "Content-Type: application/json" \ --data '{"email”:”f...@bar.com", "name”:"foobar”}' Another way I have tried to

Re: Need help getting riak started

2015-04-16 Thread Shawn Debnath
to collect more debug info appreciated. On 4/15/15, 7:39 PM, Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net wrote: System: Ubuntu 14.04.2 LTS. From a different vm (10.IP.IP.IP2) after exposing 8087 on 10.IP.IP.IP1: 1 {ok, Pid} = riakc_pb_socket:start(“10.IP.IP.IP1, 8087). {ok,0.35.0} 2

Need help getting riak started

2015-04-15 Thread Shawn Debnath
Hi there, Building out a new cluster (for the first time) and package cloud pushed down 2.1.0-1. I have gone through and installed all the necessary packages, configured riak through riak.conf and attempting to start the first node in the cluster. Unfortunately, even though the processes are

Re: Need help getting riak started

2015-04-15 Thread Shawn Debnath
To add, this is running in a VM in its entirety (i.e. not docker containers) and I am using the Erlang distribution that comes packaged with riak. Java 7 SDK was the only thing that I installed separately. On 4/15/15, 4:11 PM, Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net wrote: Hi

Re: Need help getting riak started

2015-04-15 Thread Shawn Debnath
wrote: What distribution/ version of Linux are you running on the VM Shawn? On Wed, Apr 15, 2015 at 5:11 PM, Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net wrote: Hi there, Building out a new cluster (for the first time) and package cloud pushed down 2.1.0-1. I have gone through

Re: non-indexable SOLR schema

2015-04-04 Thread Shawn Debnath
an index so data gets indexed in Solr. On Saturday, April 4, 2015, Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net wrote: You do not have to set up Yokozuna (yz) to be able to use counters, sets, maps in Riak. Those types can be used independently via the Riak key value store. You only need

Re: non-indexable SOLR schema

2015-04-04 Thread Shawn Debnath
You do not have to set up Yokozuna (yz) to be able to use counters, sets, maps in Riak. Those types can be used independently via the Riak key value store. You only need to set up the indexes if you were to search for data via yz or search 2.0. And in that case, you can remove the generic

Re: RiakCS auto expiry of objects

2015-03-09 Thread Shawn Debnath
I would love to see this make it in the next (major?) riak-cs release. It would put it in parity with riak’s bitcask auto-expiry. On 3/9/15, 11:31 AM, Seema Jethani se...@basho.commailto:se...@basho.com wrote: Hi Niels Object lifecycle management is not yet supported in Riak CS. It is however

Re: ACLs not being set correctly for riak-cs

2015-03-02 Thread Shawn Debnath
From: Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net To: riak-users@lists.basho.commailto:riak-users@lists.basho.com riak-users@lists.basho.commailto:riak-users@lists.basho.com Subject: ACLs not being set correctly for riak-cs Message-ID: 8ab97aa2-f38f-423a-bf8a-98f915806

ACLs not being set correctly for riak-cs

2015-02-23 Thread Shawn Debnath
Hi there, I can't seem to be able to get ACLs set properly on newly created buckets in riak-cs. I am using s3curl to push the payload up via PUT /?acl and it returns 200 OK. However, a GET /?acl returns an xml payload with missing IDs. Without manually pushing new ACLs, the default ACLs

Re: [erlang-questions] Riak Search Production Configuration

2015-02-06 Thread Shawn Debnath
, are there any specific AAE settings that is recommended for Prod systems ? Regards, Nirav From: Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net To: Nirav Shah niravis...@yahoo.commailto:niravis...@yahoo.com; Luc Perkins lperk...@basho.commailto:lperk

Re: Riak Search Production Configuration

2015-02-05 Thread Shawn Debnath
...@yahoo.commailto:niravis...@yahoo.com Cc: Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net; riak-users@lists.basho.commailto:riak-users@lists.basho.com riak-users@lists.basho.commailto:riak-users@lists.basho.com Sent: Thursday, February 5, 2015 11:04 AM Subject: Re: Riak Search Production Configuration

Re: Riak Search Production Configuration

2015-02-05 Thread Shawn Debnath
? -Nirav From: Shawn Debnath sh...@debnath.netmailto:sh...@debnath.net To: Nirav Shah niravis...@yahoo.commailto:niravis...@yahoo.com; Luc Perkins lperk...@basho.commailto:lperk...@basho.com Cc: riak-users@lists.basho.commailto:riak-users@lists.basho.com riak-users

Re: Riak Search Production Configuration

2015-02-05 Thread Shawn Debnath
Hi Nirav, About your last point. Just yesterday I started playing with Search 2.0 (solr) and riak. Basho did a good job at integrating the solr platform but docs are sometimes misleading. One thing I found out was the using the default schema provided by Basho, if you are using CRDTs, your

Re: Riak creatig object

2015-01-31 Thread Shawn Debnath
Another thing you may need to do if you are using rebar to fetch dependencies is to build riakc and riak_pb (I have gotten in the habit of doing both because of the rebar versions. The latest rebar skips the package because of version differences): My app rebar: rebar 2.5.1 R14B04

Limiting the number of entries in a set

2015-01-31 Thread Shawn Debnath
Good morning, Wondering if there is a better way to do truncation of a set if entries exceed a certain threshold. I am trying to create a canonical timeline for every user in our system, set of UUID strings. We want the number of entries to be limited to about 1000 per timeline to keep the

Re: Limiting the number of entries in a set

2015-01-31 Thread Shawn Debnath
data to riak for high availability and fault tolerant backup. It's not elegant, it has edge case scenarios but it gets you a best of both worlds solution. Best, Alexander @siculars http://siculars.posthaven.com Sent from my iRotaryPhone On Jan 31, 2015, at 13:11, Shawn Debnath sh

Re: Limiting the number of entries in a set

2015-01-31 Thread Shawn Debnath
later I will. On 31 Jan 2015, at 18:11, Shawn Debnath sh...@debnath.net wrote: Good morning, Wondering if there is a better way to do truncation of a set if entries exceed a certain threshold. I am trying to create a canonical timeline for every user in our system, set of UUID strings. We