Re: Riak search with case-insensitive searches

2016-05-15 Thread Vitaly
er ways of implementing case-insensitive search in Solr. Regards, Vitaly On Sun, May 15, 2016 at 12:51 PM, Alex De la rosa wrote: > I see, cool :) thanks for the help > > Alex > > On Sun, May 15, 2016 at 1:49 PM, Vitaly <13vitam...@gmail.com> wrote: > >> You can use a c

Re: Riak search with case-insensitive searches

2016-05-15 Thread Vitaly
gards, Vitaly On Sun, May 15, 2016 at 12:41 PM, Alex De la rosa wrote: > Hi there, > > Is there a way to make case-insensitive search queries? The following > query works fine, but only find the entry if sending "Alex" but not finding > anything with "ALEX"

Re: Querying SOLR outside of Riak

2016-05-15 Thread Vitaly
ant for. Having said that, I would think that any activity can add stress, you should measure what kind of stress your system creates, and plan your cluster accordingly. Regards, Vitaly On Sun, May 15, 2016 at 11:18 AM, Alex De la rosa wrote: > Hi Vitaly, > > I know that you can access

Re: Querying SOLR outside of Riak

2016-05-15 Thread Vitaly
There is, you can *query *Solr directly via HTTP, at least as of Riak 2.0.x Have a look at http://:8093/internal_solr/#/ and http://docs.basho.com/riak/kv/2.1.4/developing/usage/search/#querying Vitaly On Sun, May 15, 2016 at 10:49 AM, Alex De la rosa wrote: > Nobody knows if there is a

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Vitaly
In general, Riak/Solr is capable of indexing multi-valued properties (i.g. lists). You're right thinking that multiValued = "true" should be used for it. That said, check if it works with your client library (it's Python, isn't it?). I believe it does. Regards, Vitaly

Re: Riak search on an index limited to only 1 bucket

2016-05-13 Thread Vitaly
Hi Alex, 'likes_counter:[100 TO *] AND _yz_rb:photos' will limit query results to the photos bucket only. Similarly, "_yz_rt" is for a bucket type. Searching for anything in an index can be done with "*:*" (any field, any value). Regards, Vitaly On Fri, May 1

Re: issue creating a custom index/schema

2016-05-09 Thread Vitaly
You don't have this type under . The failure is about "int" because it's the first one encountered in the list of fields. Regards, Vitaly On Mon, May 9, 2016 at 7:16 PM, Alex De la rosa wrote: > Hi there, > > I'm trying to create a custom index as seen at >

Re: Access Riak remotely

2016-04-11 Thread Vitaly
Riak Explorer, which supports them https://github.com/basho-labs/riak_explorer Regards, Vitaly On Mon, Apr 11, 2016 at 1:27 PM, Fasil K wrote: > Hii Every one, > > Is there any way to access & manage riak remotely. > Like if I have riak installed in instance 'A' then c

Re: cannot start solr, no logs

2016-04-04 Thread Vitaly E
the requested memory just is not available. Regards, Vitaly On Tue, Apr 5, 2016 at 7:45 AM, Vitaly E <13vitam...@gmail.com> wrote: > Hi, > > Could you give some more details? Which version of Riak? Your subject line > suggests that you cannot start Solr, but what do you mea

Re: cannot start solr, no logs

2016-04-04 Thread Vitaly E
Hi, Could you give some more details? Which version of Riak? Your subject line suggests that you cannot start Solr, but what do you mean by this? Can you start Riak successfully? Where are you looking for logs? Do you have search enabled in riak.conf (search = on)? Regards, Vitaly On Tue, Apr

Re: Cluster ready status for Riak S2

2016-04-01 Thread Vitaly E
more details in http://littleriakbook.com/). This command will exit when the service is finally up. A list of available services can be printed using 'riak-admin services'. I believe it should work with Riak S2 as well as Riak KV. Best, Vitaly On Fri, Apr 1, 2016 at 3:30 PM, Jhonny Everson wrote: > Th

Re: Continuous HTTP POSTs to Riak

2016-03-06 Thread Vitaly E
c (NTP?). I would also suggest to pass vector clocks anyway. Hope this helps. Everyone is welcome to correct/clarify. Vitaly On Mar 5, 2016 11:07 PM, "Qiang Cao" wrote: > Thanks, Russell. I'm just curious. My application handles that. Maybe > that's just because of the vclo

Re: Continuous HTTP POSTs to Riak

2016-03-04 Thread Vitaly E
rfect clock synchronization is just impossible. Also, setting notfound_ok to "false" may help if you encounter not founds for keys you are sure have been written. Good luck! Vitaly On Fri, Mar 4, 2016 at 5:19 AM, Qiang Cao wrote: > Sargun, do you mean I should also pass back the v

Re: Testing On A Single Node

2016-02-25 Thread Vitaly E
case you should have lost only the most recent writes. Hope this helps Vitaly I am trying to set up a simple test environment. This environment consists of a single Riak KV node which has not joined a cluster. I can populate the single un-clustered node with KV pairs just fine using curl. However,

Re: Java Client - Maps - fetch only one entry

2016-02-25 Thread Vitaly E
set of the keys for those [rare] cases when you need all values that belong to the map. The latter requires several round-trips, but I believe will be still faster, easier to maintain, and more reliable than search. Regards, Vitaly On Thu, Feb 25, 2016 at 10:36 PM, Cosmin Marginean wrote

Re: Java Client - Maps - fetch only one entry

2016-02-25 Thread Vitaly E
Hi Cosmin, Sorry for the dumb question, but if you are interested in a specific entry why not to store it as a separate key? It would be easier for updates, too. Regards, Vitaly On Thu, Feb 25, 2016 at 9:40 PM, Cosmin Marginean wrote: > On 25 Feb 2016, at 19:26, Cosmin Marginean wr

Re: Custom Object Mapper settings in Java Client

2016-02-22 Thread Vitaly E
converter to the FetchValue API, for instance via com.basho.riak.client.api.commands.kv.KvResponseBase.getValues(com.basho.riak.client.api.convert.Converter). I think this is the right way to add custom serialization. Regards, Vitaly On Mon, Feb 22, 2016 at 11:29 AM, Cosmin Marginean wrote:

Re: Regarding the number of partitions in riak cluser

2016-02-21 Thread Vitaly E
Hi Chathuri, Is it Riak KV? Which version? What hardware are you running your cluster on? How are the Riak nodes distributed over your physical machines? Do you have enough network bandwidth? Regards, Vitaly On Mon, Feb 22, 2016 at 12:35 AM, Chathuri Gunawardhana < lanch.gunawa

Re: Riak Search indexing json

2016-02-10 Thread Vitaly E
his since the client handles serialization to JSON well enough. Vitaly On Wed, Feb 10, 2016 at 5:55 PM, Zeeshan Lakhani wrote: > Good point Vitaly, also possible. > > > Zeeshan Lakhani > programmer | > software engineer at @basho | > org. member/founder of @pa

Re: Riak Search indexing json

2016-02-10 Thread Vitaly E
Hi Colin, The problem is that in your case JSON is interpreted as a String, as opposed to a Map/POJO with fields. Is there any reason you don't rely on the JSON serialization built into Riak Java client? Regards, Vitaly On Wed, Feb 10, 2016 at 5:40 PM, Colin Walker wrote: > Hello

Re: List Keys for a bucket not returning anything

2016-02-01 Thread Vitaly E
I think it should be curl -i http://localhost:8098/types/comment/buckets/comment/keys?keys=stream Regards, Vitaly I'm trying *delete* and *rebuild* yokozuna search indexes. One idea was to just list all the buckets and all the keys, and trigger an update to rebuild the index. However

Re: limit of bucket/solr indexes

2016-01-15 Thread Vitaly E
properties: w = quorum, r = quorum, search_index = team_members And then "child" buckets: * type/team_members/bucket/dinamo * type/team_members/bucket/chelsea * type/team_members/bucket/juventus and so on If you decide to use this approach, let me know how it works for you. Regards, Vitaly

Re: CRDT appending

2016-01-13 Thread Vitaly E
(version)); UpdateMap update = new UpdateMap.Builder(location, changes).build(); client.execute(update); Also, take into account that there is a practical limitation of the size of a CRDT. Usually it's up to 100-200 KB of raw data. Regards, Vitaly On Wed, Jan 13, 2016 at 2:54 PM, Eugene S

Re: Unable to start riak in ubuntu after changing IP address

2015-05-25 Thread Vitaly E
Which version of Riak are you using? Do you see any error messages? Also, what Java program are you reffering to? Can you post a link please? Regards, Vitaly On Fri, May 22, 2015 at 9:29 AM, sambit wrote: > Hi I have successfully installed Riak in ubuntu in my vmware virtual box in > w

Re: install on freebsd and dragonflybsd

2010-05-13 Thread Vitaly Martynenko
ke build is woefully broken or rurlbc> something, somewhere is managing to set it to an empty string. rurlbc> --Ryan -- Best regards, Vitalymailto:vita...@vv.net.ua ICQ: #12963384 ___ riak-users mailing list riak-users@