Inquire about mysql memory leak

You are viewing an old version of this question. View the current version here.

I'm using the following version of mySQL. $ mysql -V mysql Ver 15.1 Distrib 10.3.39-MariaDB, for Linux (x86_64) using readline 5.1

In the shell script set to deamon, one DB Query syntax is repeated infinitely every three seconds, and the memory of the shell script continues to grow. Script contains only one command.

/bin/mysql -h$DB_IP -u$USER_ID -p$USER_PW --port $DB_PORT -D $DB_NAME "select @@hostname" > /dev/null 2>&1

I think memory leak occurs, is there any memory leak related information or bug patch information in that version of mysql?

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.