Hi @krishnareddy.ummadi
Thanks for using Bitnami MariaDB Galera!
I have been checking the attached guide and could face an error message when executing the last command:
Deployment failed. Correlation ID: febaae31-9d93-45dc-be63-b67bd9f16448. {
"error": {
"code": "PropertyChangeNotAllowed",
"message": "Changing property 'customData' is not allowed.",
"target": "customData"
}
}
Is this the issue you are experiencing? In any case, I would like you to run provide me with a little bit more of context regarding your system.
1) What SO are you running? What version is it?
2) Could you please execute the following command?
$ az --version
I would also like to mention that, despite of the message, the number of nodes is correctly incremented. You can verify that in your Azure Dashboard (you can see that there are as many VMs as node you indicated). Also, you can verify this fact by connecting to your instance and running the following:
# Once connected via SSH to one of the instances
$ mysql -u root -p
MariaDB [(none)]> SHOW STATUS LIKE 'wsrep%';
+----------------------------+--------------------------------------+
| Variable_name | Value |
+----------------------------+--------------------------------------+
...
| wsrep_cluster_weight | 4 |
| wsrep_cluster_capabilities | |
| wsrep_cluster_conf_id | 4 |
| wsrep_cluster_size | 4 |
| wsrep_cluster_state_uuid | f3c55711-4f4b-11eb-8fb2-4e6406f8fb5a |
| wsrep_cluster_status | Primary |
...
| wsrep_ready | ON |
...
+----------------------------+--------------------------------------+
In my case, I incremented the nodes from 3 to 4. As you can see, the cluster is self-aware of this fact and it is ready.
Best regards,
Jose Antonio Carmona
Was my answer helpful? Click on 