Re: zookeeper-965: multi update command

2011-04-21 Thread Marshall McMullen
So this has helped me identify a hole in my current implementation. I need to create a MultiTxn.java to exist alongside CreateTxn.java, DeleteTxn.java, etc. These are all generated somehow and I'm not seeing how that part works. Is this documented somewhere so I can auto generate a new MultiTxn.ja

Re: zookeeper-965: multi update command

2011-04-21 Thread Marshall McMullen
Mahadev, Thanks for the reply, I appreciate it. This information is super helpful. Yes, the multi is stored in one txn. Great suggestion regarding jira... I'll summarize this email chain on jira later today. Thanks, Marshall - Original Message - > Marshall, > I am assuming that the n

Re: zookeeper-965: multi update command

2011-04-21 Thread Mahadev Konar
Marshall, I am assuming that the new multi update is actually a single txn. What you need to do next it make sure you take a look at all the processors. Sync is one where this new txn will need to be logged and then Final is one where the Datatree needs to be updated to reflect all the updates.