Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
adding packing plan to state manager initTree() (#1305)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Graham authored Aug 26, 2016
1 parent 767778e commit 5d942d9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,15 @@ protected void initTree() {
// Make necessary directories
LOG.info("Topologies directory: " + getTopologyDir());
LOG.info("Tmaster location directory: " + getTMasterLocationDir());
LOG.info("Packing plan directory: " + getPackingPlanDir());
LOG.info("Physical plan directory: " + getPhysicalPlanDir());
LOG.info("Execution state directory: " + getExecutionStateDir());
LOG.info("Scheduler location directory: " + getSchedulerLocationDir());

try {
client.createContainers(getTopologyDir());
client.createContainers(getTMasterLocationDir());
client.createContainers(getPackingPlanDir());
client.createContainers(getPhysicalPlanDir());
client.createContainers(getExecutionStateDir());
client.createContainers(getSchedulerLocationDir());
Expand Down

0 comments on commit 5d942d9

Please sign in to comment.