Package org.apache.hadoop.yarn.server.nodemanager.recovery

Examples of org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService


        throw new IllegalArgumentException("Recovery is enabled but " +
            YarnConfiguration.NM_RECOVERY_DIR + " is not set.");
      }
      Path recoveryRoot = new Path(recoveryDirName);
      recoveryFs.mkdirs(recoveryRoot, new FsPermission((short)0700));
      nmStore = new NMLeveldbStateStoreService();
    } else {
      nmStore = new NMNullStateStoreService();
    }
    nmStore.init(conf);
    nmStore.start();
View Full Code Here

TOP

Related Classes of org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.