summaryrefslogtreecommitdiff
path: root/cmd/mkpipeline
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-11-19 14:47:41 +0000
committerNick White <git@njw.name>2019-11-19 14:47:41 +0000
commit7693065b8b8a9eff1f17dc993ae1235984872e09 (patch)
treea3ca625040f7f016456957ecd48d557eadd0de65 /cmd/mkpipeline
parent08a305c263329c0d27efd36e3da6d4befcfb4240 (diff)
Add ocrpage queue for processing individual pages
This should be a good way to get around the ongoing heartbeat issue, as individual page jobs will never come close to a the 12 hour mark that can cause the bug. The OCR page processing is done and working now, still to do is to populate the queue (rather than the ocr queue) after preprocessing / wiping.
Diffstat (limited to 'cmd/mkpipeline')
-rw-r--r--cmd/mkpipeline/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mkpipeline/main.go b/cmd/mkpipeline/main.go
index e37a56d..a32526a 100644
--- a/cmd/mkpipeline/main.go
+++ b/cmd/mkpipeline/main.go
@@ -34,7 +34,7 @@ func main() {
prefix := "rescribe"
buckets := []string{"inprogress", "done"}
- queues := []string{"preprocess", "wipeonly", "ocr", "analyse"}
+ queues := []string{"preprocess", "wipeonly", "ocr", "analyse", "ocrpage"}
for _, bucket := range buckets {
bname := prefix + bucket