Skip to content
Advertisement

I get many select @@session.tx_read_only, would one do the same?

I am using Python to insert value in a database through an API written by someone else in Java. The insertion goes quite slow, and when I look at the mysql log of the transcactions for one insert I see that it often does select @@session.tx_read_only:

JavaScript

From http://docs.oracle.com/cd/E17952_01/refman-5.6-en/server-system-variables.html#sysvar_tx_read_only I guess it’s being used so that there is not writing and reading at the same time, but I don’t see it being turned off again. So can it be used only once and have the same effect, like this:

JavaScript

And if that could work, where should I look for changing this

Advertisement

Answer

This is because the MySQL JDBC driver has a default useSessionStatus value of false. Each time the driver needs to check the isReadOnly status of the target database, it will send a select @@session.tx_read_only to the server. Setting useSessionStatus as true will use the connection object’s local state.

The simplest way to remove this query is to append &useLocalSessionState=true to the JDBC connection string.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement