This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a change to branch ignite-20680
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


 discard 8197a3595b wip
     add 643ab31018 IGNITE-21382 Test 
ItPrimaryReplicaChoiceTest.testPrimaryChangeLongHandling is flaky (#3122)
     add d66afcc990 IGNITE-20377 Rename term to consistencyToken (#3110)
     add 5805049801 IGNITE-21400 Disable 
ItDataSchemaSyncTest.checkSchemasCorrectlyRestore test (#3127)
     add e02967e095 IGNITE-20848 Introduce management REST API for Compute  
(#3062)
     new d4232bd068 Implement TABLE_DESTROY and INDEX_DESTROY catalog events, 
and postpone table and index data removal for historical queries purposes.

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   (8197a3595b)
            \
             N -- N -- N   refs/heads/ignite-20680 (d4232bd068)

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 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:
 .../apache/ignite/internal/catalog/Catalog.java    |   9 +
 .../internal/catalog/CatalogManagerImpl.java       |  55 ++-
 .../internal/catalog/events/CatalogEvent.java      |   6 +
 .../internal/catalog/events/DestroyIndexEvent.java |  64 ++++
 ...eters.java => DestroyIndexEventParameters.java} |  37 +-
 .../internal/catalog/events/DestroyTableEvent.java |  61 +++
 .../events/DestroyTableEventParameters.java        |  51 +++
 .../catalog/events/DropIndexEventParameters.java   |  14 +-
 ...ntParameters.java => IndexEventParameters.java} |  38 +-
 .../events/MakeIndexAvailableEventParameters.java  |  13 +-
 .../events/StartBuildingIndexEventParameters.java  |  13 +-
 .../catalog/events/TableEventParameters.java       |   2 +-
 .../ignite/internal/catalog/storage/UpdateLog.java |   2 +-
 .../internal/catalog/CatalogManagerSelfTest.java   |  26 +-
 .../handler/ClientPrimaryReplicaTracker.java       |  17 +-
 .../ignite/client/fakes/FakeInternalTable.java     |  10 -
 .../apache/ignite/client/fakes/FakeTxManager.java  |   4 +-
 .../ignite/internal/compute/ComputeComponent.java  |   8 +
 .../internal/compute/ComputeComponentImpl.java     |   6 +
 .../internal/compute/ComputeMessageTypes.java      |  10 +
 .../ignite/internal/compute/ComputeUtils.java      |  17 +
 .../ignite/internal/compute/ExecutionManager.java  |  22 ++
 ...bResultRequest.java => JobStatusesRequest.java} |  13 +-
 .../compute/message/JobStatusesResponse.java}      |  17 +-
 .../compute/messaging/ComputeMessaging.java        |  84 ++++-
 .../apache/ignite/internal/index/IndexManager.java |  26 +-
 .../ItPrimaryReplicaChoiceTest.java                |   2 +
 modules/rest-api/openapi/openapi.yaml              | 169 +++++++++
 .../internal/rest/api/compute/ComputeApi.java      | 136 +++++++
 .../internal/rest/api}/compute/JobState.java       |   4 +-
 .../internal/rest/api/compute/JobStatus.java       | 115 ++++++
 .../UpdateJobPriorityBody.java}                    |  36 +-
 modules/rest/build.gradle                          |   7 +
 .../rest/compute/ItComputeControllerTest.java      | 410 +++++++++++++++++++++
 .../internal/rest/compute/ComputeController.java   | 101 +++++
 .../ComputeRestFactory.java}                       |  20 +-
 .../exception/ComputeJobNotFoundException.java}    |  14 +-
 .../exception/ComputeJobStateException.java}       |  18 +-
 .../ComputeJobNotFoundExceptionHandler.java}       |  15 +-
 .../handler/ComputeJobStateExceptionHandler.java}  |  13 +-
 .../rest/matcher/MicronautHttpResponseMatcher.java | 119 ++++++
 .../internal/rest/matcher/ProblemMatcher.java      | 169 +++++++++
 .../rest/matcher/RestJobStatusMatcher.java         | 220 +++++++++++
 .../internal/runner/app/ItDataSchemaSyncTest.java  |   2 +
 .../ignite/internal/table/ItTableScanTest.java     |   2 +-
 .../org/apache/ignite/internal/app/IgniteImpl.java |   7 +-
 .../internal/sql/engine/SqlQueryProcessor.java     |   8 +-
 .../sql/engine/exec/DestinationFactory.java        |   2 +-
 .../sql/engine/exec/ExecutionServiceImpl.java      |  11 +-
 .../sql/engine/exec/LogicalRelImplementor.java     |   4 +-
 ...WithTerm.java => NodeWithConsistencyToken.java} |  30 +-
 ...erm.java => PartitionWithConsistencyToken.java} |  22 +-
 .../internal/sql/engine/exec/ScannableTable.java   |  38 +-
 .../sql/engine/exec/ScannableTableImpl.java        |  24 +-
 .../sql/engine/exec/UpdatableTableImpl.java        |  18 +-
 .../sql/engine/exec/mapping/ColocationGroup.java   |  26 +-
 .../exec/mapping/ExecutionTargetFactory.java       |   6 +-
 .../sql/engine/exec/mapping/FragmentMapper.java    |   4 +-
 .../exec/mapping/smallcluster/AbstractTarget.java  |  16 +-
 .../mapping/smallcluster/PartitionedTarget.java    |   8 +-
 .../mapping/smallcluster/SmallClusterFactory.java  |  14 +-
 .../sql/engine/exec/rel/IndexScanNode.java         |  37 +-
 .../sql/engine/exec/rel/TableScanNode.java         |  19 +-
 .../exec/rel/IndexScanNodeExecutionTest.java       |  28 +-
 .../engine/exec/rel/ScannableTableSelfTest.java    |  95 +++--
 .../exec/rel/TableScanNodeExecutionTest.java       |  10 +-
 .../sql/engine/framework/NoOpTransaction.java      |   6 +-
 .../sql/engine/framework/TestBuilders.java         |  42 ++-
 .../sql/engine/framework/TestClusterTest.java      |  14 +-
 .../internal/sql/engine/planner/PlannerTest.java   |   8 +-
 .../ItInternalTableReadWriteScanTest.java          |   6 +-
 .../ignite/internal/table/InternalTable.java       |   4 -
 .../apache/ignite/internal/table/TableImpl.java    |   2 -
 .../internal/table/distributed/LowWatermark.java   |  11 +-
 .../internal/table/distributed/TableManager.java   |  44 +--
 .../replicator/PartitionReplicaListener.java       |   1 -
 .../distributed/storage/InternalTableImpl.java     | 194 +++++-----
 .../ignite/internal/utils/PrimaryReplica.java      |  24 +-
 .../table/distributed/LowWatermarkTest.java        |   3 +-
 .../ignite/internal/tx/InternalTransaction.java    |   8 +-
 .../internal/tx/impl/ReadOnlyTransactionImpl.java  |   7 +-
 .../internal/tx/impl/ReadWriteTransactionImpl.java |  11 +-
 .../ignite/internal/tx/impl/TxManagerImpl.java     |  16 +-
 .../apache/ignite/internal/tx/TxManagerTest.java   |   2 +-
 84 files changed, 2466 insertions(+), 561 deletions(-)
 create mode 100644 
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/events/DestroyIndexEvent.java
 copy 
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/events/{DropIndexEventParameters.java
 => DestroyIndexEventParameters.java} (52%)
 create mode 100644 
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/events/DestroyTableEvent.java
 create mode 100644 
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/events/DestroyTableEventParameters.java
 copy 
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/events/{DropIndexEventParameters.java
 => IndexEventParameters.java} (51%)
 copy 
modules/compute/src/main/java/org/apache/ignite/internal/compute/message/{JobResultRequest.java
 => JobStatusesRequest.java} (80%)
 copy 
modules/{replicator/src/main/java/org/apache/ignite/internal/replicator/message/ReplicaResponse.java
 => 
compute/src/main/java/org/apache/ignite/internal/compute/message/JobStatusesResponse.java}
 (70%)
 create mode 100644 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/compute/ComputeApi.java
 copy modules/{api/src/main/java/org/apache/ignite => 
rest-api/src/main/java/org/apache/ignite/internal/rest/api}/compute/JobState.java
 (91%)
 create mode 100644 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/compute/JobStatus.java
 copy 
modules/rest-api/src/main/java/org/apache/ignite/internal/rest/api/{node/NodeState.java
 => compute/UpdateJobPriorityBody.java} (61%)
 create mode 100644 
modules/rest/src/integrationTest/java/org/apache/ignite/internal/rest/compute/ItComputeControllerTest.java
 create mode 100644 
modules/rest/src/main/java/org/apache/ignite/internal/rest/compute/ComputeController.java
 copy 
modules/rest/src/main/java/org/apache/ignite/internal/rest/{metrics/MetricRestFactory.java
 => compute/ComputeRestFactory.java} (67%)
 copy 
modules/{schema/src/main/java/org/apache/ignite/internal/schema/registry/SchemaRegistrationConflictException.java
 => 
rest/src/main/java/org/apache/ignite/internal/rest/compute/exception/ComputeJobNotFoundException.java}
 (69%)
 copy 
modules/{page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/IgniteInternalDataIntegrityViolationException.java
 => 
rest/src/main/java/org/apache/ignite/internal/rest/compute/exception/ComputeJobStateException.java}
 (63%)
 copy 
modules/rest/src/main/java/org/apache/ignite/internal/rest/{deployment/exception/handler/DeploymentUnitNotFoundExceptionHandler.java
 => compute/exception/handler/ComputeJobNotFoundExceptionHandler.java} (73%)
 copy 
modules/rest/src/main/java/org/apache/ignite/internal/rest/{deployment/exception/handler/DeploymentUnitAlreadyExistExceptionHandler.java
 => compute/exception/handler/ComputeJobStateExceptionHandler.java} (72%)
 create mode 100644 
modules/rest/src/testFixtures/java/org/apache/ignite/internal/rest/matcher/MicronautHttpResponseMatcher.java
 create mode 100644 
modules/rest/src/testFixtures/java/org/apache/ignite/internal/rest/matcher/ProblemMatcher.java
 create mode 100644 
modules/rest/src/testFixtures/java/org/apache/ignite/internal/rest/matcher/RestJobStatusMatcher.java
 rename 
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/{NodeWithTerm.java
 => NodeWithConsistencyToken.java} (65%)
 rename 
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/{PartitionWithTerm.java
 => PartitionWithConsistencyToken.java} (65%)

Reply via email to