You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/02/11 22:06:13 UTC

[accumulo] branch master updated: update scaninfo creation time javadocs

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

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 963d758  update scaninfo creation time javadocs
963d758 is described below

commit 963d75894e18d57038454df38dd79463799a9495
Author: Keith Turner <kt...@apache.org>
AuthorDate: Mon Feb 11 17:05:27 2019 -0500

    update scaninfo creation time javadocs
---
 core/src/main/java/org/apache/accumulo/core/spi/scan/ScanInfo.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/spi/scan/ScanInfo.java b/core/src/main/java/org/apache/accumulo/core/spi/scan/ScanInfo.java
index d33b7ee..3b2aa63 100644
--- a/core/src/main/java/org/apache/accumulo/core/spi/scan/ScanInfo.java
+++ b/core/src/main/java/org/apache/accumulo/core/spi/scan/ScanInfo.java
@@ -55,7 +55,9 @@ public interface ScanInfo {
   String getTableId();
 
   /**
-   * Returns the first time a tablet knew about a scan over its portion of data.
+   * Returns the first time a tablet knew about a scan over its portion of data. This is the time a
+   * scan session was created inside a tablet server. If the scan goes across multiple tablet
+   * servers then within each tablet server there will be a different creation time.
    */
   long getCreationTime();