문제

I have a PostgreSQL database that fires a NOTIFY mychannel when rows in a table are inserted.

I would like to send this info out to a variety of sources (Twitter, etc) using Apache Camel.

I understand that one can use JDBC and call LISTEN mychannel to receive those notifications, but may need to use polling.

I'm pretty new to Camel, so not sure where to start. Is this something I would do with the SQL, JDBC, or Polling Consumer connectors?

Is there a built-in method to do this in Camel efficiently?

도움이 되었습니까?

해결책

Updating this question with a more recent answer. This camel component has been created:

http://camel.apache.org/pgevent.html

다른 팁

Use the pgjdbc-ng driver. It supports async notifications without polling.

Write a Camel Component to use it. See the Guava Eventbus Component source code for inspiration.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top