[infinispan-dev] DIST-SYNC, put(), a problem and a solution

Dan Berindei dan.berindei at gmail.com
Wed Aug 6 13:49:20 EDT 2014


On Wed, Aug 6, 2014 at 6:19 PM, Bela Ban <bban at redhat.com> wrote:

> Hey Dan,
>
> On 06/08/14 16:13, Dan Berindei wrote:
> > I could create the issue in JIRA, but I wouldn't make it high priority
> > because I think it have lots of corner cases with NBST and cause
> > headaches for the maintainers of state transfer ;)
>
> I do believe the put-while-holding-the-lock issue *is* a critical issue;
> anyone banging a cluster of Infinispan nodes with more than 1 thread
> will run into lock timeouts, with or without transactions. The only
> workaround for now is to use total order, but at the cost of reduced
> performance. However, once a system starts hitting the lock timeout
> issues, performance drops to a crawl, way slower than TO, and work
> starts to pile up, which compounds the problem.
>

I wouldn't call it critical because you can always increase the number of
threads. It won't be pretty, but it will work around the thread exhaustion
issue.



> I believe doing a sync RPC while holding the lock on a key is asking for
> trouble and is (IMO) an anti-pattern.
>

We also hold a lock on a key between the LockControlCommand and the
TxCompletionNotificationCommand in pessimistic-locking caches, and there's
at least one sync PrepareCommand RPC between them...

So I don't see it as an anti-pattern, the only problem is that we should be
able to do that without blocking internal threads in addition to the user
thread (which is how tx caches do it).


> Sorry if this has a negative impact on NBST, but should we not fix this
> because we don't want to risk a change to NBST ?
>

I'm not saying it will have a negative impact on NBST, I'm just saying I
don't want to start implementing an incomplete proposal for the basic flow
and leave the state transfer/topology change issues for "later". When
happens when a node leaves, when a backup owner is added, or when the
primary owner changes should be part of the initial discussion, not an
afterthought.

E.g. with your proposal, any updates in the replication queue on the
primary owner will be lost when that primary owner dies, even though we
told the user that we successfully updated the key. To quote from my first
email on this thread: "OTOH, if the primary owner dies, we have to ask a
backup, and we can lose the modifications not yet replicated by the
primary."

With Sanne's proposal, we wouldn't report to the user that we stored the
value until all the backups confirmed the update, so we wouldn't have that
problem. But I don't see how we could keep the sequence of versions
monotonous when the primary owner of the key changes without some extra
sync RPCs (also done while holding the key lock). IIRC TOA also needs some
sync RPCs to generate its sequence numbers.


> > Besides, I'm still not sure I understood your proposals properly, e.g.
> > whether they are meant only for non-tx caches or you want to change
> > something for tx caches as well...
>
> I think this can be used for both cases; however, I think either Sanne's
> solution of using seqnos *per key* and updating in the order of seqnos
> or using Pedro's total order impl are probably better solutions.
>
> I'm not pretending these solutions are final (e.g. Sanne's solution
> needs more thought when multiple keys are involved), but we should at
> least acknowledge the issue exists, create a JIRA to prioritize it and
> then start discussing solutions.
>
>
We've been discussing solutions without a JIRA just fine :)

My feeling so far is that the thread exhaustion problem would be better
served by porting TO to non-tx caches and/or changing non-tx locking to not
require a thread. I have created an issue for TO [1], but IMO the locking
rework [2] should be higher priority, as it can help both tx and non-tx
caches.

[1] https://issues.jboss.org/browse/ISPN-4610
[2] https://issues.jboss.org/browse/ISPN-2849


> >
> >
> > On Wed, Aug 6, 2014 at 1:02 PM, Bela Ban <bban at redhat.com
> > <mailto:bban at redhat.com>> wrote:
> >
> >     Seems like this discussion has died with the general agreement that
> this
> >     is broken and with a few proposals on how to fix it, but without any
> >     follow-up action items.
> >
> >     I think we (= someone from the ISPN team) need to create a JIRA,
> >     preferably blocking.
> >
> >     WDYT ?
> >
> >     If not, here's what our options are:
> >
> >     #1 I'll create a JIRA
> >
> >     #2 We'll hold the team meeting in Krasnojarsk, Russia
> >
> >     #3 There will be only vodka, no beers in #2
> >
> >     #4 Bela will join the ISPN team
> >
> >     Thoughts ?
>
>
> --
> Bela Ban, JGroups lead (http://www.jgroups.org)
> _______________________________________________
> infinispan-dev mailing list
> infinispan-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/infinispan-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20140806/213201e6/attachment.html 


More information about the infinispan-dev mailing list