-
I'm considering replacing some Kafka queues with pg-boss. Most of my code is in NodeJS but I have a few components that consume from the Kafka queues that are implemented in Python. Is there a Python implementation of pg-boss that is compatible with the NodeJS implementation, such that jobs created in NodeJS could be consumed in Python and vice versa? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Unless you need specific features like denouncing or uniqueness, you can directly insert jobs from python using SQL. Consuming jobs from Python is going to be much more difficult since the fetch command is more complicated than insert. |
Beta Was this translation helpful? Give feedback.
Unless you need specific features like denouncing or uniqueness, you can directly insert jobs from python using SQL. Consuming jobs from Python is going to be much more difficult since the fetch command is more complicated than insert.