blob: 5f2d2c31c7decee7f9acdd45c0ac2e4161846f90 [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.bookkeeper.client;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.apache.bookkeeper.client.BKException.BKNotEnoughBookiesException;
import org.apache.bookkeeper.net.BookieSocketAddress;
import org.apache.commons.configuration.Configuration;
/**
* Default Ensemble Placement Policy, which picks bookies randomly
*/
public class DefaultEnsemblePlacementPolicy implements EnsemblePlacementPolicy {
static final Set<BookieSocketAddress> EMPTY_SET = new HashSet<BookieSocketAddress>();
private Set<BookieSocketAddress> knownBookies = new HashSet<BookieSocketAddress>();
@Override
public ArrayList<BookieSocketAddress> newEnsemble(int ensembleSize, int quorumSize,
Set<BookieSocketAddress> excludeBookies) throws BKNotEnoughBookiesException {
ArrayList<BookieSocketAddress> newBookies = new ArrayList<BookieSocketAddress>(ensembleSize);
if (ensembleSize <= 0) {
return newBookies;
}
List<BookieSocketAddress> allBookies;
synchronized (this) {
allBookies = new ArrayList<BookieSocketAddress>(knownBookies);
}
Collections.shuffle(allBookies);
for (BookieSocketAddress bookie : allBookies) {
if (excludeBookies.contains(bookie)) {
continue;
}
newBookies.add(bookie);
--ensembleSize;
if (ensembleSize == 0) {
return newBookies;
}
}
throw new BKNotEnoughBookiesException();
}
@Override
public BookieSocketAddress replaceBookie(BookieSocketAddress bookieToReplace,
Set<BookieSocketAddress> excludeBookies) throws BKNotEnoughBookiesException {
ArrayList<BookieSocketAddress> addresses = newEnsemble(1, 1, excludeBookies);
return addresses.get(0);
}
@Override
public synchronized Set<BookieSocketAddress> onClusterChanged(Set<BookieSocketAddress> writableBookies,
Set<BookieSocketAddress> readOnlyBookies) {
HashSet<BookieSocketAddress> deadBookies;
deadBookies = new HashSet<BookieSocketAddress>(knownBookies);
deadBookies.removeAll(writableBookies);
// readonly bookies should not be treated as dead bookies
deadBookies.removeAll(readOnlyBookies);
knownBookies = writableBookies;
return deadBookies;
}
@Override
public EnsemblePlacementPolicy initialize(Configuration conf) {
return this;
}
@Override
public void uninitalize() {
// do nothing
}
}