honeydew
honeydew copied to clipboard
Job Queue for Elixir. Clustered or Local. Straight BEAM. Optional Ecto. 💪🍈
Hello. I was playing with great feature Ecto Poll Queue. At some point, I notice that you are not supporting the MySQL database. Are there any plans for that? Thanks
I have a job that was retried multiple times, but it got stuck in the queue. Here is the job: ``` iex(smsc@smsc03)1> Honeydew.filter("my_queue", fn a-> true end) [ %Honeydew.Job{ by:...
I would like to know if there's a way to do a graceful shutdown of the Honeydew queues. For the moment I am calling the Honeydew.suspend() function on all queues...
I want to select all items that have been successfully processed by honeydew, I guessed by looking at the source code that I can use `where([x], is_nil(x.honeydew_whatever_lock))` to do this,...
Currently `Honeydew.Queue` is private and undocumented which makes it pretty hard to implement custom queues.
Given the current log messages I can tell that some queues start and that there are workers that are ready for those queues by matching the pids, but I cannot...
Logger.warn has been deprecated in favour of Logger.warning use Mix.Config has been deprecated in favour of import Config The compiler warned about missing parentheses inside keywords, this has also been...
When I put mnesia in my mix extra_applications (I want control the shutdown order of mnesia), I get the following error when compiling the release: ``` ** (Mix) :mnesia is...