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
use crate::errors::AsyncQueueError;
use crate::task::{NewTask, Task, TaskId, TaskState};
use diesel::result::Error::QueryBuilderError;
use diesel_async::scoped_futures::ScopedFutureExt;
use diesel_async::AsyncConnection;
use diesel_async::{pg::AsyncPgConnection, pooled_connection::bb8::Pool};
#[derive(Debug, Clone)]
pub struct PgTaskStore {
pool: Pool<AsyncPgConnection>,
}
impl PgTaskStore {
pub fn new(pool: Pool<AsyncPgConnection>) -> Self {
PgTaskStore { pool }
}
}
#[async_trait::async_trait]
impl TaskStore for PgTaskStore {
async fn pull_next_task(
&self,
queue_name: &str,
task_names: &[String],
) -> Result<Option<Task>, AsyncQueueError> {
let mut connection = self
.pool
.get()
.await
.map_err(|e| QueryBuilderError(e.into()))?;
connection
.transaction::<Option<Task>, AsyncQueueError, _>(|conn| {
async move {
let Some(pending_task) = Task::fetch_next_pending(conn, queue_name, task_names).await else {
return Ok(None);
};
Task::set_running(conn, pending_task).await.map(Some)
}
.scope_boxed()
})
.await
}
async fn create_task(&self, new_task: NewTask) -> Result<Task, AsyncQueueError> {
let mut connection = self
.pool
.get()
.await
.map_err(|e| QueryBuilderError(e.into()))?;
Task::insert(&mut connection, new_task).await
}
async fn set_task_state(&self, id: TaskId, state: TaskState) -> Result<(), AsyncQueueError> {
let mut connection = self
.pool
.get()
.await
.map_err(|e| QueryBuilderError(e.into()))?;
match state {
TaskState::Done => {
Task::set_done(&mut connection, id).await?;
}
TaskState::Failed(error_msg) => {
Task::fail_with_message(&mut connection, id, &error_msg).await?;
}
_ => (),
};
Ok(())
}
async fn remove_task(&self, id: TaskId) -> Result<u64, AsyncQueueError> {
let mut connection = self
.pool
.get()
.await
.map_err(|e| QueryBuilderError(e.into()))?;
let result = Task::remove(&mut connection, id).await?;
Ok(result)
}
async fn schedule_task_retry(
&self,
id: TaskId,
backoff_seconds: u32,
error: &str,
) -> Result<Task, AsyncQueueError> {
let mut connection = self
.pool
.get()
.await
.map_err(|e| QueryBuilderError(e.into()))?;
let task = Task::schedule_retry(&mut connection, id, backoff_seconds, error).await?;
Ok(task)
}
}
#[cfg(test)]
pub mod test_store {
use super::*;
use itertools::Itertools;
use std::collections::BTreeMap;
use std::sync::Arc;
use tokio::sync::Mutex;
#[derive(Default, Clone)]
pub struct MemoryTaskStore {
pub tasks: Arc<Mutex<BTreeMap<TaskId, Task>>>,
}
#[async_trait::async_trait]
impl TaskStore for MemoryTaskStore {
async fn pull_next_task(
&self,
queue_name: &str,
task_names: &[String],
) -> Result<Option<Task>, AsyncQueueError> {
let mut tasks = self.tasks.lock().await;
let mut next_task = None;
for (_, task) in tasks
.iter_mut()
.filter(|(_, task)| task_names.contains(&task.task_name))
.sorted_by(|a, b| a.1.created_at.cmp(&b.1.created_at))
{
if task.queue_name == queue_name && task.state() == TaskState::Ready {
task.running_at = Some(chrono::Utc::now());
next_task = Some(task.clone());
break;
}
}
Ok(next_task)
}
async fn create_task(&self, new_task: NewTask) -> Result<Task, AsyncQueueError> {
let mut tasks = self.tasks.lock().await;
let task = Task::from(new_task);
tasks.insert(task.id, task.clone());
Ok(task)
}
async fn set_task_state(
&self,
id: TaskId,
state: TaskState,
) -> Result<(), AsyncQueueError> {
let mut tasks = self.tasks.lock().await;
let task = tasks.get_mut(&id).unwrap();
use TaskState::*;
match state {
Done => task.done_at = Some(chrono::Utc::now()),
Failed(error_msg) => {
let error_payload = serde_json::json!({
"error": error_msg,
});
task.error_info = Some(error_payload);
task.done_at = Some(chrono::Utc::now());
}
_ => {}
}
Ok(())
}
async fn remove_task(&self, id: TaskId) -> Result<u64, AsyncQueueError> {
let mut tasks = self.tasks.lock().await;
let res = tasks.remove(&id);
if res.is_some() {
Ok(1)
} else {
Ok(0)
}
}
async fn schedule_task_retry(
&self,
id: TaskId,
backoff_seconds: u32,
error: &str,
) -> Result<Task, AsyncQueueError> {
let mut tasks = self.tasks.lock().await;
let task = tasks.get_mut(&id).unwrap();
let error_payload = serde_json::json!({
"error": error,
});
task.error_info = Some(error_payload);
task.running_at = None;
task.retries += 1;
task.scheduled_at =
chrono::Utc::now() + chrono::Duration::seconds(backoff_seconds as i64);
Ok(task.clone())
}
}
}
#[async_trait::async_trait]
pub trait TaskStore: Send + Sync + 'static {
async fn pull_next_task(
&self,
queue_name: &str,
task_names: &[String],
) -> Result<Option<Task>, AsyncQueueError>;
async fn create_task(&self, new_task: NewTask) -> Result<Task, AsyncQueueError>;
async fn set_task_state(&self, id: TaskId, state: TaskState) -> Result<(), AsyncQueueError>;
async fn remove_task(&self, id: TaskId) -> Result<u64, AsyncQueueError>;
async fn schedule_task_retry(
&self,
id: TaskId,
backoff_seconds: u32,
error: &str,
) -> Result<Task, AsyncQueueError>;
}
#[cfg(test)]
mod tests {
use super::*;
use crate::store::test_store::MemoryTaskStore;
#[test]
fn task_store_trait_is_object_safe() {
let store = MemoryTaskStore::default();
let _object = &store as &dyn TaskStore;
}
}