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
|
* 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.
|
* 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
|
* 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.
|
* 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
|
* 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.
|
* 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) {
|
catch (Exception e) {
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
try { stop();
|
try {
|
||||||
|
stop();
|
||||||
}
|
}
|
||||||
catch (IOException e1) {
|
catch (IOException e1) {
|
||||||
log.error(e1, "Exception when stopping InventoryManager that couldn't start.");
|
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());
|
final ContainerClass container = strategy.deserializeContainer(child.getData());
|
||||||
|
|
||||||
ContainerHolder oldContainer = containers.get(containerKey);
|
log.info("Container[%s] updated.", child.getPath());
|
||||||
if (oldContainer == null) {
|
ContainerHolder holder = containers.get(containerKey);
|
||||||
|
if (holder == null) {
|
||||||
log.warn("Container update[%s], but the old container didn't exist!? Ignoring.", child.getPath());
|
log.warn("Container update[%s], but the old container didn't exist!? Ignoring.", child.getPath());
|
||||||
} else {
|
} else {
|
||||||
synchronized (oldContainer) {
|
synchronized (holder) {
|
||||||
oldContainer.setContainer(strategy.updateContainer(oldContainer.getContainer(), container));
|
holder.setContainer(strategy.updateContainer(holder.getContainer(), container));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -336,6 +338,7 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
||||||
case CHILD_ADDED: {
|
case CHILD_ADDED: {
|
||||||
final ChildData child = event.getData();
|
final ChildData child = event.getData();
|
||||||
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
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());
|
final InventoryClass addedInventory = strategy.deserializeInventory(child.getData());
|
||||||
|
|
||||||
|
@ -348,6 +351,7 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
||||||
case CHILD_UPDATED: {
|
case CHILD_UPDATED: {
|
||||||
final ChildData child = event.getData();
|
final ChildData child = event.getData();
|
||||||
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
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());
|
final InventoryClass updatedInventory = strategy.deserializeInventory(child.getData());
|
||||||
|
|
||||||
|
@ -361,6 +365,7 @@ public class CuratorInventoryManager<ContainerClass, InventoryClass>
|
||||||
case CHILD_REMOVED: {
|
case CHILD_REMOVED: {
|
||||||
final ChildData child = event.getData();
|
final ChildData child = event.getData();
|
||||||
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
final String inventoryKey = ZKPaths.getNodeFromPath(child.getPath());
|
||||||
|
log.info("CHILD_REMOVED[%s] with version[%s]", child.getPath(), event.getData().getStat().getVersion());
|
||||||
|
|
||||||
synchronized (holder) {
|
synchronized (holder) {
|
||||||
holder.setContainer(strategy.removeInventory(holder.getContainer(), inventoryKey));
|
holder.setContainer(strategy.removeInventory(holder.getContainer(), inventoryKey));
|
||||||
|
|
|
@ -121,6 +121,7 @@ public class BatchDataSegmentAnnouncer extends AbstractDataSegmentAnnouncer
|
||||||
{
|
{
|
||||||
final SegmentZNode segmentZNode = segmentLookup.remove(segment);
|
final SegmentZNode segmentZNode = segmentLookup.remove(segment);
|
||||||
if (segmentZNode == null) {
|
if (segmentZNode == null) {
|
||||||
|
log.warn("No path to unannounce segment[%s]", segment.getIdentifier());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue