Is your feature request related to a problem? Please describe.
Currently, the application uses a loop to push data from the ethereum node to the sql. This is cannot be parallelized, and I would like to integrate some UI so basically see which blocks are missing from the sql.
Describe the solution you'd like
I would like to push interesting block_numbers in a Redis instance.
Then use Celery to pick up the block_numbers from the redis instance and push them into sql.
Interesting links:
Is your feature request related to a problem? Please describe. Currently, the application uses a loop to push data from the ethereum node to the sql. This is cannot be parallelized, and I would like to integrate some UI so basically see which blocks are missing from the sql.
Describe the solution you'd like I would like to push interesting block_numbers in a Redis instance. Then use Celery to pick up the block_numbers from the redis instance and push them into sql. Interesting links:
Describe alternatives you've considered Was thinking of also possibly using RabbitMq but have read in documentation that redis might be faster.