The problem we try to solve looks like this.
- We have a table full of rows which represent cards. The purpose of reservation transaction is to assign a card to a client
- A card can not belong to many clients
- After some time (if it is not bought) a card has to be returned to the pool of available resurces
- Reservation can be done by many clients at the same time
- We use Oracle database for storing the data, so solution has to work at least on Oracle 11
Our solution is to assign a status to the card, and store it's reservation date. When reserving a card we do it using "select for update" statement. The query looks for available cards and for cards which were reserved long time ago.
However our query doesn't work as expected.
I have prepared a simplified situation to explain the problem.
We have a card_numbers table, full of data - all of the rows have non-null id numbers.
Now, let's try to lock some of them.
-- first, in session 1
set autocommit off;
select id from card_numbers
where id is not null
and rownum <= 1
for update skip locked;
We don't commit the transaction here, the row has to be locked.
-- later, in session 2
set autocommit off;
select id from card_numbers
where id is not null
and rownum <= 1
for update skip locked;
The expected behaviour is that in both sessions we get a single, different row which satisfies query conditions.
However it doesn't work that way. Depending on whether we use the "skip locked" part of the query or not - the behavious changes:
- without "skip locked" - second session is blocked - waiting for transaction commit or rollback in session one
- with "skip locked" - second query returns immediately empty result set
So, after this long introduction comes the question.
Is the kind of desired locking behaviour possible in Oracle? If yes, then what are we doing wrong? What would be the correct solution?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…