If you’re a Perl and/or Python expert (preferably both), Percona may have a job for you.

We’re looking to either hire or sponsor significant development efforts for some open-source tools for MySQL, including but not limited to Maatkit and the Master-Master Replication Manager. This could be full-time or part-time, depending on the person and what seems to make the most sense. You can work remotely.

You must already be an expert coder. You don’t have to be a MySQL expert, though it will help if you are at least at an intermediate level with it. You must have proven experience in test-driven development. You will be writing clean, efficient, well-tested code. Your work will be open-source and transparent to the world, and open-source experience is a plus. You can expect expert guidance and help (especially with the MySQL-specific parts), but a significant amount of freedom and autonomy as well.

Send your resume and samples of your work to ‘jobmysql’ at our blog’s domain name.

6 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Artem Russakovskii

Sent you a message.

Zer4tul

As I know, both of Maatkit and Mmm are writen only in perl. why need a python expert? i think there are a lot of people want to know about this.

Koa McCullough

Baron,

You may already be aware of this but, just a heads Python also its issues w/ threading. These are mainly due the the fact that there is no native mysql interface and the python interpreter is not truly threaded. Once it drops into a c function python loses all ability to kill a thread. This is partially addressed in python 2.6 with multiprocess which is a module with almost the same api as threading but uses subprocess to run the threads. To me this seems like a very hacked approach to fix the problem since subprocess forks a new process for each thread. This is fine for a small number of threads but, if you are trying to load test or run nagios checks for hundreds of mysql instances you could easily kernel panic the box with that many forks. Until python has a native mysql interface Jython may be a better option.

Just a few random thoughts on the subject. I hope it saves you guys some of the pain we have experienced.

That being said there are a number of other good reasons to switch. The biggest is that it is far harder to write unmaintainable code in python. Before all the perl guy get mad at me for this I am not saying that you can’t write maintainable perl, you can, but, you don’t have to. For our environment where a large number of people, many of them being sys admins rather than coders, contribute to the code base this is a very good thing.

–Koa

Koa McCullough

*Koa braces for impact*