This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 9837c406c4f [CAMEL-20675] camel-spring-boot: move cluster service implementations to dedicated starters 9837c406c4f is described below commit 9837c406c4f6ebea24d7a1b023b4e43986695305 Author: Luca Burgazzoli <lburgazz...@gmail.com> AuthorDate: Wed Apr 17 09:26:52 2024 +0200 [CAMEL-20675] camel-spring-boot: move cluster service implementations to dedicated starters --- .../ROOT/pages/camel-4x-upgrade-guide-4_6.adoc | 26 +++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_6.adoc b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_6.adoc index 2a242b095bb..55f6d166c83 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_6.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_6.adoc @@ -102,4 +102,28 @@ route: uri: "direct:foo" steps: - to: "mock:bar" ----- \ No newline at end of file +---- + +=== camel-spring-boot + +The auto configuration of xref:clustering.adoc[Cluster Service] implementations has been moved to dedicated starters: + +[%header, cols="1,2"] +|=== +| Type | Starter +| Consul | camel-consul-cluster-service-starter +| File | camel-file-cluster-service-starter +| Infinispan | camel-infinispan-cluster-service-starter +| JGroups Lock | camel-jgroups-cluster-service-starter +| JGroups Raft | camel-jgroups-raft-cluster-service-starter +| Kubernetes | camel-kubernetes-cluster-service-starter +| Zookeeper | camel-zookeeper-cluster-service-starter +|=== + + +The Cluster Services are turned on by default unless they are explicit disabled, as example: + +[source, properties] +---- +camel.cluster.consul.enabled = false +----