preaction / Minion-Backend-mysql

MySQL backend for the 🐙 Minion job runner
Other
7 stars 14 forks source link

Use of Mojo::mysql::PubSub is highly EXPERIMENTAL #44

Open niceperl opened 11 months ago

niceperl commented 11 months ago

I got this message running a simple minion based app: Use of Mojo::mysql::PubSub is highly EXPERIMENTAL and should be considered an experiment

I wonder if it's safe to use in production, with the last stable versions of Mojolicious, Minion and MySQL. It's annoying to see that message in the log, so I decided to silence it with:

$ENV{ MOJO_PUBSUB_EXPERIMENTAL } = 1;

But to be honest, that does not make me happy ...

andrii-suse commented 11 months ago

I use it in production for few years under quite a load in two environments and haven't seen any issue with it (and seen few issues from the rest 'production ready' code). But it doesn't prove anything, so once the devs decide it is 'production ready', they will remove the message I guess.