File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## Unreleased
8+
9+ ### Added
10+ - Error queue cleanup script
11+
712## 1.10.1 - 2020-07-16
813
914### Fixed
Original file line number Diff line number Diff line change 1+ Error queue cleanup up script
2+ =============================
3+
4+ Script to remove files from an error queue if a message refers to a file that doesn't exist anymore. Otherwise moves the
5+ message to the appropriate queue for reprocessing.
6+
7+ This should be executed when needed and not on a timer in case there are other types of error that would result in an
8+ endless loop of messages going from execution queue to error queue and back to execution queue.
9+
10+ To build the container run ` docker build -t clowder/rmq-error-shovel . `
11+
12+ To run the container on the a specific queue, for example ` ncsa.image.preview ` run this command (use your api key and
13+ change other parameters as needed):
14+
15+ ```
16+ docker run -t --rm --net=host -e EXTRACTOR_QUEUE=ncsa.image.preview -e CLOWDER_HOST=http://host.docker.internal:9000
17+ -e CLOWDER_KEY=your_api_key -e RABBITMQ_URI="amqp://guest:[email protected] :5672/%2f" 18+ clowder/rmq-error-shovel
19+ ```
You can’t perform that action at this time.
0 commit comments