use of com.netflix.loadbalancer.Server in project java-chassis by ServiceComb.
the class LoadbalanceHandler method sendWithRetry.
private void sendWithRetry(Invocation invocation, AsyncResponse asyncResp, final LoadBalancer choosenLB) throws Exception {
long time = System.currentTimeMillis();
// retry in loadbalance, 2.0 feature
final int currentHandler = invocation.getHandlerIndex();
final SyncResponseExecutor orginExecutor;
final Executor newExecutor;
if (invocation.getResponseExecutor() instanceof SyncResponseExecutor) {
orginExecutor = (SyncResponseExecutor) invocation.getResponseExecutor();
newExecutor = new Executor() {
@Override
public void execute(Runnable command) {
// retry的场景,对于同步调用, 需要在网络线程中进行。同步调用的主线程已经被挂起,无法再主线程中进行重试。
command.run();
}
};
invocation.setResponseExecutor(newExecutor);
} else {
orginExecutor = null;
newExecutor = null;
}
ExecutionListener<Invocation, Response> listener = new ExecutionListener<Invocation, Response>() {
@Override
public void onExecutionStart(ExecutionContext<Invocation> context) throws AbortExecutionException {
}
@Override
public void onStartWithServer(ExecutionContext<Invocation> context, ExecutionInfo info) throws AbortExecutionException {
}
@Override
public void onExceptionWithServer(ExecutionContext<Invocation> context, Throwable exception, ExecutionInfo info) {
LOGGER.error("onExceptionWithServer msg {}; server {}", exception.getMessage(), context.getRequest().getEndpoint());
}
@Override
public void onExecutionSuccess(ExecutionContext<Invocation> context, Response response, ExecutionInfo info) {
if (orginExecutor != null) {
orginExecutor.execute(() -> {
asyncResp.complete(response);
});
} else {
asyncResp.complete(response);
}
}
@Override
public void onExecutionFailed(ExecutionContext<Invocation> context, Throwable finalException, ExecutionInfo info) {
if (orginExecutor != null) {
orginExecutor.execute(() -> {
asyncResp.consumerFail(finalException);
});
} else {
asyncResp.consumerFail(finalException);
}
}
};
List<ExecutionListener<Invocation, Response>> listeners = new ArrayList<>(0);
listeners.add(listener);
ExecutionContext<Invocation> context = new ExecutionContext<>(invocation, null, null, null);
LoadBalancerCommand<Response> command = LoadBalancerCommand.<Response>builder().withLoadBalancer(choosenLB).withServerLocator(invocation).withRetryHandler(new DefaultLoadBalancerRetryHandler(Configuration.INSTANCE.getRetryOnSame(invocation.getMicroserviceName()), Configuration.INSTANCE.getRetryOnNext(invocation.getMicroserviceName()), true)).withListeners(listeners).withExecutionContext(context).build();
Observable<Response> observable = command.submit(new ServerOperation<Response>() {
public Observable<Response> call(Server s) {
return Observable.create(f -> {
try {
((CseServer) s).setLastVisitTime(time);
choosenLB.getLoadBalancerStats().incrementNumRequests(s);
invocation.setHandlerIndex(currentHandler);
invocation.setEndpoint(((CseServer) s).getEndpoint());
invocation.next(resp -> {
if (resp.isFailed()) {
LOGGER.error("service call error, msg is {}, server is {} ", ((Throwable) resp.getResult()).getMessage(), s);
choosenLB.getLoadBalancerStats().incrementSuccessiveConnectionFailureCount(s);
f.onError(resp.getResult());
} else {
choosenLB.getLoadBalancerStats().incrementActiveRequestsCount(s);
choosenLB.getLoadBalancerStats().noteResponseTime(s, (System.currentTimeMillis() - time));
f.onNext(resp);
f.onCompleted();
}
});
} catch (Exception e) {
LOGGER.error("execution error, msg is " + e.getMessage());
f.onError(e);
}
});
}
});
observable.subscribe(response -> {
}, error -> {
}, () -> {
});
}
use of com.netflix.loadbalancer.Server in project java-chassis by ServiceComb.
the class TestSimpleTransactionControlFilter method testGetFilteredListOfServers.
@Test
public void testGetFilteredListOfServers() {
Invocation invocation = Mockito.mock(Invocation.class);
filter.setInvocation(invocation);
List<Server> servers = new ArrayList<>();
servers.add(server);
List<Server> filteredServers = filter.getFilteredListOfServers(servers);
Assert.assertEquals(1, filteredServers.size());
}
use of com.netflix.loadbalancer.Server in project java-chassis by ServiceComb.
the class TestLoadBalancer method testGetAllServers.
@Test
public void testGetAllServers() {
List<Server> servers = new ArrayList<Server>();
Server server = Mockito.mock(Server.class);
servers.add(server);
Mockito.when(serverList.getInitialListOfServers()).thenReturn(servers);
TransactionControlFilter filter = Mockito.mock(TransactionControlFilter.class);
Mockito.when(filter.getFilteredListOfServers(servers)).thenReturn(servers);
Assert.assertEquals(servers, loadBalancer.getAllServers());
}
use of com.netflix.loadbalancer.Server in project java-chassis by ServiceComb.
the class TestLoadBalancer method testLoadBalancerFullOperationWithoutException.
@Test
public void testLoadBalancerFullOperationWithoutException() {
List<Server> newServers = new ArrayList<Server>();
Server server = Mockito.mock(Server.class);
newServers.add(server);
loadBalancer.chooseServer();
Object key = Mockito.mock(Object.class);
loadBalancer.chooseServer(key);
loadBalancer.getAllServers();
loadBalancer.getLoadBalancerStats();
loadBalancer.getReachableServers();
assertNotNull(loadBalancer.getAllServers());
}
use of com.netflix.loadbalancer.Server in project java-chassis by ServiceComb.
the class TestSessionSticknessRule method testServerWithoutTimeoutAndThreshold.
@Test
public void testServerWithoutTimeoutAndThreshold() {
boolean status = true;
SessionStickinessRule ss = new SessionStickinessRule();
Object key = new Object();
Server s = new Server("test");
Deencapsulation.setField(ss, "lastServer", s);
new MockUp<SessionStickinessRule>() {
@Mock
private boolean isTimeOut() {
return false;
}
};
new MockUp<SessionStickinessRule>() {
@Mock
private boolean isErrorThresholdMet() {
return false;
}
};
try {
ss.choose(key);
} catch (Exception e) {
status = false;
}
Assert.assertTrue(status);
}
Aggregations