Adding queues and storage is now postgres only
This commit is contained in:
parent
7ec0ce5a45
commit
1c2472cc2c
11 changed files with 368 additions and 31 deletions
5
queues/outgoingEventQueue/queue.go
Normal file
5
queues/outgoingEventQueue/queue.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
// Queue for outbound events
|
||||
// Actual queue here since other servers can't be expected to go at the same speed as Linstrom (be it slower or faster)
|
||||
// This queue should enforce data consistency (new jobs are first stored in the db) and a fair processing speed for
|
||||
// other servers, depending on their processing speed
|
||||
package outgoingeventqueue
|
Loading…
Add table
Add a link
Reference in a new issue