Questions tagged [riak-search]
60 questions
0
votes
1 answer
Riak Yokozuna Solr, how to retrieve stored but not index field?
I am trying to implement a message archiving in riak. The schema looks something like this
{
id = <<>> :: binary() | '_',
username_s = <<"">> :: binary() | '_',
timestamp_i = 0 …

Rmxhaha
- 87
- 7
0
votes
0 answers
while Using Extractor in riak for indexing getting error
after running command :-
curl -XPUT -H 'content-type: application/httpheader' 'http://localhost:8098/search/extract' --data-binary "@/home/cblap15/Desktop/google_packet.bin"
i am getting error as:-
500 Internal Server…

Shahzad Hussain
- 57
- 8
0
votes
3 answers
How to get Riak keys last modified since X?
Is there a way to get a list of keys from Riak, which were modified since a specified time? A stream of changes would be equally good.
MapReduce is not a recommended way.

Andor
- 5,523
- 5
- 26
- 24
0
votes
1 answer
SolrConfig inclusion through Xinclude
I'm currently using a Solr implementation inside of Riak KV server. In respect of Riak defaults and not to fear any software ugrade I need to include extra configuration into my core SolrConfig.xml. I'll be doing this programmatically through…

Guibod
- 371
- 1
- 3
- 13
0
votes
0 answers
Using riak search to find and update matching documents
What would be the right way of searching riak-search for documents that need correction, then update them ?
By design, riak-search is an index that may NOT stick to the riak-kv content. I except that on heavy duty check/write operation that my index…

Guibod
- 371
- 1
- 3
- 13
0
votes
2 answers
Name Search on Solr
Apologies if I am posting a duplicated question, if so please point me to original question.
I am a solr novice and trying to achieve ordered word name search using solr.I am expecting following response from solr
Name Search Term …

er_suthar
- 319
- 1
- 8
0
votes
1 answer
RIAK riak-erlang-client Key values integerbinary (::<<_|128>>)
I try to use the okeuday/uuid lib to generate a <<_|128>> V4 UUID and use that as my RIAK Key to store data.
I use the git://github.com/basho/riak-erlang-client.git master Version.
When i use the binary int as key no data is stored and i got no…

canislupax
- 56
- 3
0
votes
1 answer
Any Riak Yokozuna custom erlang term extractor available?
My basic requirement is proplist actually and I guess I can write a custom extractor for application/erlangproplist.
Just out of curiosity, as Riak is written in Erlang, is there any Erlang term extractor already available out there?
It's going to…

Hao
- 6,291
- 9
- 39
- 88
0
votes
1 answer
Riak search returning "No index" and "(23) Failed writing body"
I have a test system and I've created and activated libraries as a search property on the bucket type clients.
➜ riak-2.1.0 curl…

mbb
- 3,052
- 1
- 27
- 28
0
votes
2 answers
JSON Extractor for Array of Strings
In Riak, I have this basic user schema with an accompanying user index (I've omitted the riak-specific fields like _yz_id etc.):
user3594595
0
votes
1 answer
How to change riak storage backend property using Scala/Java code
Is there any way to override riak default property using Scala/Java code?
{riak_kv, [
...,
{storage_backend, riak_kv_memory_backend},
...
]}

Ayush Mishra
- 567
- 1
- 7
- 19
0
votes
1 answer
How to make Riak return links from Riak Search
If I do the following, the response header will contain a list of this object's links.
curl -v http://ip:port/riak/tests/aKey
However, if I search for the same object using Riak Search, I get the correct object but without any Riak-specific…

Daniel Larsson
- 6,278
- 5
- 44
- 82
0
votes
1 answer
Riak secondary index search returns no keys every time
I must be crazy... I've got the search function working for my bucket just fine. Keys are returned nicely.
But when my php riak object contains:
["indexes":protected]=>
array(2) {
["sign_id_int"]=>
array(1) {
…

Chris Van Sickle
- 11
- 2
0
votes
1 answer
Using Riak.js / Riak, how do I do an "AND" select?
I am trying to determine the existence of an object to decide whether to create a new object with a new key or to update an existing object. The goal here is to match on two Secondary Indexes.
db.query(bucket, {end: null, definition_id: id},…

Jazzy
- 6,029
- 11
- 50
- 74
0
votes
1 answer
Can we retrieve Riak Objects instead of keys using 2i
I have a use-case where I need to query based on a 2i value and retrieve all the Riak objects intstead of only keys. Doing a map-reduce operation for this took quite a long time and more computations.
Is there any other solution for this?

Gaurav
- 107
- 1
- 8