Replies: 2 comments
-
I've also encountered this issue, and these are my slow SQL logs from my MySQL database.
My service runs on a cluster, currently consisting of 4 nodes. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Correct me if I'm wrong (I'm far from MySQL expert), but shouldn't this query take the time it needs to obtain the lock? So if something else is locking the row then the query will take longer until lock is acquired. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
0
Hi!
I'm using Quartz for jobs scheduling, in clustering mode, the db what I use is MySQL Now after period of time, I discover a problem in my environment, that CPU performance decrease on the db server, caused by excessive call of quartz query with command
SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = ? AND LOCK_NAME = ? FOR UPDATE
My Quartz config:
Also, I tried to use batch mode, but there is not big improvements.
Beta Was this translation helpful? Give feedback.
All reactions