MYSQL 8 -Performance Optimization

Gps man7 months ago

How helpful it is to make below changes in mysql to increase the performance of traccar

max_heap_table_size -- 128MB
tmp_table_size -- 128MB
SET FOREIGN_KEY_CHECKS = 0;
SET UNIQUE_CHECKS = 0;
SET AUTOCOMMIT = 0;

Track-trace7 months ago
Gps man7 months ago

Thanks, but above parameters are not there. So was just wondering if we change implement above mysql suggestions will it improve traccar performance.

Anton Tananaev7 months ago

The last three would probably be a very bad idea.

Not sure about the first two. Don't know what they do.