Skip to content

Instantly share code, notes, and snippets.

@aspett
Created May 9, 2021 23:55
Show Gist options
  • Save aspett/10a98aea840323b3fff3702622b42c67 to your computer and use it in GitHub Desktop.
Save aspett/10a98aea840323b3fff3702622b42c67 to your computer and use it in GitHub Desktop.
def start_link(_opts) do
Broadway.start_link(__MODULE__,
name: BroadwayPipeline,
producer: [
module: {Producer, []},
concurrency: 1,
rate_limiting: [allowed_messages: 11, interval: 1000] # 11/s is just over 950k / day
],
processors: [
default: [concurrency: 5]
]
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment