use of com.couchbase.client.core.Core in project couchbase-jvm-clients by couchbase.
the class DefaultConfigurationProviderIntegrationTest method openBucketFromOneFirstValidSeed.
/**
* Bucket config should also be loaded when the second seed in the list is not available.
*/
@Test
void openBucketFromOneFirstValidSeed() {
TestNodeConfig cfg = config().firstNodeWith(Services.KV).get();
Set<SeedNode> seeds = new HashSet<>(Arrays.asList(SeedNode.create(cfg.hostname(), Optional.of(cfg.ports().get(Services.KV)), Optional.of(cfg.ports().get(Services.MANAGER))), SeedNode.create("1.2.3.4")));
SimpleEventBus eventBus = new SimpleEventBus(true);
environment = CoreEnvironment.builder().eventBus(eventBus).build();
core = Core.create(environment, authenticator(), seeds);
String bucketName = config().bucketname();
ConfigurationProvider provider = new DefaultConfigurationProvider(core, seeds);
openAndClose(bucketName, provider);
provider.shutdown().block();
waitUntilCondition(() -> eventBus.publishedEvents().stream().anyMatch(e -> e instanceof EndpointConnectionFailedEvent));
}
use of com.couchbase.client.core.Core in project couchbase-jvm-clients by couchbase.
the class DefaultConfigurationProviderIntegrationTest method retriesOnBucketNotFoundDuringLoadException.
/**
* Need to make sure that if a bucket is not found during load, we continue retrying the open
* bucket attempts.
*/
@Test
@IgnoreWhen(clusterTypes = ClusterType.CAVES)
void retriesOnBucketNotFoundDuringLoadException() {
TestNodeConfig cfg = config().firstNodeWith(Services.KV).get();
Set<SeedNode> seeds = new HashSet<>(Collections.singletonList(SeedNode.create(cfg.hostname(), Optional.of(cfg.ports().get(Services.KV)), Optional.of(cfg.ports().get(Services.MANAGER)))));
SimpleEventBus eventBus = new SimpleEventBus(true);
environment = CoreEnvironment.builder().eventBus(eventBus).build();
core = Core.create(environment, authenticator(), seeds);
ConfigurationProvider provider = new DefaultConfigurationProvider(core, seeds);
try {
String bucketName = "this-bucket-does-not-exist";
provider.openBucket(bucketName).subscribe(v -> {
}, e -> assertTrue(e instanceof ConfigException));
waitUntilCondition(() -> eventBus.publishedEvents().stream().anyMatch(p -> p instanceof BucketOpenRetriedEvent));
for (Event event : eventBus.publishedEvents()) {
if (event instanceof BucketOpenRetriedEvent) {
assertEquals(bucketName, ((BucketOpenRetriedEvent) event).bucketName());
assertTrue(event.cause() instanceof BucketNotFoundDuringLoadException);
}
}
} finally {
provider.shutdown().block();
}
}
use of com.couchbase.client.core.Core in project couchbase-jvm-clients by couchbase.
the class ClusterManagerBucketLoaderIntegrationTest method loadConfigViaClusterManagerHttp.
/**
* This is a very simplistic test that makes sure that we can "round trip" in the
* {@link ClusterManagerBucketLoader} by grabbing a JSON decodable config through the full stack.
*/
@Test
// @Disabled
void loadConfigViaClusterManagerHttp() {
TestNodeConfig config = config().firstNodeWith(Services.MANAGER).get();
Core core = Core.create(env, authenticator(), seedNodes());
ClusterManagerBucketLoader loader = new ClusterManagerBucketLoader(core);
int port = config.ports().get(Services.MANAGER);
ProposedBucketConfigContext ctx = loader.load(new NodeIdentifier(config.hostname(), port), port, config().bucketname(), Optional.empty()).block();
BucketConfig loaded = BucketConfigParser.parse(ctx.config(), env, ctx.origin());
assertNotNull(loaded);
assertEquals(config().bucketname(), loaded.name());
core.shutdown().block();
}
use of com.couchbase.client.core.Core in project couchbase-jvm-clients by couchbase.
the class ClusterManagerBucketRefresherIntegrationTest method streamsNewConfigurations.
@Test
@IgnoreWhen(clusterTypes = ClusterType.CAVES)
void streamsNewConfigurations() {
Core core = Core.create(env, authenticator(), seedNodes());
ProposedBucketConfigInspectingProvider inspectingProvider = new ProposedBucketConfigInspectingProvider(core.configurationProvider());
ClusterManagerBucketRefresher refresher = new ClusterManagerBucketRefresher(inspectingProvider, core);
core.openBucket(config().bucketname());
waitUntilCondition(() -> core.clusterConfig().hasClusterOrBucketConfig());
refresher.register(config().bucketname()).block();
waitUntilCondition(() -> !inspectingProvider.proposedConfigs().isEmpty());
ProposedBucketConfigContext proposed = inspectingProvider.proposedConfigs().get(0).proposedConfig();
assertEquals(config().bucketname(), proposed.bucketName());
assertNotNull(proposed.config());
refresher.shutdown().block();
core.shutdown().block();
}
use of com.couchbase.client.core.Core in project couchbase-jvm-clients by couchbase.
the class ClusterManagerBucketRefresher method registerStream.
/**
* Registers the given bucket name with the http stream.
*
* <p>Note that this method deliberately subscribes "out of band" and not being flatMapped into the
* {@link #register(String)} return value. The idea is that the flux config subscription keeps on going
* forever until specifically unsubscribed through either {@link #deregister(String)} or {@link #shutdown()}.</p>
*
* @param ctx the core context to use.
* @param name the name of the bucket.
* @return once registered, returns the disposable so it can be later used to deregister.
*/
private Disposable registerStream(final CoreContext ctx, final String name) {
return Mono.defer(() -> {
BucketConfigStreamingRequest request = new BucketConfigStreamingRequest(ctx.environment().timeoutConfig().managementTimeout(), ctx, BestEffortRetryStrategy.INSTANCE, name, ctx.authenticator());
core.send(request);
return Reactor.wrap(request, request.response(), true);
}).flux().flatMap(res -> {
if (res.status().success()) {
return res.configs().map(config -> new ProposedBucketConfigContext(name, config, res.address()));
} else {
eventBus.publish(new BucketConfigRefreshFailedEvent(core.context(), BucketConfigRefreshFailedEvent.RefresherType.MANAGER, BucketConfigRefreshFailedEvent.Reason.INDIVIDUAL_REQUEST_FAILED, Optional.of(res)));
// and retry the whole thing
return Flux.error(new ConfigException());
}
}).doOnError(e -> eventBus.publish(new BucketConfigRefreshFailedEvent(core.context(), BucketConfigRefreshFailedEvent.RefresherType.MANAGER, BucketConfigRefreshFailedEvent.Reason.STREAM_FAILED, Optional.of(e)))).doOnComplete(() -> {
eventBus.publish(new BucketConfigRefreshFailedEvent(core.context(), BucketConfigRefreshFailedEvent.RefresherType.MANAGER, BucketConfigRefreshFailedEvent.Reason.STREAM_CLOSED, Optional.empty()));
// handled in the retryWhen below.
throw new ConfigException();
}).retryWhen(Retry.any().exponentialBackoff(Duration.ofMillis(32), Duration.ofMillis(4096)).toReactorRetry()).subscribe(provider::proposeBucketConfig);
}
Aggregations