hound
hound copied to clipboard
CPU Usage
Hello,
I'm running hound from a Docker container on an alpine image based on the docker file in this repo. I have a 92 repos being indexed. My docker container is showing medium cpu usage compared to some other containers that I have running. It's nothing bad but I'm wondering why is it constantly running at this level?
I figured if I set the ms-between-poll
to 10m
it wouldn't really use any cpu until it starts polling for changes. But the container is constantly sitting at that medium usage. Is there a difference between having 100 small repos indexed vs one large one?
Here's my config:
{
"max-concurrent-indexers": 1,
"title": "Codebase",
"dbpath": "/hound/data",
"vcs-config": {
"git": {
"ms-between-poll": "10m",
"detect-ref": true
}
},
"repos": {
"<repo>": {
"url": "[email protected]:<user>/<repo>.git",
"url-pattern": {
"base-url": "https://{url}/src/main/{path}{anchor}",
"anchor": "#lines-{line}"
},
"vcs-config": {
"ref": "main"
}
},
...
}
}
Thank you, Beat