You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2022/04/28 21:33:43 UTC

[accumulo] branch single-node-props updated (f336894433 -> 13e8d9e3c3)

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

ctubbsii pushed a change to branch single-node-props
in repository https://gitbox.apache.org/repos/asf/accumulo.git


    from f336894433 Merge branch 'main' into single-node-props
     add 39bc7a0524 Add base objects for Tablet and TabletServer for the upcoming ScanServer feature (#2661)
     new 13e8d9e3c3 Merge branch 'main' into single-node-props

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:
 .../system/SourceSwitchingIterator.java            |   2 +
 .../accumulo/tserver/TabletClientHandler.java      |  10 +-
 .../accumulo/tserver/TabletHostingServer.java      |  57 +++
 .../org/apache/accumulo/tserver/TabletServer.java  |  27 +-
 .../accumulo/tserver/ThriftScanClientHandler.java  |  51 +--
 .../apache/accumulo/tserver/scan/LookupTask.java   |   4 +-
 .../accumulo/tserver/scan/NextBatchTask.java       |   4 +-
 .../org/apache/accumulo/tserver/scan/ScanTask.java |   6 +-
 .../accumulo/tserver/tablet/ScanDataSource.java    |  33 +-
 .../apache/accumulo/tserver/tablet/Scanner.java    |   8 +-
 .../org/apache/accumulo/tserver/tablet/Tablet.java | 455 +++-----------------
 .../apache/accumulo/tserver/tablet/TabletBase.java | 462 +++++++++++++++++++++
 12 files changed, 670 insertions(+), 449 deletions(-)
 create mode 100644 server/tserver/src/main/java/org/apache/accumulo/tserver/TabletHostingServer.java
 create mode 100644 server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/TabletBase.java


[accumulo] 01/01: Merge branch 'main' into single-node-props

Posted by ct...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch single-node-props
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit 13e8d9e3c3b78dae7be88baeeccbab501bda44f5
Merge: f336894433 39bc7a0524
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Thu Apr 28 17:33:14 2022 -0400

    Merge branch 'main' into single-node-props

 .../system/SourceSwitchingIterator.java            |   2 +
 .../accumulo/tserver/TabletClientHandler.java      |  10 +-
 .../accumulo/tserver/TabletHostingServer.java      |  57 +++
 .../org/apache/accumulo/tserver/TabletServer.java  |  27 +-
 .../accumulo/tserver/ThriftScanClientHandler.java  |  51 +--
 .../apache/accumulo/tserver/scan/LookupTask.java   |   4 +-
 .../accumulo/tserver/scan/NextBatchTask.java       |   4 +-
 .../org/apache/accumulo/tserver/scan/ScanTask.java |   6 +-
 .../accumulo/tserver/tablet/ScanDataSource.java    |  33 +-
 .../apache/accumulo/tserver/tablet/Scanner.java    |   8 +-
 .../org/apache/accumulo/tserver/tablet/Tablet.java | 455 +++-----------------
 .../apache/accumulo/tserver/tablet/TabletBase.java | 462 +++++++++++++++++++++
 12 files changed, 670 insertions(+), 449 deletions(-)