Examples of ExecutionParameters


Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowTrestlesOGCE() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getTrestlesOGCEParameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"));

    }
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowStampedeOGCE() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getStampedeOGCEParameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"));

        System.out.println("sadsd");
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowStampedeUS3() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getStampedeUS3Parameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"));

    }
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowStampedeUS3WithToken() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getStampedeUS3Parameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"),
                "9964c023-7d30-4247-a6eb-b0c9cd7be138", "bunny");
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

        return new WorkflowExecutor("default");
    }

    private ExecutionParameters getStampedeUS3Parameters() {

        ExecutionParameters executionParameters = new ExecutionParameters();

        executionParameters.setHostAddress("stampede.tacc.utexas.edu");
        executionParameters.setHostName("stampede");
        executionParameters.setGateKeeperAddress("login5.stampede.tacc.utexas.edu:2119/jobmanager-slurm3");
        executionParameters.setGridftpAddress("gsiftp://data1.stampede.tacc.utexas.edu:2811/");
        executionParameters.setProjectNumber("TG-MCB070039N");
        executionParameters.setQueueName("normal");
        executionParameters.setWorkingDirectory("/scratch/01623/us3");

        return executionParameters;

    }
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    }

    private ExecutionParameters getStampedeOGCEParameters() {

        ExecutionParameters executionParameters = new ExecutionParameters();

        executionParameters.setHostAddress("stampede.tacc.utexas.edu");
        executionParameters.setHostName("stampede");
        executionParameters.setGateKeeperAddress("login5.stampede.tacc.utexas.edu:2119/jobmanager-slurm");
        executionParameters.setGridftpAddress("gsiftp://data1.stampede.tacc.utexas.edu:2811/");
        executionParameters.setProjectNumber("TG-STA110014S");
        executionParameters.setQueueName("normal");
        executionParameters.setWorkingDirectory("/scratch/01437/ogce");

        return executionParameters;

    }
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    }

    private ExecutionParameters getTrestlesOGCEParameters() {

        ExecutionParameters executionParameters = new ExecutionParameters();
        executionParameters.setHostAddress("trestles.sdsc.edu");
        executionParameters.setHostName("trestles");
        executionParameters.setGateKeeperAddress("trestles-login2.sdsc.edu:2119/jobmanager-pbstest2");
        executionParameters.setGridftpAddress("gsiftp://trestles-dm1.sdsc.edu:2811");
        executionParameters.setProjectNumber("sds128");
        executionParameters.setQueueName("shared");
        executionParameters.setWorkingDirectory("/home/ogce/scratch");

        return executionParameters;

    }
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowTrestlesOGCE() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getTrestlesOGCEParameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"));

    }
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowTrestlesOGCEWithToken() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getTrestlesOGCEParameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"),
                "15673deb-cad5-460d-94b7-c4736d8159e5", "kermit");
View Full Code Here

Examples of org.apache.airavata.sample.gateway.ExecutionParameters

    //@Test
    public void testRunWorkflowStampedeOGCE() throws Exception {

        WorkflowExecutor workflowExecutor = getSampleGatewayExecutor();
        ExecutionParameters executionParameters = getStampedeOGCEParameters();

        Workflow workflow = workflowExecutor.setupExperiment(executionParameters);
        workflowExecutor.runWorkflow(workflow, Arrays.asList("echo_output=Hello World"));

        System.out.println("sadsd");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.