[midPoint-git] [Evolveum/midpoint] 8b84a7: Implement reconciliation task partitioning
Pavol Mederly
mederly at evolveum.com
Tue Mar 13 22:00:57 CET 2018
Branch: refs/heads/feature/multinode-tasks
Home: https://github.com/Evolveum/midpoint
Commit: 8b84a737727ed9d79e2a0e59a2f9846190801c39
https://github.com/Evolveum/midpoint/commit/8b84a737727ed9d79e2a0e59a2f9846190801c39
Author: Pavol Mederly <mederly at evolveum.com>
Date: 2018-03-13 (Tue, 13 Mar 2018)
Changed paths:
M infra/schema/src/main/java/com/evolveum/midpoint/schema/constants/SchemaConstants.java
M infra/schema/src/main/resources/xml/ns/public/common/common-core-3.xsd
M infra/schema/src/main/resources/xml/ns/public/model/extension-3.xsd
M model/model-api/src/main/java/com/evolveum/midpoint/model/api/ModelPublicConstants.java
A model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/sync/PartitionedReconciliationTaskHandlerCreator.java
M model/model-impl/src/main/java/com/evolveum/midpoint/model/impl/sync/ReconciliationTaskHandler.java
M model/model-intest/pom.xml
M model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/sync/AbstractSynchronizationStoryTest.java
M model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/sync/TestReconTask.java
A model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/sync/TestReconTaskMultiNode.java
A model/model-intest/src/test/java/com/evolveum/midpoint/model/intest/sync/TestReconTaskPartitioned.java
A model/model-intest/src/test/resources/common/task-reconcile-dummy-blue-multinode.xml
A model/model-intest/src/test/resources/common/task-reconcile-dummy-blue-partitioned.xml
A model/model-intest/src/test/resources/common/task-reconcile-dummy-green-multinode.xml
A model/model-intest/src/test/resources/common/task-reconcile-dummy-green-partitioned.xml
A model/model-intest/src/test/resources/common/task-reconcile-dummy-multinode.xml
A model/model-intest/src/test/resources/common/task-reconcile-dummy-partitioned.xml
A model/model-intest/testng-db-specific.xml
M model/model-test/src/main/java/com/evolveum/midpoint/model/test/AbstractModelIntegrationTest.java
M repo/repo-sql-impl-test/sql-procedures/postgresql.sql
M repo/repo-sql-impl-test/sql-procedures/sqlserver.sql
A repo/task-api/src/main/java/com/evolveum/midpoint/task/api/StaticTaskPartitioningStrategy.java
M repo/task-api/src/main/java/com/evolveum/midpoint/task/api/Task.java
A repo/task-api/src/main/java/com/evolveum/midpoint/task/api/TaskDebugUtil.java
M repo/task-api/src/main/java/com/evolveum/midpoint/task/api/TaskManager.java
A repo/task-api/src/main/java/com/evolveum/midpoint/task/api/TaskPartitioningStrategy.java
A repo/task-api/src/main/java/com/evolveum/midpoint/task/api/TaskUtil.java
M repo/task-quartz-impl/src/main/java/com/evolveum/midpoint/task/quartzimpl/TaskManagerQuartzImpl.java
M repo/task-quartz-impl/src/main/java/com/evolveum/midpoint/task/quartzimpl/TaskQuartzImpl.java
M repo/task-quartz-impl/src/main/java/com/evolveum/midpoint/task/quartzimpl/execution/JobExecutor.java
A repo/task-quartz-impl/src/main/java/com/evolveum/midpoint/task/quartzimpl/handlers/PartitioningTaskHandler.java
M repo/task-quartz-impl/src/main/java/com/evolveum/midpoint/task/quartzimpl/work/WorkStateManager.java
M repo/task-quartz-impl/src/test/java/com/evolveum/midpoint/task/quartzimpl/AbstractTaskManagerTest.java
M repo/task-quartz-impl/src/test/java/com/evolveum/midpoint/task/quartzimpl/MockWorkBucketsTaskHandler.java
A repo/task-quartz-impl/src/test/java/com/evolveum/midpoint/task/quartzimpl/PartitionedMockWorkBucketsTaskHandlerCreator.java
M repo/task-quartz-impl/src/test/java/com/evolveum/midpoint/task/quartzimpl/TestWorkDistribution.java
M repo/task-quartz-impl/src/test/java/com/evolveum/midpoint/task/quartzimpl/TestWorkersManagement.java
A repo/task-quartz-impl/src/test/resources/workers/task-200-r.xml
A repo/task-quartz-impl/src/test/resources/workers/task-210-r.xml
A repo/task-quartz-impl/src/test/resources/workers/task-220-r.xml
M repo/task-quartz-impl/testng-integration.xml
Log Message:
-----------
Implement reconciliation task partitioning
Reconciliation can be now run either in a single task (as before) or
divided into a sequence of three tasks: operation completion,
resource reconciliation, and shadow reconciliation. The reason is
that the second and third stages are now capable of distribution
onto multiple cluster nodes by using coordinator/worker mechanism.
Also adapted testing SQL procedures.
Some minor fixes were done as well.
More information about the midPoint-svn
mailing list