Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.

How do I configure the maximum endpoint cache size for CamelContext?

CamelContext will by default cache the last 1000 used endpoints (based on a LRUCache).

Configuring cache size

Available as of Camel 2.8

You can configure the default maximum cache size by setting the Exchange.MAXIMUM_ENDPOINT_CACHE_SIZE property on CamelContext.

getCamelContext().getProperties().put(Exchange.MAXIMUM_ENDPOINT_CACHE_SIZE, "500");

You need to configure this before CamelContext is started.

And in Spring XML its done as:

<camelContext>
   <properties>
      <property key="CamelMaximumEndpointCacheSize" value="500"/>
   </properties>
...
</camelContext>

At runtime you can see the EndpointRegistry in JMX as they are listed in the services category.

See Also

© 2004-2015 The Apache Software Foundation.
Apache Camel, Camel, Apache, the Apache feather logo, and the Apache Camel project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
Graphic Design By Hiram