Daniel Black

Results 244 comments of Daniel Black

Also if you look what operators in k8s do - they use a index of the pod as server-id like: https://github.com/search?q=repo%3Amariadb-operator%2Fmariadb-operator%20server_id&type=code

> New State master_log_file='' looks odd. Was an empty `master_log_file` actually used in [CHANGE MASTER TO](https://mariadb.com/kb/en/change-master-to/)? never mind. See that is standard "CHANGE MASTER" output.

> I checked for expire_log_days and binlog_expire_logs_seconds but it seems that neither of them have been set. `expire_log_days` is actually in the container default. (which I'm open to remove from...

note came across this, [MDEV-27437](https://jira.mariadb.org/browse/MDEV-27437), which comes into play if the mariadb backup donor isn't the same version as replica.

Note the `mariabackup` needs to be `--prepared`. This will apply redo log changes made during the backup. Steps for a mariabackup based provisioning of a replica: 1. On replica in...

ping before you think about this. There's a few upstream bugs on incremental backup that should be fixed before its implemented here.

Thanks for the confirmation. With https://github.com/MariaDB/mariadb-docker/pull/533 coming out next server release (this week :crossed_fingers: ) this implementation becomes simpler on the operator side. If you think there's any impacting (but...

I was contemplating making `MARIADB_MYSQL_LOCALHOST_USER` create a `[email protected]`/ `mysql@::1` user as well. What are the security consequences of that? Previous plan of https://github.com/MariaDB/server/pull/2413 to do tcp checks [was rejected](https://jira.mariadb.org/browse/MDEV-21456).

I've simplified this significantly. https://mariadb.com/kb/en/using-healthcheck-sh-script/. A healthcheck user is created with random credentials stored in .my-healthcheck.cnf in the datadir. I need to fix SST scripts of galera to copy this...

entrypoint: `exec "$@"` for the non-asadmin case so the container returns the exit code of the command. Can GlassFish be explicitly started in the foreground? While some protection with trapping...