blob: 9d196e8e068a524f506a19d7b7b72869279d6758 [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.curator.framework.recipes.locks;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import com.google.common.collect.Sets;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.recipes.leader.LeaderLatch;
import org.apache.curator.utils.CloseableScheduledExecutorService;
import org.apache.curator.utils.CloseableUtils;
import org.apache.curator.utils.PathUtils;
import org.apache.curator.utils.ThreadUtils;
import org.apache.curator.utils.ZKPaths;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.data.Stat;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Closeable;
import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
/**
* Utility to reap empty child nodes of a parent node. Periodically calls getChildren on
* the node and adds empty nodes to an internally managed {@link Reaper}
*
* @deprecated Since 2.9.0 - Reaper/ChildReaper are no longer needed. Use {@link CreateMode#CONTAINER}.
* Also, all Curator recipes create container parents.
*/
@Deprecated
public class ChildReaper implements Closeable
{
private final Logger log = LoggerFactory.getLogger(getClass());
private final Reaper reaper;
private final AtomicReference<State> state = new AtomicReference<State>(State.LATENT);
private final CuratorFramework client;
private final Collection<String> paths = Sets.newConcurrentHashSet();
private volatile Iterator<String> pathIterator = null;
private final Reaper.Mode mode;
private final CloseableScheduledExecutorService executor;
private final int reapingThresholdMs;
private final LeaderLatch leaderLatch;
private final Set<String> lockSchema;
private final AtomicInteger maxChildren = new AtomicInteger(-1);
private volatile Future<?> task;
private enum State
{
LATENT,
STARTED,
CLOSED
}
/**
* @param client the client
* @param path path to reap children from
* @param mode reaping mode
*/
public ChildReaper(CuratorFramework client, String path, Reaper.Mode mode)
{
this(client, path, mode, newExecutorService(), Reaper.DEFAULT_REAPING_THRESHOLD_MS, null);
}
/**
* @param client the client
* @param path path to reap children from
* @param reapingThresholdMs threshold in milliseconds that determines that a path can be deleted
* @param mode reaping mode
*/
public ChildReaper(CuratorFramework client, String path, Reaper.Mode mode, int reapingThresholdMs)
{
this(client, path, mode, newExecutorService(), reapingThresholdMs, null);
}
/**
* @param client the client
* @param path path to reap children from
* @param executor executor to use for background tasks
* @param reapingThresholdMs threshold in milliseconds that determines that a path can be deleted
* @param mode reaping mode
*/
public ChildReaper(CuratorFramework client, String path, Reaper.Mode mode, ScheduledExecutorService executor, int reapingThresholdMs)
{
this(client, path, mode, executor, reapingThresholdMs, null);
}
/**
* @param client the client
* @param path path to reap children from
* @param executor executor to use for background tasks
* @param reapingThresholdMs threshold in milliseconds that determines that a path can be deleted
* @param mode reaping mode
* @param leaderPath if not null, uses a leader selection so that only 1 reaper is active in the cluster
*/
public ChildReaper(CuratorFramework client, String path, Reaper.Mode mode, ScheduledExecutorService executor, int reapingThresholdMs, String leaderPath)
{
this(client, path, mode, executor, reapingThresholdMs, leaderPath, Collections.<String>emptySet());
}
/**
* @param client the client
* @param path path to reap children from
* @param executor executor to use for background tasks
* @param reapingThresholdMs threshold in milliseconds that determines that a path can be deleted
* @param mode reaping mode
* @param leaderPath if not null, uses a leader selection so that only 1 reaper is active in the cluster
* @param lockSchema a set of the possible subnodes of the children of path that must be reaped in addition to the child nodes
*/
public ChildReaper(CuratorFramework client, String path, Reaper.Mode mode, ScheduledExecutorService executor, int reapingThresholdMs, String leaderPath, Set<String> lockSchema)
{
this.client = client;
this.mode = mode;
this.executor = new CloseableScheduledExecutorService(executor);
this.reapingThresholdMs = reapingThresholdMs;
if (leaderPath != null)
{
leaderLatch = new LeaderLatch(client, leaderPath);
}
else
{
leaderLatch = null;
}
this.reaper = new Reaper(client, executor, reapingThresholdMs, leaderLatch);
this.lockSchema = lockSchema;
addPath(path);
}
/**
* The reaper must be started
*
* @throws Exception errors
*/
public void start() throws Exception
{
Preconditions.checkState(state.compareAndSet(State.LATENT, State.STARTED), "Cannot be started more than once");
task = executor.scheduleWithFixedDelay
(
new Runnable()
{
@Override
public void run()
{
doWork();
}
},
reapingThresholdMs,
reapingThresholdMs,
TimeUnit.MILLISECONDS
);
if (leaderLatch != null)
{
leaderLatch.start();
}
reaper.start();
}
@Override
public void close() throws IOException
{
if ( state.compareAndSet(State.STARTED, State.CLOSED) )
{
CloseableUtils.closeQuietly(reaper);
if (leaderLatch != null)
{
CloseableUtils.closeQuietly(leaderLatch);
}
task.cancel(true);
}
}
/**
* Add a path to reap children from
*
* @param path the path
* @return this for chaining
*/
public ChildReaper addPath(String path)
{
paths.add(PathUtils.validatePath(path));
return this;
}
/**
* Remove a path from reaping
*
* @param path the path
* @return true if the path existed and was removed
*/
public boolean removePath(String path)
{
return paths.remove(PathUtils.validatePath(path));
}
/**
* If a node has so many children that {@link CuratorFramework#getChildren()} will fail
* (due to jute.maxbuffer) it can cause connection instability. Set the max number of
* children here to prevent the path from being queried in these cases. The number should usually
* be: average-node-name-length/1000000
*
* @param maxChildren max children
*/
public void setMaxChildren(int maxChildren)
{
this.maxChildren.set(maxChildren);
}
public static ScheduledExecutorService newExecutorService()
{
return ThreadUtils.newFixedThreadScheduledPool(2, "ChildReaper");
}
@VisibleForTesting
protected void warnMaxChildren(String path, Stat stat)
{
log.warn(String.format("Skipping %s as it has too many children: %d", path, stat.getNumChildren()));
}
private void doWork()
{
if ( shouldDoWork() )
{
if ( (pathIterator == null) || !pathIterator.hasNext() )
{
pathIterator = paths.iterator();
}
while ( pathIterator.hasNext() )
{
String path = pathIterator.next();
try
{
int maxChildren = this.maxChildren.get();
if ( maxChildren > 0 )
{
Stat stat = client.checkExists().forPath(path);
if ( (stat != null) && (stat.getNumChildren() > maxChildren) )
{
warnMaxChildren(path, stat);
continue;
}
}
List<String> children = client.getChildren().forPath(path);
log.info(String.format("Found %d children for %s", children.size(), path));
for ( String name : children )
{
String childPath = ZKPaths.makePath(path, name);
addPathToReaperIfEmpty(childPath);
for ( String subNode : lockSchema )
{
addPathToReaperIfEmpty(ZKPaths.makePath(childPath, subNode));
}
}
}
catch ( Exception e )
{
log.error("Could not get children for path: " + path, e);
}
}
}
}
private void addPathToReaperIfEmpty(String path) throws Exception
{
Stat stat = client.checkExists().forPath(path);
if ( (stat != null) && (stat.getNumChildren() == 0) )
{
log.info("Adding " + path);
reaper.addPath(path, mode);
}
}
private boolean shouldDoWork()
{
return this.leaderLatch == null || this.leaderLatch.hasLeadership();
}
}