josevalim

josevalim

Creator of Elixir

Announcing a new MySQL driver: MyXQL

Hi everyone,

We would like to announce that Plataformatec is working on a new MySQL driver called MyXQL. Our goal is to eventually integrate it with Ecto and make it the default MySQL driver in Ecto.

Today the main driver to talk to MySQL is Mariaex. The work on Mariaex started in December/2014 and it has been an extremely important software to the community. We are very thankful to the team behind Mariaex, as it allowed many companies dependent on MySQL databases to use Elixir in production through libraries like Ecto and Phoenix.

Many things happened since Mariaex launched:

  • Newer MySQL versions such as v5.7 and v8.0 which introduced new authentication modes, protocol changes, new data types and more. Unfortunately, for a project like Mariaex, it means support all of those features across different versions

  • Mariaex development started right after Elixir v1.0. This means it often does not leverage more recent Elixir idioms, such as the with special form. Elixir v1.3 also introduced the new calendar types, which would conflict with the date/time types that ships with Mariaex

  • When Mariaex started, Ecto was on version v0.3.0. Since then, we released Ecto v1.0 and then Ecto v2.0. In Ecto v1.0, Ecto was the one responsible for handling connection pools, transactions and much more. However, in Ecto v2.0, we moved those concerns to drivers through a common project called DBConnection. This new approach makes the drivers more efficient and more useful outside of Ecto. James Fish led this effort and covered those topics in his ElixirConf EU 2017 talk. Despite the benefits, the migration meant more code churn to existing drivers

Due to these and other factors, I personally believe the Mariaex repository grew in complexity, which complicates its maintenance. Currently there are 40 open issues in the repository and 9 open pull requests.

We have long debated how to best improve Mariaex’ codebase. After careful consideration, we have decided the best approach is to start with a clean slate, as it would be hard to untangle the complexity accumulated throughout the years. This is what led to the creation of MyXQL.

The MyXQL effort is led by Wojtek Mach and our goals are:

  • MyXQL will require Elixir v1.4 (almost 2 years old) and MySQL v5.7.9+, which is the first General Availability release from the 5.7 branch, released in Oct/2015. This will allow us to support many features and data types recently added to MySQL and properly map them to their equivalents in Elixir

  • Leverage the knowledge we have gathered by writing and contributing to Postgrex and Mariaex drivers. In practice, we want the MyXQL adapter to mirror the organization and code structure found in Postgrex and apply the lessons that have been learned in Mariaex. The plan is to reuse parts from both projects, as deemed necessary

Note that MyXQL won’t be ready in time for the upcoming Ecto v3.0. For now, developers should continue to use Mariaex and we have already sent pull requests to ensure Mariaex is compatible with Ecto 3.0. Once MyXQL is ready, we will allow developers to choose between Mariaex and MyXQL. Although the migration should be seamless for the huge majority of users, this will give developers time to move from one tool to the other. Support for Mariaex will be eventually removed from Ecto (or, to be more precise, removed from Ecto.SQL).

The current code is work in progress. If your company or job heavily depends on MySQL, consider watching the MyXQL repository to follow the on-going work as well as take part in future discussions. It is important that other community members get involved with the codebase and contribute to ensure the codebase continues to grow healthily, regardless of external factors. It is not “high-profile” work but it is an essential part of the Elixir infrastructure.

Wojtek will also write a series of articles on Plataformatec’s blog covering all of the steps to write a database driver with DBConnection. We hope the series will make the whole process more accessible and easier for others to jump into.

Thanks!

Most Liked

wojtekmach

wojtekmach

Hex Core Team

Hi everyone,

Here’s a quick update on the MyXQL project.

We have reached an important milestone which is passing all of Ecto’s MySQL tests. We think we are
at a point where early adopters can start testing it and we would appreciate the feedback.

You can use MyXQL with Ecto by setting following dependencies in your mix.exs:

defp deps() do
  [
    # ...
    {:ecto_sql, github: "wojtekmach/ecto_sql", branch: "wm-myxql"},
    {:myxql, github: "elixir-ecto/myxql"}
  ]
end

and that should be it!

Note, there’s still more work to be done before the first release. You can track the progress on
the ecto_sql PR and in MyXQL v0.1 milestone.

You can see existing issues and report new ones in the issue tracker.

We have also published a 4-part blog series on building the adapter:

Finally, we’d like to list a few notable changes between MyXQL and Mariaex:

  1. MyXQL supports MySQL Pluggable Authentication system and ships with mysql_native_password, sha256_password, and caching_sha2_password authentication methods. This is especially important since MySQL 5.7 defaults to mysql_native_password, but MySQL 8.0 to the caching_sha2_password method. By supporting both we ensure good out of the box experience

  2. Mariaex.query/4 function defaults to using binary protocol (prepared statements) and if that fails (some statements are not preparable), it falls back to the text protocol.

    MyXQL.query/4, on the other hand, uses the text protocol on empty params list, and otherwise it uses the binary protocol.

  3. MyXQL.Error struct contains :mysql field for MySQL errors (e.g.: %{mysql: %{code: 1062, name: :ER_DUP_ENTRY}}) and :socket field for socket errors (e.g.: %{socket: :nxdomain}) which should make it easier for users to understand and handle the errors.

  4. MyXQL defaults to using UNIX domain socket for connecting to the server. Forcing TCP with default options is easy too: MyXQL.start_link(protocol: :tcp). Mariaex defaults to TCP.

That’s it for now, stay tuned for updates!

27
Post #2
wojtekmach

wojtekmach

Hex Core Team

Hi everyone,

Here’s another update on MyXQL:

  1. We shipped MyXQL v0.2.0. It contains a bunch of bugfixes, new features and performance
    improvements. It should also be a drop-in replacement for Mariaex (more on that below).
    We think it’s ready for real world testing.

  2. We’ve added a MARIAEX_COMPATIBILITY.md page explaining differences between MyXQL and Mariaex.

  3. For backwards-compatiblity reasons, Ecto.Adapters.MySQL will continue to use Mariaex, and there’s a separate built-in adapter for MyXQL, Ecto.Adapters.MyXQL.

MyXQL support landed on Ecto SQL master and it will be part of the upcoming v3.1 release.

You can test it by following these steps:

  1. Use myxql and ecto_sql master:

      [
        # ...
        {:ecto_sql, github: "elixir-ecto/myxql"},
        {:myxql, "~> 0.2.0"}
      ]
    end
    
  2. Set adapter: Ecto.Adapters.MyXQL in your Repo

and that should be it.

Please give it a try and let us know if you run into any issues!

10
Post #3
ewatjen

ewatjen

{:ecto_sql, github: "elixir-ecto/myxql"},

correction:

{:ecto_sql, github: "elixir-ecto/ecto_sql"},

Where Next?

Popular in Announcing Top

ityonemo
Currently just starting out on a new mini-project - getting zig NIFs to run in elixir. https://github.com/ityonemo/zigler The idea here...
New
RobertDober
Earmark is a pure-Elixir Markdown converter. It is intended to be used as a library (just call Earmark.as_html), but can also be used as...
239 12560 134
New
cjen07
parameterized pipe in elixir: |n> edit: negative index in |n> and mixed usage with |> are supported example: use ParamPipe ...
New
Hal9000
Here is my first stab at this. README pasted below. https://github.com/Hal9000/elixir_random Comments and critiques are welcome. Thank...
New
benlime
LiveMotion enables high performance animations declared on the server and run on the client. As a follow up to my previous thread A libr...
New
zachdaniel
Ash Framework What is Ash? Ash Framework is a declarative, resource-oriented application development framework for Elixir. A resource can...
New
zoltanszogyenyi
Hey everyone :waving_hand: Excited to join this forum - I am one of the founders and current project maintainers of a popular and open-s...
New
tmbb
I’ve decided to create this topic to discuss optimization possibilities for something like Phoenix LiveView. I’ve created this topic unde...
144 10187 141
New
trisolaran
Hi! :waving_hand: I would like to present LiveSelect, a little library that I wrote to easily add a dynamic selection input to your LV f...
198 10858 107
New
New

Other popular topics Top

aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
marius95
Hello everyone, I try to use an Javascript Event Handler in my root.html.leex file. Therefore I created a function in the app.js file: ...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
skosch
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New
gshaw
What is the idiomatic way of matching for not nil in Elixir? E.g., First way: defp halt_if_not_signed_in(conn, signed_in_account) when...
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
boundedvariable
I am going through the kafka architecture. All the features what the kafka is providing are already in Erlang. I would like hear your opi...
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
jononomo
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New

We're in Beta

About us Mission Statement