execContext.setJc(jconf);
// create map and fetch operators
mapWork = (MapWork) cache.retrieve(MAP_PLAN_KEY);
if (mapWork == null) {
mapWork = Utilities.getMapWork(jconf);
cache.cache(MAP_PLAN_KEY, mapWork);
l4j.debug("Plan: " + mapWork);
for (String s: mapWork.getAliases()) {
l4j.debug("Alias: " + s);
}
} else {