[Release] MySQL Async Library - 3.3.2

You are not using mysql-async 3.0.7, it would tell you what is wrong. :wink:

use mysql_connection_string to set a proper connection string, e.g. like this:

set mysql_connection_string "addr=localhost;pwd=;database=essentialmode;uid=root"

[MySQL] [Slow Query Warning] [EasyAdmin-MySQL] [74ms] CREATE TABLE IF NOT EXISTS
ea_bans( banid int(11) NOT NULL UNIQUE AUTO_INCREMENT, expire double NOT
NULL DEFAULT ā€˜10444633200ā€™, identifier text NOT NULL, steam text NOT NULL, reason text NOT NULL, PRIMARY KEY(banid))
[MySQL] [Slow Query Warning] [esx_boatshop] [89ms] SELECT * FROM boat_categories

[MySQL] [Slow Query Warning] [esx_vehicleshop] [82ms] SELECT * FROM vehicle_cate
gories
[MySQL] [Slow Query Warning] [esx_addonaccount] [88ms] SELECT * FROM addon_accou
nt
[MySQL] [Slow Query Warning] [esx_eden_boatgarage] [105ms] UPDATE owned_boats SE
T state=true WHERE state=false
[MySQL] [Slow Query Warning] [es_extended] [85ms] SELECT * FROM items
[MySQL] [Slow Query Warning] [esx_addoninventory] [91ms] SELECT * FROM items
[MySQL] [Slow Query Warning] [esx_eden_aircraftgarage] [143ms] UPDATE owned_airc
rafts SET state=true WHERE state=false
[MySQL] [Slow Query Warning] [esx_datastore] [90ms] SELECT * FROM datastore
[MySQL] [Slow Query Warning] [esx_shops] [90ms] SELECT * FROM items
[MySQL] [Slow Query Warning] [esx_aircraftshop] [87ms] SELECT * FROM aircraft_ca
tegories
[MySQL] [Slow Query Warning] [esx_society] [93ms] SELECT * FROM jobs
[MySQL] [Slow Query Warning] [esx_eden_garage] [132ms] UPDATE owned_vehicles SET
state=true WHERE state=false
[MySQL] [Slow Query Warning] [statsonline] [147ms] UPDATE users SET online = 0
WHERE online = 1
hitch warning: frame time of 1180 milliseconds
AntiCheese (Anticheat) is up to date!
EasyAdmin (EasyAdmin) is up to date!

##############

DiscordBot

Current Version: 1.5.2

Newest Version: 1.5.2

Up to date!

##############

All users have been set to offline
[MySQL] [Slow Query Warning] [EasyAdmin-MySQL] [77ms] SELECT * FROM ea_bans
retrieved banlist
[MySQL] [Slow Query Warning] [esx_aircraftshop] [60ms] SELECT * FROM aircrafts
[MySQL] [Slow Query Warning] [esx_datastore] [68ms] SELECT * FROM datastore_data
WHERE name = ā€˜user_earsā€™
[MySQL] [Slow Query Warning] [esx_society] [77ms] SELECT * FROM job_grades
[MySQL] [Slow Query Warning] [esx_boatshop] [78ms] SELECT * FROM boats

You can ignore most of the warnings on startup. But once users join the server, there should be no slow queries.

Up to the first 10 queries can be slower. Because the pool is building.

SELECT *

without a proper where is usually slow.

Also I do not feel like indexing your entire database.

I need to adjust the search to find the fastest when there are many players online in the server.

Update 3.0.8

  • Fixes mysql-async not parsing the BIT column, which I think only esx_ambulancejob uses.

I have a problem when there are more players. Server not responding.

How do I change from a SELECT * to a quick query?

Ask the resource running the queries to improve their resources.

Would you recommend me to switch from using * to specified From?

Started resource vVoice
Started resource wastedscreen
Started resource Weaponry
Started resource welcome
Started resource wnc
Started map first_spawn
Started resource first_spawn
Started resource synn-loadscreen
Started resource NativeUI
Started resource EasyAdmin
Started resource EasyAdmin-MySQL
Couldnā€™t find resource scrambler-vac.
Authenticating server license keyā€¦
Server license key authentication succeeded.cfx> Welcome!
Sending heartbeat to live-internal.fivem.net:30110

Current version: 5.0.3
Updater version: 5.0.3

Everything is fine!

executed table query
[MySQL] [Slow Query Warning] [esx_eden_aircraftgarage] [128ms] UPDATE owned_airc
rafts SET state=true WHERE state=false
[MySQL] [Slow Query Warning] [es_extended] [90ms] SELECT * FROM items
[MySQL] [Slow Query Warning] [EasyAdmin-MySQL] [112ms] CREATE TABLE IF NOT EXIST
S ea_bans( banid int(11) NOT NULL UNIQUE AUTO_INCREMENT, expire double NOT
NULL DEFAULT ā€˜10444633200ā€™, identifier text NOT NULL, steam text NOT NULL,
reason text NOT NULL, PRIMARY KEY(banid))
[MySQL] [Slow Query Warning] [esx_eden_boatgarage] [128ms] UPDATE owned_boats SE
T state=true WHERE state=false
[MySQL] [Slow Query Warning] [esx_vehicleshop] [104ms] SELECT * FROM vehicle_cat
egories
[MySQL] [Slow Query Warning] [esx_addonaccount] [110ms] SELECT * FROM addon_acco
unt
[MySQL] [Slow Query Warning] [esx_addoninventory] [98ms] SELECT * FROM items
[MySQL] [Slow Query Warning] [esx_datastore] [96ms] SELECT * FROM datastore
[MySQL] [Slow Query Warning] [esx_boatshop] [129ms] SELECT * FROM boat_categorie
s
[MySQL] [Slow Query Warning] [statsonline] [145ms] UPDATE users SET online = 0
WHERE online = 1
[MySQL] [Slow Query Warning] [esx_shops] [97ms] SELECT * FROM items
[MySQL] [Slow Query Warning] [esx_society] [98ms] SELECT * FROM jobs
[MySQL] [Slow Query Warning] [esx_whitelis] [95ms] SELECT * FROM whitelist
[MySQL] [Slow Query Warning] [esx_aircraftshop] [100ms] SELECT * FROM aircraft_c
ategories
[MySQL] [Slow Query Warning] [esx_eden_garage] [167ms] UPDATE owned_vehicles SET
state=true WHERE state=false
hitch warning: frame time of 1295 milliseconds
EasyAdmin (EasyAdmin) is up to date!
All users have been set to offline
retrieved banlist
[MySQL] [Slow Query Warning] [esx_addoninventory] [55ms] SELECT * FROM addon_inv
entory
[MySQL] [Slow Query Warning] [esx_addonaccount] [63ms] SELECT * FROM addon_accou
nt_data WHERE account_name = ā€˜society_ambulanceā€™
[MySQL] [Slow Query Warning] [esx_datastore] [60ms] SELECT * FROM datastore_data
WHERE name = ā€˜user_earsā€™
[MySQL] [Slow Query Warning] [esx_boatshop] [63ms] SELECT * FROM boats
[MySQL] [Slow Query Warning] [esx_aircraftshop] [64ms] SELECT * FROM aircrafts
[MySQL] [Slow Query Warning] [esx_society] [69ms] SELECT * FROM job_grades
Sending heartbeat to live-internal.fivem.net:30110
retrieved banlist
Sending heartbeat to live-internal.fivem.net:30110
Sending heartbeat to live-internal.fivem.net:30110
retrieved banlist
Sending heartbeat to live-internal.fivem.net:30110

No because the issue is that they select the entire table at once. Kinda fails mysql as a storage solution.

haha thanks for the fix

I have to check the problem caused by my server. Not responding after several hours. Would you recommend me that the problem was not caused by mysql.

mysql-async 3.0.x is pretty stable. If the issue is database related, it is usually because of badly written queries or badly optimizied tables.

Refer to

to find out what is causing hitches, and optimizing your database structure.

Hey, Iā€™m having an issue with this resource, Iā€™ve checked the line number 20 in server.lua and as far as I can see it, the code there is correct, so I donā€™t know whatā€™s happening, could someone help?

imagem

Is this in your __resource.lua

'@mysql-async/lib/MySQL.lua'

loaded as a server script?

no is not sir, thanks.

I get BUFFER SHORTAGE with Mysql-async 3.0.8 but 3.0.7 works perfectly fine for my server. Anyone else with the same issue? I can give more details if anyone needs them.
EDIT: So it seems that that it was bad caches, I cleared the one for mysql-async and its working all good now.

I have a problem when I use it for a while. The server hangs chat. The chat is not responding. Check that cmd can not print anything.


I will encounter problems when more than 10 players, but if I use 2.1.2, I do not experience a problem, but I have encountered a delayed mysql response.

Same thing is happening on my serverā€¦

After a while weā€™re not able to write in chat, take service, eat, drink etc
Thereā€™s no error in server console or in F8 console

Odd, how about providing specifics? Maybe finding out what is causing the hang?

It is not happening for me. I run a similar but different mysql implementation all day.