@Jean_Robert_Alves you have to set it to globally to READ_COMMITTED as isolation level for MySQL. Camunda doesn’t change any of the db configurations.
- 
The Isolation level’s can be set globally or session based on our requirements. 
- 
A change to global transaction characteristics requires the CONNECTION_ADMINorSUPERprivilege. Any session is free to change its session characteristics (even in the middle of a transaction), or the characteristics for its next transaction (prior to the start of that transaction).
- 
To set the global isolation level at server startup, use the --transaction-isolation=leveloption on the command line or in an option file. Values oflevelfor this option use dashes rather than spaces, so the permissible values areREAD-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ, orSERIALIZABLE.
- 
Similarly, to set the global transaction access mode at server startup, use the --transaction-read-onlyoption. The default isOFF(read/write mode) but the value can be set toONfor a mode of read only.
SET [GLOBAL | SESSION] TRANSACTION
    transaction_characteristic [, transaction_characteristic] ...
transaction_characteristic: {
    ISOLATION LEVEL level
  | access_mode
}
level: {
     REPEATABLE READ
   | READ COMMITTED
   | READ UNCOMMITTED
   | SERIALIZABLE
}
access_mode: {
     READ WRITE
   | READ ONLY
}
For camunda we need isolation level as ,
SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED;
Then run the below query:
SELECT @@GLOBAL.transaction_isolation, @@GLOBAL.transaction_read_only;