Tag for Riak's Search Engine based on Solr - Yokozuna
Questions tagged [yokozuna]
7 questions
2
votes
1 answer
Riak max-counter
I'd like to implement sth like a max-counter using Riak's CRDTs to use w/ Yokozuna.
The idea I had was to have a Riak map, two counters inside it, one to be modified, then the other to be updated to the max of both in a pre-commit hook.
However, I…

miau
- 227
- 2
- 9
1
vote
1 answer
how to store List or any List type in solr riak
I am using riak nosql database with solr.
I know that how to index field in solr with following basic type
index int value with suffix _i
index String value with suffix _s
index long value with suffix _l
like this.
Now I want to index List in…

achan1989
- 101
- 2
- 10
1
vote
2 answers
Riak Yokuzuna Schema upload , create index and search query always result in error 60,56,27
public class RiakSearch {
public static final String RIAK_SERVER = "10.11.172.17";
private static RiakCluster setUpCluster() throws UnknownHostException {
// This example will use only one node listening on localhost:10017
RiakNode node =…

Utkarsh Markandaya
- 11
- 1
0
votes
1 answer
Riak with Search On Dropping Indexes on Restore
I'm attempting to restore Riak onto a new instance (single node, no ring). I rename the node and update the configurations using the riak-admin reip command. However, when I start Riak and once Yokozuna starts, Yokozuna drops the indexes that have…

fnwede
- 1
- 2
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
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
2 answers
Yokozuna solr schema file enum support
In our solr schema file, we are defining enum field types and specifying an external enums.xml file in the enumConfig parameter.
However, we have to manually copy that file to the /conf directory of the search index we’re creating or updating.
Is…

Tarun Sukhani
- 3
- 2