Stats

2014-02-04 Thread Bryce
Hey all, Within all the /stats url, is something equivalent to quires/operations per second? Or is it possible to derive this information somehow from some key within stats? Thanks in advance, Bryce ___ riak-users mailing list riak-users@lists.bash

Re: Search schemas in 2.0pre11

2014-02-04 Thread Jeremy Pierre
Hi Eric, Thanks very much - getting a 405 response for that curl command though. POST to same endpoint yields the following: Status page Bad Request No handler or core found in /solr/schema/select You can get technical details http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4

Re: Search schemas in 2.0pre11

2014-02-04 Thread Jeremy Pierre
Worked as expected, thanks! Jeremy On Tue, Feb 4, 2014 at 1:41 PM, Eric Redmond wrote: > Sorry, the path is: /search/schema/YOUR_SCHEMA_NAME > > On Feb 4, 2014, at 1:12 PM, Jeremy Pierre wrote: > > Hi all, > > I have a single vagrant node (ubuntu 12.04) running 2.0-pre11 for some > prototypin

Re: Search schemas in 2.0pre11

2014-02-04 Thread Eric Redmond
Sorry, the path is: /search/schema/YOUR_SCHEMA_NAME On Feb 4, 2014, at 1:12 PM, Jeremy Pierre wrote: > Hi all, > > I have a single vagrant node (ubuntu 12.04) running 2.0-pre11 for some > prototyping and need the new search awesomeness. Creating and using an index > with the default schema w

Re: Search schemas in 2.0pre11

2014-02-04 Thread Eric Redmond
Jeremy, The new documentation for creating schemas are still in progress, and docs for creating a custom schema are still a few weeks out. curl -XPUT http://localhost:8098/search/schema -H'content-type:application/xml' --data @my_schema_file.xml my_schema_file.xml should contain the custom sol

Search schemas in 2.0pre11

2014-02-04 Thread Jeremy Pierre
Hi all, I have a single vagrant node (ubuntu 12.04) running 2.0-pre11 for some prototyping and need the new search awesomeness. Creating and using an index with the default schema works fine but adding my own is unclear. Old ML posts and Riak docs suggest using "search-cmd set-schema [the index

Re: Bitcask .write.lock and bad behaviours

2014-02-04 Thread John White
Jorge, Write lock files are a normal operational function of the Bitcask backend. Can you elaborate on the bad behaviors you are experiencing? Thanks, John White On Tue, Feb 4, 2014 at 11:55 AM, Jorge Garrido wrote: > Hi, > > In the last weeks we are experimenting a bad behaviour in our ri

Bitcask .write.lock and bad behaviours

2014-02-04 Thread Jorge Garrido
Hi, In the last weeks we are experimenting a bad behaviour in our riak cluster, the bitcask backend is creating .write.lock files and it is related to bad behaviours when we are accesing to data, for example mapreduce, links or even write, update or get data from/to cluster. The solution that

Re: No of buckets limitation in riak

2014-02-04 Thread Luke Bakken
Satya, Apologies, I mis-read your second option and thought all messages were to be put into a single value in a single bucket (which obviously doesn't make sense). Using a single bucket for messages with per-user keys will work for you, as that single bucket can be indexed by 2i or Search (or Yo

Re: No of buckets limitation in riak

2014-02-04 Thread Satya Ranjan
Hi Luke, Many thanks for your quick response. Cheers, Satya On Tue, Feb 4, 2014 at 10:31 PM, Luke Bakken wrote: > Satya, > > In general, you always want to be querying Riak using a specific key value > to retrieve or update a specific value. Following this guideline, method > one is the corr

Re: No of buckets limitation in riak

2014-02-04 Thread Luke Bakken
Satya, In general, you always want to be querying Riak using a specific key value to retrieve or update a specific value. Following this guideline, method one is the correct data design. Please ensure that the default bucket properties apply to all of these buckets as you do not want to have any c

No of buckets limitation in riak

2014-02-04 Thread Satya Ranjan
Hi Riak experts, I am designing a simple message box feature for a web application using riak where an user can send messages to other registered users. So each user will have a Inbox and Outbox just like an email system. Also users can search messages in their message box. Here I am providing tw