Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clarification of Java/SQLite batch and auto-commit

Tags:

java

sql

sqlite

I copied the following example from an SQLite Java library website:

PreparedStatement prep =
         conn.prepareStatement("insert into people values (?, ?);");
prep.setString(1, "Gandhi");
prep.setString(2, "politics");
prep.addBatch();
prep.setString(1, "Turing");
prep.setString(2, "computers");
prep.addBatch();
conn.setAutoCommit(false);
prep.executeBatch();
conn.setAutoCommit(true);

I'm struggling to understand the significance of toggling autoCommit() either side of executeBatch(). Does it merely prevent a commit being made for each individual batch operation? Thus a single 'bulk' commit is will be made by setAutoCommit(true).

like image 626
c24w Avatar asked Mar 18 '12 00:03

c24w


People also ask

Does SQLite auto-commit?

The underlying sqlite3 library operates in autocommit mode by default, but the Python sqlite3 module by default does not. autocommit mode means that statements that modify the database take effect immediately.

What is auto-commit in Java?

By default, JDBC uses an operation mode called auto-commit. This means that every update to the database is immediately made permanent. Any situation where a logical unit of work requires more than one update to the database cannot be done safely in auto-commit mode.

What does set auto-commit do?

Description. SET AUTOCOMMIT sets the autocommit behavior of the current database session. By default, embedded SQL programs are not in autocommit mode, so COMMIT needs to be issued explicitly when desired. This command can change the session to autocommit mode, where each individual statement is committed implicitly.

How can you avoid auto-commit mode in JDBC?

To enable manual- transaction support instead of the auto-commit mode that the JDBC driver uses by default, use the Connection object's setAutoCommit() method. If you pass a boolean false to setAutoCommit( ), you turn off auto-commit.


2 Answers

The auto commit is disabled before batch because enabling auto commit will commit (i.e. wait for sync to happen which means it will wait the data is actually written to persistent storage like hard disk) after every row that is inserted.

If auto commit is false, it will not wait for sync.

The difference in waiting for sync and not waiting is the guaranty that whether data is actually to hard disk or it is in the buffer (that could be buffered IO or buffer of hard disk).

In short, disabling auto commit gives you performance boost. And I think by default auto commit is enabled.

Another way of optimization

If you want to have auto commit ON and still need performance boost just try to start as transaction before the batch operation and commit the transaction after. This way sqlite wont auto commit after every insert and it will give good performance boost.

EDIT:

When you starting a transaction you are only disabling auto commit for that transaction and it will be again 'on' once transaction is over. What auto commit helps is when you are inserting/updating rows separately (not as batch), then you dont have to start a transaction explicitly for every insert/update. And regarding setting auto-commit to true, after the fact, does not do call for commit. If you make auto-commit true and whatever you have already inserted/updated wont have any effect and won't have same guaranties as auto-commit true prior to making those insert/update.

Here's some information about speeding up Sqlite INSERTs.

like image 166
havexz Avatar answered Sep 30 '22 13:09

havexz


There has been some wrong information shared in the answers and comments here so I'd thought I'd add an answer.

  1. FYI, SQLite does not support auto-commit directly. Calling setAutoCommit(false) on a SQLite JDBC connection actually starts a transaction with the Xerial and Zentus drivers. See this SO question: How to disable autocommit in sqlite4java?

  2. I'm almost positive that setting auto-commit back to true will not do a commit on the database connection. The next statement that finishes will persist any outstanding changes but you have to do a conn.commit(); to actually commit the batch operations.

  3. Starting a transaction basically is the same as turning off auto-commit so it is improper to imply that you can leave auto-commit on while inside of a transaction.

like image 30
Gray Avatar answered Sep 30 '22 14:09

Gray