-
Notifications
You must be signed in to change notification settings - Fork 233
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
Bull arena inside docker just loading #387
Comments
I fix this by changing the "type" of each queue and configuring the redis connection for each queue. example:
|
Does, this works inside of docker? can you access each job? @rauny-henrique |
I'm currently facing the same issue.
I imagine that it has something to do with arena's connection to redis |
I solved my problem. queues: [{
type: 'bull',
name: 'example',
hostId: 'q',
url: 'redis://127.0.0.1:6379',
}] The fix was simply providing the redis config connection instead, like so: queues: [{
type: 'bull',
name: 'example',
hostId: 'q',
redis: {
host: '127.0.0.1',
port: 6379,
},
}] |
There's no problem with redis connection, as data is being stored and processed properly. |
yes, works. The problem is the redis configuration on arena, you need explicitly declare redis connection, like @igordreher say:
|
Facing same problem with above solution as well: Docker Compose File: https://pastebin.com/aydfsZWT Bull Arena Config.json file: https://pastebin.com/Th4qRccT Getting following errors on bull-arena
Error: unsupported configuration: no queues configured
|
I have been using bull arena for a while as being reached via express server that is served on its own via pm2 or whatever. I have no problem with that.
The problem is when I use it from within a docker container, I get the main page but whenever I head to any queue. It never loads.
BTW, the queue is working fine and is jobs are processed but I can' view it form arena.
Thanks in advance
The text was updated successfully, but these errors were encountered: