Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Loko
Creator II
Creator II

How to schedule JMS consuming in a Talend route ?

I need to use an ActiveMQ queue as cache to store all the messages of the day, then process them at 9pm. 

In Talend ESB, how can we schedule queue consuming ? I can't see any Camel option for cJms like the ones for file:// or ftp:// messaging endpoints.

Labels (2)
1 Solution

Accepted Solutions
Loko
Creator II
Creator II
Author

I got the solution : in a cProperty define a RoutePolicy java objet

In a DSL component use it into the route flow, it can't be set a start component but will work anyway from the very beggening of the route instance.

 

View solution in original post

6 Replies
vapukov
Master II
Master II

for consumer, I don't know the way to schedule it (as a variant - disable/enable route by schedule)

 

but why you need a route for parse messages? it is a simple task for normal DI Job, then you can schedule this job as you want

Loko
Creator II
Creator II
Author

But we don''t need nore use DataIntegration and jobs.

 

We use with Talend ESB and it works fine.

vapukov
Master II
Master II


@Loko wrote:

 We use with Talend ESB and it works fine.


if it does not cover all your needs - at least you have 100% working solution

you already have Studio for ESB, it already support DI perspective, so all what you need - is build standalone job and deploy it.

of course if would be direct solution for scheduling consumer - it will be interesting to know

Loko
Creator II
Creator II
Author

I don't need a job to parse messages. I can do it very easily with a Camel route.  And mixing routes and jobs is a really bad idea because of lacks of performance, Talend said.

 

Please keep in my purpose : scheduling JMS consuming. I don't need help for parsings messages, I've been doing it for years now.

Thank  you 😕

vapukov
Master II
Master II


@Loko wrote:

 

Thank  you 😕


you are welcome 😉 

Loko
Creator II
Creator II
Author

I got the solution : in a cProperty define a RoutePolicy java objet

In a DSL component use it into the route flow, it can't be set a start component but will work anyway from the very beggening of the route instance.