Start or Stop the Fusion 5x SQL Service
Start the Fusion 5.x SQL service
The Fusion 5.x SQL service is an optional service that must be started manually.
When you install a new namespace, the setup_f5_gke.sh
script generates a "values" yaml that contains Fusion values for the sql-service > enabled and sql-service > replicaCount fields. If necessary, modify the file:
-
Enter true in the sql-service > enabled field.
-
Enter the appropriate value in the sql-service > replicaCount field.
-
Save the
<provider>_<cluster>_<namespace>_fusion_values.yaml
file and run the generated shell script<provider>_<cluster>_<namespace>_upgrade_fusion.sh
to apply the changes and start the Fusion SQL service.
For more information, see the section about how to Create a custom values YAML file. |
The following is an example snippet of the fields to start the Fusion 5.x SQL service:
sql-service:
enabled: true
logstashEnabled: true
nodeSelector:
cloud.google.com/gke-nodepool: default-pool
replicaCount: 1
service:
thrift:
type: "ClusterIP"
Stop the Fusion SQL service
The Fusion 5.x SQL service is an optional service that must be stopped manually.
Edit the fusion-values.yaml
file:
-
Enter false in the sql-service > enabled field.
-
Enter 0 in the sql-service > replicaCount field.
-
Save the
<provider>_<cluster>_<namespace>_fusion_values.yaml
file and run the generated shell script<provider>_<cluster>_<namespace>_upgrade_fusion.sh
to apply the changes and stop the Fusion SQL service.
The following is an example snippet of the fields to stop the Fusion 5.x SQL service:
sql-service:
enabled: false
logstashEnabled: false
nodeSelector:
cloud.google.com/gke-nodepool: default-pool
replicaCount: 0
service:
thrift:
type: "ClusterIP"