Tagged Questions

When coordinating updates from multiple database sessions, optimistic locking is a strategy that assumes all updates can complete without conflict. It does not hold locks on any records while the user is editing, but checks to see if any other edits have occurred when the user tries to commit the changes. If two sessions try to edit the same data, the second one to commit will be rejected and have to redo the change. Also see pessimistic locking.

learn more… | top users | synonyms

11
votes
5answers
996 views

Java Solutions for Distributed Transactions and/or Data Shared in Cluster

What are the best approaches to clustering/distributing a Java server application ? I'm looking for an approach that allows you to scale horizontally by adding more application servers, and more ...
9
votes
7answers
349 views

How to do concurrent modification testing for grails application

I'd like to run tests that simulate users modifying certain data at the same time for a grails application. Are there any plug-ins / tools / mechanisms I can use to do this efficiently? They don't ...
8
votes
1answer
153 views

How does one gracefully merge object graphs after NHibernate StaleObjectStateException?

We are trying to combine objects after a StaleObjectStateException has been thrown to save a merged copy. Here's our environmental situation: List item Multi-user system WPF Desktop application, ...
6
votes
3answers
688 views

How do I avoid a race condition in my Rails app?

I have a really simple Rails application that allows users to register their attendance on a set of courses. The ActiveRecord models are as follows: class Course < ActiveRecord::Base has_many ...
5
votes
2answers
133 views

MongoDB Document Operations are Atomic and Isolated, but Are They Consistent?

I'm in the process of porting my application from an App Engine Datastore to a MongoDB backend and have a question regarding the consistency of "document updates." I understand that the updates on ...
5
votes
3answers
1k views

Spring Optimistic Locking:How to retry transactional method till commit is successful

I use Spring 2.5 and Hibernate JPA implementation with Java and "container" managed Transactions. I have a "after user commit" method that updates data in background and need to be committed ...
4
votes
1answer
4k views

How to use the Hibernate optimistic locking version property on the front end?

Optimistic locking using the version attribute for an entity works fine and is easy to implement: <version property="VERSION" type="int" column="EX_VERSION" /> The entity has a property of ...
3
votes
2answers
691 views

Fluent NHibernate OptimisticLock.None() causes “The string 'none' is not a valid Boolean value.”

I'm using the following mapping: public class LoadMap : IAutoMappingOverride<Load> { public void Override(AutoMapping<Load> mapping) { mapping.HasMany(x => ...
3
votes
2answers
276 views

How should I handle persistence in a Java MUD? OptimisticLockException handling

I'm re-implementing a old BBS MUD game in Java with permission from the original developers. Currently I'm using Java EE 6 with EJB Session facades for the game logic and JPA for the persistence. A ...
3
votes
2answers
487 views

Can Hibernate's @Version consider changes in related entities?

I have 2 entities: Parent and Child in a one-to-many relationship. The Parent is versioned, i.e. has a @Version field. My goal is to synchronize changes to both Parent and Child entities on the ...
3
votes
2answers
1k views

Tips for Migrating from XPO to LINQ to SQL

I'm a long-time user of the DevExpress XPO library. It has many great features, but there are a few weaknesses: When saving an existing object, all properties are sent in an update query; changes ...
2
votes
1answer
69 views

JPA: Setting @JoinColumn(updatable = false) to avoid OptimisticLockException

Given the following the following two entities @Entity public class A { @Version protected int version; String basicPropertey; // getter and setter for basicProperty } @Entity public class ...
2
votes
1answer
102 views

Optimistic locking strategy with atomics in C++ and ordering

After reading up on c++0x's atomics and in combination with non locking queues I decided to have a go at playing with them. The idea was to write a single producer, multiple consumer queue with ...
2
votes
1answer
272 views

When to explicitly exclude Optimistic Locking (Hibernate)?

Under what circumstances would it be appropriate to explicitly exclude optimistic locking from a @OneToMany relationship via Hibernate? I have been reading a post on Hibernate which basically says ...
2
votes
1answer
374 views

Basic question about optimistic lock (Hibernate)

I am new to use "optimistic locking" mechanism - I am using hibernate (in Jboss) and Container Managed Transaction (CMT). I want to handle the scenario when, between my entity-read and entity-update ...
2
votes
1answer
372 views

NHibernate <timestamp> mapping for Oracle database causes StaleStateException

We have an NHibernate app that we are migrating from SQL Server to Oracle. Our optimistic concurrency is implemented via a <timestamp name="Version"> mapping element. The data type of the ...
2
votes
1answer
377 views

jdbctemplate and optimistic locking

In the project I'm in Hibernate and Spring jdbctemplate are mixed. I added optimistic locking. Hibernate works great with versioning but now I have to tansform all this jdbctemplate code to use ...
1
vote
0answers
32 views

Using ETag for optimistic locking in a Django REST application

I'm trying to select a REST framework for Django that will allow me to easily use ETags for optimistic locking. I'm planning on examining Django-pistons and the Django Rest Framework libraries, but ...
1
vote
0answers
32 views

How to use optional attributes in web service update messages (DTOs)?

BACKGROUND Assume you have a (SOAP) web service, BookService, managing books in a library. In the information model assume that the Book entity has the following attributes: id author publisher ...
1
vote
0answers
31 views

Is there a Web Service (WS) Standard for Optimistic Locking?

Is there a Web Service Standard (WS*) for Optimistic Locking / Optimistic Concurrency Control (OCC) designed for interoperability? There are a number of standards related to pessimistic concurrency ...
1
vote
2answers
69 views

How to code optimistic and pessimistic locking from java code

I know what optimistic and pessimistic locking is, but when you write a java code how do you do it? Suppose I am using Oracle with Java, do I have any methods in JDBC that will help me do that? How ...
1
vote
2answers
66 views

RavenDB UseOptimisticConcurrency in Config?

Is there a way to set optimistic concurrency to true in Raven.Server.exe.config? Or, can it somehow be applied at the database level? On RavenDB's site, I see a couple of mentions of setting ...
1
vote
1answer
64 views

Hibernate: Should I include the 'version' field to hashcode() and equals() methods

I know that when overriding hashcode() and equals() of my persistent entities I should not include ID and only include the meaningful properties that uniquely identify the object. But what about ...
1
vote
2answers
131 views

Is there an alternative to ISession.Merge() that doesn't throw when using optimistic locking?

I've been trying to use ISession.Merge() to keep coherence between two sessions, but it fails when the merged instance has a higher Version property than the one loaded in the session (with a ...
1
vote
0answers
59 views

Can I use optimistic locking of an object to guard its associations?

We're running into problems with a race condition in our rails app. Here's a bit of (simplified) code before I explain: class Message < ActiveRecord::Base belongs_to :question end class ...
1
vote
2answers
176 views

nHibernate and concurrency check

I want to achieve concurrency check using nHibernate 3 using UnitOfWork pattern. To be more precise: open new session session, load entity in a session, close session, give user some time ...
1
vote
2answers
311 views

simple design question about optimistic locking in spring/jpa/hibernate

I have an object GeneralKnowledgeTest and it contains a lot of statistics fields (ratingsCount, responsesCount, ratingStars ...) which are updated every time a user will take that test (takeTest() -> ...
1
vote
1answer
389 views

JPA optimistic lock version handling - version value should be carried onto client side or?

I'm wondering how to handle optimistic lock version property in entity class using JPA (toplink essentials) from server to client and vice versa. Here is the scenario. From browser user send ...
1
vote
3answers
230 views

Is it possible to column-level optimistic locking in JPA toplink?

I studied about optimistic locking in JPA, adding @Version annotation with version column in DB and how it is managed by EntityManager etc The doc says (in my own word) optimistic lock is effective ...
1
vote
1answer
616 views

How to overcome StaleObjectStateException in grails Service

I've introduced a TransactionService that I use in my controllers to execute optimistic transactions. It should try to execute a given transaction (= closure) roll it back if it fails and try it ...
1
vote
2answers
633 views

org.springframework.transaction.UnexpectedRollbackException for Null @Version column

I'm using Spring 3.0.4-RELEASE, JPA 2.0 with Hibernate as a provider, and JTA JOTM for transactions in my application. I've received the following error when calling entityManager.merge on my entity ...
1
vote
1answer
185 views

how to raise OptimisticLockException

Unable to catch optimistic lock exception. one way to raise OptimisticLockException is by using em.flush() try{ //some enitity em.flush() } catch(OptimisticLockException ole){} but i dont ...
1
vote
2answers
339 views

Server-side optimistic locking in a ReSTful app: handling asynchronous requests from the same client

I am working on a project that is in transition from proof-of-concept to something worthy of a pilot project. One of the key improvements for this phase of development is to move away from the current ...
1
vote
0answers
323 views

ActiveRecord::Base.connection.update(sql) sometimes returns incorrent number of affected rows

I have a production web site with the following environment: Rails 2.3.5 MySQL Server 5.1.33 Enterprise Ruby 1.8.6 (2008-08-11 patchlevel 287) [x86_64-linux] mysql gem 2.7 Old version of ...
1
vote
4answers
210 views

What happens if two people submit edits at once

This might be a stupid questions but I wanted to know what happens if two users edit some data at once and then both click submit at the same time, I assumed Rails handled requests one after the other ...
1
vote
2answers
1k views

NHibernate mapping with optimistic-lock=“version” and dynamic-update=“true” is generating invalid update statement

I have an entity "Group" with an assigned ID which is added to an aggregate in order to persist it. This causes an issue because NHibernate can't tell if it is new or existing. To remedy this issue, I ...
1
vote
1answer
104 views

NHibernate overwrite the concurrency in optimistic scenario

I have implemented optimistic locking for concurrency situations. I have used the version property in the mapping files to link to a integer. My aim is that if a user tried to save an out-of-date ...
1
vote
1answer
42 views

Defines JPA behavior for setting same value again?

I wonder, if there is any definition by JPA for the behavior, if you setting equals value for any property. I didn't find any words in the specification. I've tested with TopLink Essentials and ...
1
vote
0answers
421 views

Grails optimistic locking strange behaviour

I've been trying to make GORM throw an optimistic locking error in an integration test. It has been said before that it is not possible to test for concurrent update errors without resorting to ...
1
vote
1answer
3k views

Can I add a condition to CakePHP's update statement?

Since there doesn't seem to be any support for optimistic locking in CakePHP, I'm taking a stab at building a behaviour that implements it. After a little research into behaviours, I think I could run ...
1
vote
3answers
811 views

Why does activerecord optimistic locking work only once per row?

Somehow, I always get these on Fridays. My earlier question was regarding the same problem, but I can now narrow things down a bit: I've been playing with this all day, trying to make sense of it. ...
1
vote
2answers
614 views

Any support for optimistic locking in CakePHP?

I'm just starting out with CakePHP, and I can't find any support for implementing an optimistic locking scheme. The closest I could find was a comment on this CakePHP blog post saying that it wasn't ...
0
votes
0answers
35 views

OptimisticLockException - Sql Server - Handle

I am trying update a record in the database in one of the methods of GridViewControl. It is raising OptimisticLockException. In my database I have four date fields (dZadOpenDateTime, ...
0
votes
1answer
57 views

When not to use version no in Grails domain Class?

In my previous Grails project(high transaction volume), I had horrifying experience with Stale Object Exceptions with 1 to many and many to many relationships. I was basically persisting Facebook ...
0
votes
0answers
41 views

Grails performance test error : org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction

I'm preparing for performance tests and creating new test cases. So I was just testing one test case, running it on a server I can only access and I just got: org.hibernate.StaleObjectStateException: ...
0
votes
1answer
57 views

Using Hibernate Versioning in a middle class of a hierarchy

I want to use Hibernate Versioning in my application but I have a problem in a class hierarchy like this : C extends B and B extends A. I want to use version in Class B and I don’t need to use version ...
0
votes
0answers
26 views

HTTP 409 to browser on OptimisticLockingException in Spring+Hibernate

I have a part of an application that has greater chances of OptimisticLockingException. I checked the following links on handling it, JPA: pattern for handling OptimisticLockException Hibernate ...
0
votes
1answer
56 views

How to prevent StaleObjectStateException on Query.list()?

I use Hibernate optimistic locks in my software (via @Version annotation). It works quite well, but sometimes I get StaleObjectStateException while trying to merely retrieve some objects from ...
0
votes
0answers
107 views

Fluent Nhibernate Optimistick locking not working

In my application I have set the application to use the strategy to prevent 2 different conversations to work at the same data. But is not working, I don't know why. PROBLEM: 1) User1: Retrive ...
0
votes
0answers
51 views

Hibernate OptimisticLocking not working

I am using Hibernate 3.6.6 with Sping 3.0.4 After adding @org.hibernate.annotations.Entity(optimisticLock=OptimisticLockType.ALL, dynamicUpdate=true) to my bean and running following testcase ...

1 2