Skip to content

Conversation

@aaron-congo
Copy link
Contributor

MariaDB 3.x should not be used against Aurora because it uses pipelining, which is not compatible with Aurora. This aligns with their documentation (see here). Additionally, these properties should also be set, because they also use pipelining.

Properties props = new Properties();
props.setProperty("usePipelineAuth", "false");
props.setProperty("useBatchMultiSend", "false");

This PR updates docs to clarify that MariaDB 2.x should be used with these properties. It also updates the tests to use MariaDB 2.x.

Relates to #1596

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant