This is an automated email from the ASF dual-hosted git repository.
jayblanc pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
from 0c44c9bd2 [UNOMI-924] Make healthcheck concurrent
add a0a08e4ad UNOMI-919: Refactor the UNOMI startFeatures configuration to
use a Karaf
add 92369e3cf UNOMI-919: Avoid applying setup in test mode as packaging is
already done.
add d0ca690e1 UNOMI-919: Restore missing feature in merged branch.
add dc95f7743 UNOMI-919: Fix bad command syntax in tests
add 383c7ac4d UNOMI-919: Restore additional feature config into unomi
startup
add b93fbf466 UNOMI-919: Remove unused healthcheck config file
add bbad05d11 UNOMI-919: Include dedicated healthcheck config for each
persistence type.
add a9e498ce3 UNOMI-919: fix tests
add cef067f2d UNOMI-919: Remove healthcheck config from karaf/etc package
to let the bundle propose it's own cfg file.
add 77883f35a feat: remove the additional features option to use the
distribution's one.
add 3dc54983c chore: remove unused variable
add 2b7aa2738 doc: update documentation for distribution
add 4b95b49f9 fix: fix test missed in merge
new f9e9877fc UNOMI-919: Refactor the UNOMI startFeatures configuration to
use a Karaf feature
The 1 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:
bom/artifacts/pom.xml | 22 ++
{kar => distribution}/pom.xml | 48 +---
distribution/src/main/feature/feature.xml | 128 ++++++++++
docker/README.md | 72 ++++--
docker/src/main/docker/docker-compose-build-es.yml | 5 +-
docker/src/main/docker/docker-compose-build-os.yml | 3 +-
docker/src/main/docker/docker-compose-es.yml | 5 +-
docker/src/main/docker/docker-compose-os.yml | 3 +-
docker/src/main/docker/entrypoint.sh | 86 +++----
extensions/healthcheck/pom.xml | 11 +-
.../provider/ElasticSearchHealthCheckProvider.java | 135 ++++++-----
.../provider/OpenSearchHealthCheckProvider.java | 150 +++++++-----
.../provider/PersistenceEngineHealthProvider.java | 37 ---
.../provider/PersistenceHealthCheckProvider.java | 66 ------
.../org.apache.unomi.healthcheck-elasticsearch.cfg | 12 +-
...=> org.apache.unomi.healthcheck-opensearch.cfg} | 9 +-
itests/pom.xml | 2 +-
.../test/java/org/apache/unomi/itests/BaseIT.java | 22 +-
.../org/apache/unomi/itests/HealthCheckIT.java | 7 +-
kar/src/main/feature/feature.xml | 11 +-
.../apache/unomi/lifecycle/BundleWatcherImpl.java | 4 +-
manual/src/main/asciidoc/5-min-quickstart.adoc | 17 +-
manual/src/main/asciidoc/configuration.adoc | 263 +++++++++++++--------
manual/src/main/asciidoc/graphql.adoc | 14 +-
.../asciidoc/migrations/migrate-2.x-to-3.0.adoc | 12 +-
manual/src/main/asciidoc/shell-commands.adoc | 11 +-
manual/src/main/asciidoc/writing-plugins.adoc | 121 +++++++---
package/pom.xml | 9 +
.../main/resources/etc/custom.system.properties | 21 --
pom.xml | 1 +
src/main/feature/feature.xml | 75 ++++++
tools/shell-commands/pom.xml | 12 +-
.../unomi/shell/actions/{Stop.java => Setup.java} | 15 +-
.../java/org/apache/unomi/shell/actions/Start.java | 14 +-
.../java/org/apache/unomi/shell/actions/Stop.java | 1 -
.../shell/services/UnomiManagementService.java | 27 ++-
.../UnomiManagementServiceConfiguration.java | 52 ----
.../internal/UnomiManagementServiceImpl.java | 188 +++++++--------
.../unomi/shell/services/internal/UnomiSetup.java | 77 ++++++
.../src/main/resources/org.apache.unomi.start.cfg | 18 --
40 files changed, 1032 insertions(+), 754 deletions(-)
copy {kar => distribution}/pom.xml (82%)
create mode 100644 distribution/src/main/feature/feature.xml
delete mode 100644
extensions/healthcheck/src/main/java/org/apache/unomi/healthcheck/provider/PersistenceEngineHealthProvider.java
rename itests/src/test/resources/org.apache.unomi.healthcheck.cfg =>
extensions/healthcheck/src/main/resources/org.apache.unomi.healthcheck-elasticsearch.cfg
(71%)
rename
extensions/healthcheck/src/main/resources/{org.apache.unomi.healthcheck.cfg =>
org.apache.unomi.healthcheck-opensearch.cfg} (78%)
create mode 100644 src/main/feature/feature.xml
copy
tools/shell-commands/src/main/java/org/apache/unomi/shell/actions/{Stop.java =>
Setup.java} (62%)
delete mode 100644
tools/shell-commands/src/main/java/org/apache/unomi/shell/services/internal/UnomiManagementServiceConfiguration.java
create mode 100644
tools/shell-commands/src/main/java/org/apache/unomi/shell/services/internal/UnomiSetup.java
delete mode 100644
tools/shell-commands/src/main/resources/org.apache.unomi.start.cfg