https://github.com/vkuznet/workqueue
Go-implementation of CMS DMWM WorkQueue
https://github.com/vkuznet/workqueue
Last synced: about 1 month ago
JSON representation
Go-implementation of CMS DMWM WorkQueue
- Host: GitHub
- URL: https://github.com/vkuznet/workqueue
- Owner: vkuznet
- License: mit
- Created: 2017-05-09T18:41:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T17:11:26.000Z (almost 8 years ago)
- Last Synced: 2025-02-10T01:44:11.638Z (3 months ago)
- Language: Go
- Size: 114 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WorkQueue
Go-implementation of CMS DMWM WorkQueue[](https://travis-ci.org/vkuznet/WorkQueue)
[](https://goreportcard.com/report/github.com/vkuznet/WorkQueue)
[](https://godoc.org/github.com/vkuznet/WorkQueue)### WorkQueue
[WorkQueue](https://github.com/dmwm/WMCore/wiki/WorkQueue) is CMS DMWM component to schedule WMAgent jobs### Build
```
git clone [email protected]:vkuznet/WorkQueue.git
cd WorkQueue
make
```### Runnign the service
```
./workqueue -config config.json
```### Configuration
Here is an example of configuration file```
{
"MetricsFile": "metrics.log",
"MetricsInterval": 60,
"Workers": 10,
"QueueSize": 10,
"FetchInteral": 60,
"RequestType": "new",
"CouchURL": "http://127.0.0.1:5984/",
"Port": 8888
}
```