This is an automated email from the ASF dual-hosted git repository.
vjasani pushed a change to branch PHOENIX-6883-feature
in repository https://gitbox.apache.org/repos/asf/phoenix.git
from 68693129d1 PHOENIX-6943 Add MetadataCache on each region server.
(#1637)
add 61180892c2 PHOENIX-6141 : Ensure consistency between SYSTEM.CATALOG
and SYSTEM.CHILD_LINK (#1575)
new 3a4630bf21 Merge branch 'master' into PHOENIX-6883-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:
.../end2end/ConnectionQueryServicesTestImpl.java | 19 +-
.../phoenix/end2end/OrphanChildLinkRowsIT.java | 270 +++++++++++++++++++++
.../org/apache/phoenix/end2end/ViewMetadataIT.java | 19 +-
.../coprocessor/ChildLinkMetaDataEndpoint.java | 227 ++++++++++++++++-
.../phoenix/coprocessor/ReadRepairScanner.java | 180 ++++++++++++++
.../phoenix/coprocessor/TaskRegionObserver.java | 1 +
.../coprocessor/tasks/ChildLinkScanTask.java | 76 ++++++
.../phoenix/query/ConnectionQueryServicesImpl.java | 114 +++++++--
.../org/apache/phoenix/query/QueryServices.java | 2 +
.../apache/phoenix/query/QueryServicesOptions.java | 2 +
.../java/org/apache/phoenix/schema/PTable.java | 3 +-
.../java/org/apache/phoenix/util/ScanUtil.java | 13 +
12 files changed, 892 insertions(+), 34 deletions(-)
create mode 100644
phoenix-core/src/it/java/org/apache/phoenix/end2end/OrphanChildLinkRowsIT.java
create mode 100644
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/ReadRepairScanner.java
create mode 100644
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/tasks/ChildLinkScanTask.java