org.apache.hadoop.registry.client.types.yarn.YarnRegistryAttributes Java Examples
The following examples show how to use
org.apache.hadoop.registry.client.types.yarn.YarnRegistryAttributes.
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: SelectByYarnPersistence.java From hadoop with Apache License 2.0 | 5 votes |
@Override public boolean shouldSelect(String path, RegistryPathStatus registryPathStatus, ServiceRecord serviceRecord) { String policy = serviceRecord.get(YarnRegistryAttributes.YARN_PERSISTENCE, ""); return id.equals(serviceRecord.get(YarnRegistryAttributes.YARN_ID, "")) && (targetPolicy.equals(policy)); }
Example #2
Source File: TestRegistryOperations.java From hadoop with Apache License 2.0 | 5 votes |
@Test public void testPutNoParent() throws Throwable { ServiceRecord record = new ServiceRecord(); record.set(YarnRegistryAttributes.YARN_ID, "testPutNoParent"); String path = "/path/without/parent"; try { operations.bind(path, record, 0); // didn't get a failure // trouble RegistryPathStatus stat = operations.stat(path); fail("Got a status " + stat); } catch (PathNotFoundException expected) { // expected } }
Example #3
Source File: TestRegistryOperations.java From hadoop with Apache License 2.0 | 5 votes |
@Test(expected = PathNotFoundException.class) public void testPutNoParent2() throws Throwable { ServiceRecord record = new ServiceRecord(); record.set(YarnRegistryAttributes.YARN_ID, "testPutNoParent"); String path = "/path/without/parent"; operations.bind(path, record, 0); }
Example #4
Source File: RegistryTestHelper.java From hadoop with Apache License 2.0 | 5 votes |
/** * Create a service entry with the sample endpoints * @param persistence persistence policy * @return the record * @throws IOException on a failure */ public static ServiceRecord buildExampleServiceEntry(String persistence) throws IOException, URISyntaxException { ServiceRecord record = new ServiceRecord(); record.set(YarnRegistryAttributes.YARN_ID, "example-0001"); record.set(YarnRegistryAttributes.YARN_PERSISTENCE, persistence); addSampleEndpoints(record, "namenode"); return record; }
Example #5
Source File: RegistryTestHelper.java From hadoop with Apache License 2.0 | 5 votes |
public static ServiceRecord createRecord(String id, String persistence, String description) { ServiceRecord serviceRecord = new ServiceRecord(); serviceRecord.set(YarnRegistryAttributes.YARN_ID, id); serviceRecord.description = description; serviceRecord.set(YarnRegistryAttributes.YARN_PERSISTENCE, persistence); return serviceRecord; }
Example #6
Source File: SelectByYarnPersistence.java From big-c with Apache License 2.0 | 5 votes |
@Override public boolean shouldSelect(String path, RegistryPathStatus registryPathStatus, ServiceRecord serviceRecord) { String policy = serviceRecord.get(YarnRegistryAttributes.YARN_PERSISTENCE, ""); return id.equals(serviceRecord.get(YarnRegistryAttributes.YARN_ID, "")) && (targetPolicy.equals(policy)); }
Example #7
Source File: TestRegistryOperations.java From big-c with Apache License 2.0 | 5 votes |
@Test public void testPutNoParent() throws Throwable { ServiceRecord record = new ServiceRecord(); record.set(YarnRegistryAttributes.YARN_ID, "testPutNoParent"); String path = "/path/without/parent"; try { operations.bind(path, record, 0); // didn't get a failure // trouble RegistryPathStatus stat = operations.stat(path); fail("Got a status " + stat); } catch (PathNotFoundException expected) { // expected } }
Example #8
Source File: TestRegistryOperations.java From big-c with Apache License 2.0 | 5 votes |
@Test(expected = PathNotFoundException.class) public void testPutNoParent2() throws Throwable { ServiceRecord record = new ServiceRecord(); record.set(YarnRegistryAttributes.YARN_ID, "testPutNoParent"); String path = "/path/without/parent"; operations.bind(path, record, 0); }
Example #9
Source File: RegistryTestHelper.java From big-c with Apache License 2.0 | 5 votes |
/** * Create a service entry with the sample endpoints * @param persistence persistence policy * @return the record * @throws IOException on a failure */ public static ServiceRecord buildExampleServiceEntry(String persistence) throws IOException, URISyntaxException { ServiceRecord record = new ServiceRecord(); record.set(YarnRegistryAttributes.YARN_ID, "example-0001"); record.set(YarnRegistryAttributes.YARN_PERSISTENCE, persistence); addSampleEndpoints(record, "namenode"); return record; }
Example #10
Source File: RegistryTestHelper.java From big-c with Apache License 2.0 | 5 votes |
public static ServiceRecord createRecord(String id, String persistence, String description) { ServiceRecord serviceRecord = new ServiceRecord(); serviceRecord.set(YarnRegistryAttributes.YARN_ID, id); serviceRecord.description = description; serviceRecord.set(YarnRegistryAttributes.YARN_PERSISTENCE, persistence); return serviceRecord; }
Example #11
Source File: JstormMaster.java From jstorm with Apache License 2.0 | 5 votes |
private ServiceRecord setupServiceRecord() { ServiceRecord application = new ServiceRecord(); application.set(YarnRegistryAttributes.YARN_ID, jstormMasterContext.appAttemptID.getApplicationId().toString()); application.description = JOYConstants.AM; application.set(YarnRegistryAttributes.YARN_PERSISTENCE, PersistencePolicies.PERMANENT); Map<String, String> addresses = new HashMap<String, String>(); addresses.put(JOYConstants.HOST, jstormMasterContext.appMasterHostname); addresses.put(JOYConstants.PORT, String.valueOf(jstormMasterContext.appMasterThriftPort)); Endpoint endpoint = new Endpoint(JOYConstants.HTTP, JOYConstants.HOST_PORT, JOYConstants.RPC, addresses); application.addExternalEndpoint(endpoint); return application; }
Example #12
Source File: TestRegistryRMOperations.java From hadoop with Apache License 2.0 | 4 votes |
@Test public void testPurgeEntryCuratorCallback() throws Throwable { String path = "/users/example/hbase/hbase1/"; ServiceRecord written = buildExampleServiceEntry( PersistencePolicies.APPLICATION_ATTEMPT); written.set(YarnRegistryAttributes.YARN_ID, "testAsyncPurgeEntry_attempt_001"); operations.mknode(RegistryPathUtils.parentOf(path), true); operations.bind(path, written, 0); ZKPathDumper dump = registry.dumpPath(false); CuratorEventCatcher events = new CuratorEventCatcher(); LOG.info("Initial state {}", dump); // container query String id = written.get(YarnRegistryAttributes.YARN_ID, ""); int opcount = purge("/", id, PersistencePolicies.CONTAINER, RegistryAdminService.PurgePolicy.PurgeAll, events); assertPathExists(path); assertEquals(0, opcount); assertEquals("Event counter", 0, events.getCount()); // now the application attempt opcount = purge("/", id, PersistencePolicies.APPLICATION_ATTEMPT, RegistryAdminService.PurgePolicy.PurgeAll, events); LOG.info("Final state {}", dump); assertPathNotFound(path); assertEquals("wrong no of delete operations in " + dump, 1, opcount); // and validate the callback event assertEquals("Event counter", 1, events.getCount()); }
Example #13
Source File: TestRegistryRMOperations.java From hadoop with Apache License 2.0 | 4 votes |
@Test public void testAsyncPurgeEntry() throws Throwable { String path = "/users/example/hbase/hbase1/"; ServiceRecord written = buildExampleServiceEntry( PersistencePolicies.APPLICATION_ATTEMPT); written.set(YarnRegistryAttributes.YARN_ID, "testAsyncPurgeEntry_attempt_001"); operations.mknode(RegistryPathUtils.parentOf(path), true); operations.bind(path, written, 0); ZKPathDumper dump = registry.dumpPath(false); LOG.info("Initial state {}", dump); DeleteCompletionCallback deletions = new DeleteCompletionCallback(); int opcount = purge("/", written.get(YarnRegistryAttributes.YARN_ID, ""), PersistencePolicies.CONTAINER, RegistryAdminService.PurgePolicy.PurgeAll, deletions); assertPathExists(path); dump = registry.dumpPath(false); assertEquals("wrong no of delete operations in " + dump, 0, deletions.getEventCount()); assertEquals("wrong no of delete operations in " + dump, 0, opcount); // now app attempt deletions = new DeleteCompletionCallback(); opcount = purge("/", written.get(YarnRegistryAttributes.YARN_ID, ""), PersistencePolicies.APPLICATION_ATTEMPT, RegistryAdminService.PurgePolicy.PurgeAll, deletions); dump = registry.dumpPath(false); LOG.info("Final state {}", dump); assertPathNotFound(path); assertEquals("wrong no of delete operations in " + dump, 1, deletions.getEventCount()); assertEquals("wrong no of delete operations in " + dump, 1, opcount); // and validate the callback event }
Example #14
Source File: TestRegistryRMOperations.java From big-c with Apache License 2.0 | 4 votes |
@Test public void testPurgeEntryCuratorCallback() throws Throwable { String path = "/users/example/hbase/hbase1/"; ServiceRecord written = buildExampleServiceEntry( PersistencePolicies.APPLICATION_ATTEMPT); written.set(YarnRegistryAttributes.YARN_ID, "testAsyncPurgeEntry_attempt_001"); operations.mknode(RegistryPathUtils.parentOf(path), true); operations.bind(path, written, 0); ZKPathDumper dump = registry.dumpPath(false); CuratorEventCatcher events = new CuratorEventCatcher(); LOG.info("Initial state {}", dump); // container query String id = written.get(YarnRegistryAttributes.YARN_ID, ""); int opcount = purge("/", id, PersistencePolicies.CONTAINER, RegistryAdminService.PurgePolicy.PurgeAll, events); assertPathExists(path); assertEquals(0, opcount); assertEquals("Event counter", 0, events.getCount()); // now the application attempt opcount = purge("/", id, PersistencePolicies.APPLICATION_ATTEMPT, RegistryAdminService.PurgePolicy.PurgeAll, events); LOG.info("Final state {}", dump); assertPathNotFound(path); assertEquals("wrong no of delete operations in " + dump, 1, opcount); // and validate the callback event assertEquals("Event counter", 1, events.getCount()); }
Example #15
Source File: TestRegistryRMOperations.java From big-c with Apache License 2.0 | 4 votes |
@Test public void testAsyncPurgeEntry() throws Throwable { String path = "/users/example/hbase/hbase1/"; ServiceRecord written = buildExampleServiceEntry( PersistencePolicies.APPLICATION_ATTEMPT); written.set(YarnRegistryAttributes.YARN_ID, "testAsyncPurgeEntry_attempt_001"); operations.mknode(RegistryPathUtils.parentOf(path), true); operations.bind(path, written, 0); ZKPathDumper dump = registry.dumpPath(false); LOG.info("Initial state {}", dump); DeleteCompletionCallback deletions = new DeleteCompletionCallback(); int opcount = purge("/", written.get(YarnRegistryAttributes.YARN_ID, ""), PersistencePolicies.CONTAINER, RegistryAdminService.PurgePolicy.PurgeAll, deletions); assertPathExists(path); dump = registry.dumpPath(false); assertEquals("wrong no of delete operations in " + dump, 0, deletions.getEventCount()); assertEquals("wrong no of delete operations in " + dump, 0, opcount); // now app attempt deletions = new DeleteCompletionCallback(); opcount = purge("/", written.get(YarnRegistryAttributes.YARN_ID, ""), PersistencePolicies.APPLICATION_ATTEMPT, RegistryAdminService.PurgePolicy.PurgeAll, deletions); dump = registry.dumpPath(false); LOG.info("Final state {}", dump); assertPathNotFound(path); assertEquals("wrong no of delete operations in " + dump, 1, deletions.getEventCount()); assertEquals("wrong no of delete operations in " + dump, 1, opcount); // and validate the callback event }