Skip to content

Commit 6a1c47c

Browse files
authored
Merge pull request #3 from azutoolkit/updates
Updates
2 parents 09bf50d + 1f91c0c commit 6a1c47c

11 files changed

+98
-55
lines changed

.travis.yml

-6
This file was deleted.

README.md

+47-24
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,21 @@ compute environment.
88

99
**Features:**
1010

11-
- [x] Priority queues based on number of workers
12-
- [x] Reliable queue
13-
- [x] Error Handling
14-
- [x] Retry Jobs with automatic Delays
15-
- [x] Cron Like Periodic Jobs
16-
- [x] Delayed Jobs
17-
- [x] Stop execution of workers
18-
- [x] Jobs expiration
19-
20-
**Help Wanted**
21-
- \[ ] CLI to manage queues and monitor server
22-
- \[ ] Rest API: Rest api to schedule jobs
23-
- \[ ] Throttle (Rate limit)
24-
- \[ ] Approve Queue?: Jobs have to manually approved to execute
11+
- [x] Priority queues based on number of workers
12+
- [x] Reliable queue
13+
- [x] Error Handling
14+
- [x] Retry Jobs with automatic Delays
15+
- [x] Cron Like Periodic Jobs
16+
- [x] Delayed Jobs
17+
- [x] Stop execution of workers
18+
- [x] Jobs expiration
19+
20+
## Help Wanted
21+
22+
- \[ ] CLI to manage queues and monitor server
23+
- \[ ] Rest API: Rest api to schedule jobs
24+
- \[ ] Throttle (Rate limit)
25+
- \[ ] Approve Queue?: Jobs have to manually approved to execute
2526

2627
## Installation
2728

@@ -48,7 +49,29 @@ Use **DUPLICATE POLICY FIRST** to ignore duplicate stats entries
4849
redis-server --loadmodule ./redistimeseries.so DUPLICATE_POLICY FIRST
4950
```
5051

51-
## Configuration Options
52+
## Usage
53+
54+
```crystal
55+
require "joobq"
56+
```
57+
58+
### Environment variables
59+
60+
```shell
61+
REDIS_HOST=localhost
62+
REDIS_PORT=6379
63+
REDIS_POOL_SIZE=50
64+
REDIS_TIMEOUT=0.2
65+
```
66+
67+
## Defining Queues
68+
69+
Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of the key matches the name of the Queue.
70+
71+
### Properties
72+
73+
- **Name:** `queue:email`
74+
- **Number Workers:** 10
5275

5376
```crystal
5477
require "joobq"
@@ -102,7 +125,7 @@ struct EmailJob
102125
end
103126
```
104127

105-
**Executing Job**
128+
### Executing Job
106129

107130
```crystal
108131
EmailJob.perform(email_address: "[email protected]")
@@ -130,9 +153,9 @@ JoobQ.forge
130153

131154
## Statistics
132155

133-
JoobQ includes a Statistics class that allow you get stats about queue performance.
156+
JoobQ includes a Statistics class that allow you get stats about queue performance.
134157

135-
**Available stats**
158+
### Available stats
136159

137160
```text
138161
total enqueued jobs
@@ -145,12 +168,12 @@ total delayed jobs
145168

146169
## Contributing
147170

148-
1. Fork it (<https://github.com/eliasjpr/joobq/fork>)
149-
2. Create your feature branch ( `git checkout -b my-new-feature` )
150-
3. Commit your changes ( `git commit -am 'Add some feature'` )
151-
4. Push to the branch ( `git push origin my-new-feature` )
152-
5. Create a new Pull Request
171+
1. Fork it (<https://github.com/eliasjpr/joobq/fork>)
172+
2. Create your feature branch ( `git checkout -b my-new-feature` )
173+
3. Commit your changes ( `git commit -am 'Add some feature'` )
174+
4. Push to the branch ( `git push origin my-new-feature` )
175+
5. Create a new Pull Request
153176

154177
## Contributors
155178

156-
- [Elias J. Perez](https://github.com/eliasjpr) - creator and maintainer
179+
- [Elias J. Perez](https://github.com/eliasjpr) - creator and maintainer

mkdocs.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
site_name: JoobQ
2+
site_url: https://eliasjpr.github.io/joobq/
3+
repo_url: https://github.com/eliasjpr/joobq
4+
edit_uri: blob/master/docs/
5+
6+
theme:
7+
name: material
8+
icon:
9+
repo: fontawesome/brands/github
10+
11+
extra_css:
12+
- css/mkdocstrings.css
13+
14+
plugins:
15+
- search
16+
- gen-files:
17+
scripts:
18+
- docs/gen_doc_stubs.py
19+
- mkdocstrings:
20+
default_handler: crystal
21+
watch: [src]
22+
23+
markdown_extensions:
24+
- pymdownx.highlight
25+
- pymdownx.magiclink
26+
- pymdownx.saneheaders
27+
- pymdownx.superfences
28+
- deduplicate-toc
29+
- toc:
30+
permalink: "#"

shard.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ version: 2.0
22
shards:
33
cron_parser:
44
git: https://github.com/kostya/cron_parser.git
5-
version: 0.3.0
5+
version: 0.4.0
66

77
pool:
88
git: https://github.com/ysbaddaden/pool.git
9-
version: 0.2.3
9+
version: 0.2.4
1010

1111
redis:
1212
git: https://github.com/stefanwille/crystal-redis.git
13-
version: 2.6.0
13+
version: 2.7.0
1414

shard.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: joobq
2-
version: 0.2.0
2+
version: 0.2.1
33

44
authors:
55
- Elias J. Perez <[email protected]>
@@ -8,14 +8,13 @@ targets:
88
joobq:
99
main: src/joobq.cr
1010

11-
crystal: 0.34.0
11+
crystal: ">=0.34.0"
1212

1313
license: MIT
1414

1515
dependencies:
1616
redis:
1717
github: stefanwille/crystal-redis
18-
version: ~> 2.6.0
1918

2019
cron_parser:
2120
github: kostya/cron_parser

src/joobq.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require "cron_parser"
77
require "./joobq/**"
88

99
module JoobQ
10-
VERSION = "0.2.0"
10+
VERSION = "0.2.1"
1111
REDIS = Redis::PooledClient.new(
1212
host: ENV.fetch("REDIS_HOST", "localhost"),
1313
port: ENV.fetch("REDIS_PORT", "6379").to_i,

src/joobq/dead_letter.cr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module JoobQ
22
module DeadLetter
3-
DEAD_LETTER = Sets::Dead.to_s
4-
REDIS = JoobQ::REDIS
3+
private DEAD_LETTER = Sets::Dead.to_s
4+
private REDIS = JoobQ::REDIS
55

66
def self.add(job)
77
now = Time.local.to_unix_f

src/joobq/failed.cr

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
module JoobQ
22
module FailHandler
3-
extend self
3+
private FAILED_SET = Sets::Failed.to_s
4+
private REDIS = JoobQ::REDIS
45

5-
FAILED_SET = Sets::Failed.to_s
6-
REDIS = JoobQ::REDIS
7-
8-
def call(job, latency, ex : Exception)
6+
def self.call(job, latency, ex : Exception)
97
track job, latency, ex
108

119
if job.retries > 0
@@ -15,7 +13,7 @@ module JoobQ
1513
end
1614
end
1715

18-
def track(job, latency, ex)
16+
private def self.track(job, latency, ex)
1917
now = Time.local
2018
expires = (Time.local - 3.days).to_unix_f
2119
key = "#{FAILED_SET}:#{job.jid}"

src/joobq/retry.cr

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
module JoobQ
22
module Retry
3-
extend self
4-
RETRY_SET = Sets::Retry.to_s
5-
REDIS = JoobQ.redis
3+
private RETRY_SET = Sets::Retry.to_s
4+
private REDIS = JoobQ.redis
65

7-
def attempt(job)
6+
def self.attempt(job)
87
count = job.retries
98
job.retries = job.retries - 1
109
at = retry_at(count)
@@ -18,7 +17,7 @@ module JoobQ
1817
JoobQ.scheduler.delay job, at
1918
end
2019

21-
private def retry_at(count : Int32)
20+
private def self.retry_at(count : Int32)
2221
((count ** 4) + 15 + (rand(30)*(count + 1))).seconds
2322
end
2423
end

src/joobq/scheduler.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module JoobQ
22
class Scheduler
33
INSTANCE = new
4-
REDIS = JoobQ::REDIS
4+
private REDIS = JoobQ::REDIS
55

66
record RecurringJobs, job : Job, queue : String, interval : Time::Span | CronParser
77

src/joobq/statistics.cr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module JoobQ
22
class Statistics
33
INSTANCE = new
4-
RETENTION_MILLIS = 60 * 6 * 1000
5-
STATS_KEY = "stats"
6-
STATS = %w[Errors Retries Dead Success Latency]
7-
REDIS = JoobQ::REDIS
4+
private RETENTION_MILLIS = 60 * 6 * 1000
5+
private STATS_KEY = "stats"
6+
private STATS = %w[Errors Retries Dead Success Latency]
7+
private REDIS = JoobQ::REDIS
88

99
def self.instance
1010
INSTANCE

0 commit comments

Comments
 (0)