-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtaskqueues.yml
566 lines (519 loc) · 18.2 KB
/
taskqueues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
brokers:
- name: Amazon SQS
homepage: https://aws.amazon.com/sqs/
summary: |
Amazon Simple Queue Service (SQS) is a fully managed message
queuing service that makes it easy to decouple and scale
microservices, distributed systems, and serverless
applications. Building applications from individual components
that each perform a discrete function improves scalability and
reliability, and is best practice design for modern
applications.
- name: Apache ActiveMQ
homepage: http://activemq.apache.org/
summary: |
Apache ActiveMQ™ is the most popular open source, multi-protocol,
Java-based messaging server.
- name: Apache Kafka
sponsor:
who: Franz
link: https://franz.defn.io
description: |
native macOS client for Apache Kafka.
homepage: http://kafka.apache.org/
summary: |
Kafka® is used for building real-time data pipelines and
streaming apps. It is horizontally scalable, fault-tolerant,
wicked fast, and runs in production in thousands of companies.
- name: Apache Qpid
homepage: http://qpid.apache.org/
summary: |
Apache Qpid™ makes messaging tools that speak AMQP and support
many languages and platforms.
- name: Apache Pulsar
homepage: http://pulsar.incubator.apache.org/
summary: |
Apache Pulsar is an open-source distributed pub-sub messaging
system originally created at Yahoo and now part of the Apache
Software Foundation.
- name: Apache RocketMQ
homepage: https://rocketmq.apache.org/
summary: |
Apache RocketMQ™ is an open source distributed messaging and
streaming data platform.
- name: Azure Service Bus
homepage: https://azure.microsoft.com/en-us/services/service-bus/
summary: |
Depend on Azure Service Bus when you need highly-reliable cloud
messaging service between applications and services, even when
one or more is offline.
- name: Beanstalk
homepage: http://kr.github.io/beanstalkd/
summary: |
Beanstalk is a simple, fast work queue. Its interface is
generic, but was originally designed for reducing the latency of
page views in high-volume web applications by running
time-consuming tasks asynchronously.
- name: Bedrock::Jobs
homepage: http://bedrockdb.com/jobs.html
summary: |
Bedrock::Jobs is a plugin to the Bedrock data foundation that
manages a scheduled job queue.
- name: Dispatched
homepage: https://dispatched.dev
summary: |
A lightweight, developer-friendly background task runner built specifically for serverless applications.
It supports HTTP-based job dispatch and webhook notifications for task execution.
languages:
- Any language supporting HTTP requests
brokers:
- None (HTTP-based)
- name: Faktory
homepage: http://contribsys.com/faktory/
summary: |
At a high level, Faktory is a work server. It is the repository
for background jobs within your application. Jobs have a type
and a set of arguments and are placed into queues for workers to
fetch and execute.
- name: Gearman
homepage: http://gearman.org/
summary: |
Gearman provides a generic application framework to farm out
work to other machines or processes that are better suited to do
the work. It allows you to do work in parallel, to load balance
processing, and to call functions between languages. It can be
used in a variety of applications, from high-availability web
sites to the transport of database replication events. In other
words, it is the nervous system for how distributed processing
communicates.
- name: Google Cloud PubSub
homepage: https://cloud.google.com/pubsub/docs/
summary: |
Google Cloud Pub/Sub is a fully-managed real-time messaging
service that allows you to send and receive messages between
independent applications.
- name: Inngest
homepage: https://www.inngest.com
summary: |
Inngest is an open source event-driven queue in which serverless
functions are triggered by HTTP events. Inngest does not require
one to configure queues up front and instead, systems can just
send events to start using in minutes. Inngest aims to be
SDK-less and use standard libraries and interfaces to provide a
better developer experience. Inngest can be self-hosted or one
can use Inngest's cloud platform offering.
- name: IronMQ
homepage: http://www.iron.io/mq
summary: |
MQ provides a reliable way to communicate between services and
components. Highly available, persistent by design, with
best-effort one-time delivery, MQ is the most industrial
strength, cloud-native solution for modern application
architecture.
- name: Mosquitto
homepage: https://mosquitto.org/
summary: |
Eclipse Mosquitto™ is an open source (EPL/EDL licensed) message
broker that implements the MQTT protocol versions 3.1 and
3.1.1. MQTT provides a lightweight method of carrying out
messaging using a publish/subscribe model. This makes it
suitable for Internet of Things messaging such as with low power
sensors or mobile devices such as phones, embedded computers or
microcontrollers like the Arduino.
- name: NATS
homepage: https://nats.io/
summary: |
NATS is an open source, lightweight, high-performance cloud
native infrastructure messaging system. It implements a highly
scalable and elegant publish-subscribe (pub/sub) distribution
model. The performant nature of NATS make it an ideal base for
building modern, reliable, scalable cloud native distributed
systems.
- name: NSQ
homepage: http://nsq.io/
summary: |
NSQ is a realtime distributed messaging platform designed to
operate at scale, handling billions of messages per day. It
promotes distributed and decentralized topologies without single
points of failure, enabling fault tolerance and high
availability coupled with a reliable message delivery guarantee.
- name: PostgreSQL
homepage: https://www.postgresql.org/
summary: |
While PostgreSQL is not a message queue per se, it does support
facilities for implementing queues via the "SELECT ... FOR
UPDATE SKIP LOCKED" clause and the notification
subsystem. Postgres-based message queues can be very convenient
if you're already using Postgres as your database and you don't
need too much throughput. Another advantage to Postgres is you
can enqueue jobs transactionally with other database operations,
causing related operations to be rolled back if a job can't be
enqueued.
- name: RabbitMQ
homepage: http://rabbitmq.com/
summary: |
RabbitMQ is lightweight and easy to deploy on premises and in
the cloud. It supports multiple messaging protocols. RabbitMQ
can be deployed in distributed and federated configurations to
meet high-scale, high-availability requirements.
- name: Red Panda
sponsor:
who: Franz
link: https://franz.defn.io
description: |
native macOS client for Kafka and Red Panda.
homepage: https://redpanda.com
summary: |
Redpanda is a Kafka®-compatible streaming data platform that is
up to 10x faster and 6x more hardware-efficient. It is also
JVM-free, ZooKeeper®-free, Jepsen-tested and source available.
- name: Redis
homepage: https://redis.io
summary: |
Redis is an open source (BSD licensed), in-memory data structure
store, used as a database, cache and message broker.
- name: ServerlessQ
homepage: https://serverlessq.com
summary: |
ServerlessQ is a hosted message queue service for the serverless era of computing.
Without any setup you can re-use your existing APIs and let ServerlessQ handle
queueing and retrying your messages. You also get an overview of all your messages and error codes.
- name: Zeplo
homepage: https://zeplo.io
summary: |
Zeplo is a next generation message queue powered by HTTPS,
no setup required. Supports delayed, scheduled and retry
of messages. In-built console to debug and reprocess
failed records. Infinitely scaleable.
libraries:
- name: Bee Queue
homepage: https://github.com/bee-queue/bee-queue
summary: |
A simple, fast, robust job/task queue for Node.js, backed by Redis.
languages:
- Node.js
brokers:
- Redis
setup:
- npm install --save bee-queue
- name: Celery
homepage: http://celeryproject.org/
summary: |
Celery is an asynchronous task queue/job queue based on
distributed message passing. It is focused on real-time
operation, but supports scheduling as well.
languages:
- Python
- PyPy
brokers:
- Amazon SQS
- RabbitMQ
- Redis
setup:
- pip install celery
- name: Delayed::Job
homepage: https://github.com/collectiveidea/delayed_job
summary: |
Delayed::Job (or DJ) encapsulates the common pattern of
asynchronously executing longer tasks in the background.
languages:
- Ruby
brokers:
- Redis
setup:
- echo "gem 'delayed_job_active_record'" >> Gemfile
- bundle install
- name: Dramatiq
homepage: https://dramatiq.io
summary: |
Dramatiq is an alternative to Celery with a focus on simplicity,
reliability and performance.
languages:
- Python
- PyPy
brokers:
- Memory
- RabbitMQ
- Redis
setup:
- pip install dramatiq
- name: exq
homepage: https://github.com/akira/exq
summary: |
Exq is a job processing library compatible with Resque / Sidekiq
for the Elixir language.
languages:
- Elixir
brokers:
- Redis
setup:
- |
echo >mix.exs <<EOF
defp deps do
[
{:exq, "~> 0.9.1"}
]
end
EOF
- mix deps.get
- name: faust
homepage: https://github.com/faust-streaming/faust
summary: |
A library for building streaming applications in Python.
languages:
- python
brokers:
- Kafka
setup:
- pip install faust-streaming
- name: huey
homepage: https://huey.readthedocs.io/en/latest/
summary: |
A lightweight alternative.
languages:
- Python
brokers:
- Redis
setup:
- pip install huey
- name: koyo
homepage: https://koyoweb.org/job/index.html
summary: |
Koyo is a web-development toolkit for Racket that comes with a
built-in task queue based on PostgreSQL.
languages:
- Racket
brokers:
- PostgreSQL
setup:
- raco pkg install koyo
- name: Kue
homepage: http://automattic.github.io/kue/
summary: |
Kue is a feature rich priority job queue for node.js backed by
redis. A key feature of Kue is its clean user-interface for
viewing and managing queued, active, failed, and completed jobs.
languages:
- Node.js
brokers:
- Redis
setup:
- npm install --save kue
- name: Laravel
homepage: https://laravel.com/docs/5.5/queues
summary: |
Laravel queues provide a unified API across a variety of
different queue backends, such as Beanstalk, Amazon SQS, Redis,
or even a relational database. Queues allow you to defer the
processing of a time consuming task, such as sending an email,
until a later time. Deferring these time consuming tasks
drastically speeds up web requests to your application.
languages:
- PHP
brokers:
- Amazon SQS
- Beanstalk
- Database
- Redis
setup:
- composer global require "laravel/installer"
- name: Machinery
homepage: https://github.com/RichardKnop/machinery
summary: |
Machinery is an asynchronous task queue/job queue based on
distributed message passing.
languages:
- Go
brokers:
- Amazon SQS
- RabbitMQ
- Redis
setup:
- go get github.com/RichardKnop/machinery/v1
- name: MassTransit
homepage: http://masstransit-project.com/
summary: |
MassTransit is a free, open source, lightweight message bus for
creating distributed applications using the .NET framework.
MassTransit provides an extensive set of features on top
existing message transports, resulting in a developer friendly
way to asynchronously connect services using message-based
conversation patterns. Message-based communication is a
reliable and scalable way to implement a service oriented
architecture.
languages:
- .Net
brokers:
- Azure Service Bus
- RabbitMQ
setup:
- nuget Install-Package MassTransit
- name: node-rethinkdb-job-queue
homepage: https://github.com/grantcarthew/node-rethinkdb-job-queue
summary: |
rethinkdb-job-queue is a persistent job or task queue backed by
RethinkDB. It has been built as an alternative to the many
queues available on NPM.
languages:
- Node.js
brokers:
- RethinkDB
setup:
- npm install --save rethinkdb-job-queue
- name: queue_classic
homepage: https://github.com/QueueClassic/queue_classic
summary: |
queue_classic provides a simple interface to a PostgreSQL-backed
message queue. queue_classic specializes in concurrent locking and
minimizing database load while providing a simple, intuitive
developer experience. queue_classic assumes that you are already
using PostgreSQL in your production environment and that adding
another dependency (e.g. redis, beanstalkd, 0mq) is undesirable.
languages:
- Ruby
brokers:
- PostgreSQL
setup:
- echo "gem 'queue_classic'" >> Gemfile
- bundle install
- export QC_DATABASE_URL="postgres://username:password@localhost/your_database"
- ruby -r queue_classic -e "QC::Setup.create"
- name: RQ
homepage: http://python-rq.org/
summary: |
RQ (Redis Queue) is a simple Python library for queueing jobs
and processing them in the background with workers. It is backed
by Redis and it is designed to have a low barrier to entry. It
can be integrated in your web stack easily.
languages:
- Python
brokers:
- Redis
setup:
- pip install rq
- name: Resque
homepage: https://github.com/resque/resque
summary: |
Resque is a Redis-backed Ruby library for creating background
jobs, placing them on multiple queues, and processing them
later.
languages:
- Ruby
brokers:
- Redis
setup:
- echo "gem 'resque'" >> Gemfile
- bundle install
- name: Sidekiq
homepage: http://sidekiq.org/
summary: |
Sidekiq is a full-featured background processing framework for
Ruby. It aims to be simple to integrate with any modern Rails
application and much higher performance than other existing
solutions.
languages:
- Ruby
brokers:
- Redis
setup:
- echo "gem 'sidekiq'" >> Gemfile
- bundle install
- name: Sidekiq.cr
homepage: https://github.com/mperham/sidekiq.cr
summary: |
A version of Sidekiq for the Crystal language.
languages:
- Crystal
brokers:
- Redis
setup:
- |
echo >shards.yml <<EOF
dependencies:
sidekiq:
github: mperham/sidekiq.cr
branch: master
EOF
- shards update
- name: Temporal
homepage: https://github.com/temporalio/temporal
summary: |
Temporal is a microservice orchestration platform which enables
developers to build scalable applications without sacrificing
productivity or reliability. Temporal server executes units
of application logic, Workflows, in a resilient manner that
automatically handles intermittent failures, and retries failed
operations.
languages:
- Golang
- Java
- Ruby
setup:
- curl -L https://github.com/temporalio/temporal/releases/latest/download/docker.tar.gz | tar -xz
- cd docker
- docker-compose up
- name: Toniq
homepage: https://github.com/joakimk/toniq
summary: |
Simple and reliable background job processing library for
Elixir.
languages:
- Elixir
brokers:
- Redis
setup:
- |
echo >mix.exs <<EOF
defp deps do
[
{:exredis, ">= 0.1.1"},
{:toniq, "~> 1.0"}
]
end
EOF
- mix deps.get
- name: worker
homepage: https://github.com/graphile/worker
summary: High performance Node.js/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)
languages:
- Node.js
- SQL
brokers:
- PostgreSQL
- name: ZeroMQ
homepage: https://zeromq.org/
summary: |
ZeroMQ (also known as ØMQ, 0MQ, or zmq) looks like an embeddable networking library but acts like a concurrency framework.
It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast.
You can connect sockets N-to-N with patterns like fan-out, pub-sub, task distribution, and request-reply.
It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications,
built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems.
languages:
- C
- C++
- C#
- Dart
- Erlang
- F#
- Go
- Haskell
- Java
- Node.js
- Perl
- Python
- Ruby
- Rust
- name: db-queue
homepage: https://github.com/yoomoney-tech/db-queue
summary: |
Db-queue provides a rich interface to database-backed
message queue (PostgreSQL, Oracle, MSSQL). Db-queue offers a rich set
of features and is designed to handle high throughput.
Db-queue assumes that you are already using relational databases
in your production environment and that adding another dependency is undesirable.
languages:
- Java
brokers:
- PostgreSQL
- Oracle
- MSSQL