Re: Help with handling Riak disk failure

2017-09-19 Thread Leo
;> >>> That last number is just a timeout for the RPC operation. I hope this >>> saves you some extra load on your clusters. >>> >>> (3) That’s going to be : >>> (3a) List all keys using the client of your choice >>> (3b) Fetch each object >

Re: Help with handling Riak disk failure

2017-09-19 Thread Bryan Hunt
g the client of your choice >> (3b) Fetch each object >> >> https://www.tiot.jp/riak-docs/riak/kv/2.2.3/developing/usage/reading-objects/ >> >> https://www.tiot.jp/riak-docs/riak/kv/2.2.3/developing/usage/secondary-indexes/ >> >> >> >> >> &

Re: Help with handling Riak disk failure

2017-09-19 Thread Leo
clusters. > > (3) That’s going to be : > (3a) List all keys using the client of your choice > (3b) Fetch each object > > https://www.tiot.jp/riak-docs/riak/kv/2.2.3/developing/usage/reading-objects/ > > https://www.tiot.jp/riak-docs/riak/kv/2.2.3/developing/usage/secondary-in

Re: Help with handling Riak disk failure

2017-09-19 Thread Bryan Hunt
secondary-indexes/ <https://www.tiot.jp/riak-docs/riak/kv/2.2.3/developing/usage/secondary-indexes/> > On 19 Sep 2017, at 18:31, Leo wrote: > > Dear Riak users and experts, > > I really appreciate any help with my questions below. > > I have a 3 node Riak clus

Help with handling Riak disk failure

2017-09-19 Thread Leo
Dear Riak users and experts, I really appreciate any help with my questions below. I have a 3 node Riak cluster with each having approx. 1 TB disk usage. All of a sudden, one node's hard disk failed unrecoverably. So, I added a new node using the following steps: 1) riak-admin cluster j

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-31 Thread Luke Bakken
Kyle - Verify return code: 19 (self signed certificate in certificate chain) Since your server cert is self-signed, there's not much more that can be done at this point I believe. My security tests use a dedicated CA where the Root cert is available for validation (https://github.com/basho/riak-c

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-31 Thread Nguyen, Kyle
nt: None SRP username: None Start Time: 1472681389 Timeout : 300 (sec) Verify return code: 19 (self signed certificate in certificate chain) --- -Original Message- From: Luke Bakken [mailto:lbak...@basho.com] Sent: Tuesday, August 30, 2016 2:21 PM To: Nguyen, Kyle Cc: Riak Us

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-30 Thread Luke Bakken
asho.com] > Sent: Tuesday, August 30, 2016 2:14 PM > To: Nguyen, Kyle > Cc: Riak Users > Subject: Re: Need help with Riak-KV (2.1.4) certificate based authentication > using Java client > > Kyle, > > I would be interested to see the output of this command run on the sam

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-30 Thread Nguyen, Kyle
Hi Luke, I am using TLS for protocol buffer - not sure if you're thinking of HTTP only. Thanks -Kyle- -Original Message- From: Luke Bakken [mailto:lbak...@basho.com] Sent: Tuesday, August 30, 2016 2:14 PM To: Nguyen, Kyle Cc: Riak Users Subject: Re: Need help with Riak-KV (

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-30 Thread Luke Bakken
ced getACert CA in the trustor with another unknown CA then SSL will > fail with "unable to find valid certification path to requested target". I > don't even see an option to ignore server cert validation on the client side. > I am wondering if you can help prov

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-30 Thread Nguyen, Kyle
ication path to requested target". I don't even see an option to ignore server cert validation on the client side. I am wondering if you can help provide some details related to SSL certification validation configuration. My riak node builder code: RiakNode.Builder builder = new RiakNode.Bu

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-30 Thread Luke Bakken
Kyle - The CN should be either the DNS-resolvable host name of the Riak node, or its IP address (without "riak@"). Then, the Java client should be configured to use that to connect to the node (either DNS or IP). Without doing that, I really don't have any idea how the Java client is validating th

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Nguyen, Kyle
e Bakken [mailto:lbak...@basho.com] Sent: Monday, August 29, 2016 2:20 PM To: Nguyen, Kyle Cc: Riak Users Subject: Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client Hi Kyle - Thanks for the info. Just so you know, setting check_clr = off means that Riak wi

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Luke Bakken
> From: Luke Bakken [mailto:lbak...@basho.com] > Sent: Monday, August 29, 2016 7:59 AM > To: Nguyen, Kyle > Cc: Riak Users > Subject: Re: Need help with Riak-KV (2.1.4) certificate based authentication > using Java client > > Kyle - > > What is the output of these com

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Nguyen, Kyle
59 AM To: Nguyen, Kyle Cc: Riak Users Subject: Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client Kyle - What is the output of these commands? riak-admin security print-users riak-admin security print-sources http://docs.basho.com/riak/kv/2.1.4/using/security/b

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Luke Bakken
Kyle - What is the output of these commands? riak-admin security print-users riak-admin security print-sources http://docs.basho.com/riak/kv/2.1.4/using/security/basics/#user-management Please note that setting up certificate authentication *requires* that you have set up SSL / TLS in Riak as w

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-26 Thread Nguyen, Kyle
PM To: Nguyen, Kyle Cc: Riak Users Subject: Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client Try adding the following Java property setting when launching your java client in order to see SSL Handshake related debug information: -Djavax.net.debug

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-25 Thread Jonathan Joseph
Try adding the following Java property setting when launching your java client in order to see SSL Handshake related debug information: -Djavax.net.debug=ssl:handshake Or to see all ssl related debug output: -Djavax.net.debug=ssl On Thu, Aug 25, 2016 at 4:24 PM, Nguyen, Kyle wrote: > Hi all

Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-25 Thread Nguyen, Kyle
Hi all, I was trying to implement client certificate based authentication following http://docs.basho.com/riak/kv/2.1.4/using/security/basics/ but kept getting the following SSL Handshake exception. I believe I have the client keystore, truststore and riak server cert/key setup properly. Both c

Help

2015-10-03 Thread Tyler Weir
_lists.basho.com > or, via email, send a message with subject or body 'help' to >riak-users-requ...@lists.basho.com > > You can reach the person managing the list at >riak-users-ow...@lists.basho.com > > When replying, please edit your Subject line so it is mor

Re: Need RiakSearch & Solr Help

2015-06-04 Thread Dmitri Zagidulin
> 9.472992 76.540817))) distErrPct=0)" > > ERROR: > "Unknown Shape definition [POLYGON((9.472992 76.540817, 9.441328 > 76.523651, 9.433708 76.555065, 9.458092 76.572403, 9.472992 76.540817))) > distErrPct=0]" > > I downloaded jts-1.13.jar and put

Need RiakSearch & Solr Help

2015-06-04 Thread sinh nguyen
d Riak but it still doesn't work. Please help. Thanks ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Re: Need help getting riak started

2015-04-16 Thread Shawn Debnath
. Attempted to get it to work by having cluster.example.com return a set of IPs for all the riak nodes in the cluster, but that didn’t help either. In the perfect world, this should. Thanks to Alex, Zeeshan, and Sean for helping out on IRC. On 4/15/15, 11:28 PM, "Shawn Debnath" mailto:sh...@d

Re: Need help getting riak started

2015-04-15 Thread Shawn Debnath
9.618 [info] <0.369.0>@riak_kv_entropy_manager:perhaps_log_throttle_change:853 Changing AAE throttle from undefined -> 0 msec/key, based on maximum vnode mailbox size 0 from 'riak...@riak.prod.pryvy.com' 2015-04-15 22:17:19.672 [info] <0.352.0>@riak_core:wait_for_service:483 Wait comple

Re: Need help getting riak started

2015-04-15 Thread Shawn Debnath
:03.485 [info] <0.7.0> Application riak_auth_mods started on node 'riak...@riak.prod.pryvy.com' 2015-04-15 22:17:19.618 [info] <0.369.0>@riak_kv_entropy_manager:perhaps_log_throttle_change:853 Changing AAE throttle from undefined -> 0 msec/key, based on maximum vnode ma

Re: Need help getting riak started

2015-04-15 Thread Jon Meredith
iak_kv_entropy_manager:perhaps_log_throttle_change:853 Changing > AAE throttle from undefined -> 0 msec/key, based on maximum vnode mailbox > size 0 from 'riak...@riak.prod.pryvy.com' > 2015-04-15 22:17:19.672 [info] <0.352.0>@riak_core:wait_for_service:483 > Wait comp

Re: Need help getting riak started

2015-04-15 Thread Shawn Debnath
ed -> 0 msec/key, based on maximum vnode mailbox size 0 from 'riak...@riak.prod.pryvy.com' 2015-04-15 22:17:19.672 [info] <0.352.0>@riak_core:wait_for_service:483 Wait complete for service riak_kv (16 seconds) Full log @ http://pastebin.com/8hb43MwP Any help will be greatly appreciated. Thanks, Shawn ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Need help getting riak started

2015-04-15 Thread Shawn Debnath
fined -> 0 msec/key, based on maximum vnode mailbox size 0 from 'riak...@riak.prod.pryvy.com' 2015-04-15 22:17:19.672 [info] <0.352.0>@riak_core:wait_for_service:483 Wait complete for service riak_kv (16 seconds) Full log @ http://pastebin.com/8hb43MwP Any help will be

Re: Help: Riak Search on Counters

2014-08-18 Thread Alex De la rosa
ur example you assume 3 or upper. > > Thanks! > Alex > > On Monday, August 18, 2014, Sean Cribbs > wrote: > >> Hi Alex, >> >> Bare counters become the "counter" field in the Solr index. For counts >> greater than 3 you might query with "co

Re: Help: Riak Search on Counters

2014-08-18 Thread Eric Redmond
quot;counter" field in the Solr index. For counts > greater than 3 you might query with "counter:[3 TO *]". > > Hope that helps! > > On Mon, Aug 18, 2014 at 8:01 AM, Alex De la rosa > wrote: > > Hi there, > > > > Can somebod

Re: Help: Riak Search on Counters

2014-08-18 Thread Alex De la rosa
nter" field in the Solr index. For counts > greater than 3 you might query with "counter:[3 TO *]". > > Hope that helps! > > On Mon, Aug 18, 2014 at 8:01 AM, Alex De la rosa > > wrote: > > Hi there, > > > > Can somebody help me with Riak Search

Re: Help: Riak Search on Counters

2014-08-18 Thread Eric Redmond
uot;. > > Hope that helps! > > On Mon, Aug 18, 2014 at 8:01 AM, Alex De la rosa > wrote: >> Hi there, >> >> Can somebody help me with Riak Search 2.0 on Counters? Imagine we ha

Re: Help: Riak Search on Counters

2014-08-18 Thread Sean Cribbs
Hi Alex, Bare counters become the "counter" field in the Solr index. For counts greater than 3 you might query with "counter:[3 TO *]". Hope that helps! On Mon, Aug 18, 2014 at 8:01 AM, Alex De la rosa wrote: > Hi there, > > Can somebody help me with Riak Searc

Help: Riak Search on Counters

2014-08-18 Thread Alex De la rosa
Hi there, Can somebody help me with Riak Search 2.0 on Counters? Imagine we have a counter called "visitors" to store how many people visits cert

RE: Timeout when accessing a key in a strongly consistent bucket. Please help.

2014-07-15 Thread Zsolt Laky
] Küldve: Saturday, June 28, 2014 1:13 PM Címzett: 'Riak Users Mailing List' Tárgy: Timeout when accessing a key in a strongly consistent bucket. Please help. Hello there, Installed new 2.0beta, fired up 1 node. Config and status is attached. Strongly consistent bucket type see

Re: Help on bucket quorums

2014-06-29 Thread Sean Cribbs
Sean Cribbs wrote: > >> >> On Sat, Jun 28, 2014 at 4:55 AM, Alex De la rosa > > wrote: >> >>> Hi there, >>> >>> Can somebody help me understand a bit better the bucket quorums? I will >>> use the Python API to write code examples

Re: Help on bucket quorums

2014-06-28 Thread Alex De la rosa
ant strong consistency. Leaving again just the real need to set "r" and "w" if we want to speed up any of the processes. Am I right? Cheers, Alex On Sat, Jun 28, 2014 at 8:41 PM, Sean Cribbs wrote: > > On Sat, Jun 28, 2014 at 4:55 AM, Alex De la rosa > wrote: &g

Re: Help on bucket quorums

2014-06-28 Thread Sean Cribbs
On Sat, Jun 28, 2014 at 4:55 AM, Alex De la rosa wrote: > Hi there, > > Can somebody help me understand a bit better the bucket quorums? I will > use the Python API to write code examples: > > Imagine we are building a web app like twitter, and we want fast read > (al

Re: Help on bucket quorums

2014-06-28 Thread Alex De la rosa
useful. > > http://basho.com/understanding-riaks-configurable-behaviors-part-1/ > > > Sent from my iPhone > > On Jun 28, 2014, at 5:56 AM, Alex De la rosa > wrote: > > Hi there, > > Can somebody help me understand a bit better the bucket quorums? I will > us

Re: Help on bucket quorums

2014-06-28 Thread John Daily
I don't have time at the moment to respond in more detail, I'm afraid, but you should find this blog series quite useful. http://basho.com/understanding-riaks-configurable-behaviors-part-1/ Sent from my iPhone On Jun 28, 2014, at 5:56 AM, Alex De la rosa wrote: Hi there, Can som

Re: Help on bucket quorums

2014-06-28 Thread Brett Hazen
-configurable-behaviors-part-1/ Brett On June 28, 2014 at 4:56:26 AM, Alex De la rosa (alex.rosa@gmail.com) wrote: Hi there, Can somebody help me understand a bit better the bucket quorums? I will use the Python API to write code examples: Imagine we are building a web app like twitter, and we want

Help on bucket quorums

2014-06-28 Thread Alex De la rosa
Hi there, Can somebody help me understand a bit better the bucket quorums? I will use the Python API to write code examples: Imagine we are building a web app like twitter, and we want fast read (although not need to be consistent) and safe writings, this R/W combination is appropriate? bucket

Re: Help! Uncaught error in rebar_core:

2014-02-08 Thread Bryan Hughes
our issue, please report back. On Sat, Feb 8, 2014 at 11:31 PM, Bryan Hughes <mailto:br...@go-factory.net>> wrote: Howdy, Was wondering if anyone can give me some help into what is going on. I made the mistake and decided to do a clean build, including getting all new

Re: Help! Uncaught error in rebar_core:

2014-02-08 Thread Sean Cribbs
;}}} If that does not resolve your issue, please report back. On Sat, Feb 8, 2014 at 11:31 PM, Bryan Hughes wrote: > Howdy, > > Was wondering if anyone can give me some help into what is going on. I > made the mistake and decided to do a clean build, including getting all new > dep

Help! Uncaught error in rebar_core:

2014-02-08 Thread Bryan Hughes
Howdy, Was wondering if anyone can give me some help into what is going on. I made the mistake and decided to do a clean build, including getting all new deps and sure enough, and am suddenly having problems with rebar. Understand everything built prior to pulling new deps just a few minutes

Re: VS Sample help

2013-08-20 Thread Jeremiah Peschka
Thanks for sending over the asp.net app.config. Could you also send over the app.config from your riak installation? >From what you're saying, I'm pretty sure one of two things is happening: 1) Your VMs don't have permission to communicate with wherever your .NET code is running. 2) Your Riak ins

Re: VS Sample help

2013-08-20 Thread OJ Reeves
Brad, You can start by adjusting the read/write timeouts[1] to see if that helps. However I don't think this is really going to help you in the long run because the issue is that you're not able to connect. Are you able to establish a simple connection to the PBC port from the same ma

Re: VS Sample help

2013-08-20 Thread brad.laptop
Hello I just got 2 VMs’ setup and can access via http but cannot get the samples to work. My riak app.config -name is set as riak@192.168.0.71 and .73 respectfully and running the Sample proj just takes for ever to ping i.e. a few minutes. Eventually it fails at the assert. My VS app.co

Re: VS Sample help

2013-08-19 Thread Jeremiah Peschka
Hi Brad, Could you post your app.config in a gist, pastebin, or something else? You'll also need to make sure Riak is listening on that IP address in the app.config file. For example, if you were using an unsafe configuration, the app.config might look like this: {pb, [ {"0.0.0.0", 10017 } ]} Th

VS Sample help

2013-08-19 Thread brad.laptop
Hello I just got my Sent from Windows Mail___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

VS Sample help

2013-08-19 Thread brad.laptop
Hello I just got 2 VMs’ setup and can access via http but cannot get the samples to work. My riak app.config -name is set as riak@192.168.0.71 and .73 respectfully and running the Sample proj just takes for ever to ping i.e. a few minutes. Eventually it fails at the assert. My app.config

Re: Ripple Gem Help

2013-08-07 Thread Bryce Kerley
On Aug 7, 2013, at 10:35 AM, Jace Poirier-Pinto wrote: > Hello, > > I am trying to use Riak's gem 'ripple' for a Ruby on Rails project and I was > wondering if there was any 'advanced' documentation for data manipulation in > the Document Model. Specifically, setting up and using secondary ind

Re: Ripple Gem Help

2013-08-07 Thread Chris Meiklejohn
Hi Jace, The rubydoc is probably the best resource to use. For instance, here's more information on how to manipulate secondary indexes: http://rubydoc.info/github/seancribbs/ripple/Ripple/Index Let me know if that's not what you're looking for. - Chris On Wed, Aug 7, 2013 at 7:35 AM, Jace

Ripple Gem Help

2013-08-07 Thread Jace Poirier-Pinto
Hello, I am trying to use Riak's gem 'ripple' for a Ruby on Rails project and I was wondering if there was any 'advanced' documentation for data manipulation in the Document Model. Specifically, setting up and using secondary indexes, accessing 'self' variables, etc. __

Re: Need help regarding riak bytes in / bytes out of data

2013-08-01 Thread Hector Castro
Hi Mahesh, Can you please confirm that you're executing steps similar to what's in this Gist? [0] If your steps are similar, please provide your versions of Riak and Riak CS, along with the `app.config` files. -- Hector [0] https://gist.github.com/hectcastro/126b5657f228096775c6 On Thu, Aug 1,

Need help regarding riak bytes in / bytes out of data

2013-08-01 Thread mahesh shitole
Hello, I am little bit stuck with the riak bytes in / bytes out. The 'moss.access' bucket is not getting created when we start riak-cs-storage manually. I have 14 MB of data in one bucket. What could be the solution? or is this configuration issue? -- Thanks & Regards,* * *Mahesh Shitole

Re: Help... Something is wrong with my restore

2013-07-18 Thread John Daily
Per http://docs.basho.com/riak/latest/cookbooks/Backups/, you need not only Bitcask data but also ring data and configuration. -John On Jul 18, 2013, at 1:40 PM, Mark Wagner wrote: > Here is what I am doing: on OSX > > # Install riak on my local OSX development box > brew install riak > >

Help... Something is wrong with my restore

2013-07-18 Thread Mark Wagner
Here is what I am doing: on OSX # Install riak on my local OSX development box brew install riak riak start riak-admin test Successfully completed 1 read/write cycle to 'riak@127.0.0.1' riak stop #goto the default data directory setup by brew cd ~/Developer/Cellar/riak/1.3.1-x86_64/libexec/dat

Re: Help with local restore for dev enviroment

2013-07-11 Thread Mark Phillips
On Wed, Jul 10, 2013 at 7:37 AM, Mark Wagner wrote: > Thanks for the info!!! I appreciate the help and I am glad to know that > it should just work! > > I don't really need the data from the whole cluster while developing the > script. I just need to get my queries working etc.

Re: Help with local restore for dev enviroment

2013-07-10 Thread Mark Wagner
Thanks for the info!!! I appreciate the help and I am glad to know that it should just work! I don't really need the data from the whole cluster while developing the script. I just need to get my queries working etc... One issue I am facing is I don't know the structure of the data

Re: Help with local restore for dev enviroment

2013-07-10 Thread Justin Sheehy
Hi, Mark. You've already received a little advice generally so I won't pile on that part, but one thing stood out to me: > My client has sent me a backup from one of their cluster nodes. bitcask > data,. rings and config. Unless I'm misunderstanding what you're doing, what you're working on wi

Re: Help with local restore for dev enviroment

2013-07-10 Thread Shane McEwan
On 09/07/13 22:24, Mark Wagner wrote: Hey all, I'm new to riak and I'm working on an ETL script that needs to pull data from a riak cluster. My client has sent me a backup from one of their cluster nodes. bitcask data,. rings and config. *snip* At this point I believe I should be able to star

Help with local restore for dev enviroment

2013-07-09 Thread Mark Wagner
no idea of the structure of the data how can I determine the structure? Thanks for your help, Mark -- Mark Wagner, Web & Mobile Developer *:coderow* *Web & mobile application development for business* m: 480.580.1261 | o: 612.293.9090 www.coderow.com | m...@coderow.com<https://mail.g

Re: Urgent help with a down node.

2013-07-08 Thread John Caprice
Bryan, Anything that interrupts the writing to or closing of that file can cause this. This could be i/o errors related to the file system or the disk, a Riak crash or kill etc. If you see this happen regularly it would be an issue worth investigating. Thanks, John On Mon, Jul 8, 2013 at 8:5

Re: Urgent help with a down node.

2013-07-08 Thread Bryan Hughes
Hi John, Thank you! Can you give any insight as to what is the cause of the problem, or point me to any Basho Documentation detailing this? Cheers, Bryan On 7/8/13 8:22 AM, John Caprice wrote: Hey Bryan, This indicates a problem with the Bitcask data file. That data file, according to t

Re: Urgent help with a down node.

2013-07-08 Thread John Caprice
Hey Bryan, This indicates a problem with the Bitcask data file. That data file, according to the second error report, was truncated. You more than likely did not experience any data loss as this would affect only a single replica, and only those contained in that data file. To be safe, you can

Re: Urgent help with a down node.

2013-07-08 Thread Bryan Hughes
Andrew, Thanks for the tip on how to use Google. :) But that was not my original question. I wanted to understand in more detail from the Basho folks what 2013-07-07 12:51:42 =ERROR REPORT Hintfile './data/bitcask/22835963083295358096932575511191922182123945984/3.bitcask.hint' conta

Re: Urgent help with a down node.

2013-07-08 Thread Todd Tyree
Hi Andrew, While that ticket says it closes the issue with R15B02, it is worth noting that our only officially supported version at this time is R15B01: http://docs.basho.com/riak/latest/tutorials/installation/Installing-Erlang/ Bryan, Can you let us know which version you are running, please?

Re: Urgent help with a down node.

2013-07-08 Thread Andrew Berman
Bryan, What version of Erlang? You should check this out: https://github.com/basho/riak_kv/issues/411 BTW - Google is your friend, which is how I found the above issue :) --Andrew On Sun, Jul 7, 2013 at 3:01 PM, Bryan Hughes wrote: > Hi Mark, > > DOH - sorry for the lack of detail. Didnt

Re: Urgent help with a down node.

2013-07-07 Thread Bryan Hughes
Hi Mark, DOH - sorry for the lack of detail. Didnt have enough coffee this morning. OS: CentOS release 6.3 (Final) Riak: Riak 1.2.1 Hadnt had a chance to upgrade to 1.3 yet. Got the node back up - but not entirely sure why which is a little concerning. Been verifying the data, and eve

Re: Urgent help with a down node.

2013-07-07 Thread Mark Phillips
Hi Bryan, I remember seeing something similar on the list a while ago. I'll dig through the archives (Riak.markmail.org) if I have a few minutes later tonight. In the mean time, what version of Riak is this? And what OS? Mark On Sunday, July 7, 2013, Bryan Hughes wrote: > Anyone familiar with

Urgent help with a down node.

2013-07-07 Thread Bryan Hughes
Anyone familiar with this error message? 2013-07-07 12:51:42 =ERROR REPORT Hintfile './data/bitcask/22835963083295358096932575511191922182123945984/3.bitcask.hint' contains pointer 16555635 566 that is greater than total data size 16556032 2013-07-07 12:51:45 =ERROR REPORT Hintfile '.

Re: Help with a complex Map Reduce query

2013-06-04 Thread Bryan Fink
Hi, Julien. On Sat, Jun 1, 2013 at 5:27 PM, Julien Genestoux wrote: > Yet, due to a bug in our implementation, we have 'lost' some entries. In > other words, some feedKey-entryKey elements are not in any feed object. … > Our initial solution was to list all the feed keys, and then, for each, Is

Help with a complex Map Reduce query

2013-06-01 Thread Julien Genestoux
Hello, We store the following in our Riak cluster: - feeds as a list of 10 keys to entries. All the keys are like this: feedKey-entryKey - entries as a complex JSON object. We try to avoid losing track of any entryKey by deleting it from the feed object only when corresponding object has been del

Re: Need help with moving to Riak

2013-03-22 Thread Max Lapshin
Hi. Of course, denormalization will not work, because I need to make lookups inside clients and servers. I'm trying to understand how to use KV databases in real life (not for storing configuration), but it is a big problem: there are a lot of easy and excelent tutorials that tell how to store yo

Re: Need help with moving to Riak

2013-03-22 Thread Christian Dahlqvist
storing a list of users together with the client. When doing this you can also store additional relevant information (especially if this is not updated frequently) that will help you query through the client object together with the user link. In the same way I would also consider storing a

Re: Need help with moving to Riak

2013-03-22 Thread Daniil Churikov
g like statebox for this. So to execute "give me all sub-users of this client" you will have to make 2 queries: to <<"clients">> bucket and to <<"usage_stats">> bucket. "give me all servers of this client" will require one query.

Re: Need help with moving to Riak

2013-03-22 Thread Martin Westergaard Lassen
all sub-users of this client" and "give me all servers of this client".Also, there is going to be a huge traffic to update "users" table: aggregated statistics about their usage. Is riak ok for it? Will secondary index help me with it?I have already looked at Couchbase. It has won

Need help with moving to Riak

2013-03-21 Thread Max Lapshin
out their usage. Is riak ok for it? Will secondary index help me with it? I have already looked at Couchbase. It has wonderful admin console, but it failed to launch when my IP address has changed and it has no erlang API. ___ riak-users mailing l

Re: [Help]Riak concurrency problem

2012-09-20 Thread Eric Moritz
You may want to put a timestamp secondary index on the objects and then you can do a range query of between 0 and now() - 5 minutes. Here's the docs on 2i, http://wiki.basho.com/Secondary-Indexes---Configuration-and-Examples.html On Thu, Sep 20, 2012 at 9:26 AM, Douglas Muth wrote: > On Thu, Sep

Re: [Help]Riak concurrency problem

2012-09-20 Thread Douglas Muth
On Thu, Sep 20, 2012 at 1:06 AM, Hải Lưu Tuấn wrote: > > If there are 2 (or more) threads use this function at a same time, it will > cause error. Assume that both thread A and thread B have retrieved the keys > list (use bucket.get_keys()), and thread A deleted all of the old passwords > in the b

[Help]Riak concurrency problem

2012-09-19 Thread Hải Lưu Tuấn
cached_otp = bucket.get(key) cached_otp.get_data() would return None, causing error in this line: otp_time = int(cached_otp.get_data().get('EPOCHTIME')) Anyone can help me with this problem? Thanks for any hint/comment, Lưu Tuấn Hải P/S: S

Help with Community Code

2012-09-08 Thread Mark Phillips
that should be listed but isn't, don't be scared to contribute [2]. Thanks for your help. Mark twitter.com/pharkmillups [1] http://wiki.basho.com/Community-Developed-Libraries-and-Projects.html [2] https://github.com/basho/riak_wiki ___ ria

Re: help designing schemas

2012-09-03 Thread Parnell Springmeyer
You *could* use Riak for all of that, but I personally find retrieving objects linked to other objects remarkably painful in Riak; even with secondary indexes Riak is still more suitable for fast growing data, and keeping the relational data in Postgres or MySQL. Example of my setup: MySQL is

help designing schemas

2012-09-03 Thread Dan Milon
Hello, I am developing a web feed reader, with Riak as the database. While i have read a few examples about designing schemas in Riak, i have come up with an idea about this but i dont feel very confident. Its quite simple, there are Users, Feeds, and Articles. User logs in, sees feeds he is

Re: devrel remote ip help

2012-06-12 Thread Marv Lush
2, Swinney, Austin wrote: > From: Swinney, Austin > Subject: Re: devrel remote ip help > To: "Marv Lush" > Cc: "" > Date: Tuesday, June 12, 2012, 1:00 PM > Hi Marv, > > I don't recall having your problem specifically, but if it > happened to me,

Re: devrel remote ip help

2012-06-12 Thread Swinney, Austin
Hi Marv, I don't recall having your problem specifically, but if it happened to me, I would ask myself: * did you reip your node using `riak-admin reip`? * on ec2, is your security group configured to allow inbound and outbound traffic within the security group? Also, by 'hangs' I guess you m

devrel remote ip help

2012-06-12 Thread Marv Lush
Tried setting up a riak 4 node dev cluster on an EC2 box today per the instructions. Seems to work fine for any requests to 127.0.0.1 However, when I try to remote in (from my desktop to the EC2 box)...I get no response. I assume this is because I need to configure app.config and vm.args with

Fwd: Requesting Installation Help

2012-06-10 Thread Trevor Hunsaker
Many thanks Zebrane, that did the trick. Either I didn't have those development tools installed before, or I failed editing that dependency check regex properly. Either way, your instructions got me up and running. * * *Trevor * On Sat, Jun 9, 2012 at 12:55 AM, Zabrane Mickael wrote: > Hi Tr

Re: Requesting Installation Help

2012-06-08 Thread Zabrane Mickael
Hi Trevor, We've teh latest Riak up and running on Fedora 17 with R15B01. Follow these are the steps: $ wget http://downloads.basho.com.s3-website-us-east-1.amazonaws.com/riak/CURRENT/riak-1.1.2.tar.gz $ tar xzvf riak-1.1.2.tar.gz $ cd riak-1.1.2 $ ./rebar get-deps Remove this line "{require_o

Re: Requesting Installation Help

2012-06-08 Thread Jared Morrow
Trevor, I don't have a FC 17 VM handy, so I can't test it, but have you tried the FC 15 package from http://basho.com/resources/downloads/? The only problem I could see you having is a wrong dependency on openssl, but you should be able to install the matching one along side the one that inst

Requesting Installation Help

2012-06-08 Thread Trevor Hunsaker
I'm having troubles getting riak installed on Fedora 17. First, I tried with the packaged Erlang (R15B01). make rel complained about my Erlang version. It didn't work to changing the version regex everywhere I could find, though it's possible I missed some. Then, I built R14B03, and I get an "Unc

Re: help Error loading "erlang_js_drv": "cannot open shared object file: No such file or directory"

2012-05-24 Thread Vasiliy
On 05/24/2012 12:53 PM, Vasiliy wrote: Hello! I get the following error while trying to start riak on my debian system: $ uname -a Linux pc 2.6.32-5-amd64 #1 SMP Mon Jan 16 16:22:28 UTC 2012 x86_64 GNU/Linux $ riak version Attempting to restart script through sudo -u riak riak (1.1.2 2012-04-1

help Error loading "erlang_js_drv": "cannot open shared object file: No such file or directory"

2012-05-24 Thread Vasiliy
Hello! I get the following error while trying to start riak on my debian system: $ uname -a Linux pc 2.6.32-5-amd64 #1 SMP Mon Jan 16 16:22:28 UTC 2012 x86_64 GNU/Linux $ riak version Attempting to restart script through sudo -u riak riak (1.1.2 2012-04-17) Debian x86_64 $ riak console [err

Re: issue on riak bulk loading---taking huge time---Can any one help me out with the same pl

2012-05-15 Thread Reid Draper
On May 15, 2012, at 1:11 AM, wrote: > > Can any one help me out with the same pl…struck up with the same. Please see Mathias' answer here: http://lists.basho.com/pipermail/riak-users_lists.basho.com/2012-May/008342.html > > Dear team, > > FYI:we have a 4 quad core

issue on riak bulk loading---taking huge time---Can any one help me out with the same pl

2012-05-14 Thread Sangeetha.PattabiRaman2
Can any one help me out with the same pl...struck up with the same. Dear team, FYI:we have a 4 quad core intel processor on each server on 2 node cluster with more than 1 TB of storage I Ihave constructed the 2 node physical machine riak cluster with n_val 2 and my app.config ,vm.args are

Re: help with riak search

2012-04-02 Thread Wes James
Ah, OK - thanks! Yes - that worked -wes On Mon, Apr 2, 2012 at 2:35 PM, Daniel Reverri wrote: > From the Erlang console you have escape twice (not sure why): > search:search_doc(<<"searchable-dbooks">>, <<"notes:\\&">>). > > Thanks, > Dan > > -- > Daniel Reverri > Developer Advocate > Bash

Re: help with riak search

2012-04-02 Thread Daniel Reverri
>From the Erlang console you have escape twice (not sure why): search:search_doc(<<"searchable-dbooks">>, <<"notes:\\&">>). Thanks, Dan -- Daniel Reverri Developer Advocate Basho Technologies, Inc. d...@basho.com On Monday, April 2, 2012 at 1:29 PM, Wes James wrote: > On Mon, Apr 2, 2012 at

Re: help with riak search

2012-04-02 Thread Wes James
On Mon, Apr 2, 2012 at 1:45 PM, Daniel Reverri wrote: > > I was able to search for "&" by escaping the character: > search-cmd search wildcards "value:\&" > with the erlang command, I get an error: (riak@127.0.0.1)25> search:search_doc(<<"searchable-dbooks">>,<<"notes:\&">>). ** exception er

Re: help with riak search

2012-04-02 Thread Daniel Reverri
Hi Wes On Monday, April 2, 2012 at 10:05 AM, Wes James wrote: > Is there documentation to indicate what riak search supports in search > operations. The best available documentation is here: http://wiki.basho.com/Riak-Search.html > > I have been testing some searches and even looked at: >

  1   2   >