-
Notifications
You must be signed in to change notification settings - Fork 659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Excessive use of Redis databases #11
Comments
Any chance you could link a few redis providers? Since redis itself offers 16 databases out of the box, i'd be surprised any provider didn't offer the same functionality |
Even when hosting it myself I would like to contain Horizon to a single redis db tbh. |
@alexbowers Redis Cluster does not support multiple databases like the stand alone version of Redis. |
Ah, I was not aware. In that case, support
… On 27 Jul 2017, at 08:24, Vignesh Gurusamy ***@***.***> wrote:
@alexbowers Redis Cluster does not support multiple databases like the stand alone version of Redis.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Right, that's a good point:
|
Taken care of, Horizon now ises a single database and a prefix. |
1 similar comment
Taken care of, Horizon now ises a single database and a prefix. |
By default Horizon uses Redis databases
9
,10
,11
,12
,13
,14
,15
for jobs, supervisors, tags, metrics, locks, etc.I'm sure it makes sense to avoid userland namespace conflicts, like
job:{id}
.Can Horizon be configured to only use one or two databases? Are there any drawbacks to that? Maybe all Horizon keys could be prefixed with
horizon:
?I'm asking because a lot of Redis hosting providers only supply a single database
0
, some offer more in higher tiers, very few offer16
out of the box.The text was updated successfully, but these errors were encountered: