blob: a225424564975d24867772ec6d60f988362c440b [file] [log] [blame]
/**
* 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.proxy.server;
import static org.apache.bookkeeper.util.MathUtils.signSafeMod;
import static org.apache.pulsar.common.util.ObjectMapperFactory.getThreadLocal;
import java.io.Closeable;
import java.io.IOException;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.bookkeeper.util.OrderedSafeExecutor;
import org.apache.pulsar.broker.PulsarServerException;
import org.apache.pulsar.common.naming.DestinationName;
import org.apache.pulsar.common.partition.PartitionedTopicMetadata;
import org.apache.pulsar.common.policies.data.PropertyAdmin;
import org.apache.pulsar.policies.data.loadbalancer.LoadReport;
import org.apache.pulsar.policies.data.loadbalancer.ServiceLookupData;
import org.apache.pulsar.proxy.server.util.ZookeeperCacheLoader;
import org.apache.pulsar.zookeeper.GlobalZooKeeperCache;
import org.apache.pulsar.zookeeper.ZooKeeperClientFactory;
import org.apache.zookeeper.KeeperException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Joiner;
import io.netty.util.concurrent.DefaultThreadFactory;
import static org.apache.pulsar.broker.cache.ConfigurationCacheService.POLICIES;
/**
* Maintains available active broker list and returns next active broker in round-robin for discovery service.
*
*/
public class BrokerDiscoveryProvider implements Closeable {
final ZookeeperCacheLoader localZkCache;
final GlobalZooKeeperCache globalZkCache;
private final AtomicInteger counter = new AtomicInteger();
private final OrderedSafeExecutor orderedExecutor = new OrderedSafeExecutor(4, "pulsar-proxy-ordered");
private final ScheduledExecutorService scheduledExecutorScheduler = Executors.newScheduledThreadPool(4,
new DefaultThreadFactory("pulsar-proxy-scheduled-executor"));
private static final String PARTITIONED_TOPIC_PATH_ZNODE = "partitioned-topics";
public BrokerDiscoveryProvider(ProxyConfiguration config, ZooKeeperClientFactory zkClientFactory)
throws PulsarServerException {
try {
localZkCache = new ZookeeperCacheLoader(zkClientFactory, config.getZookeeperServers(),
config.getZookeeperSessionTimeoutMs());
globalZkCache = new GlobalZooKeeperCache(zkClientFactory, config.getZookeeperSessionTimeoutMs(),
config.getGlobalZookeeperServers(), orderedExecutor, scheduledExecutorScheduler);
globalZkCache.start();
} catch (Exception e) {
LOG.error("Failed to start Zookkeeper {}", e.getMessage(), e);
throw new PulsarServerException("Failed to start zookeeper :" + e.getMessage(), e);
}
}
/**
* Find next broke {@link LoadReport} in round-robin fashion.
*
* @return
* @throws PulsarServerException
*/
ServiceLookupData nextBroker() throws PulsarServerException {
List<ServiceLookupData> availableBrokers = localZkCache.getAvailableBrokers();
if (availableBrokers.isEmpty()) {
throw new PulsarServerException("No active broker is available");
} else {
int brokersCount = availableBrokers.size();
int nextIdx = signSafeMod(counter.getAndIncrement(), brokersCount);
return availableBrokers.get(nextIdx);
}
}
CompletableFuture<PartitionedTopicMetadata> getPartitionedTopicMetadata(ProxyService service,
DestinationName destination, String role) {
CompletableFuture<PartitionedTopicMetadata> metadataFuture = new CompletableFuture<>();
try {
checkAuthorization(service, destination, role);
final String path = path(PARTITIONED_TOPIC_PATH_ZNODE, destination.getProperty(), destination.getCluster(),
destination.getNamespacePortion(), "persistent", destination.getEncodedLocalName());
// gets the number of partitions from the zk cache
globalZkCache
.getDataAsync(path,
(key, content) -> getThreadLocal().readValue(content, PartitionedTopicMetadata.class))
.thenAccept(metadata -> {
// if the partitioned topic is not found in zk, then the topic
// is not partitioned
if (metadata.isPresent()) {
metadataFuture.complete(metadata.get());
} else {
metadataFuture.complete(new PartitionedTopicMetadata());
}
}).exceptionally(ex -> {
metadataFuture.completeExceptionally(ex);
return null;
});
} catch (Exception e) {
metadataFuture.completeExceptionally(e);
}
return metadataFuture;
}
protected static void checkAuthorization(ProxyService service, DestinationName destination, String role)
throws Exception {
if (!service.getConfiguration().isAuthorizationEnabled()
|| service.getConfiguration().getSuperUserRoles().contains(role)) {
// No enforcing of authorization policies
return;
}
// get zk policy manager
if (!service.getAuthorizationManager().canLookup(destination, role)) {
LOG.warn("[{}] Role {} is not allowed to lookup topic", destination, role);
// check namespace authorization
PropertyAdmin propertyAdmin;
try {
propertyAdmin = service.getConfigurationCacheService().propertiesCache()
.get(path(POLICIES, destination.getProperty()))
.orElseThrow(() -> new IllegalAccessException("Property does not exist"));
} catch (KeeperException.NoNodeException e) {
LOG.warn("Failed to get property admin data for non existing property {}", destination.getProperty());
throw new IllegalAccessException("Property does not exist");
} catch (Exception e) {
LOG.error("Failed to get property admin data for property");
throw new IllegalAccessException(String.format("Failed to get property %s admin data due to %s",
destination.getProperty(), e.getMessage()));
}
if (!propertyAdmin.getAdminRoles().contains(role)) {
throw new IllegalAccessException("Don't have permission to administrate resources on this property");
}
}
if (LOG.isDebugEnabled()) {
LOG.debug("Successfully authorized {} on property {}", role, destination.getProperty());
}
}
public static String path(String... parts) {
StringBuilder sb = new StringBuilder();
sb.append("/admin/");
Joiner.on('/').appendTo(sb, parts);
return sb.toString();
}
@Override
public void close() throws IOException {
localZkCache.close();
globalZkCache.close();
orderedExecutor.shutdown();
scheduledExecutorScheduler.shutdownNow();
}
private static final Logger LOG = LoggerFactory.getLogger(BrokerDiscoveryProvider.class);
}