This is an automated email from the ASF dual-hosted git repository. jsinovassinnaik pushed a change to branch UNOMI-739-update-purge-system in repository https://gitbox.apache.org/repos/asf/unomi.git
discard fad9c1171 feedbacks omit 98a6ea7af UNOMI-739 : remove useless code and fix test omit 246399ed4 UNOMI-739 : remove deletion in rollover policy omit 30700cb7a UNOMI-739 : update purge mechanism omit b8cc54ae0 UNOMI-739 : add session and event purge property add c54ec5639 UNOMI-722: Update Yauaa to 7.13.0 (#574) add 9d1fc3222 UNOMI-736: merge all item indices into same index (#581) new db74f9f37 UNOMI-739 : add session and event purge property new 125cfd55b UNOMI-739 : update purge mechanism new cdbb92592 UNOMI-739 : remove deletion in rollover policy new 7416d321e UNOMI-739 : remove useless code and fix test new 280c8c129 feedbacks This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (fad9c1171) \ N -- N -- N refs/heads/UNOMI-739-update-purge-system (280c8c129) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 5 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: .../karaf-kar/src/main/feature/feature.xml | 8 +- extensions/groovy-actions/services/pom.xml | 1 + .../groovy/actions/GroovyActionDispatcher.java | 6 +- .../actions/listener/GroovyActionListener.java | 30 ++--- .../services/impl/GroovyActionsServiceImpl.java | 98 +++++++------- .../META-INF/cxs/mappings/groovyAction.json | 28 ---- .../resources/OSGI-INF/blueprint/blueprint.xml | 69 ---------- .../unomi/schema/impl/SchemaServiceImpl.java | 9 -- itests/pom.xml | 6 + .../unomi/itests/GroovyActionsServiceIT.java | 13 +- .../unomi/itests/migration/Migrate16xTo220IT.java | 23 ++-- kar/pom.xml | 10 -- .../ElasticSearchPersistenceServiceImpl.java | 78 ++++++++++-- .../META-INF/cxs/mappings/actionType.json | 20 --- .../META-INF/cxs/mappings/campaignevent.json | 44 ------- .../META-INF/cxs/mappings/exportConfig.json | 20 --- .../META-INF/cxs/mappings/importConfig.json | 20 --- .../META-INF/cxs/mappings/jsonschema.json | 25 ---- .../resources/META-INF/cxs/mappings/persona.json | 38 ------ .../META-INF/cxs/mappings/personaSession.json | 41 ------ .../META-INF/cxs/mappings/propertyType.json | 61 --------- .../resources/META-INF/cxs/mappings/rulestats.json | 20 --- .../META-INF/cxs/mappings/systemItems.json | 141 +++++++++++++++++++++ .../resources/META-INF/cxs/mappings/topic.json | 20 --- plugins/request/pom.xml | 3 +- .../services/impl/rules/RulesServiceImpl.java | 24 +++- .../shell/migration/utils/MigrationUtils.java | 13 +- .../migrate-2.0.0-05-globalReindex.groovy | 2 +- .../cxs/migration/migrate-2.0.0-20-scopes.groovy | 2 +- ...-2.2.0-00-rolloverAndMigrateEventSession.groovy | 4 +- .../migrate-2.2.0-05-indicesReduction.groovy | 78 ++++++++++++ .../requestBody/2.0.0}/mappings/campaign.json | 0 .../requestBody/2.0.0}/mappings/conditionType.json | 0 .../requestBody/2.0.0}/mappings/goal.json | 0 .../requestBody/2.0.0}/mappings/patch.json | 0 .../requestBody/2.0.0}/mappings/rule.json | 0 .../requestBody/2.0.0}/mappings/scope.json | 0 .../requestBody/2.0.0}/mappings/scoring.json | 0 .../requestBody/2.0.0}/mappings/segment.json | 0 .../requestBody/2.2.0/base_reindex_request.json | 2 +- .../requestBody/2.2.0/suffix_ids.painless | 5 +- 41 files changed, 418 insertions(+), 544 deletions(-) delete mode 100644 extensions/groovy-actions/services/src/main/resources/META-INF/cxs/mappings/groovyAction.json delete mode 100644 extensions/groovy-actions/services/src/main/resources/OSGI-INF/blueprint/blueprint.xml delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/actionType.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/campaignevent.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/exportConfig.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/importConfig.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/jsonschema.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/persona.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/personaSession.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/propertyType.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/rulestats.json create mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/systemItems.json delete mode 100644 persistence-elasticsearch/core/src/main/resources/META-INF/cxs/mappings/topic.json create mode 100644 tools/shell-commands/src/main/resources/META-INF/cxs/migration/migrate-2.2.0-05-indicesReduction.groovy rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/campaign.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/conditionType.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/goal.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/patch.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/rule.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/scope.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/scoring.json (100%) rename {persistence-elasticsearch/core/src/main/resources/META-INF/cxs => tools/shell-commands/src/main/resources/requestBody/2.0.0}/mappings/segment.json (100%) copy graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/providers/GraphQLProvider.java => tools/shell-commands/src/main/resources/requestBody/2.2.0/suffix_ids.painless (90%)