Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[broker] register loadbalance znode should attempt to wait until session expired #6788

Merged
merged 1 commit into from
Apr 23, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -796,18 +796,24 @@ public void start() throws PulsarServerException {
final String timeAverageZPath = TIME_AVERAGE_BROKER_ZPATH + "/" + lookupServiceAddress;
updateLocalBrokerData();
try {
ZkUtils.createFullPathOptimistic(zkClient, brokerZnodePath, localData.getJsonBytes(),
if (!org.apache.pulsar.zookeeper.ZkUtils.checkNodeAndWaitExpired(
zkClient, brokerZnodePath,
pulsar.getConfig().getZooKeeperSessionTimeoutMillis())) {
ZkUtils.createFullPathOptimistic(zkClient, brokerZnodePath, localData.getJsonBytes(),
ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
} catch (KeeperException.NodeExistsException e) {
long ownerZkSessionId = getBrokerZnodeOwner();
if (ownerZkSessionId != 0 && ownerZkSessionId != zkClient.getSessionId()) {
log.error("Broker znode - [{}] is own by different zookeeper-ssession {} ", brokerZnodePath,
ownerZkSessionId);
throw new PulsarServerException(
"Broker-znode owned by different zk-session " + ownerZkSessionId);
} else {
// Node may already be created by another load manager: in this case update the data.
zkClient.setData(brokerZnodePath, localData.getJsonBytes(), -1);
}
// Node may already be created by another load manager: in this case update the data.
zkClient.setData(brokerZnodePath, localData.getJsonBytes(), -1);
} catch (KeeperException.NodeExistsException e) {
log.error("Broker znode - [{}] is own by different zookeeper-session", brokerZnodePath);
throw new PulsarServerException(
"Broker znode - [" + brokerZnodePath + "] is owned by different zk-session");
} catch (InterruptedException ie) {
Thread.currentThread().interrupt();
// Catching exception here to print the right error message
log.error("Interrupted at creating znode - [{}] for load balance on zookeeper ", brokerZnodePath, ie);
throw ie;
} catch (Exception e) {
// Catching exception here to print the right error message
log.error("Unable to create znode - [{}] for load balance on zookeeper ", brokerZnodePath, e);
Expand Down Expand Up @@ -937,17 +943,6 @@ private void deleteBundleDataFromZookeeper(String bundle) {
}
}

private long getBrokerZnodeOwner() {
try {
Stat stat = new Stat();
zkClient.getData(brokerZnodePath, false, stat);
return stat.getEphemeralOwner();
} catch (Exception e) {
log.warn("Failed to get stat of {}", brokerZnodePath, e);
}
return 0;
}

private void refreshBrokerToFailureDomainMap() {
if (!pulsar.getConfiguration().isFailureDomainsEnabled()) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,20 +301,26 @@ public void start() throws PulsarServerException {
loadReportJson = ObjectMapperFactory.getThreadLocal().writeValueAsString(loadReport);
}
try {
ZkUtils.createFullPathOptimistic(pulsar.getZkClient(), brokerZnodePath,
if (!org.apache.pulsar.zookeeper.ZkUtils.checkNodeAndWaitExpired(
pulsar.getZkClient(), brokerZnodePath,
pulsar.getConfig().getZooKeeperSessionTimeoutMillis())) {
ZkUtils.createFullPathOptimistic(pulsar.getZkClient(), brokerZnodePath,
loadReportJson.getBytes(Charsets.UTF_8), Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
} catch (KeeperException.NodeExistsException e) {
long ownerZkSessionId = getBrokerZnodeOwner();
if (ownerZkSessionId != 0 && ownerZkSessionId != pulsar.getZkClient().getSessionId()) {
log.error("Broker znode - [{}] is own by different zookeeper-ssession {} ", brokerZnodePath,
ownerZkSessionId);
throw new PulsarServerException("Broker-znode owned by different zk-session " + ownerZkSessionId);
}
// Node may already be created by another load manager: in this case update the data.
if (loadReport != null) {
pulsar.getZkClient().setData(brokerZnodePath, loadReportJson.getBytes(Charsets.UTF_8), -1);
} else {
// Node may already be created by another load manager: in this case update the data.
if (loadReport != null) {
pulsar.getZkClient().setData(brokerZnodePath, loadReportJson.getBytes(Charsets.UTF_8), -1);
}
}

} catch (KeeperException.NodeExistsException e) {
log.error("Broker znode - [{}] is own by different zookeeper-session", brokerZnodePath);
throw new PulsarServerException(
"Broker znode - [" + brokerZnodePath + "] is owned by different zk-session");
} catch (InterruptedException ie) {
Thread.currentThread().interrupt();
// Catching exception here to print the right error message
log.error("Interrupted at creating znode - [{}] for load balance on zookeeper ", brokerZnodePath, ie);
throw ie;
} catch (Exception e) {
// Catching excption here to print the right error message
log.error("Unable to create znode - [{}] for load balance on zookeeper ", brokerZnodePath, e);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.zookeeper;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.KeeperException.NodeExistsException;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.Watcher.Event.EventType;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.data.Stat;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* ZooKeeper utils.
*/
public final class ZkUtils {

private static final Logger log = LoggerFactory.getLogger(ZkUtils.class);

/**
* Check if the provided <i>path</i> exists or not and wait it expired if possible.
*
* @param zk the zookeeper client instance
* @param path the zookeeper path
* @param sessionTimeoutMs session timeout in milliseconds
* @return true if path exists, otherwise return false
* @throws KeeperException when failed to access zookeeper
* @throws InterruptedException interrupted when waiting for znode to be expired
*/
public static boolean checkNodeAndWaitExpired(ZooKeeper zk,
String path,
long sessionTimeoutMs) throws KeeperException, InterruptedException {
final CountDownLatch prevNodeLatch = new CountDownLatch(1);
Watcher zkPrevNodeWatcher = watchedEvent -> {
// check for prev node deletion.
if (EventType.NodeDeleted == watchedEvent.getType()) {
prevNodeLatch.countDown();
}
};
Stat stat = zk.exists(path, zkPrevNodeWatcher);
if (null != stat) {
// if the ephemeral owner isn't current zookeeper client
// wait for it to be expired
if (stat.getEphemeralOwner() != zk.getSessionId()) {
log.info("Previous znode : {} still exists, so waiting {} ms for znode deletion",
path, sessionTimeoutMs);
if (!prevNodeLatch.await(sessionTimeoutMs, TimeUnit.MILLISECONDS)) {
throw new NodeExistsException(path);
} else {
return false;
}
}
return true;
} else {
return false;
}
}

}