Questions tagged [riak-search]
60 questions
0
votes
1 answer
"Reverse formatting" Riak search results
Let's say I have an object in the test bucket in my Riak installation with the following structure:
{
"animals": {
"dog": "woof",
"cat: "miaow",
"cow": "moo"
}
}
When performing a search request for this object, the…

garbetjie
- 579
- 3
- 10
0
votes
1 answer
Riak SOLR over HTTP and date ranges?
Can anyone tell me what Riak expects for date format when using the SOLR api over HTTP to search? I have some data that's indexed. A wildcard search confirms that:
{
"responseHeader": {
"status": 0,
"QTime": 13,
"params":…

XeroxDucati
- 5,130
- 2
- 37
- 66
0
votes
1 answer
How to continously load data in Riak with erlang file
I want to run a programme that loads a data into riak database, but the process is stopping suddenly when i gave range about 10. if i gave 5-8 it is taking and loading the data, when i give range more than 10 it was hanging up. what was…

Krish gopi
- 155
- 4
- 12
0
votes
2 answers
How to get data from a tuple inside bitstring inside list in RIak-erlang client
I am working on riak-erlang client. while doing Mapreduce i got the following output.
Now i want to get the data from the Result set that i got.I want age/name, and also by particular name i want to get age.
How can i do that.please help…

Krish gopi
- 155
- 4
- 12
0
votes
2 answers
Maximum records can be stored at Riak database
Can anyone give an example of maximum record limit in Riak database with specific hardware details? please help me in this case.I'm going to build a CDR information system. Will it be suitable to select Riak as my database?

Chanaka NZ
- 127
- 1
- 8
0
votes
1 answer
Failed to use map reduce with riak
I am new for Riak, so please excuse my missunderstanding.
I am able to add new entries and perform queries by key and index. However I have to implement more complex queries, so I am trying to use MapReduce.
I have my application level entity…

AlexR
- 114,158
- 16
- 130
- 208
0
votes
1 answer
Riak: how to enable KV indexing of buckets by default?
Riak docs have very good explanation of KV searching and indexing http://docs.basho.com/riak/1.2.1/cookbooks/Riak-Search---Indexing-and-Querying-Riak-KV-Data/ . It is recommended there to enable KV indexing for each bucket separately. So, you need…

kikulikov
- 2,512
- 4
- 29
- 45
0
votes
2 answers
RIAK: How to search for records in JSON?
How to search for records in JSON?
For example:
http://server.cc/riak/Scores/user12
{ v: "{"score":0,"tab":14,"gold":255}" }
How do I get all the records where the "gold" is more than 150 or equal 255?
I'm installed the Riak Search hook on…
0
votes
1 answer
How to queryl based on time interval in riak
I am trying to implement the following functionality. I have a bucket where I am storing objects. One of the object field is timestamp. Now I want to retrieve the objects whose timestamp is between an interval like (20130605 08:00:00 to 20130605…

Sivaraman Viswanathan
- 65
- 1
- 6
0
votes
2 answers
Riak solution for querying data by books or unique pages
Consider a set of data called Library, which contains a set of Books and each book contains a set of Pages.
Let's say you are using Riak to store this data, and you need to be access the data in two possible ways:
- Query for a particular page (with…

chaimp
- 16,897
- 16
- 53
- 86
0
votes
1 answer
How do I index already existing objects in Riak
I created a bucket in riak and stored some key value pairs (value being a json object). After this I ran /usr/sbin/search-cmd install to start riak search for the bucket.
Each object has a 'type' attribute and I am trying to search objects…

Vamsi
- 365
- 2
- 8
0
votes
1 answer
Riak: indexing and querying kv data
I would like to implement "indexing and querying kv data" as described in the Riak docs at http://docs.basho.com/riak/latest/cookbooks/Riak-Search---Indexing-and-Querying-Riak-KV-Data/.
While there is a little documentation about how to setting up…

aurora
- 9,607
- 7
- 36
- 54
0
votes
1 answer
Riak Search JSON list
I wonder how you can search in Riak Search for list items.
e.g.:
{
"name": "Zombies Eat Brains",
"tags": ["zombies", "funny", "lol"]
}
search-cmd search objects ???

igorgue
- 17,884
- 13
- 37
- 54
-1
votes
1 answer
Java mapreduce and search for Riak
I saw the examples for Riak erlang and JS mapreduce. But I am a JAVA guy :), like to do it in JAVA. Moreover JS mapreduce is deprecated.
Is there a way to do it in Java? Kindly give a sample.
I was also looking for a Java sample of Riak 2.0 Search.…

Raghuveer
- 2,859
- 7
- 34
- 66
-1
votes
1 answer
How to make existing data indexed by newly created index
I have created a new solr schema. I have created a new index from new schema. I have an existing bucket type where data exists. How will the existing data can be indexed with the new index created?