Releases: Bogdanp/dramatiq
Releases · Bogdanp/dramatiq
v1.5.0
Added
- The RabbitMQ broker now supports native message priorities. (#157, @davidt99)
- Support for specifying the actor class to
@actor
. (#169, @gilbsgilbs)
Changed
- Pika 0.13 is now required.
Fixed
v1.4.3
v1.4.2
v1.4.1
v1.4.0
This is a big one!
Added
- Barriers.
Changed
cli.main
now takes an optional argument namespace so that users
may define their own entrypoints. (#140, @maerteijn)- Actor "message received" and "completed in x ms" log messages are
now logged with theDEBUG
level instead ofINFO
level. This
improves throughput and makes logging much less verbose. - The
TimeLimit
middleware no longer uses signals to trigger time
limit handling. Instead it uses a background thread per worker
process. - Dramatiq now shuts itself down if any of the workers die
unexpectedly (for example, if one of them is killed by the OOM
killer). - Windows is now supported (with some caveats)! (#119, @ryansm1)
Fixed
v1.3.0
Changed
- Upgraded prometheus_client to 0.2.x.
- Bumped pika to version 0.12. Because of this change, the
interrupt
method onBroker
and its usages withinWorker
have been dropped. - There is no longer a max message delay.
Fixed
v1.2.0
Added
- Support for worker heartbeats to
RedisBroker
. maintenance_chance
andheartbeat_timeout
parameters to
RedisBroker
.Interrupt
base class for thread-interrupting exceptions. (@rpkilby)ShutdownNotifications
middleware. (@rpkilby)
Changed
TimeLimitExceeded
is now a subclass ofInterrupt
.
Fixed
StubBroker.join
andWorker.join
are now more reliable.- Module import path is now prepended to search path rather than
appended. This fixes an issue where importing modules with the same
name as modules from site-packages would end up importing the
modules from site-packages. (#88) Prometheus
middleware no longer wipes the prometheus data
directory on startup. This fixes an issue with exporting
application metrics along with worker metrics.