Open rgdagir opened 5 years ago
Hmm interesting, this might be a pretty deep one or might be pretty simple.
This line is importing the old exchange wrapper base class which is deprecated: https://github.com/garethdmm/gryphon/blob/8cd2f43623d59fd24afb8df57b1f3daa4cb24ed0/gryphon/data_service/auditors/orderbook_auditor.py#L18
That's strange because it's not even used in that file. You could try commenting that line out or deleting it completely. My guess is you'll at least see a new (more important) error.
In general, to get GDS orderbook data into dashboards you only need the orderbook poll task (to get the orderbooks) and the orderbook consumer (to put them in your gds database). So you could comment out the other producer tasks if they start to misbehave:
I'd love to make GDS more configurable from the command line. I'd like users to be able decide which pollers they are going to run on which exchanges, and likely have the default that you only run the orderbook producer and adding extra producer tasks or consumers are add-ons.
This should be fixed in #54. If you have a moment could you pull that branch and verify that you no longer see that compile error?
Hi!
I am trying to run the gryphon dashboards with the Gryphon Data Service (GDS). I have set up redis and RabbitMQ properly, but I keep on running into a CompileError when I call
foreman start
to start the GDS. Has anyone run into the same problem? Any guidance on how I should proceed? The TRADES and ORDERBOOK parts work fine, as shown in the error message below, but PRODUCER always crashes:Thanks in advance for the help ;)