Riak Recap for February 6 - 7
Afternoon, Evening, Morning to All - For today's Recap: conferences, blog posts, new code, and more. Enjoy. Mark Community Manager Basho Technologies wiki.basho.com/Riak.html twitter.com/pharkmillups Riak Recap for February 6 - 7 == 1) Jared sent this to the list yesterday but it's worth including in the Recap again: Riak 1.1RC1 was just released. There's a lot of good stuff in this release, and we would love some people to take it for a spin before it's official. * All the details here ---> http://lists.basho.com/pipermail/riak-users_lists.basho.com/2012-February/007462.html 2) Basho is officially a sponsor of the Travis CI project. Travis is a distributed build system that you should all take a look at. * Travis Crowd Funding Page ---> https://love.travis-ci.org/ * Short blog post about why we donated ---> http://basho.com/blog/technical/2012/02/07/Basho-is-Proud-to-Sponsor-TravisCI/ 3) Sean Cribbs will be at the LOPSA NYC meetup on February 15 to talk about Riak. * Details here ---> http://www.lopsa-nyc.org/content/riak-distributed-replicated-fault-tolerant-key-value-database 4) Basho is sponsoring Devopsdays Austin in April. Let me know if you'll be in attendance. * Conf details here ---> http://devopsdays.org/events/2012-austin/ # Contributions 1) Paul Barry added some nice code to the Java client that provides a 'shutdown' method and makes it much more container friendly. Thanks, Paul! * Details here ---> https://github.com/basho/riak-java-client/pull/99 # Bugs 1) New * riak_kv 284: JS Map-only MapReduce returns partial results when some VMs are busy- https://github.com/basho/riak_kv/issues/284 ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
Re: Deepest monitoring in Riak
Hi Jose, Sorry for the late response on this... On Wed, Feb 1, 2012 at 9:31 AM, Jose Ignacio Gil Jaldo wrote: > Hi everyone, > > first of all, this is my first post in the mail list but I hope it won't > be the last. I like Riak a lot and it is making me start learning (and > loving) Erlang. > Welcome to the community. Glad you joined us. May your journey into Riak and Erlang by long, enriching, and only moderately frustrating. :) > > Does it exist something in Riak allowing to see which buckets are being > most frequently used, how many operations per second do they receive and > what type (get, put, delete, mapreduce) and so on. Is it possible with Riak > or some external tool to do it? I have seen the /stats url but even I find > it useful, it would be nice having something a bucket basis. > At this time there is nothing built into Riak that gives you this type of visibility. At some point down the line Riak Control [1] will have bucket browsing capabilities, but I can't make any promises about the specifics of this functionality. > > Of course, it is always possible to do that on a LB or similar, but it > would be nice to have integrated into Riak itself or with a tool as > transparent as possible. What do you think? > I do agree that it would great to have. I would start by adding more details around what you would to see in this feature to the feature request page [2]. Thanks. Mark [1] https://github.com/basho/riak_control [2] http://features.basho.com/home > > Thanks a lot, > José Ignacio Gil Jaldo > > ___ > riak-users mailing list > riak-users@lists.basho.com > http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com > > ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
Re: What does "...riak_core_sysmon_handler:handle_event:85 monitor long_gc..." mean?
Hi Gal, You are indeed right in thinking that this is not a show-stopper. It's essentially a warning that GC took a long time. Take a look at hte erlang docs for more info on the specifics of long_gc [1]. As far as preventing them, you have two options: use less memory, or increase the memory settings in your app.config to a point where Riak doesn't complain any more. Hope that helps. Mark [1] http://www.snookles.com/erlang-docs/R14B04//erts-5.8.5/doc/html/erlang.html#system_monitor-2 On Mon, Feb 6, 2012 at 3:17 AM, Gal Barnea wrote: > Hi guys > we are running a relatively big map reduce (covers around 20-30 millions > records) and I'm seeing a lot of these in the logs: > ... > 2012-02-06 11:14:57.631 [info] > <0.5703.3625>@riak_core_sysmon_handler:handle_event:85 monitor long_gc > <0.2086.3871> [{initial_call,{erlang,apply,2}},{almost_ > current_function,{gen,do_call,4}}] > [{timeout,253},{old_heap_block_size,0},{heap_block_size,59786060},{mbuf_size,0},{stack_size,17},{old_heap_size,0},{heap_si > ze,17553801}] > 2012-02-06 11:14:57.632 [info] > <0.5703.3625>@riak_core_sysmon_handler:handle_event:85 monitor large_heap > <0.2086.3871> [{initial_call,{erlang,apply,2}},{almo > st_current_function,{gen,do_call,4}}] > [{old_heap_block_size,0},{heap_block_size,59786060},{mbuf_size,0},{stack_size,17},{old_heap_size,0},{heap_size,17553801 > }] > 2012-02-06 11:15:10.995 [info] > <0.5703.3625>@riak_core_sysmon_handler:handle_event:85 monitor long_gc > <0.2086.3871> [{initial_call,{erlang,apply,2}},{almost_ > current_function,{gen,do_call,4}}] > [{timeout,240},{old_heap_block_size,0},{heap_block_size,59786060},{mbuf_size,0},{stack_size,17},{old_heap_size,0},{heap_si > ze,17479047}] > 2012-02-06 11:15:10.995 [info] > <0.5703.3625>@riak_core_sysmon_handler:handle_event:85 monitor large_heap > <0.2086.3871> [{initial_call,{erlang,apply,2}},{almo > st_current_function,{gen,do_call,4}}] > [{old_heap_block_size,0},{heap_block_size,59786060},{mbuf_size,0},{stack_size,17},{old_heap_size,0},{heap_size,17479047 > }] > > This is probably harmless being logged as INFO, however, seeing a lot of > these, I would be glad to understand why these are happening and what I can > do to prevent them? > > Thanks > Gal > > ___ > riak-users mailing list > riak-users@lists.basho.com > http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com > > ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
Re:A bout source compile error in freebsd 9.0
Hi Andrew, Thank your reply. I am sorry. I found I send empty email at last when i wait your reply. This my GMake. GNU Make 3.82 Built for amd64-portbld-freebsd9.0 Thank you Jason > -原始邮件- > 发件人: "Andrew Thompson" > 发送时间: 2012年2月8日 星期三 > 收件人: riak-users@lists.basho.com > 抄送: > 主题: Re: A bout source compile error in freebsd 9.0 > > On Wed, Feb 08, 2012 at 11:12:27AM +0800, 郎咸武 wrote: > > Hey riak-users, > > There is a compile error in the following. I using freebsd. Eriang version > > is R14B03 . Riak version is 1.0.2. > > Please give me some idea. Thank everyone. > > > I don't understand why this is failing, what is the version of gmake on > your machine? erlang_js should build fine on FreeBSD. > > Andrew > > ___ > riak-users mailing list > riak-users@lists.basho.com > http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com