|
@@ -17,9 +17,12 @@
|
|
*/
|
|
*/
|
|
package org.apache.hadoop.hdfs.server.namenode;
|
|
package org.apache.hadoop.hdfs.server.namenode;
|
|
|
|
|
|
|
|
+import static org.apache.hadoop.util.Time.now;
|
|
|
|
+
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.Collection;
|
|
|
|
+import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
import java.util.SortedMap;
|
|
import java.util.SortedMap;
|
|
@@ -39,8 +42,6 @@ import org.apache.hadoop.util.Daemon;
|
|
import com.google.common.annotations.VisibleForTesting;
|
|
import com.google.common.annotations.VisibleForTesting;
|
|
import com.google.common.base.Preconditions;
|
|
import com.google.common.base.Preconditions;
|
|
|
|
|
|
-import static org.apache.hadoop.util.Time.now;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* LeaseManager does the lease housekeeping for writing on files.
|
|
* LeaseManager does the lease housekeeping for writing on files.
|
|
* This class also provides useful static methods for lease recovery.
|
|
* This class also provides useful static methods for lease recovery.
|
|
@@ -340,7 +341,8 @@ public class LeaseManager {
|
|
}
|
|
}
|
|
|
|
|
|
final int len = overwrite.length();
|
|
final int len = overwrite.length();
|
|
- for(Map.Entry<String, Lease> entry : findLeaseWithPrefixPath(src, sortedLeasesByPath)) {
|
|
|
|
|
|
+ for(Map.Entry<String, Lease> entry
|
|
|
|
+ : findLeaseWithPrefixPath(src, sortedLeasesByPath).entrySet()) {
|
|
final String oldpath = entry.getKey();
|
|
final String oldpath = entry.getKey();
|
|
final Lease lease = entry.getValue();
|
|
final Lease lease = entry.getValue();
|
|
//overwrite must be a prefix of oldpath
|
|
//overwrite must be a prefix of oldpath
|
|
@@ -355,7 +357,8 @@ public class LeaseManager {
|
|
}
|
|
}
|
|
|
|
|
|
synchronized void removeLeaseWithPrefixPath(String prefix) {
|
|
synchronized void removeLeaseWithPrefixPath(String prefix) {
|
|
- for(Map.Entry<String, Lease> entry : findLeaseWithPrefixPath(prefix, sortedLeasesByPath)) {
|
|
|
|
|
|
+ for(Map.Entry<String, Lease> entry
|
|
|
|
+ : findLeaseWithPrefixPath(prefix, sortedLeasesByPath).entrySet()) {
|
|
if (LOG.isDebugEnabled()) {
|
|
if (LOG.isDebugEnabled()) {
|
|
LOG.debug(LeaseManager.class.getSimpleName()
|
|
LOG.debug(LeaseManager.class.getSimpleName()
|
|
+ ".removeLeaseWithPrefixPath: entry=" + entry);
|
|
+ ".removeLeaseWithPrefixPath: entry=" + entry);
|
|
@@ -364,13 +367,13 @@ public class LeaseManager {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- static private List<Map.Entry<String, Lease>> findLeaseWithPrefixPath(
|
|
|
|
|
|
+ static private Map<String, Lease> findLeaseWithPrefixPath(
|
|
String prefix, SortedMap<String, Lease> path2lease) {
|
|
String prefix, SortedMap<String, Lease> path2lease) {
|
|
if (LOG.isDebugEnabled()) {
|
|
if (LOG.isDebugEnabled()) {
|
|
LOG.debug(LeaseManager.class.getSimpleName() + ".findLease: prefix=" + prefix);
|
|
LOG.debug(LeaseManager.class.getSimpleName() + ".findLease: prefix=" + prefix);
|
|
}
|
|
}
|
|
|
|
|
|
- List<Map.Entry<String, Lease>> entries = new ArrayList<Map.Entry<String, Lease>>();
|
|
|
|
|
|
+ final Map<String, Lease> entries = new HashMap<String, Lease>();
|
|
final int srclen = prefix.length();
|
|
final int srclen = prefix.length();
|
|
|
|
|
|
for(Map.Entry<String, Lease> entry : path2lease.tailMap(prefix).entrySet()) {
|
|
for(Map.Entry<String, Lease> entry : path2lease.tailMap(prefix).entrySet()) {
|
|
@@ -379,7 +382,7 @@ public class LeaseManager {
|
|
return entries;
|
|
return entries;
|
|
}
|
|
}
|
|
if (p.length() == srclen || p.charAt(srclen) == Path.SEPARATOR_CHAR) {
|
|
if (p.length() == srclen || p.charAt(srclen) == Path.SEPARATOR_CHAR) {
|
|
- entries.add(entry);
|
|
|
|
|
|
+ entries.put(entry.getKey(), entry.getValue());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return entries;
|
|
return entries;
|