A simple, in-memory queue with worker pooling and rate limiting in Elixir. OPQ leverages Erlang's queue module and Elixir's GenStage.
Originally built to support Crawler.
- A fast, in-memory FIFO queue.
- Worker pool.
- Rate limit.
- Timeouts.
- Pause / resume / stop the queue.
See Hex documentation.
def deps do
[{:opq, "~> 4.0"}]
end
{:ok, opq} = OPQ.init()
OPQ.enqueue(opq, fn -> IO.inspect("hello") end)
OPQ.enqueue(opq, fn -> IO.inspect("world") end)
{:ok, opq} = OPQ.init()
OPQ.enqueue(opq, IO, :inspect, ["hello"])
OPQ.enqueue(opq, IO, :inspect, ["world"])
OPQ.init(name: :items)
OPQ.enqueue(:items, fn -> IO.inspect("hello") end)
OPQ.enqueue(:items, fn -> IO.inspect("world") end)
Note, when starting as part of a supervision tree, the :name
option must be provided.
children = [
{OPQ, name: :items}
]
defmodule CustomWorker do
def start_link(item) do
Task.start_link(fn ->
Agent.update(:bucket, &[item | &1])
end)
end
end
Agent.start_link(fn -> [] end, name: :bucket)
{:ok, opq} = OPQ.init(worker: CustomWorker)
OPQ.enqueue(opq, "hello")
OPQ.enqueue(opq, "world")
Agent.get(:bucket, & &1) # => ["world", "hello"]
{:ok, opq} = OPQ.init(workers: 1, interval: 1000)
Task.async(fn ->
OPQ.enqueue(opq, fn -> IO.inspect("hello") end)
OPQ.enqueue(opq, fn -> IO.inspect("world") end)
end)
If no interval is supplied, the ratelimiter will be bypassed.
{:ok, opq} = OPQ.init()
OPQ.enqueue(opq, fn -> Process.sleep(1000) end)
{status, queue, available_workers} = OPQ.info(opq) # => {:normal, #OPQ.Queue<[]>, 9}
Process.sleep(1200)
{status, queue, available_workers} = OPQ.info(opq) # => {:normal, #OPQ.Queue<[]>, 10}
If you just need to get the queue itself:
OPQ.queue(opq) # => #OPQ.Queue<[]>
OPQ implements Enumerable
, so you can perform enumerable functions on the queue:
{:ok, opq} = OPQ.init()
queue = OPQ.queue(opq)
Enum.count(queue) # => 0
Enum.empty?(queue) # => true
{:ok, opq} = OPQ.init()
OPQ.enqueue(opq, fn -> IO.inspect("hello") end)
OPQ.stop(opq)
OPQ.enqueue(opq, fn -> IO.inspect("world") end) # => (EXIT) no process...
{:ok, opq} = OPQ.init()
OPQ.enqueue(opq, fn -> IO.inspect("hello") end) # => "hello"
OPQ.pause(opq)
OPQ.info(opq) # => {:paused, {[], []}, 10}
OPQ.enqueue(opq, fn -> IO.inspect("world") end)
OPQ.resume(opq) # => "world"
OPQ.info(opq) # => {:normal, {[], []}, 10}
Option | Type | Default Value | Description |
---|---|---|---|
:name |
atom/module | pid | The name of the queue. |
:worker |
module | OPQ.Worker |
The worker that processes each item from the queue. |
:workers |
integer | 10 |
Maximum number of workers. |
:interval |
integer | 0 |
Rate limit control - number of milliseconds before asking for more items to process, defaults to 0 which is effectively no rate limit. |
:timeout |
integer | 5000 |
Number of milliseconds allowed to perform the work, it should always be set to higher than :interval . |
Please see CHANGELOG.md.
Licensed under MIT.