I manage a kubernetes cluster where I just recently added a ProxySQL to handle the query routing between the Master and Read-Replica. In the beginning it seemed to work well but after a few days it crashes when it recieves high traffic. Causing more…
ENVIRONMENT:
MariaDB Ver 15.1 Distrib 10.5.9-MariaDB
ProxySQL Maxscale
Debian 10
I have master(A)>slave(B) replication. Replication is controlled by Maxsale with autofailover. If there is no Internet on my master(A), then the master switches to…
TLDR; Proxysql isn't sending any data to or replicas. The master works just fine, and the replicas are all caught up, but they aren't serving traffic.
Overview: The main issue is that no traffic is going to the replicas:
We have 4 mysql clusters.…
I just solved my problem, thanks for your help!
I'm a developer who wants to connect to the aurora serverless (mysql) through the ec2 instance using ProxySQL.
The ec2 instance is running on Amazon Linux 2.
I tried to connect from my computer using…
We have been reviewing different softwares to load-balancing our spring boot application without change our application, looks like this is the best solution, no single line of code change needed, just connect to the proxysql container instead of…
In proxysql we have the query rules for going to Backend DB servers ie Master (Write/Read) and Secondary(Read) but in case as secondary gets down then queries will start failing but how can we manage it from proxysql if secondary is down then that…
I am trying to setup a Mariadb replicated environment to scale a Prestashop e-commerce application on multiple DB servers.
My setup :
1 x Mariadb 10.4 Master ,
2 x Mariadb 10.4 Slaves (read-only),
1 x ProxySQL Loadbalancer
I have setup the…
I have configured Proxysql with master slave.
I have only one slave configured and on. Instead of happening update,insert on master, It is happening on slave server. My proxysql server and slave server are same.
The query rules I have given is…
Frequent Access denied coming for database user connecting through proxysql.
Here is my environment:
Azure ubunti 18.4 instance with three mysql 8.018 version of master slave
xxx.xxx.xxx.73 (mysql slave)
xxx.xxx.xxx.75 (mysql master )
…
Using proxysql 2.0.8 (docker severalnines/proxysql:2.0.8) and I was struggling to configure the SSL for backend servers (hosted as managed cloud instances).
At the end - it works while issueing following SQL statements in the admin interface:
UPDATE…
I am trying to connect to ProxySQL from PHP with mysqlnd using the local socket, but I get
"No such file or directory"
, as the socket would not exist. The same code can connect to the mysql socket with no problem.
Basically I am reproducing what…
It's regarding this instruction from AWS.
https://aws.amazon.com/blogs/database/how-to-use-proxysql-with-open-source-platforms-to-split-sql-reads-and-writes-on-amazon-aurora-clusters/
I am not sure if there is an issue with hostgroup_id. When I…
I am using the mysql package to connect to ProxySQL that is set-up to connect to a MySQL database. From command line, the following works:
mysql -u demo1 -P6033 --database=database -p
However, this does not work.
var connection =…
We have an application that issues a write to ProxySQL, followed by an immediate read that might be affected by the write. Behind ProxySQL are four MySQL servers - one writer and three readers that replicate from the writer.
Now, ProxySQL is able…
I'm trying to setup a web app in Google App Engine standard environment using Flask and MySQL.
I know Google App Engine is capable of scaling it's instance dynamically based on the performance needed but I'm unsure how I can do this for my MySQL…