Riak Recap for 8/25 - 8/26

2010-08-27 Thread Mark Phillips
Afternoon, Evening, Morning to all, Here is a great Recap to take you into the weekend. We have code snippets, an interview, a Riak job, Riak talks, and much more. Good weekend to all! Mark Community Manager Basho Technologies wiki.basho.com twitter.com/pharkmilllups Riak Recap for 8/25

Re: Cannot start riak

2010-08-27 Thread Dan Reverri
Can you also share your log/sasl-error.log file? Thanks, Dan Daniel Reverri Developer Advocate Basho Technologies, Inc. d...@basho.com On Fri, Aug 27, 2010 at 11:08 AM, Dan Reverri wrote: > Hi Carlo, > > Can you share your app.config and vm.args with us? Also, do you have any > applications r

Re: Cannot start riak

2010-08-27 Thread Dan Reverri
Hi Carlo, Can you share your app.config and vm.args with us? Also, do you have any applications running that might be binding to ports 8098 or 8099? Thanks, Dan Daniel Reverri Developer Advocate Basho Technologies, Inc. d...@basho.com On Fri, Aug 27, 2010 at 11:04 AM, Carlo Pires wrote: > Hi

Cannot start riak

2010-08-27 Thread Carlo Pires
Hi, I'trying to test riak on debian squeeze and get the error: r...@riak1:~/riak-0.12.0$ riak console Exec: /home/riak/riak-0.12.0/rel/riak/erts-5.8/bin/erlexec -boot /home/riak/riak-0.12.0/rel/riak/releases/0.12.0/riak -embedded -config /home/riak/riak-0.12.0/rel/riak/etc/app.config -args_

Re: Test Riak client

2010-08-27 Thread Sean Cribbs
> > I use native API myself. But is the difference between Protocol Buffers > format and Erlang's External Term format so huge that you can see it in real > world applications? I hardly believe so. The primary difference is that you don't need all of the extra node/process discovery stuff tha

Re: Test Riak client

2010-08-27 Thread Dmitry Vasiliev
27.08.2010 14:00, Dmitry Vasiliev пишет: 27.08.2010 13:29, russell.brown пишет: Have a look at http://gist.github.com/404645 from Cliif Moon for starting Riak for tests. Thank you! That looks exactly what I want. Ugh, it seems the recipe is little bit outdated. In my test setup Riak require

Re: Test Riak client

2010-08-27 Thread Dmitry Vasiliev
27.08.2010 13:29, russell.brown пишет: Have a look at http://gist.github.com/404645 from Cliif Moon for starting Riak for tests. Thank you! That looks exactly what I want. -- Dmitry Vasiliev http://hlabs.org http://twitter.com/hdima ___ riak-users

Re: Test Riak client

2010-08-27 Thread Dmitry Vasiliev
27.08.2010 12:52, Dmitry Demeshchuk пишет: On Fri, Aug 27, 2010 at 12:47 PM, Dmitry Vasiliev wrote: Hi all, I'm start to use Riak in one of my Erlang based projects and looking for a ways to automatic test my application with Riak. Is there an easy way to start/stop some lightweight Riak insta

Re: Test Riak client

2010-08-27 Thread russell.brown
Have a look at http://gist.github.com/404645 from Cliif Moon for starting Riak for tests.CheersRussellOn 27 Aug, 2010,at 09:47 AM, Dmitry Vasiliev wrote:Hi all, I'm start to use Riak in one of my Erlang based projects and looking for a ways to automatic test my application with Riak. Is there an

Re: Test Riak client

2010-08-27 Thread Dmitry Demeshchuk
There are 2 Riak API's for Erlang: native and protobuffs. Protocol Buffers API is better if you're going to connect to remote nodes as its data format is very compact. Native API is a bit more convenient for me so I prefer it if not working with remote nodes. As for tests, you can pre-create a ET

Test Riak client

2010-08-27 Thread Dmitry Vasiliev
Hi all, I'm start to use Riak in one of my Erlang based projects and looking for a ways to automatic test my application with Riak. Is there an easy way to start/stop some lightweight Riak instance (for example with ets backend) in tests or I need to emulate Riak's client API myself? -- Dmit