SOLR-8995: replace SAM implementations with lambda

This commit is contained in:
Noble Paul 2016-06-20 11:11:18 +05:30
parent 0179b3fb2d
commit bd9005d562
3 changed files with 36 additions and 52 deletions

View File

@ -180,10 +180,7 @@ class ShardLeaderElectionContextBase extends ElectionContext {
zcmd.ensureExists(parent, zkClient); zcmd.ensureExists(parent, zkClient);
try { try {
RetryUtil.retryOnThrowable(NodeExistsException.class, 60000, 5000, new RetryCmd() { RetryUtil.retryOnThrowable(NodeExistsException.class, 60000, 5000, () -> {
@Override
public void execute() throws InterruptedException, KeeperException {
synchronized (lock) { synchronized (lock) {
log.info("Creating leader registration node {} after winning as {}", leaderPath, leaderSeqPath); log.info("Creating leader registration node {} after winning as {}", leaderPath, leaderSeqPath);
List<Op> ops = new ArrayList<>(2); List<Op> ops = new ArrayList<>(2);
@ -209,7 +206,6 @@ class ShardLeaderElectionContextBase extends ElectionContext {
} }
assert leaderZkNodeParentVersion != null; assert leaderZkNodeParentVersion != null;
} }
}
}); });
} catch (Throwable t) { } catch (Throwable t) {
if (t instanceof OutOfMemoryError) { if (t instanceof OutOfMemoryError) {

View File

@ -30,12 +30,12 @@ import org.slf4j.LoggerFactory;
public class RetryUtil { public class RetryUtil {
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
public static interface RetryCmd { public interface RetryCmd {
public void execute() throws Throwable; void execute() throws Throwable;
} }
public static interface BooleanRetryCmd { public interface BooleanRetryCmd {
public boolean execute(); boolean execute();
} }
public static void retryOnThrowable(Class clazz, long timeoutms, long intervalms, RetryCmd cmd) throws Throwable { public static void retryOnThrowable(Class clazz, long timeoutms, long intervalms, RetryCmd cmd) throws Throwable {

View File

@ -28,15 +28,11 @@ public class TestRetryUtil extends SolrTestCaseJ4 {
public void testRetryOnThrowable() throws Throwable { public void testRetryOnThrowable() throws Throwable {
final AtomicInteger executes = new AtomicInteger(); final AtomicInteger executes = new AtomicInteger();
RetryUtil.retryOnThrowable(SolrException.class, 10000, 10, new RetryCmd() { RetryUtil.retryOnThrowable(SolrException.class, 10000, 10, () -> {
@Override
public void execute() throws Throwable {
int calls = executes.incrementAndGet(); int calls = executes.incrementAndGet();
if (calls <= 2) { if (calls <= 2) {
throw new SolrException(ErrorCode.SERVER_ERROR, "Bad Stuff Happened"); throw new SolrException(ErrorCode.SERVER_ERROR, "Bad Stuff Happened");
} }
}
}); });
assertEquals(3, executes.get()); assertEquals(3, executes.get());
@ -45,16 +41,12 @@ public class TestRetryUtil extends SolrTestCaseJ4 {
boolean caughtSolrException = false; boolean caughtSolrException = false;
try { try {
RetryUtil.retryOnThrowable(IllegalStateException.class, 10000, 10, RetryUtil.retryOnThrowable(IllegalStateException.class, 10000, 10,
new RetryCmd() { () -> {
@Override
public void execute() throws Throwable {
int calls = executes2.incrementAndGet(); int calls = executes2.incrementAndGet();
if (calls <= 2) { if (calls <= 2) {
throw new SolrException(ErrorCode.SERVER_ERROR, throw new SolrException(ErrorCode.SERVER_ERROR,
"Bad Stuff Happened"); "Bad Stuff Happened");
} }
}
}); });
} catch (SolrException e) { } catch (SolrException e) {
caughtSolrException = true; caughtSolrException = true;
@ -65,13 +57,9 @@ public class TestRetryUtil extends SolrTestCaseJ4 {
final AtomicInteger executes3 = new AtomicInteger(); final AtomicInteger executes3 = new AtomicInteger();
caughtSolrException = false; caughtSolrException = false;
try { try {
RetryUtil.retryOnThrowable(SolrException.class, 1000, 10, new RetryCmd() { RetryUtil.retryOnThrowable(SolrException.class, 1000, 10, () -> {
@Override
public void execute() throws Throwable {
executes3.incrementAndGet(); executes3.incrementAndGet();
throw new SolrException(ErrorCode.SERVER_ERROR, "Bad Stuff Happened"); throw new SolrException(ErrorCode.SERVER_ERROR, "Bad Stuff Happened");
}
}); });
} catch (SolrException e) { } catch (SolrException e) {
caughtSolrException = true; caughtSolrException = true;