This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Celery worker blocks on rate limited task | |
========================================= | |
by github.com/miraculixx | |
Problem: | |
If a worker has a rate_limit active on some task, and that task | |
arrives (is received) more often than the rate limit interval, all | |
worker processes will block on these task instances and stop | |
consuming other tasks as soon as the prefetch count has maxed out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule AppWeb.Component.FormFromSchema do | |
use AppWeb, :live_component | |
attr :changeset, :any, required: true | |
attr :event_suffix, :string, default: "" | |
attr :schema, :any, required: true | |
attr :uploads, :any, default: nil | |
attr :visibility_rules, :any, default: %{} | |
attr :field_type_rules, :any, default: %{} |
OlderNewer