Search in sources :

Example 1 with EmrPigStepAddRequest

use of org.finra.herd.model.api.xml.EmrPigStepAddRequest in project herd by FINRAOS.

the class EmrPigStepHelper method validateAddStepRequest.

@Override
public void validateAddStepRequest(Object step) {
    EmrPigStepAddRequest pigStepRequest = (EmrPigStepAddRequest) step;
    validateStepName(pigStepRequest.getStepName());
    validateScriptLocation(pigStepRequest.getScriptLocation());
}
Also used : EmrPigStepAddRequest(org.finra.herd.model.api.xml.EmrPigStepAddRequest)

Example 2 with EmrPigStepAddRequest

use of org.finra.herd.model.api.xml.EmrPigStepAddRequest in project herd by FINRAOS.

the class EmrPigStepHelper method buildResponseFromRequest.

@Override
public Object buildResponseFromRequest(Object stepRequest) {
    EmrPigStepAddRequest emrPigStepAddRequest = (EmrPigStepAddRequest) stepRequest;
    EmrPigStep step = new EmrPigStep();
    step.setNamespace(emrPigStepAddRequest.getNamespace());
    step.setEmrClusterDefinitionName(emrPigStepAddRequest.getEmrClusterDefinitionName());
    step.setEmrClusterName(emrPigStepAddRequest.getEmrClusterName());
    step.setStepName(emrPigStepAddRequest.getStepName().trim());
    step.setScriptLocation(emrPigStepAddRequest.getScriptLocation().trim().replaceAll(getS3ManagedReplaceString(), emrHelper.getS3StagingLocation()));
    // Add the script arguments
    if (!CollectionUtils.isEmpty(emrPigStepAddRequest.getScriptArguments())) {
        List<String> scriptArguments = new ArrayList<>();
        step.setScriptArguments(scriptArguments);
        for (String argument : emrPigStepAddRequest.getScriptArguments()) {
            scriptArguments.add(argument.trim());
        }
    }
    step.setContinueOnError(emrPigStepAddRequest.isContinueOnError());
    return step;
}
Also used : EmrPigStepAddRequest(org.finra.herd.model.api.xml.EmrPigStepAddRequest) EmrPigStep(org.finra.herd.model.api.xml.EmrPigStep) ArrayList(java.util.ArrayList)

Example 3 with EmrPigStepAddRequest

use of org.finra.herd.model.api.xml.EmrPigStepAddRequest in project herd by FINRAOS.

the class AddEmrPigStep method executeImpl.

@Override
public void executeImpl(DelegateExecution execution) throws Exception {
    // Create the request.
    EmrPigStepAddRequest request = new EmrPigStepAddRequest();
    populateCommonParams(request, execution);
    request.setScriptLocation(getScriptLocation(execution));
    request.setScriptArguments(getScriptArguments(execution));
    addEmrStepAndSetWorkflowVariables(request, execution);
}
Also used : EmrPigStepAddRequest(org.finra.herd.model.api.xml.EmrPigStepAddRequest)

Example 4 with EmrPigStepAddRequest

use of org.finra.herd.model.api.xml.EmrPigStepAddRequest in project herd by FINRAOS.

the class EmrRestControllerTest method testAddPigStepToEmrCluster.

@Test
public void testAddPigStepToEmrCluster() throws Exception {
    // Create an add step request.
    EmrPigStepAddRequest emrPigStepAddRequest = new EmrPigStepAddRequest(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.
    EmrPigStep emrPigStep = new EmrPigStep(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(emrPigStepAddRequest)).thenReturn(emrPigStep);
    // Call the method under test.
    EmrPigStep result = emrRestController.addPigStepToEmrCluster(emrPigStepAddRequest);
    // Verify the external calls.
    verify(emrService).addStepToCluster(emrPigStepAddRequest);
    verifyNoMoreInteractionsHelper();
    // Validate the results.
    assertEquals(emrPigStep, result);
}
Also used : EmrPigStepAddRequest(org.finra.herd.model.api.xml.EmrPigStepAddRequest) EmrPigStep(org.finra.herd.model.api.xml.EmrPigStep) Test(org.junit.Test)

Example 5 with EmrPigStepAddRequest

use of org.finra.herd.model.api.xml.EmrPigStepAddRequest 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);
    }
}
Also used : NamespaceEntity(org.finra.herd.model.jpa.NamespaceEntity) EmrPigStepAddRequest(org.finra.herd.model.api.xml.EmrPigStepAddRequest) EmrClusterCreateRequest(org.finra.herd.model.api.xml.EmrClusterCreateRequest) EmrShellStepAddRequest(org.finra.herd.model.api.xml.EmrShellStepAddRequest) ArrayList(java.util.ArrayList) EmrStepHelper(org.finra.herd.service.helper.EmrStepHelper) Method(java.lang.reflect.Method) EmrHadoopJarStepAddRequest(org.finra.herd.model.api.xml.EmrHadoopJarStepAddRequest) EmrHiveStepAddRequest(org.finra.herd.model.api.xml.EmrHiveStepAddRequest) Test(org.junit.Test)

Aggregations

EmrPigStepAddRequest (org.finra.herd.model.api.xml.EmrPigStepAddRequest)6 ArrayList (java.util.ArrayList)3 Test (org.junit.Test)3 Method (java.lang.reflect.Method)2 EmrClusterCreateRequest (org.finra.herd.model.api.xml.EmrClusterCreateRequest)2 EmrHadoopJarStepAddRequest (org.finra.herd.model.api.xml.EmrHadoopJarStepAddRequest)2 EmrHiveStepAddRequest (org.finra.herd.model.api.xml.EmrHiveStepAddRequest)2 EmrPigStep (org.finra.herd.model.api.xml.EmrPigStep)2 EmrShellStepAddRequest (org.finra.herd.model.api.xml.EmrShellStepAddRequest)2 NamespaceEntity (org.finra.herd.model.jpa.NamespaceEntity)2 EmrStepHelper (org.finra.herd.service.helper.EmrStepHelper)2