This is an automated email from the ASF dual-hosted git repository.
vjasani pushed a change to branch tmp-ec
in repository https://gitbox.apache.org/repos/asf/phoenix.git
discard 7873f0eebc addendum
discard 0b1303a13b fix index concurrency issues
discard 73732cfb72 ignore test - too aggressive for jenkins builds
discard 9d676e6fc4 addendum - multi-tenant
discard a6f8d158b7 addendum
discard 70876e9c9c Eventually Consistent Global Secondary Indexes
add 42dc7dba7f PHOENIX-7789: Fix Flappers in SlowestScanMetricsIT (#2396)
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 (7873f0eebc)
\
N -- N -- N refs/heads/tmp-ec (42dc7dba7f)
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.
No new revisions were added by this update.
Summary of changes:
Jenkinsfile | 2 +-
Jenkinsfile.yetus | 2 +-
phoenix-core-client/src/main/antlr3/PhoenixSQL.g | 15 +-
.../org/apache/phoenix/compile/JoinCompiler.java | 3 +-
.../coprocessorclient/MetaDataProtocol.java | 4 +-
.../org/apache/phoenix/index/IndexMaintainer.java | 17 -
.../phoenix/jdbc/PhoenixDatabaseMetaData.java | 12 -
.../org/apache/phoenix/jdbc/PhoenixStatement.java | 24 +-
.../apache/phoenix/parse/AlterIndexStatement.java | 15 +-
.../apache/phoenix/parse/CreateIndexStatement.java | 34 -
.../org/apache/phoenix/parse/ParseNodeFactory.java | 8 -
.../phoenix/query/ConnectionQueryServicesImpl.java | 30 +-
.../query/ConnectionlessQueryServicesImpl.java | 8 -
.../org/apache/phoenix/query/QueryConstants.java | 27 +-
.../org/apache/phoenix/schema/DelegateTable.java | 6 -
.../org/apache/phoenix/schema/MetaDataClient.java | 126 +-
.../java/org/apache/phoenix/schema/PTable.java | 13 -
.../java/org/apache/phoenix/schema/PTableImpl.java | 28 +-
.../apache/phoenix/schema/tool/SchemaSQLUtil.java | 7 -
.../phoenix/schema/transform/TransformClient.java | 7 +-
.../phoenix/schema/types/IndexConsistency.java | 109 --
.../org/apache/phoenix/util/CDCChangeBuilder.java | 86 +-
.../main/java/org/apache/phoenix/util/CDCUtil.java | 29 -
.../java/org/apache/phoenix/util/MetaDataUtil.java | 3 +-
.../src/main/protobuf/IndexMutations.proto | 39 -
phoenix-core-client/src/main/protobuf/PTable.proto | 1 -
.../src/main/protobuf/ServerCachingService.proto | 1 -
phoenix-core-server/pom.xml | 4 -
.../coprocessor/CDCGlobalIndexRegionScanner.java | 290 +----
.../phoenix/coprocessor/MetaDataEndpointImpl.java | 19 +-
.../coprocessor/UncoveredIndexRegionScanner.java | 17 +-
.../phoenix/hbase/index/IndexCDCConsumer.java | 1296 --------------------
.../phoenix/hbase/index/IndexRegionObserver.java | 425 ++-----
.../TrackingParallelWriterIndexCommitter.java | 7 +-
.../apache/phoenix/end2end/BasePermissionsIT.java | 4 +-
.../java/org/apache/phoenix/end2end/Bson4IT.java | 11 -
.../java/org/apache/phoenix/end2end/Bson5IT.java | 106 +-
...ncurrentMutationsCoveredEventualGenerateIT.java | 71 --
.../ConcurrentMutationsCoveredEventualIT.java | 36 -
.../ConcurrentMutationsCoveredNonEventualIT.java | 36 -
.../ConcurrentMutationsExtendedGenerateIT.java | 67 -
.../end2end/ConcurrentMutationsExtendedIT.java | 110 +-
.../ConcurrentMutationsExtendedIndexIT.java | 282 -----
.../ConcurrentMutationsLazyPostBatchWriteIT.java | 15 +-
...urrentMutationsUncoveredEventualGenerateIT.java | 71 --
.../ConcurrentMutationsUncoveredEventualIT.java | 36 -
.../ConcurrentMutationsUncoveredNonEventualIT.java | 36 -
.../end2end/IndexMaintainerConsistencyIT.java | 237 ----
...xToolForNonTxGlobalIndexEventualGenerateIT.java | 93 --
.../IndexToolForNonTxGlobalIndexEventualIT.java | 91 --
.../end2end/IndexToolForNonTxGlobalIndexIT.java | 29 +-
.../org/apache/phoenix/end2end/IndexToolIT.java | 33 +-
.../end2end/MetadataServerConnectionsIT.java | 2 -
.../MigrateSystemTablesToSystemNamespaceIT.java | 16 +-
.../MultiTenantEventualIndexGenerateIT.java | 56 -
.../end2end/MultiTenantEventualIndexIT.java | 624 ----------
.../ParallelStatsDisabledWithRegionMovesIT.java | 2 -
.../phoenix/end2end/QueryDatabaseMetaDataIT.java | 7 +-
.../end2end/SkipSystemTablesExistenceCheckIT.java | 2 +-
.../SystemTablesCreationOnConnectionIT.java | 4 +-
.../phoenix/end2end/TenantSpecificTablesDDLIT.java | 3 -
.../phoenix/end2end/UCFWithServerMetadataIT.java | 2 -
.../org/apache/phoenix/end2end/UpsertSelectIT.java | 2 -
.../end2end/UpsertSelectWithRegionMovesIT.java | 2 -
.../phoenix/end2end/VarBinaryEncoded2IT.java | 97 +-
.../GlobalIndexCheckerEventualGenerateIT.java | 89 --
.../index/GlobalIndexCheckerEventualIT.java | 87 --
.../end2end/index/GlobalIndexCheckerIT.java | 49 +-
.../index/GlobalIndexCheckerWithRegionMovesIT.java | 2 -
.../end2end/index/IndexAsyncThresholdIT.java | 2 -
.../end2end/index/PartialSystemCatalogIndexIT.java | 4 +-
.../index/ReplicationWithWALAnnotationIT.java | 3 -
.../UncoveredGlobalIndexRegionScanner2IT.java | 2 -
.../phoenix/jdbc/FailoverPhoenixConnection2IT.java | 6 -
.../phoenix/jdbc/FailoverPhoenixConnectionIT.java | 5 -
.../HAConnectionWithMasterAndRPCRegistryIT.java | 5 -
.../jdbc/HighAvailabilityTestingUtilityIT.java | 5 -
.../jdbc/ParallelPhoenixConnectionFallbackIT.java | 5 -
.../ParallelPhoenixNullComparingResultSetIT.java | 5 -
.../phoenix/monitoring/BasePhoenixMetricsIT.java | 2 -
.../monitoring/PhoenixTableLevelMetricsIT.java | 3 -
.../phoenix/monitoring/SlowestScanMetricsIT.java | 18 +-
.../ConnectionQueryServicesMetricsIT.java | 4 -
.../phoenix/query/MaxConcurrentConnectionsIT.java | 2 -
.../apache/phoenix/query/MetaDataCachingIT.java | 2 -
.../phoenix/parse/IndexConsistencyParseTest.java | 87 --
.../java/org/apache/phoenix/query/BaseTest.java | 2 +-
.../org/apache/phoenix/util/IndexScrutiny.java | 18 +-
.../java/org/apache/phoenix/util/TestUtil.java | 94 --
pom.xml | 6 -
90 files changed, 300 insertions(+), 5104 deletions(-)
delete mode 100644
phoenix-core-client/src/main/java/org/apache/phoenix/schema/types/IndexConsistency.java
delete mode 100644 phoenix-core-client/src/main/protobuf/IndexMutations.proto
delete mode 100644
phoenix-core-server/src/main/java/org/apache/phoenix/hbase/index/IndexCDCConsumer.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsCoveredEventualGenerateIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsCoveredEventualIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsCoveredNonEventualIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsExtendedGenerateIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsExtendedIndexIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsUncoveredEventualGenerateIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsUncoveredEventualIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsUncoveredNonEventualIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexMaintainerConsistencyIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolForNonTxGlobalIndexEventualGenerateIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexToolForNonTxGlobalIndexEventualIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/MultiTenantEventualIndexGenerateIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/MultiTenantEventualIndexIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexCheckerEventualGenerateIT.java
delete mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexCheckerEventualIT.java
delete mode 100644
phoenix-core/src/test/java/org/apache/phoenix/parse/IndexConsistencyParseTest.java