use of org.finra.herd.model.api.xml.EmrHiveStepAddRequest in project herd by FINRAOS.
the class EmrHiveStepHelper method buildResponseFromRequest.
@Override
public Object buildResponseFromRequest(Object stepRequest) {
EmrHiveStepAddRequest emrHiveStepAddRequest = (EmrHiveStepAddRequest) stepRequest;
EmrHiveStep step = new EmrHiveStep();
step.setNamespace(emrHiveStepAddRequest.getNamespace());
step.setEmrClusterDefinitionName(emrHiveStepAddRequest.getEmrClusterDefinitionName());
step.setEmrClusterName(emrHiveStepAddRequest.getEmrClusterName());
step.setStepName(emrHiveStepAddRequest.getStepName().trim());
step.setScriptLocation(emrHiveStepAddRequest.getScriptLocation().trim().replaceAll(getS3ManagedReplaceString(), emrHelper.getS3StagingLocation()));
// Add the script arguments
if (!CollectionUtils.isEmpty(emrHiveStepAddRequest.getScriptArguments())) {
List<String> scriptArguments = new ArrayList<>();
step.setScriptArguments(scriptArguments);
for (String argument : emrHiveStepAddRequest.getScriptArguments()) {
scriptArguments.add(argument.trim());
}
}
step.setContinueOnError(emrHiveStepAddRequest.isContinueOnError());
return step;
}
use of org.finra.herd.model.api.xml.EmrHiveStepAddRequest in project herd by FINRAOS.
the class EmrRestControllerTest method testAddHiveStepToEmrCluster.
@Test
public void testAddHiveStepToEmrCluster() throws Exception {
// Create an add step request.
EmrHiveStepAddRequest emrHiveStepAddRequest = new EmrHiveStepAddRequest(NAMESPACE, EMR_CLUSTER_DEFINITION_NAME, EMR_CLUSTER_NAME, EMR_STEP_NAME, EMR_STEP_SCRIPT_LOCATION, Arrays.asList(ATTRIBUTE_NAME_1_MIXED_CASE), CONTINUE_ON_ERROR, EMR_CLUSTER_ID, AWS_ACCOUNT_ID);
// Create an add step response.
EmrHiveStep emrHiveStep = new EmrHiveStep(EMR_STEP_ID, NAMESPACE, EMR_CLUSTER_DEFINITION_NAME, EMR_CLUSTER_NAME, EMR_STEP_NAME, EMR_STEP_SCRIPT_LOCATION, Arrays.asList(ATTRIBUTE_NAME_1_MIXED_CASE), CONTINUE_ON_ERROR, EMR_CLUSTER_ID);
// Mock the external calls.
when(emrService.addStepToCluster(emrHiveStepAddRequest)).thenReturn(emrHiveStep);
// Call the method under test.
EmrHiveStep result = emrRestController.addHiveStepToEmrCluster(emrHiveStepAddRequest);
// Verify the external calls.
verify(emrService).addStepToCluster(emrHiveStepAddRequest);
verifyNoMoreInteractionsHelper();
// Validate the results.
assertEquals(emrHiveStep, result);
}
use of org.finra.herd.model.api.xml.EmrHiveStepAddRequest in project herd by FINRAOS.
the class EmrServiceWithAccountIdTest method testEmrAddStepsAllTypes.
/**
* This method tests the happy path scenario by testing all the step types.
*/
@Test
public void testEmrAddStepsAllTypes() throws Exception {
// Create the namespace entity.
NamespaceEntity namespaceEntity = namespaceDaoTestHelper.createNamespaceEntity(NAMESPACE);
// Create a trusting AWS account.
trustingAccountDaoTestHelper.createTrustingAccountEntity(AWS_ACCOUNT_ID, AWS_ROLE_ARN);
emrClusterDefinitionDaoTestHelper.createEmrClusterDefinitionEntity(namespaceEntity, EMR_CLUSTER_DEFINITION_NAME, IOUtils.toString(resourceLoader.getResource(EMR_CLUSTER_DEFINITION_XML_FILE_WITH_CLASSPATH).getInputStream()));
EmrClusterCreateRequest request = getNewEmrClusterCreateRequestWithAccountId();
emrService.createCluster(request);
List<Object> emrSteps = new ArrayList<>();
List<String> shellScriptArgs = new ArrayList<>();
shellScriptArgs.add("Hello");
shellScriptArgs.add("herd");
shellScriptArgs.add("How Are You");
EmrShellStepAddRequest shellStepRequest = new EmrShellStepAddRequest();
shellStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/test/test_script.sh");
shellStepRequest.setStepName("Test Shell Script");
shellStepRequest.setScriptArguments(shellScriptArgs);
emrSteps.add(shellStepRequest);
EmrHiveStepAddRequest hiveStepRequest = new EmrHiveStepAddRequest();
List<String> scriptArgs1 = new ArrayList<>();
scriptArgs1.add("arg2=sampleArg");
scriptArgs1.add("arg1=tables");
hiveStepRequest.setStepName("Test Hive");
hiveStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/test/test_hive.hql");
hiveStepRequest.setScriptArguments(scriptArgs1);
emrSteps.add(hiveStepRequest);
EmrPigStepAddRequest pigStepRequest = new EmrPigStepAddRequest();
pigStepRequest.setStepName("Test Pig");
pigStepRequest.setScriptArguments(shellScriptArgs);
pigStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/test/test_pig.pig");
emrSteps.add(pigStepRequest);
shellStepRequest = new EmrShellStepAddRequest();
shellStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/bootstrap/install_oozie.sh");
shellStepRequest.setStepName("Install Oozie");
List<String> shellScriptArgsOozie = new ArrayList<>();
shellScriptArgsOozie.add("s3://test-bucket-managed/app-a/bootstrap/oozie-4.0.1-distro.tar");
shellStepRequest.setScriptArguments(shellScriptArgsOozie);
emrSteps.add(shellStepRequest);
EmrHadoopJarStepAddRequest hadoopJarStepRequest = new EmrHadoopJarStepAddRequest();
List<String> scriptArgs2 = new ArrayList<>();
scriptArgs2.add("oozie_run");
scriptArgs2.add("wordcountOutput");
hadoopJarStepRequest.setStepName("Hadoop Jar");
hadoopJarStepRequest.setJarLocation("s3://test-bucket-managed/app-a/test/hadoop-mapreduce-examples-2.4.0.jar");
hadoopJarStepRequest.setMainClass("wordcount");
hadoopJarStepRequest.setScriptArguments(scriptArgs2);
emrSteps.add(hadoopJarStepRequest);
EmrStepHelper stepHelper;
for (Object emrStepAddRequest : emrSteps) {
stepHelper = emrStepHelperFactory.getStepHelper(emrStepAddRequest.getClass().getName());
stepHelper.setRequestNamespace(emrStepAddRequest, NAMESPACE);
stepHelper.setRequestEmrClusterDefinitionName(emrStepAddRequest, EMR_CLUSTER_DEFINITION_NAME);
stepHelper.setRequestEmrClusterName(emrStepAddRequest, request.getEmrClusterName());
stepHelper.setRequestAccountId(emrStepAddRequest, AWS_ACCOUNT_ID);
Object emrStep = emrService.addStepToCluster(emrStepAddRequest);
assertNotNull(emrStep);
assertNotNull(stepHelper.getStepId(emrStep));
Method getNameMethod = emrStep.getClass().getMethod("getStepName");
String emrStepName = (String) getNameMethod.invoke(emrStep);
assertEquals(stepHelper.getRequestStepName(emrStepAddRequest), emrStepName);
Method isContinueOnErrorMethod = emrStep.getClass().getMethod("isContinueOnError");
Object emrStepIsContinueOnError = isContinueOnErrorMethod.invoke(emrStep);
assertEquals(stepHelper.isRequestContinueOnError(emrStepAddRequest), emrStepIsContinueOnError);
}
}
use of org.finra.herd.model.api.xml.EmrHiveStepAddRequest in project herd by FINRAOS.
the class EmrServiceTest method testEmrAddStepsAllTypes.
/**
* This method tests the happy path scenario by testing all the step types
*/
@Test
public void testEmrAddStepsAllTypes() throws Exception {
// Create the namespace entity.
NamespaceEntity namespaceEntity = namespaceDaoTestHelper.createNamespaceEntity(NAMESPACE);
emrClusterDefinitionDaoTestHelper.createEmrClusterDefinitionEntity(namespaceEntity, EMR_CLUSTER_DEFINITION_NAME, IOUtils.toString(resourceLoader.getResource(EMR_CLUSTER_DEFINITION_XML_FILE_WITH_CLASSPATH).getInputStream()));
EmrClusterCreateRequest request = getNewEmrClusterCreateRequest();
emrService.createCluster(request);
List<Object> emrSteps = new ArrayList<>();
List<String> shellScriptArgs = new ArrayList<>();
shellScriptArgs.add("Hello");
shellScriptArgs.add("herd");
shellScriptArgs.add("How Are You");
EmrShellStepAddRequest shellStepRequest = new EmrShellStepAddRequest();
shellStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/test/test_script.sh");
shellStepRequest.setStepName("Test Shell Script");
shellStepRequest.setScriptArguments(shellScriptArgs);
emrSteps.add(shellStepRequest);
EmrHiveStepAddRequest hiveStepRequest = new EmrHiveStepAddRequest();
List<String> scriptArgs1 = new ArrayList<>();
scriptArgs1.add("arg2=sampleArg");
scriptArgs1.add("arg1=tables");
hiveStepRequest.setStepName("Test Hive");
hiveStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/test/test_hive.hql");
hiveStepRequest.setScriptArguments(scriptArgs1);
emrSteps.add(hiveStepRequest);
EmrPigStepAddRequest pigStepRequest = new EmrPigStepAddRequest();
pigStepRequest.setStepName("Test Pig");
pigStepRequest.setScriptArguments(shellScriptArgs);
pigStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/test/test_pig.pig");
emrSteps.add(pigStepRequest);
shellStepRequest = new EmrShellStepAddRequest();
shellStepRequest.setScriptLocation("s3://test-bucket-managed/app-a/bootstrap/install_oozie.sh");
shellStepRequest.setStepName("Install Oozie");
List<String> shellScriptArgsOozie = new ArrayList<>();
shellScriptArgsOozie.add("s3://test-bucket-managed/app-a/bootstrap/oozie-4.0.1-distro.tar");
shellStepRequest.setScriptArguments(shellScriptArgsOozie);
emrSteps.add(shellStepRequest);
EmrHadoopJarStepAddRequest hadoopJarStepRequest = new EmrHadoopJarStepAddRequest();
List<String> scriptArgs2 = new ArrayList<>();
scriptArgs2.add("oozie_run");
scriptArgs2.add("wordcountOutput");
hadoopJarStepRequest.setStepName("Hadoop Jar");
hadoopJarStepRequest.setJarLocation("s3://test-bucket-managed/app-a/test/hadoop-mapreduce-examples-2.4.0.jar");
hadoopJarStepRequest.setMainClass("wordcount");
hadoopJarStepRequest.setScriptArguments(scriptArgs2);
emrSteps.add(hadoopJarStepRequest);
EmrStepHelper stepHelper;
for (Object emrStepAddRequest : emrSteps) {
stepHelper = emrStepHelperFactory.getStepHelper(emrStepAddRequest.getClass().getName());
stepHelper.setRequestNamespace(emrStepAddRequest, NAMESPACE);
stepHelper.setRequestEmrClusterDefinitionName(emrStepAddRequest, EMR_CLUSTER_DEFINITION_NAME);
stepHelper.setRequestEmrClusterName(emrStepAddRequest, request.getEmrClusterName());
Object emrStep = emrService.addStepToCluster(emrStepAddRequest);
assertNotNull(emrStep);
assertNotNull(stepHelper.getStepId(emrStep));
Method getNameMethod = emrStep.getClass().getMethod("getStepName");
String emrStepName = (String) getNameMethod.invoke(emrStep);
assertEquals(stepHelper.getRequestStepName(emrStepAddRequest), emrStepName);
Method isContinueOnErrorMethod = emrStep.getClass().getMethod("isContinueOnError");
Object emrStepIsContinueOnError = isContinueOnErrorMethod.invoke(emrStep);
assertEquals(stepHelper.isRequestContinueOnError(emrStepAddRequest), emrStepIsContinueOnError);
}
}
use of org.finra.herd.model.api.xml.EmrHiveStepAddRequest in project herd by FINRAOS.
the class EmrHiveStepHelper method validateAddStepRequest.
@Override
public void validateAddStepRequest(Object step) {
EmrHiveStepAddRequest hiveStepRequest = (EmrHiveStepAddRequest) step;
validateStepName(hiveStepRequest.getStepName());
validateScriptLocation(hiveStepRequest.getScriptLocation());
}
Aggregations