You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/12/31 21:24:08 UTC

[1/7] git commit: ACCUMULO-2110 cannot remove a FileRef with a Path

Updated Branches:
  refs/heads/1.6.0-SNAPSHOT 16ccbf5e1 -> 072d54e1f
  refs/heads/master bdc6c041a -> cc4e8e7b5


ACCUMULO-2110 cannot remove a FileRef with a Path


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/ec772482
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/ec772482
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/ec772482

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: ec7724823628c240f6f31a3fbd5b4b59bb03053e
Parents: 379881e
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 14:26:29 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Dec 31 14:26:29 2013 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/tserver/Tablet.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/ec772482/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
----------------------------------------------------------------------
diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
index 3c62a86..c4a2770 100644
--- a/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
+++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
@@ -704,7 +704,7 @@ public class Tablet {
         List<FileRef> files = MetadataTableUtil.getBulkFilesLoaded(conn, extent, tid);
 
         for (FileRef file : files)
-          if (paths.keySet().remove(file.path()))
+          if (paths.keySet().remove(file))
             log.debug("Ignoring request to re-import a file already imported: " + extent + ": " + file);
 
         if (paths.size() > 0) {
@@ -3565,7 +3565,7 @@ public class Tablet {
       String time = tabletTime.getMetadataValue();
 
       // it is possible that some of the bulk loading flags will be deleted after being read below because the bulk load
-      // finishes.... therefore split could propogate load flags for a finished bulk load... there is a special iterator
+      // finishes.... therefore split could propagate load flags for a finished bulk load... there is a special iterator
       // on the metadata table to clean up this type of garbage
       Map<FileRef,Long> bulkLoadedFiles = MetadataTableUtil.getBulkFilesLoaded(SystemCredentials.get(), extent);
 


[7/7] git commit: Merge branch '1.6.0-SNAPSHOT'

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/cc4e8e7b
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/cc4e8e7b
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/cc4e8e7b

Branch: refs/heads/master
Commit: cc4e8e7b5a24602e706a5d85ce662e882732191b
Parents: 3420097 072d54e
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 15:24:16 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Dec 31 15:24:16 2013 -0500

----------------------------------------------------------------------

----------------------------------------------------------------------



[5/7] git commit: Merge branch '1.6.0-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.0-SNAPSHOT

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.0-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/072d54e1
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/072d54e1
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/072d54e1

Branch: refs/heads/master
Commit: 072d54e1fff58117de5aa392a22a075c0cf94cb9
Parents: ec77248 16ccbf5
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 15:23:47 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Dec 31 15:23:47 2013 -0500

----------------------------------------------------------------------

----------------------------------------------------------------------



[2/7] git commit: ACCUMULO-2110 cannot remove a FileRef with a Path

Posted by ec...@apache.org.
ACCUMULO-2110 cannot remove a FileRef with a Path


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/ec772482
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/ec772482
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/ec772482

Branch: refs/heads/master
Commit: ec7724823628c240f6f31a3fbd5b4b59bb03053e
Parents: 379881e
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 14:26:29 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Dec 31 14:26:29 2013 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/tserver/Tablet.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/ec772482/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
----------------------------------------------------------------------
diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
index 3c62a86..c4a2770 100644
--- a/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
+++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
@@ -704,7 +704,7 @@ public class Tablet {
         List<FileRef> files = MetadataTableUtil.getBulkFilesLoaded(conn, extent, tid);
 
         for (FileRef file : files)
-          if (paths.keySet().remove(file.path()))
+          if (paths.keySet().remove(file))
             log.debug("Ignoring request to re-import a file already imported: " + extent + ": " + file);
 
         if (paths.size() > 0) {
@@ -3565,7 +3565,7 @@ public class Tablet {
       String time = tabletTime.getMetadataValue();
 
       // it is possible that some of the bulk loading flags will be deleted after being read below because the bulk load
-      // finishes.... therefore split could propogate load flags for a finished bulk load... there is a special iterator
+      // finishes.... therefore split could propagate load flags for a finished bulk load... there is a special iterator
       // on the metadata table to clean up this type of garbage
       Map<FileRef,Long> bulkLoadedFiles = MetadataTableUtil.getBulkFilesLoaded(SystemCredentials.get(), extent);
 


[6/7] git commit: Merge branch '1.6.0-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.0-SNAPSHOT

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.0-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/072d54e1
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/072d54e1
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/072d54e1

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: 072d54e1fff58117de5aa392a22a075c0cf94cb9
Parents: ec77248 16ccbf5
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 15:23:47 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Dec 31 15:23:47 2013 -0500

----------------------------------------------------------------------

----------------------------------------------------------------------



[3/7] git commit: Merge branch '1.6.0-SNAPSHOT'

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3420097e
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3420097e
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3420097e

Branch: refs/heads/master
Commit: 3420097ea29517f3dccd2377f840e0ca09e35405
Parents: bdc6c04 ec77248
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 14:26:50 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Dec 31 14:26:50 2013 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/tserver/Tablet.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/3420097e/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
----------------------------------------------------------------------


[4/7] git commit: ACCUMULO-2110 cannot remove a FileRef with a Path

Posted by ec...@apache.org.
ACCUMULO-2110 cannot remove a FileRef with a Path


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/16ccbf5e
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/16ccbf5e
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/16ccbf5e

Branch: refs/heads/master
Commit: 16ccbf5e16467729b558cf08a379770cba10f5ab
Parents: 379881e
Author: Eric Newton <er...@gmail.com>
Authored: Tue Dec 31 14:26:29 2013 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Tue Dec 31 15:22:11 2013 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/tserver/Tablet.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/16ccbf5e/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
----------------------------------------------------------------------
diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
index 3c62a86..c4a2770 100644
--- a/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
+++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/Tablet.java
@@ -704,7 +704,7 @@ public class Tablet {
         List<FileRef> files = MetadataTableUtil.getBulkFilesLoaded(conn, extent, tid);
 
         for (FileRef file : files)
-          if (paths.keySet().remove(file.path()))
+          if (paths.keySet().remove(file))
             log.debug("Ignoring request to re-import a file already imported: " + extent + ": " + file);
 
         if (paths.size() > 0) {
@@ -3565,7 +3565,7 @@ public class Tablet {
       String time = tabletTime.getMetadataValue();
 
       // it is possible that some of the bulk loading flags will be deleted after being read below because the bulk load
-      // finishes.... therefore split could propogate load flags for a finished bulk load... there is a special iterator
+      // finishes.... therefore split could propagate load flags for a finished bulk load... there is a special iterator
       // on the metadata table to clean up this type of garbage
       Map<FileRef,Long> bulkLoadedFiles = MetadataTableUtil.getBulkFilesLoaded(SystemCredentials.get(), extent);