Martin Montes

Results 214 comments of Martin Montes

Hey there @taxilian ! > I'm fairly sure that this issue is partly because the storage is a little on the slow side, but since there doesn't seem to be...

> it's better than nothing, but a startupProbe would be much more ideal long term. Thanks, we don't currently support adding custom `startupProbe` to the `MariaDB` object, but it is...

Thanks for reporting. I believe this is a duplicate of #263 or a very similar issue. See this comment: - https://github.com/mariadb-operator/mariadb-operator/issues/263#issuecomment-1858897710

Hey there! With the release of [v0.0.25](https://github.com/mariadb-operator/mariadb-operator/releases/tag/v0.0.25), primary failover done by the operator has been superseded by MaxScale: a sophisticated database proxy, router, and load balancer designed specifically for and...

Hey @fchiacchiaretta ! thanks for reporting this 🙏🏻 Unfortunately I didn't manage to reproduce the issue, it scaled from 2 to 3 after running [this MariaDB ](https://github.com/mariadb-operator/mariadb-operator/blob/main/examples/manifests/mariadb_v1alpha1_mariadb_replication.yaml) for a couple...

@grooverdan we are not providing the `MASTER_LOG_FILE`, but we do specify `MASTER_USE_GTID` always. Would this be a problem with the @fchiacchiaretta's [configuration](https://github.com/mariadb-operator/mariadb-operator/issues/141#issuecomment-1598259228)? https://github.com/mariadb-operator/mariadb-operator/blob/3f5e6a35e9f3b74f437a42a1825674163412335c/pkg/client/client.go#L278

> So ConfigureReplica is expecting the full binary logs to exist? Not quite sure about this. [ConfigureReplica](https://github.com/mariadb-operator/mariadb-operator/blob/3f5e6a35e9f3b74f437a42a1825674163412335c/pkg/controller/replication/config.go#L63) performs the following `CHANGE MASTER` statement: ```sql [Note] 'CHANGE MASTER TO executed'. Previous...

@fchiacchiaretta awesome investigation, thanks for the level of detail 💯 🥇 I've managed to reproduce the issue by: - Creating your `MariaDB` instance - Setting `max-binlog-size=4096` and `binlog_expire_logs_seconds=10` - Ingest...

I've manually managed to solve the issue by taking a backup from the primary and restoring it on the failing replica. Basically following this guide: - https://mariadb.com/kb/en/setting-up-a-replica-with-mariabackup/ The steps involved...

I've tried adding an extra `initContainer` to make sure that the issue is not related to the `server_id`: ```yaml initContainers: - command: - bash - -c - |- [[ $HOSTNAME...