douyuan9512 2016-08-02 02:07
浏览 75
已采纳

查询当前负载的Percona群集节点

I'm attempting to put together a mysql load balancer with a mockup php like script. Problem is i've been looking about countless variables in the database and cant find a variable of the current load on that server so I can pick the faster server to give the client.

  • 写回答

1条回答 默认 最新

  • drba1172 2016-08-02 03:18
    关注

    Mysql is not aware of the server resource use, so what to do is to use for example Cacti, get the data from there and use that in your loadbalancing app.

    Another way is just to use round robin and assume the systems will be pretty normally distributed over time.

    Third option is to auto scale the number of slave servers using for example Kubernetes with NFS & ZFS for central storage and making snapshots of the database available on the slave nodes (for a read only solution

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?