Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public Set<String> getActiveBrokers(@PathParam("cluster") String cluster) throws
// Add Native brokers
return pulsar().getLocalZkCache().getChildren(LoadManager.LOADBALANCE_BROKERS_ROOT);
} catch (Exception e) {
LOG.error(String.format("[%s] Failed to get active broker list: cluster=%s", clientAppId(), cluster), e);
LOG.error("[{}] Failed to get active broker list: cluster={}", clientAppId(), cluster, e);
throw new RestException(e);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ public BacklogQuota getBacklogQuota(String namespace, String policyPath) {
.map(p -> p.backlog_quota_map.getOrDefault(BacklogQuotaType.destination_storage, defaultQuota))
.orElse(defaultQuota);
} catch (Exception e) {
log.error(String.format("Failed to read policies data, will apply the default backlog quota: namespace=%s",
namespace), e);
log.error("Failed to read policies data, will apply the default backlog quota: namespace={}", namespace, e);
return this.defaultQuota;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ public void checkTopicNsOwnership(final String topic) throws RuntimeException {
try {
ownedByThisInstance = pulsar.getNamespaceService().isServiceUnitOwned(topicName);
} catch (Exception e) {
log.debug(String.format("Failed to check the ownership of the topic: %s", topicName), e);
log.debug("Failed to check the ownership of the topic: {}", topicName, e);
throw new RuntimeException(new ServerMetadataException(e));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ protected void validateNamespaceOwnershipWithBundles(String tenant, String clust
// propagate already wrapped-up WebApplicationExceptions
throw wae;
} catch (Exception oe) {
log.debug(String.format("Failed to find owner for namespace %s", fqnn), oe);
log.debug("Failed to find owner for namespace {}", fqnn, oe);
throw new RestException(oe);
}
}
Expand All @@ -452,7 +452,7 @@ protected void validateBundleOwnership(String tenant, String cluster, String nam
// propagate already wrapped-up WebApplicationExceptions
throw wae;
} catch (Exception oe) {
log.debug(String.format("Failed to find owner for namespace %s", fqnn), oe);
log.debug("Failed to find owner for namespace {}", fqnn, oe);
throw new RestException(oe);
}
}
Expand Down Expand Up @@ -544,11 +544,11 @@ public void validateBundleOwnership(NamespaceBundle bundle, boolean authoritativ
}
} catch (IllegalArgumentException iae) {
// namespace format is not valid
log.debug(String.format("Failed to find owner for ServiceUnit %s", bundle), iae);
log.debug("Failed to find owner for ServiceUnit {}", bundle, iae);
throw new RestException(Status.PRECONDITION_FAILED,
"ServiceUnit format is not expected. ServiceUnit " + bundle);
} catch (IllegalStateException ise) {
log.debug(String.format("Failed to find owner for ServiceUnit %s", bundle), ise);
log.debug("Failed to find owner for ServiceUnit {}", bundle, ise);
throw new RestException(Status.PRECONDITION_FAILED, "ServiceUnit bundle is actived. ServiceUnit " + bundle);
} catch (NullPointerException e) {
log.warn("Unable to get web service url");
Expand Down Expand Up @@ -592,15 +592,15 @@ protected void validateTopicOwnership(TopicName topicName, boolean authoritative
}
} catch (IllegalArgumentException iae) {
// namespace format is not valid
log.debug(String.format("Failed to find owner for topic :%s", topicName), iae);
log.debug("Failed to find owner for topic: {}", topicName, iae);
throw new RestException(Status.PRECONDITION_FAILED, "Can't find owner for topic " + topicName);
} catch (IllegalStateException ise) {
log.debug(String.format("Failed to find owner for topic:%s", topicName), ise);
log.debug("Failed to find owner for topic: {}", topicName, ise);
throw new RestException(Status.PRECONDITION_FAILED, "Can't find owner for topic " + topicName);
} catch (WebApplicationException wae) {
throw wae;
} catch (Exception oe) {
log.debug(String.format("Failed to find owner for topic:%s", topicName), oe);
log.debug("Failed to find owner for topic: {}", topicName, oe);
throw new RestException(oe);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public PulsarClientImpl load(ClientConfigurationData key) throws Exception {
private static RemovalListener<ClientConfigurationData, PulsarClientImpl> removalListener = notification -> {
ClientConfigurationData config = notification.getKey();
PulsarClientImpl client = notification.getValue();
LOG.debug("Evicting pulsar client %s with config %s, due to %s",
LOG.debug("Evicting pulsar client {} with config {}, due to {}",
client.toString(), config.toString(), notification.getCause().toString());
close(config, client);
};
Expand All @@ -68,11 +68,9 @@ private static PulsarClientImpl createPulsarClient(
PulsarClientImpl client;
try {
client = new PulsarClientImpl(clientConfig);
LOG.debug(String.format("Created a new instance of PulsarClientImpl for clientConf = %s",
clientConfig.toString()));
LOG.debug("Created a new instance of PulsarClientImpl for clientConf = {}", clientConfig.toString());
} catch (PulsarClientException e) {
LOG.error(String.format("Failed to create PulsarClientImpl for clientConf = %s",
clientConfig.toString()));
LOG.error("Failed to create PulsarClientImpl for clientConf = {}", clientConfig.toString());
throw e;
}
return client;
Expand All @@ -84,10 +82,10 @@ public static PulsarClientImpl getOrCreate(ClientConfigurationData config) throw

private static void close(ClientConfigurationData clientConfig, PulsarClientImpl client) {
try {
LOG.info(String.format("Closing the Pulsar client with conifg %s", clientConfig.toString()));
LOG.info("Closing the Pulsar client with config {}", clientConfig.toString());
client.close();
} catch (PulsarClientException e) {
LOG.warn(String.format("Error while closing the Pulsar client ", clientConfig.toString()), e);
LOG.warn("Error while closing the Pulsar client with config {}", clientConfig.toString(), e);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void track(Event<T> windowEvent) {
* @return the list of events to be processed as a part of the current window
*/
private List<Event<T>> scanEvents(boolean fullScan) {
log.debug(String.format("Scan events, eviction policy %s", evictionPolicy));
log.debug("Scan events, eviction policy {}", evictionPolicy);
List<Event<T>> eventsToExpire = new ArrayList<>();
List<Event<T>> eventsToProcess = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,11 @@ public static void uploadToBookeeper(Namespace dlogNamespace,
// if the dest directory does not exist, create it.
if (dlogNamespace.logExists(destPkgPath)) {
// if the destination file exists, write a log message
log.info(String.format("Target function file already exists at '%s'. Overwriting it now",
destPkgPath));
log.info("Target function file already exists at '{}'. Overwriting it now", destPkgPath);
dlogNamespace.deleteLog(destPkgPath);
}
// copy the topology package to target working directory
log.info(String.format("Uploading function package to '%s'",
destPkgPath));
log.info("Uploading function package to '{}'", destPkgPath);

try (DistributedLogManager dlm = dlogNamespace.openLog(destPkgPath)) {
try (AppendOnlyStreamWriter writer = dlm.getAppendOnlyStreamWriter()){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,17 +109,17 @@ public MaterializedConfiguration getConfiguration() {
for (String channelName : channelNames) {
ChannelComponent channelComponent = channelComponentMap.get(channelName);
if (channelComponent.components.isEmpty()) {
LOGGER.warn(String.format("Channel %s has no components connected" +
" and has been removed.", channelName));
LOGGER.warn("Channel {} has no components connected" +
" and has been removed.", channelName);
channelComponentMap.remove(channelName);
Map<String, Channel> nameChannelMap =
channelCache.get(channelComponent.channel.getClass());
if (nameChannelMap != null) {
nameChannelMap.remove(channelName);
}
} else {
LOGGER.info(String.format("Channel %s connected to %s",
channelName, channelComponent.components.toString()));
LOGGER.info("Channel {} connected to {}",
channelName, channelComponent.components.toString());
conf.addChannel(channelName, channelComponent.channel);
}
}
Expand Down