Hi Dylan,
If you want to bypass all the user verification, this means that proxysql doesn't know how to connect to the backends (doesn't have any credentials). That has a lot of consequences:
* read/write split is not possible
* query routing (in general) is not possible
* query retry is not possible
* backend failures are not transparent to the client: if a backend dies, proxysql cannot connect to another backend
* multiplexing is not possible
In other words, you will lose a lot of functionalities provided by proxysql, to the point that may make more sense to use haproxy (a forward proxy) instead of proxysql (a reverse proxy).
Does this explanation make sense?
Thanks,
René