use of com.linkedin.d2.discovery.event.PropertyEventBusImpl in project rest.li by linkedin.
the class ZKFSTogglingLoadBalancerFactoryImpl method createLoadBalancer.
@Override
public TogglingLoadBalancer createLoadBalancer(ZKConnection zkConnection, ScheduledExecutorService executorService) {
_log.info("Using d2ServicePath: " + _d2ServicePath);
ZooKeeperPermanentStore<ClusterProperties> zkClusterRegistry = createPermanentStore(zkConnection, ZKFSUtil.clusterPath(_baseZKPath), new ClusterPropertiesJsonSerializer());
ZooKeeperPermanentStore<ServiceProperties> zkServiceRegistry = createPermanentStore(zkConnection, ZKFSUtil.servicePath(_baseZKPath, _d2ServicePath), new ServicePropertiesJsonSerializer());
ZooKeeperEphemeralStore<UriProperties> zkUriRegistry = createEphemeralStore(zkConnection, ZKFSUtil.uriPath(_baseZKPath), new UriPropertiesJsonSerializer(), new UriPropertiesMerger(), _useNewEphemeralStoreWatcher);
FileStore<ClusterProperties> fsClusterStore = createFileStore("clusters", new ClusterPropertiesJsonSerializer());
FileStore<ServiceProperties> fsServiceStore = createFileStore(_d2ServicePath, new ServicePropertiesJsonSerializer());
FileStore<UriProperties> fsUriStore = createFileStore("uris", new UriPropertiesJsonSerializer());
PropertyEventBus<ClusterProperties> clusterBus = new PropertyEventBusImpl<ClusterProperties>(executorService);
PropertyEventBus<ServiceProperties> serviceBus = new PropertyEventBusImpl<ServiceProperties>(executorService);
PropertyEventBus<UriProperties> uriBus = new PropertyEventBusImpl<UriProperties>(executorService);
// This ensures the filesystem store receives the events from the event bus so that
// it can keep a local backup.
clusterBus.register(fsClusterStore);
serviceBus.register(fsServiceStore);
uriBus.register(fsUriStore);
TogglingPublisher<ClusterProperties> clusterToggle = _factory.createClusterToggle(zkClusterRegistry, fsClusterStore, clusterBus);
TogglingPublisher<ServiceProperties> serviceToggle = _factory.createServiceToggle(zkServiceRegistry, fsServiceStore, serviceBus);
TogglingPublisher<UriProperties> uriToggle = _factory.createUriToggle(zkUriRegistry, fsUriStore, uriBus);
SimpleLoadBalancerState state = new SimpleLoadBalancerState(executorService, uriBus, clusterBus, serviceBus, _clientFactories, _loadBalancerStrategyFactories, _sslContext, _sslParameters, _isSSLEnabled, _clientServicesConfig);
SimpleLoadBalancer balancer = new SimpleLoadBalancer(state, _lbTimeout, _lbTimeoutUnit);
TogglingLoadBalancer togLB = _factory.createBalancer(balancer, state, clusterToggle, serviceToggle, uriToggle);
togLB.start(new Callback<None>() {
@Override
public void onError(Throwable e) {
_log.warn("Failed to run start on the TogglingLoadBalancer, may not have registered " + "SimpleLoadBalancer and State with JMX.");
}
@Override
public void onSuccess(None result) {
_log.info("Registered SimpleLoadBalancer and State with JMX.");
}
});
return togLB;
}
use of com.linkedin.d2.discovery.event.PropertyEventBusImpl in project rest.li by linkedin.
the class PropertyEventBusImplTest method getBus.
@Override
public PropertyEventBus<String> getBus() {
// TODO rewrite tests in the parent class so they work with either sync or async, and
// test both modes of operation.
ScheduledExecutorService executorService = new SynchronousExecutorService();
PropertyEventPublisher<String> publisher = new MockStore<String>();
PropertyEventBus<String> bus = new PropertyEventBusImpl<String>(executorService, publisher);
return bus;
}
use of com.linkedin.d2.discovery.event.PropertyEventBusImpl in project rest.li by linkedin.
the class ZooKeeperChildrenDataPublisherTest method testChildDataChanged.
@Test
public void testChildDataChanged() throws IOException, InterruptedException, ExecutionException {
ZKConnection client = new ZKConnection("localhost:" + _port, 5000);
client.start();
final ZooKeeperChildrenDataPublisher<Map<String, String>, String> publisher = new ZooKeeperChildrenDataPublisher<Map<String, String>, String>(client, new PropertyStringSerializer(), "/");
final CountDownLatch initLatch = new CountDownLatch(1);
final CountDownLatch addLatch = new CountDownLatch(1);
final CountDownLatch startLatch = new CountDownLatch(1);
final PropertyEventSubscriber<Map<String, String>> subscriber = new PropertyEventSubscriber<Map<String, String>>() {
@Override
public void onInitialize(String propertyName, Map<String, String> propertyValue) {
initLatch.countDown();
}
@Override
public void onAdd(String propertyName, Map<String, String> propertyValue) {
_outputData = propertyValue;
addLatch.countDown();
}
@Override
public void onRemove(String propertyName) {
}
};
publisher.start(new Callback<None>() {
@Override
public void onError(Throwable e) {
}
@Override
public void onSuccess(None result) {
_eventBus = new PropertyEventBusImpl<Map<String, String>>(_executor, publisher);
_eventBus.register(Collections.singleton("bucket"), subscriber);
startLatch.countDown();
}
});
if (!startLatch.await(60, TimeUnit.SECONDS)) {
Assert.fail("unable to start ZookeeperChildrenDataPublisher");
}
if (!initLatch.await(60, TimeUnit.SECONDS)) {
Assert.fail("unable to publish initial property value");
}
FutureCallback<None> callback = new FutureCallback<None>();
_zkClient.setDataUnsafe("/bucket/child-1", "4".getBytes(), callback);
callback.get();
if (!addLatch.await(60, TimeUnit.SECONDS)) {
Assert.fail("unable to get publish initialized property value");
}
_testData.put("bucket/child-1", "4");
assertEquals(_outputData, _testData);
_eventBus.unregister(Collections.singleton("bucket"), subscriber);
client.shutdown();
}
use of com.linkedin.d2.discovery.event.PropertyEventBusImpl in project rest.li by linkedin.
the class ZooKeeperChildrenDataPublisherTest method testChildDeletion.
@Test
public void testChildDeletion() throws IOException, InterruptedException, ExecutionException {
ZKConnection client = new ZKConnection("localhost:" + _port, 5000);
client.start();
final ZooKeeperChildrenDataPublisher<Map<String, String>, String> publisher = new ZooKeeperChildrenDataPublisher<Map<String, String>, String>(client, new PropertyStringSerializer(), "/");
final CountDownLatch initLatch = new CountDownLatch(1);
final CountDownLatch addLatch = new CountDownLatch(1);
final CountDownLatch startLatch = new CountDownLatch(1);
final PropertyEventSubscriber<Map<String, String>> subscriber = new PropertyEventSubscriber<Map<String, String>>() {
@Override
public void onInitialize(String propertyName, Map<String, String> propertyValue) {
initLatch.countDown();
}
@Override
public void onAdd(String propertyName, Map<String, String> propertyValue) {
_outputData = propertyValue;
addLatch.countDown();
}
@Override
public void onRemove(String propertyName) {
}
};
publisher.start(new Callback<None>() {
@Override
public void onError(Throwable e) {
}
@Override
public void onSuccess(None result) {
_eventBus = new PropertyEventBusImpl<Map<String, String>>(_executor, publisher);
_eventBus.register(Collections.singleton("bucket"), subscriber);
startLatch.countDown();
}
});
if (!startLatch.await(60, TimeUnit.SECONDS)) {
Assert.fail("unable to start ZookeeperChildrenDataPublisher");
}
if (!initLatch.await(60, TimeUnit.SECONDS)) {
Assert.fail("unable to publish initial property value");
}
FutureCallback<None> callback = new FutureCallback<None>();
_zkClient.removeNodeUnsafe("/bucket/child-1", callback);
callback.get();
if (!addLatch.await(60, TimeUnit.SECONDS)) {
Assert.fail("unable to get publish initialized property value");
}
_testData.remove("bucket/child-1");
assertEquals(_outputData, _testData);
_eventBus.unregister(Collections.singleton("bucket"), subscriber);
client.shutdown();
}
use of com.linkedin.d2.discovery.event.PropertyEventBusImpl in project rest.li by linkedin.
the class LoadBalancerClientCli method getLoadBalancer.
public static SimpleLoadBalancer getLoadBalancer(ZKConnection zkclient, String zkserver, String d2path, String service) throws IOException, IllegalStateException, URISyntaxException, PropertyStoreException, ExecutionException, TimeoutException, InterruptedException {
// zk stores
String clstoreString = zkserver + ZKFSUtil.clusterPath(d2path);
String scstoreString = zkserver + ZKFSUtil.servicePath(d2path);
String uristoreString = zkserver + ZKFSUtil.uriPath(d2path);
ZooKeeperPermanentStore<ClusterProperties> zkClusterRegistry = (ZooKeeperPermanentStore<ClusterProperties>) getStore(zkclient, clstoreString, new ClusterPropertiesJsonSerializer());
ZooKeeperPermanentStore<ServiceProperties> zkServiceRegistry = (ZooKeeperPermanentStore<ServiceProperties>) getStore(zkclient, scstoreString, new ServicePropertiesJsonSerializer());
ZooKeeperEphemeralStore<UriProperties> zkUriRegistry = (ZooKeeperEphemeralStore<UriProperties>) getEphemeralStore(zkclient, uristoreString, new UriPropertiesJsonSerializer(), new UriPropertiesMerger());
ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(1, new NamedThreadFactory("D2 PropertyEventExecutor"));
PropertyEventBus<ServiceProperties> serviceBus = new PropertyEventBusImpl<ServiceProperties>(executor, zkServiceRegistry);
PropertyEventBus<UriProperties> uriBus = new PropertyEventBusImpl<UriProperties>(executor, zkUriRegistry);
PropertyEventBus<ClusterProperties> clusterBus = new PropertyEventBusImpl<ClusterProperties>(executor, zkClusterRegistry);
Map<String, LoadBalancerStrategyFactory<? extends LoadBalancerStrategy>> loadBalancerStrategyFactories = new HashMap<String, LoadBalancerStrategyFactory<? extends LoadBalancerStrategy>>();
loadBalancerStrategyFactories.put("random", new RandomLoadBalancerStrategyFactory());
loadBalancerStrategyFactories.put("degrader", new DegraderLoadBalancerStrategyFactoryV2());
loadBalancerStrategyFactories.put("degraderV2", new DegraderLoadBalancerStrategyFactoryV2());
loadBalancerStrategyFactories.put("degraderV3", new DegraderLoadBalancerStrategyFactoryV3());
loadBalancerStrategyFactories.put("degraderV2_1", new DegraderLoadBalancerStrategyFactoryV2_1());
Map<String, TransportClientFactory> clientFactories = new HashMap<String, TransportClientFactory>();
clientFactories.put("http", new HttpClientFactory());
// create the state
SimpleLoadBalancerState state = new SimpleLoadBalancerState(executor, uriBus, clusterBus, serviceBus, clientFactories, loadBalancerStrategyFactories, null, null, false);
SimpleLoadBalancer balancer = new SimpleLoadBalancer(state, 5, TimeUnit.SECONDS);
FutureCallback<None> callback = new FutureCallback<None>();
balancer.start(callback);
callback.get(5, TimeUnit.SECONDS);
new JmxManager().registerLoadBalancer("balancer", balancer).registerLoadBalancerState("state", state).registerScheduledThreadPoolExecutor("executorService", executor).registerZooKeeperPermanentStore("zkClusterRegistry", zkClusterRegistry).registerZooKeeperPermanentStore("zkServiceRegistry", zkServiceRegistry).registerZooKeeperEphemeralStore("zkUriRegistry", zkUriRegistry);
return balancer;
}
Aggregations