I am attempting to set up a quartz job which executes a ConsumerTemplate.receive using a dynamic endpoint (related to this question).
From my googling and source code peaking, I see that the ConsumerTemplate will attempt to cache my endpoint, but since it is dynamic that could lead to an OutOfMemoryException and in any case there is no reason to cache a dynamic endpoint. (see http://mail-archives.apache.org/mod_mbox/camel-users/201003.mbox/%3C75bda7a01003222327i456bf92egd37e1d4868d06041@mail.gmail.com%3E)
Is there anyway to indicate that an endpoint should not be cached by the ConsumerTemplate, perhaps an option on the endpoint URI? I see there is a way to set the cache size globally ( https://cwiki.apache.org/confluence/display/CAMEL/How+do+I+configure+the+default+maximum+cache+size+for+ProducerCache+or+ProducerTemplate ), but I don't think I want to do that since I have several static consumers which probably benefit from the cache.