Re: installing index on pre11

2014-02-05 Thread Kartik Thakore
Hmm I am running: export RIAK_HOST="http://localhost:8098"; curl -XPUT "$RIAK_HOST/search/index/famous" and I get: 404 Not FoundNot FoundThe requested document was not found on this server.mochiweb+webmachine web server On Wed, Feb 5, 2014 at 1:14 PM, Eric Redmond wrote: > > Sorry, clicke

Re: Installing Riak on Arch Linux

2014-02-05 Thread Bryce Verdier
I use Riak on my arch desktop at home, and the 2.0releases compile from source and run without issue on the erlang 16. So that is an option as well. Bryce On 02/05/2014 11:55 AM, Jordan West wrote: I use kerl (previously linked by Tom) on Arch w/o issue -- sourcing the activate file in my shel

Re: Installing Riak on Arch Linux

2014-02-05 Thread Jordan West
I use kerl (previously linked by Tom) on Arch w/o issue -- sourcing the activate file in my shell init scripts. Using pacman isn't an option because, as Tom mentioned, multiple versions of Erlang aren't handled by it well. Jordan On Wed, Feb 5, 2014 at 11:51 AM, Tom Santero wrote: > Hi Yves, >

Re: Installing Riak on Arch Linux

2014-02-05 Thread Tom Santero
Hi Yves, This is less of a distro issue and more of a managing multiple versions of Erlang issue. I would encourage you to check out either kerl[0] or erln8[1]. kerl is more mature and well known, but erln8 (written by Basho's Dave Parfitt) is pretty neat as it allows you to set a specific version

Installing Riak on Arch Linux

2014-02-05 Thread Yves S. Garret
Hello, I recently found out about Riak and wanted to give it a try on my laptop. I have Arch Linux running it and I like the OS enough so that I don't want to install something else in its place. The problem that I ran into is that I have R16B03 installed (and it works very well.) I need -- cor

Re: Stats

2014-02-05 Thread Bryce Verdier
Thank you Hector & Shane for the quick answers! I really appreciate it. Bryce On 02/05/2014 06:28 AM, Hector Castro wrote: Bryce, `node_gets` + `node_puts` give you the number of operations per minute (for that node). In order to get operations per second, you can simply divide that result by

Re: installing index on pre11

2014-02-05 Thread Eric Redmond
http://docs.basho.com/riak/2.0.0pre11/dev/using/search/#Simple-Setup curl -XPUT "$RIAK_HOST/search/index/famous" Eric On Feb 5, 2014, at 10:08 AM, Kartik Thakore wrote: > What is the url to install search bucket indexes hooks on pre11? > ___ > riak-

Re: installing index on pre11

2014-02-05 Thread Eric Redmond
Sorry, clicked send too fast. After creating the index, then you add the bucket property, pointing to the search_index. curl -XPUT "$RIAK_HOST/buckets/cats/props" -H'content-type:application/json' -d'{"props":{"search_index":"famous"}}' Eric On Feb 5, 2014, at 10:12 AM, Eric Redmond wrote:

installing index on pre11

2014-02-05 Thread Kartik Thakore
What is the url to install search bucket indexes hooks on pre11?___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Re: Stats

2014-02-05 Thread Hector Castro
Bryce, `node_gets` + `node_puts` give you the number of operations per minute (for that node). In order to get operations per second, you can simply divide that result by 60. -- Hector On Wed, Feb 5, 2014 at 12:10 AM, Bryce wrote: > Hey all, > > Within all the /stats url, is something equivale

Re: RIAK API for Oracle

2014-02-05 Thread Guido Medina
The short answer is no, there is nothing that can fulfil your requirements We developed something similar for PostgreSQL, we call it Hybrid DAOs, basically each POJO is annotated as Riak KV and also as Eclipselink JPA entity, I can only give you partial code and some hints. You need a standar

RIAK API for Oracle

2014-02-05 Thread Ajit Prasad(RMG00)
Hi, We have a requirement for pulling Oracle data as JSON and putting the same in RIAK db. Didn't find any suitable RIAK API in RIAK docs. Pls. let me know whether any API or any third party tools which can perform the above activity. Thanks and regards, Ajit Cell:+91-9980084384 ~

Re: Load balancer

2014-02-05 Thread Simon Effenberg
Hi, I think the only "save" way is to fetch a key out of a bucket. Otherwise a fresh reinstalled node with a fresh installed riak without any data would accept _writes_ to it even before it is in the cluster. So I would always do the "fetch key" check. (The backend has to be up as well for that,