Re: [ANN] Engraver: a tool for managing Onyx clusters

2016-03-21 Thread Mike Drogalis
Thanks! More to come real soon! On Mon, Mar 21, 2016 at 5:34 PM, Rangel Spasov wrote: > I'm continuously impressed by the work you guys are doing! Keep it up! > > > On Monday, March 21, 2016 at 7:27:49 AM UTC-7, Michael Drogalis wrote: >> >> Hi everyone, >> >> I'm happy to announce the release o

Re: Where can one find low hanging fruit for open source contribution?

2014-09-29 Thread Mike Drogalis
Please do. :) On Mon, Sep 29, 2014 at 5:57 PM, Marcus Blankenship wrote: > Cool, thanks Michael. Do you mind if I add it to the Clojure Learning > Resources repo page? > > https://github.com/marcuscreo/clojure-learning-resources > > > On Sep 29, 2014, at 5:54 PM, Michael Drogalis > wrote: > >

Re: [ANN] Onyx: Distributed data processing in Clojure

2014-09-20 Thread Mike Drogalis
Daniel: Haha, yes! Shame that I tried to be smooth in open sourcing it, and managed to botch it in the worst possible manner. Rangel: I can't speak to ZeroMQ, but I chose HornetQ because of its performance, support for transactions, and support for clustering. That being said, everything that touc

Re: In-order triggering of watches on mutable state

2013-08-01 Thread Mike Drogalis
; Something to think about though is that you probably should be dealing > with commutative operations. So instead of sending "set bank account to X" > to refs/agents, instead send "increment bank account by 10". In this way > many of these race-conditions no longer e

Re: In-order triggering of watches on mutable state

2013-08-01 Thread Mike Drogalis
, and successive sends to the same > agent from a single thread are run by the agent in the same order the > thread sent them. > > > On Wed, Jul 31, 2013 at 1:12 PM, Mike Drogalis wrote: > >> Good reasoning; that makes a lot of sense -- even if intuitively it >> doesn'

Re: In-order triggering of watches on mutable state

2013-07-31 Thread Mike Drogalis
> Since watchers are notified outside of a ref transaction deadlocking is > impossible. Inside a transaction you'd have a instant deadlock. > > Timothy Baldridge > > > On Wed, Jul 31, 2013 at 10:47 AM, Mike Drogalis wrote: > >> I'll play around with agents for t

Re: In-order triggering of watches on mutable state

2013-07-31 Thread Mike Drogalis
refs. > > Timothy Baldridge > > > On Wed, Jul 31, 2013 at 10:08 AM, Mike Drogalis wrote: > >> Thanks for the link. :) I understand that the behavior I'm seeing is >> correct. Any idea how to achieve the desired behavior, though? >> >> >

Re: In-order triggering of watches on mutable state

2013-07-31 Thread Mike Drogalis
Thanks for the link. :) I understand that the behavior I'm seeing is correct. Any idea how to achieve the desired behavior, though? On Wed, Jul 31, 2013 at 12:06 PM, Timothy Baldridge wrote: > The answer is here: > > > https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/LockingTr