Java Code Examples for org.apache.hadoop.registry.client.api.RegistryOperationsFactory#createInstance()
The following examples show how to use
org.apache.hadoop.registry.client.api.RegistryOperationsFactory#createInstance() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: YarnZkRegistryBusiness.java From PoseidonX with Apache License 2.0 | 6 votes |
private static void initAndStart(){ try{ Configuration conf = new YarnConfiguration(); conf.set(RegistryConstants.KEY_REGISTRY_ZK_ROOT, YarnZkContant.ZK_AM_REGISTRY_ROOT); registryOperations = RegistryOperationsFactory.createInstance(YarnZkContant.ZK_AM_REGISTRY_JSTORM_YARN, conf); if (registryOperations instanceof RMRegistryOperationsService) { RMRegistryOperationsService rmRegOperations = (RMRegistryOperationsService) registryOperations; rmRegOperations.initUserRegistryAsync(StreamContant.HADOOP_USER_NAME); } }catch(Exception e){ } if(registryOperations==null){ throw new IllegalArgumentException("YarnZkClientBusiness registryOperations start is error,cann't connect yarn zk!!"); } registryOperations.start(); }
Example 2
Source File: Executor.java From jstorm with Apache License 2.0 | 6 votes |
public Executor(String instancName, String shellCommand, STARTType startType, String runningContainer, String localDir, String deployPath, String hadoopHome, String javaHome, String pythonHome, String dstPath, String portList, String shellArgs, String ExecShellStringPath, String applicationId, String supervisorLogviewPort, String nimbusThriftPort) { executorMeta = new ExecutorMeta(instancName, shellCommand, startType, runningContainer, localDir, deployPath, hadoopHome, javaHome, pythonHome, dstPath, portList, shellArgs, ExecShellStringPath, applicationId, supervisorLogviewPort, nimbusThriftPort); conf = new YarnConfiguration(); Path yarnSite = new Path(hadoopHome + JOYConstants.YARN_SITE_PATH); conf.addResource(yarnSite); //get first log dir logDir = conf.get(JOYConstants.YARN_NM_LOG, JOYConstants.YARN_NM_LOG_DIR).split(JOYConstants.COMMA)[0] + JOYConstants.BACKLASH + applicationId + JOYConstants.BACKLASH + runningContainer; //Setup RegistryOperations registryOperations = RegistryOperationsFactory.createInstance(JOYConstants.YARN_REGISTRY, conf); try { setupInitialRegistryPaths(); } catch (IOException e) { e.printStackTrace(); } registryOperations.start(); }
Example 3
Source File: RegistryClient.java From PoseidonX with Apache License 2.0 | 5 votes |
public static RegistryClient init(String name,String serviceUserName,Configuration conf) throws IOException { registryClient = new RegistryClient(); conf.set(KEY_REGISTRY_ZK_ROOT,REGISTRY_ROOT); registryClient.registryOperations = RegistryOperationsFactory.createInstance(name , conf); registryClient.setupInitialRegistryPaths(serviceUserName); registryClient.registryOperations.start(); return registryClient; }
Example 4
Source File: RegistryCli.java From hadoop with Apache License 2.0 | 5 votes |
public RegistryCli(PrintStream sysout, PrintStream syserr) { Configuration conf = new Configuration(); super.setConf(conf); registry = RegistryOperationsFactory.createInstance(conf); registry.start(); this.sysout = sysout; this.syserr = syserr; }
Example 5
Source File: TestSecureRMRegistryOperations.java From hadoop with Apache License 2.0 | 5 votes |
@Test(expected = ServiceStateException.class) public void testNoDigestAuthMissingId2() throws Throwable { zkClientConf.set(KEY_REGISTRY_CLIENT_AUTH, REGISTRY_CLIENT_AUTH_DIGEST); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_ID, ""); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_PASSWORD, "pass"); RegistryOperationsFactory.createInstance("DigestRegistryOperations", zkClientConf); }
Example 6
Source File: TestSecureRMRegistryOperations.java From hadoop with Apache License 2.0 | 5 votes |
@Test(expected = ServiceStateException.class) public void testNoDigestAuthMissingPass2() throws Throwable { zkClientConf.set(KEY_REGISTRY_CLIENT_AUTH, REGISTRY_CLIENT_AUTH_DIGEST); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_ID, "id"); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_PASSWORD, ""); RegistryOperationsFactory.createInstance("DigestRegistryOperations", zkClientConf); }
Example 7
Source File: RegistryCli.java From big-c with Apache License 2.0 | 5 votes |
public RegistryCli(PrintStream sysout, PrintStream syserr) { Configuration conf = new Configuration(); super.setConf(conf); registry = RegistryOperationsFactory.createInstance(conf); registry.start(); this.sysout = sysout; this.syserr = syserr; }
Example 8
Source File: TestSecureRMRegistryOperations.java From big-c with Apache License 2.0 | 5 votes |
@Test(expected = ServiceStateException.class) public void testNoDigestAuthMissingId2() throws Throwable { zkClientConf.set(KEY_REGISTRY_CLIENT_AUTH, REGISTRY_CLIENT_AUTH_DIGEST); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_ID, ""); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_PASSWORD, "pass"); RegistryOperationsFactory.createInstance("DigestRegistryOperations", zkClientConf); }
Example 9
Source File: TestSecureRMRegistryOperations.java From big-c with Apache License 2.0 | 5 votes |
@Test(expected = ServiceStateException.class) public void testNoDigestAuthMissingPass2() throws Throwable { zkClientConf.set(KEY_REGISTRY_CLIENT_AUTH, REGISTRY_CLIENT_AUTH_DIGEST); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_ID, "id"); zkClientConf.set(KEY_REGISTRY_CLIENT_AUTHENTICATION_PASSWORD, ""); RegistryOperationsFactory.createInstance("DigestRegistryOperations", zkClientConf); }