mirror of https://github.com/apache/druid.git
commit
eed679a1ba
|
@ -46,10 +46,10 @@ import java.util.concurrent.atomic.AtomicReference;
|
|||
/**
|
||||
* An InventoryManager watches updates to inventory on Zookeeper (or some other discovery-like service publishing
|
||||
* system). It is built up on two object types: containers and inventory objects.
|
||||
*
|
||||
* <p/>
|
||||
* The logic of the InventoryManager just maintains a local cache of the containers and inventory it sees on ZK. It
|
||||
* provides methods for getting at the container objects, which house the actual individual pieces of inventory.
|
||||
*
|
||||
* <p/>
|
||||
* A Strategy is provided to the constructor of an Inventory manager, this strategy provides all of the
|
||||
* object-specific logic to serialize, deserialize, compose and alter the container and inventory objects.
|
||||
*/
|
||||
|
@ -104,7 +104,8 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
|||
}
|
||||
catch (Exception e) {
|
||||
synchronized (lock) {
|
||||
try { stop();
|
||||
try {
|
||||
stop();
|
||||
}
|
||||
catch (IOException e1) {
|
||||
log.error(e1, "Exception when stopping InventoryManager that couldn't start.");
|
||||
|
@ -262,12 +263,13 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
|||
|
||||
final ContainerClass container = strategy.deserializeContainer(child.getData());
|
||||
|
||||
ContainerHolder oldContainer = containers.get(containerKey);
|
||||
if (oldContainer == null) {
|
||||
log.info("Container[%s] updated.", child.getPath());
|
||||
ContainerHolder holder = containers.get(containerKey);
|
||||
if (holder == null) {
|
||||
log.warn("Container update[%s], but the old container didn't exist!? Ignoring.", child.getPath());
|
||||
} else {
|
||||
synchronized (oldContainer) {
|
||||
oldContainer.setContainer(strategy.updateContainer(oldContainer.getContainer(), container));
|
||||
synchronized (holder) {
|
||||
holder.setContainer(strategy.updateContainer(holder.getContainer(), container));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -336,6 +338,7 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
|||
case CHILD_ADDED: {
|
||||
final ChildData child = event.getData();
|
||||
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
||||
log.info("CHILD_ADDED[%s] with version[%s]", child.getPath(), event.getData().getStat().getVersion());
|
||||
|
||||
final InventoryClass addedInventory = strategy.deserializeInventory(child.getData());
|
||||
|
||||
|
@ -348,6 +351,7 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
|||
case CHILD_UPDATED: {
|
||||
final ChildData child = event.getData();
|
||||
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
||||
log.info("CHILD_UPDATED[%s] with version[%s]", child.getPath(), event.getData().getStat().getVersion());
|
||||
|
||||
final InventoryClass updatedInventory = strategy.deserializeInventory(child.getData());
|
||||
|
||||
|
@ -361,6 +365,7 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
|||
case CHILD_REMOVED: {
|
||||
final ChildData child = event.getData();
|
||||
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
||||
log.info("CHILD_REMOVED[%s] with version[%s]", child.getPath(), event.getData().getStat().getVersion());
|
||||
|
||||
synchronized (holder) {
|
||||
holder.setContainer(strategy.removeInventory(holder.getContainer(), inventoryKey));
|
||||
|
|
|
@ -121,6 +121,7 @@ public class BatchDataSegmentAnnouncer extends AbstractDataSegmentAnnouncer
|
|||
{
|
||||
final SegmentZNode segmentZNode = segmentLookup.remove(segment);
|
||||
if (segmentZNode == null) {
|
||||
log.warn("No path to unannounce segment[%s]", segment.getIdentifier());
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue