This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
from 76f0d9dbbb9 CAMEL-22433 - Create a Camel Docling component (#19261)
new c3644164bf4 CAMEL-22430: Make FileClusterService more resilient to
split-brain scenarios
new 31a60eef5c1 Add docs for cluster service configuration
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
components/camel-file/pom.xml | 6 +
.../file/cluster/FileLockClusterLeaderInfo.java | 71 +++++
.../file/cluster/FileLockClusterService.java | 22 +-
.../file/cluster/FileLockClusterUtils.java | 172 +++++++++++
.../file/cluster/FileLockClusterView.java | 246 +++++++++++----
.../file/cluster/FileLockClusterUtilsTest.java | 196 ++++++++++++
...FileLockClusterServiceAdvancedFailoverTest.java | 333 +++++++++++++++++++++
.../FileLockClusterServiceBasicFailoverTest.java | 248 +++++++++++++++
.../cluster/FileLockClusterServiceTestBase.java | 115 +++++++
.../user-manual/modules/ROOT/pages/clustering.adoc | 85 +++++-
10 files changed, 1440 insertions(+), 54 deletions(-)
create mode 100644
components/camel-file/src/main/java/org/apache/camel/component/file/cluster/FileLockClusterLeaderInfo.java
create mode 100644
components/camel-file/src/main/java/org/apache/camel/component/file/cluster/FileLockClusterUtils.java
create mode 100644
components/camel-file/src/test/java/org/apache/camel/component/file/cluster/FileLockClusterUtilsTest.java
create mode 100644
components/camel-master/src/test/java/org/apache/camel/component/file/cluster/FileLockClusterServiceAdvancedFailoverTest.java
create mode 100644
components/camel-master/src/test/java/org/apache/camel/component/file/cluster/FileLockClusterServiceBasicFailoverTest.java
create mode 100644
components/camel-master/src/test/java/org/apache/camel/component/file/cluster/FileLockClusterServiceTestBase.java