We have a problem with database derby. Sometimes operation of writing takes many time. Is possible that many operations of reading blocking writing? Thanks.
|
Reads require a shared lock. Writes (updates) require an exclusive lock. To get an exclusive lock, a transaction has to wait for shared locks to be released. So a reader can block a writer.
Also see Derby's Type and Scope of Locks. You might be able to reduce the impact by changing the isolation level of one or more transactions. Derby's default is Another way to reduce readers blocking writers is to make the readers run faster. Tune your queries by reading the query execution plan, by using both single- and multi-column indexes wisely, and by periodically rebuilding the indexes to reduce fragmentation. |
||||
|
|