ApeCloud MySQL Proxy
Before you start
Install KubeBlocks.
You can run
kbcli playground init
to install a k3d cluster and KubeBlocks. For details, refer to Try KubeBlocks on your laptop or Try KubeBlocks on cloud.kbcli playground init
# Use --version to specify a version
kbcli playground init --version='x.x.x'Or if you already have a Kubernetes cluster, you can choose install KubeBlocks by Helm or kbcli.
Prepare an ApeCloud MySQL RaftGroup named
mycluster
for demonstrating how to enable the proxy function for an existing cluster. Refer to Create a MySQL cluster for details.
Create a Proxy Cluster
- kbcli
- Helm
It is recommended to use kbcli to create an ApeCloud MySQL Proxy Cluster.
kbcli cluster create mysql myproxy --mode raftGroup --availability-policy none --proxy-enabled true
Add the KubeBlocks repository.
helm repo add kubeblocks https://apecloud.github.io/helm-charts
View the repository list to verify whether the KubeBlocks repository is added successfully.
helm repo list
Run the update command to make sure you have added the latest version.
helm repo update
View all versions of ApeCloud MySQL Proxy.
helm search repo kubeblocks/apecloud-mysql --devel --versions
(Optional) If you disable the
apecloud-mysql
add-on when installing KuebBlocks, run the command below to specify a version and install the cluster definition of ApeCloud MySQL. Skip this step if you install KubeBlocks with the default settings.helm install myproxy kubeblocks/apecloud-mysql --version=v0.6.0
Create an ApeCloud MySQL Proxy Cluster.
helm install myproxy kubeblocks/apecloud-mysql-cluster --version=v0.6.0 --set mode=raftGroup,proxyEnabled=true
If you only have one node for deploying a RaftGroup, set the availability-policy
as none
when creating a RaftGroup.
helm install myproxy kubeblocks/apecloud-mysql-cluster --version=v0.6.0 --set mode=raftGroup,proxyEnabled=true --set extra.availabilityPolicy=none
Enable Proxy dynamically
As its name suggests, ApeCloud MySQL Proxy in nature is a database proxy. An ApeCloud MySQL RaftGroup Cluster can be switched to an ApeCloud MySQL Proxy Cluster by setting proxyEnabled=true
.
- kbcli
- kubectl
Coming soon...
helm upgrade mycluster kubeblocks/apecloud-mysql-cluster --set mode=raftGroup,proxyEnabled=true
Connect Proxy Cluster
ApeCloud MySQL Proxy is routed through the vtgate
component, and the way the MySQL Server accesses vtgate
is similar to the way of accessing mysqld
. The external SQL access address provided by ApeCloud MySQL Proxy is the vtgate
address and port. The vtgate
address created by KubeBlocks by default is myproxy-cluster-vtgate-headless
, and the port number is 15306
. You can visit ApeCloud MySQL Proxy through the MySQL Server in any pod under the same namespace as ApeCloud MySQL Proxy.
Connect Proxy Cluster by VTGate
- kbcli
- port-forward
Run the command below to connect to the Proxy Cluster.
kbcli cluster connect myproxy --component vtgate
Expose the port of VTGate to the localhost so that the localhost can access the Proxy.
kubectl port-forward svc/vt-vtgate-headless 15306:15306
Connect to the cluster.
mysql -h 127.0.0.1 -P 15306
Connect Proxy Cluster by MySQL Server
- kbcli
- port-forward
Run the command below to connect to the MySQL Server.
kbcli cluster connect myproxy
Expose the port of the MySQL Server to the localhost so that the localhost can access the MySQL Server.
kubectl port-forward svc/vt-mysql 3306:3306
Connect to the cluster.
mysql -h 127.0.0.1 -P 3306
If you need to test the failover of MySQL, you need to delete the Pod first and continue to port-forward the port, and you can also write a shell script. Here are examples.
For VTGate,
while true; do date; kubectl port-forward svc/vt-vtgate-headless 15306:15306; sleep 0.5; done
For the MySQL Server,
while true; do date; kubectl port-forward svc/vt-mysql 3306:3306; sleep 0.5; done
Configure Proxy Cluster parameters
VTGate, VTConsensus, and VTTablet support parameter configuration. You can configure VTGate and VTConsensus by using --component
to specify a component and configure VTTablet by using --component=mysql --config-specs=vttablet-config
to specify both a component and a configuration file template since VTTablet is the sidecar of the MySQL component.
View parameter details
View the details of the current configuration file.
# vtgate
kbcli cluster describe-config myproxy --component vtgate --show-detai
# vtcontroller
kbcli cluster describe-config myproxy --component vtcontroller --show-detail
# vttablet
kbcli cluster describe-config myproxy --component mysql --show-detail --config-specs vttablet-configView the parameter descriptions.
# vtgate
kbcli cluster explain-config myproxy --component vtgate
# vttablet
kbcli cluster explain-config myproxy --component mysql --config-specs=vttablet-configView the definition of a specified parameter.
kbcli cluster explain-config myproxy --component vtgate --param=healthcheck_timeout
Reconfigure parameters
View the current values in the MySQL Server.
kbcli cluster connect myproxy --component=vtgate
mysql> show variables like '%healthcheck_timeout%';
mysql> show variables like '%health_check_interval%';
Configure the
healthcheck_timeout
for VTGate and thehealth_check_interval
for VTTablet.You can use
--set
flag or edit the parameter configuration file to edit values.By using
--set
flag# vtgate
kbcli cluster configure myproxy --component vtgate --set=healthcheck_timeout=2s
# vttablet
kbcli cluster configure myproxy --set=health_check_interval=4s --component=mysql --config-spec=vttablet-configBy editing the parameter configuration file
kbcli cluster edit-config myproxy --component vtgate
noteAfter the
vtgate
parameter values configuration command is executed, a new vtgate Pod is started and the old vtgate Pod is terminated. You can run the command below to monitor whether the old Pod is terminated.kubectl get pod <vtgate-pod-name> -w
Use the output command to view the configuration status. For example,
kbcli cluster describe-ops myproxy -reconfiguring-lth8d -n default
noteFor more information about parameter configuration, refer to Configuration.
Log
You can view the log files of components, Pods, and containers by both kbcli and kubectl.
- kbcli
- kubectl
View the log of different components.
kbcli cluster list-logs myproxy
kbcli cluster list-logs myproxy --component vtgate
kbcli cluster list-logs myproxy --component vtcontroller
kbcli cluster list-logs myproxy --component mysql
View the log of a Pod.
kbcli cluster logs myproxy --instance myproxy-vtgate-85bdcf99df-wbmnl
View the log of a container in a Pod.
kbcli cluster logs myproxy --instance myproxy-mysql-0 -c vttablet
View the log of VTGate.
kubectl logs myproxy-cluster-vtgate-8659d5db95-4dzt5
View the log of VTTablet and -c
is required.
kubectl logs myproxy-cluster-mysql-0 -c vttablet
Enter the container and view more logs of VTGate.
kubectl exec -it myproxy-cluster-vtgate-8659d5db95-4dzt5 -- bash
ls /vtdataroot
Enter the container and view more logs of VTTable.
kubectl exec -it myproxy-cluster-mysql-0 -c vttablet -- bash
ls /vtdataroot
Monitoring
In the production environment, all monitoring add-ons are disabled by default when installing KubeBlocks. You can enable these add-ons but it is highly recommended to build your monitoring system or purchase a third-party monitoring service. For details, refer to Monitoring.
Enable the monitoring function.
kbcli cluster update myproxy --monitor=true
View the add-on list and enable the Grafana add-on.
kbcli addon list
kbcli addon enable grafanaView the dashboard list.
kbcli dashboard list
Open the Grafana dashboard.
kbcli dashboard open kubeblocks-grafana
Read-write splitting
You can enable the read-write splitting function.
kbcli cluster configure myproxy --component vtgate --set=read_write_splitting_policy=random
You can also set the ratio for read-write splitting and here is an example of directing 70% flow to the read-only node.
kbcli cluster configure myproxy --component vtgate --set=read_write_splitting_ratio=70
Moreover, you can use Grafana or run show workload
to view the flow distribution.
show workload;
Transparent failover
Run the command below to implement transparent failover.
kbcli cluster configure myproxy --component vtgate --set=enable_buffer=true