UNPKG

1.31 kBMarkdownView Raw
1# meshblu-core-job-manager
2Meshblu Core Job Manager
3
4[![Build Status](https://travis-ci.org/octoblu/meshblu-core-job-manager.svg?branch=master)](https://travis-ci.org/octoblu/meshblu-core-job-manager)
5[![Test Coverage](https://codecov.io/gh/octoblu/meshblu-core-job-manager/branch/master/graph/badge.svg)](https://codecov.io/gh/octoblu/meshblu-core-job-manager)
6[![Dependency status](http://img.shields.io/david/octoblu/meshblu-core-job-manager.svg?style=flat)](https://david-dm.org/octoblu/meshblu-core-job-manager)
7[![devDependency Status](http://img.shields.io/david/dev/octoblu/meshblu-core-job-manager.svg?style=flat)](https://david-dm.org/octoblu/meshblu-core-job-manager#info=devDependencies)
8[![Slack Status](http://community-slack.octoblu.com/badge.svg)](http://community-slack.octoblu.com)
9
10[![NPM](https://nodei.co/npm/meshblu-core-job-manager.svg?style=flat)](https://npmjs.org/package/meshblu-core-job-manager)
11
12
13
14# Force logging of particular UUIDs
15
16Add the uuid to the redis set specified in `overrideKey`. (defaults to `override-uuids`)
17
18```
19redis-cli SADD meshblu:override-uuids b3ad254f-0ef1-401b-9c1b-22c429a60208
20```
21
22# Change maxQueueLength
23
24Set 'request:max-queue-length' to an integer value. If unset, queue length is unlimited
25
26```
27redis-cli SET meshblu:request:max-queue-length 1000
28```