murong00 commented on a change in pull request #6637: [pulsar-broker] Implement
AutoSubscriptionCreation by namespace override
URL: https://github.com/apache/pulsar/pull/6637#discussion_r405912931
##########
File path:
pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/impl/NamespacesBase.java
##########
@@ -615,29 +673,87 @@ protected void
internalRemoveAutoTopicCreation(AsyncResponse asyncResponse) {
policies -> {
if (policies.isPresent()) {
Entry<Policies, Stat> policiesNode = policies.get();
- policiesNode.getKey().autoTopicCreationOverride = null;
+ policiesNode.getKey().autoSubscriptionCreationOverride
= autoSubscriptionCreationOverride;
try {
// Write back the new policies into zookeeper
globalZk().setData(path(POLICIES,
namespaceName.toString()),
-
jsonMapper().writeValueAsBytes(policiesNode.getKey()),
policiesNode.getValue().getVersion());
- policiesCache().invalidate(path(POLICIES,
namespaceName.toString()));
+
jsonMapper().writeValueAsBytes(policiesNode.getKey()),
policiesNode.getValue().getVersion(),
+ (rc, path1, ctx, stat) -> {
+ if (rc ==
KeeperException.Code.OK.intValue()) {
+
policiesCache().invalidate(path(POLICIES, namespaceName.toString()));
+ } else {
+ String errorMsg = String.format(
+ "[%s] Failed to modify
autoSubscriptionCreation status for namespace %s",
+ clientAppId(),
namespaceName);
+ if (rc ==
KeeperException.Code.NONODE.intValue()) {
+ log.warn("{} : does not
exist", errorMsg);
+ asyncResponse.resume(new
RestException(Status.NOT_FOUND, "Namespace does not exist"));
+ } else if (rc ==
KeeperException.Code.BADVERSION.intValue()) {
+ log.warn("{} : concurrent
modification", errorMsg);
+ asyncResponse.resume(new
RestException(Status.CONFLICT, "Concurrent modification"));
+ } else {
+
asyncResponse.resume(KeeperException.create(KeeperException.Code.get(rc),
errorMsg));
+ }
+ }
+ }, null);
+ String autoOverride =
autoSubscriptionCreationOverride.allowAutoSubscriptionCreation ? "enabled" :
"disabled";
+ log.info("[{}] Successfully {}
autoSubscriptionCreation on namespace {}", clientAppId(), autoOverride,
namespaceName);
asyncResponse.resume(Response.noContent().build());
- log.info("[{}] Successfully removed override on
namespace {}", clientAppId(), namespaceName);
return null;
- } catch (KeeperException.NoNodeException e) {
- log.error("[{}] Failed to modify autoTopicCreation
status for namespace {}: does not exist", clientAppId(),
- namespaceName);
- asyncResponse.resume(new
RestException(Status.NOT_FOUND, "Namespace does not exist"));
+ } catch (Exception e) {
+ log.error("[{}] Failed to modify
autoSubscriptionCreation status on namespace {}", clientAppId(), namespaceName,
e);
+ asyncResponse.resume(new RestException(e));
return null;
- } catch (KeeperException.BadVersionException e) {
- log.error(
- "[{}] Failed to modify autoTopicCreation
status on namespace {} expected policy node version={} : concurrent
modification",
- clientAppId(), namespaceName,
policiesNode.getValue().getVersion());
+ }
+ } else {
+ asyncResponse.resume(new
RestException(Status.NOT_FOUND, "Namespace " + namespaceName + " does not
exist"));
+ return null;
+ }
+ }
+ ).exceptionally(e -> {
+ log.error("[{}] Failed to modify autoSubscriptionCreation status
on namespace {}", clientAppId(), namespaceName, e);
+ asyncResponse.resume(new RestException(e));
+ return null;
+ });
+ }
+
+ protected void internalRemoveAutoSubscriptionCreation(AsyncResponse
asyncResponse) {
+ validateAdminAccessForTenant(namespaceName.getTenant());
+ validatePoliciesReadOnlyAccess();
- asyncResponse.resume(new
RestException(Status.CONFLICT, "Concurrent modification"));
+ // Force to read the data s.t. the watch to the cache content is setup.
+ policiesCache().getWithStatAsync(path(POLICIES,
namespaceName.toString())).thenApply(
+ policies -> {
+ if (policies.isPresent()) {
+ Entry<Policies, Stat> policiesNode = policies.get();
+ policiesNode.getKey().autoSubscriptionCreationOverride
= null;
+ try {
+ // Write back the new policies into zookeeper
+ globalZk().setData(path(POLICIES,
namespaceName.toString()),
+
jsonMapper().writeValueAsBytes(policiesNode.getKey()),
policiesNode.getValue().getVersion(),
+ (rc, path1, ctx, stat) -> {
+ if (rc ==
KeeperException.Code.OK.intValue()) {
+
policiesCache().invalidate(path(POLICIES, namespaceName.toString()));
+ } else {
+ String errorMsg = String.format(
+ "[%s] Failed to modify
autoSubscriptionCreation status for namespace %s",
+ clientAppId(),
namespaceName);
+ if (rc ==
KeeperException.Code.NONODE.intValue()) {
+ log.warn("{} : does not
exist", errorMsg);
+ asyncResponse.resume(new
RestException(Status.NOT_FOUND, "Namespace does not exist"));
+ } else if (rc ==
KeeperException.Code.BADVERSION.intValue()) {
+ log.warn("{} : concurrent
modification", errorMsg);
+ asyncResponse.resume(new
RestException(Status.CONFLICT, "Concurrent modification"));
+ } else {
+
asyncResponse.resume(KeeperException.create(KeeperException.Code.get(rc),
errorMsg));
+ }
+ }
+ }, null);
+ log.info("[{}] Successfully removed
autoSubscriptionCreation override on namespace {}", clientAppId(),
namespaceName);
+ asyncResponse.resume(Response.noContent().build());
Review comment:
Done.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services