Tagged Questions

MySQL Proxy is a simple program that sits between the client and MySQL server that can monitor, analyze or transform their communication. It is used mainly for load balancing, failover and query analysis.

learn more… | top users | synonyms

5
votes
1answer
605 views

Anything similar to MySQL Proxy for PostgreSQL?

I am looking for something similar to MySQL Proxy. The purpose is to modify incoming queries on the server. I am not looking for alternative ways to achieve the same. My best guess at the moment is to ...
3
votes
0answers
290 views

admin-username error of proxy

I tried to install proxy on development machine and I got the following error. /etc/init.d/mysql-proxyd start Starting mysql-proxy: 2011-02-26 15:51:45: (critical) admin-plugin.c:569: ...
3
votes
2answers
501 views

How to trace MySql queries using MySql-Proxy?

I just downloaded the mysql-proxy and created this script lua (found in Mysql docs): function read_query(packet) if string.byte(packet) == proxy.COM_QUERY then print("QUERY: " .. ...
2
votes
0answers
32 views

How can i replace my queries with mysql-proxy or any possible way?

I have succesfully installed mysql-proxy and understood the way working and lua scripting. But I am not good at writing lua. So my problem is the software I use for web hosting keep creating mysql ...
2
votes
1answer
105 views

Mysql-Proxy Doesn't Failover (?)

This is the first time I am using mysql-proxy and I am experiencing the weird behavior I was wondering if the community has tackled it before. I have mysql-proxy (0.8.2) running on amazon linux (in ...
2
votes
1answer
462 views

mysql proxy r/w replication and temporary tables

I am doing master/slave replication on MySQL5.1 and r/w split with mysql proxy 0.8.x It works fine except with temporary tables. MySQL throws an error, that the temporary table is not existent. This ...
2
votes
1answer
387 views

Best implementation for MySQL replication with Rails 3?

We're looking at potentially setting up replication for our primary MySQL database, and while setting up the replication seems pretty straight-forward, the application implementation seems a bit ...
1
vote
1answer
102 views

MySql replication failover on Amazon Cloud

I have configured a MySql Replication with 1 Master 1 Standy and 1 Slave. Master and Standby are put on different availability zones on US East region and the Slave is on the US West region. Both ...
1
vote
0answers
130 views

MySQL Proxy with NodeJS

I am trying to create a simple program that create a proxy between a MySQL-based application and a MySQL server. Right now,my approach is to change the application to talk to MySQL at port 3065 and ...
1
vote
0answers
140 views

Is there a set of complete documentation for mysql-proxy lua scripting?

I am playing with scripting for mysql-proxy. What I am trying to accomplish is irrelevant. What I am finding, however, is that there appears to be elements of the lua interface that are ...
1
vote
2answers
291 views

Setting up multiple MySQL databases with scalability options

I need to set up a MySQL environment that will support adding many unique databases over time (thousands, actually). I assume that at some point I will need to start adding MySQL servers, and would ...
1
vote
2answers
3k views

MySQL failover using MySQL Proxy

I'm looking at implementing a failover mechanism for a MySQL database using MySQL Proxy (http://forge.mysql.com/wiki/MySQL_Proxy) My proposed setup is as follows: One active MySQL server and one ...
0
votes
1answer
33 views

How to execute a lua script from mysql-proxy

I am trying to execute a lua script from mysql proxy. I wrote a script called login.lua .I installed mysql-proxy successfully.I tried to invoke the command mysql-proxy ...
0
votes
0answers
88 views

MySQL Proxy with read/write splitting and Drupal

I've used MySQL Proxy with great success in the past for read/write splitting and thought it would be just as easy to set this up for a Drupal 6.x powered site as well. But apparently it isn't. For me ...
0
votes
1answer
93 views

mysql-proxy for a remote MySQL server

My program works with a remote MySQL server, and I want to create a local proxy server on my computer in order to make things faster (pool connections, cache queries etc.). I went by the ...
0
votes
0answers
19 views

What are the load balancing requirements on the database tier using MySQL?

Has anyone had success using Zeus or MySQL-proxy now that it is in 0.8 "mature" status? Are most folks using application layer filtering to send read requests to slave databases?
0
votes
3answers
124 views

Setting up database sharding - no cross-database queries

I'm developing a web application in which, for each client (a small-large organization), they do not (and should not) be able to query into other client's records. Keeping the data in a single ...
0
votes
2answers
428 views

Linking MySQL Workbench to my Remote Server

I've just downloaded MySQL Workbench. But I don't quite understand how to syn this with the databases on my remote server. Work bench asks for "hostname" so I provided the hostname of my remote ...
0
votes
0answers
46 views

mysql-proxy error

I try to install mysql-proxy at the end of the installation I do this and receive an error: shell>mysql-proxy 2011-06-15 16:46:13: [global] (critical) loading module ...
0
votes
0answers
94 views

Mysql Proxy - Switching DB Servers based on query

I am trying to get MySQL Proxy to connect to 2 machines, say Server A and Server B. If a query is querying a given schema, say X, it will go to Server B - otherwise, it will go to server A. From ...
0
votes
0answers
154 views

MySQL Proxy dying every few minutes

we're using MySQL proxy on a production site and during times of peak traffic (around 5k people all at the same time) MySQL Proxy dies with the following message: ...
0
votes
1answer
197 views

Expiring memcached using mysql proxy when an update occurs?

I have mysql Proxy running which takes a query, performs an md5 on it, and caches the result into a memcached DB. the problem occurs when an update happens in the rails app that would invalidate that ...