Search in sources :

Example 1 with JobSpec

use of org.apache.gobblin.runtime.api.JobSpec in project incubator-gobblin by apache.

the class StreamingJobConfigurationManager method fetchJobSpecs.

private void fetchJobSpecs() throws ExecutionException, InterruptedException {
    List<Pair<SpecExecutor.Verb, Spec>> changesSpecs = (List<Pair<SpecExecutor.Verb, Spec>>) this.specConsumer.changedSpecs().get();
    // propagate thread interruption so that caller will exit from loop
    if (Thread.interrupted()) {
        throw new InterruptedException();
    }
    for (Pair<SpecExecutor.Verb, Spec> entry : changesSpecs) {
        SpecExecutor.Verb verb = entry.getKey();
        if (verb.equals(SpecExecutor.Verb.ADD)) {
            // Handle addition
            JobSpec jobSpec = (JobSpec) entry.getValue();
            postNewJobConfigArrival(jobSpec.getUri().toString(), jobSpec.getConfigAsProperties());
        } else if (verb.equals(SpecExecutor.Verb.UPDATE)) {
            // Handle update
            JobSpec jobSpec = (JobSpec) entry.getValue();
            postUpdateJobConfigArrival(jobSpec.getUri().toString(), jobSpec.getConfigAsProperties());
        } else if (verb.equals(SpecExecutor.Verb.DELETE)) {
            // Handle delete
            Spec anonymousSpec = (Spec) entry.getValue();
            postDeleteJobConfigArrival(anonymousSpec.getUri().toString(), new Properties());
        }
    }
}
Also used : SpecExecutor(org.apache.gobblin.runtime.api.SpecExecutor) ImmutableList(com.google.common.collect.ImmutableList) List(java.util.List) JobSpec(org.apache.gobblin.runtime.api.JobSpec) JobSpec(org.apache.gobblin.runtime.api.JobSpec) Spec(org.apache.gobblin.runtime.api.Spec) Properties(java.util.Properties) Pair(org.apache.commons.lang3.tuple.Pair)

Example 2 with JobSpec

use of org.apache.gobblin.runtime.api.JobSpec in project incubator-gobblin by apache.

the class AzkabanProjectConfigTest method testProjectNameDefault.

@Test
public void testProjectNameDefault() throws Exception {
    String expectedProjectName = "GobblinService__uri";
    Properties properties = new Properties();
    JobSpec jobSpec = new JobSpec(new URI("uri"), "0.0", "test job spec", ConfigUtils.propertiesToConfig(properties), properties, Optional.absent());
    AzkabanProjectConfig azkabanProjectConfig = new AzkabanProjectConfig(jobSpec);
    String actualProjectName = azkabanProjectConfig.getAzkabanProjectName();
    Assert.assertEquals(actualProjectName, expectedProjectName);
}
Also used : JobSpec(org.apache.gobblin.runtime.api.JobSpec) Properties(java.util.Properties) URI(java.net.URI) Test(org.testng.annotations.Test)

Example 3 with JobSpec

use of org.apache.gobblin.runtime.api.JobSpec in project incubator-gobblin by apache.

the class AzkabanProjectConfigTest method testProjectZipFileName.

@Test
public void testProjectZipFileName() throws Exception {
    String expectedZipFileName = "randomPrefix_http___localhost_8000_context.zip";
    Properties properties = new Properties();
    properties.setProperty("gobblin.service.azkaban.project.namePrefix", "randomPrefix");
    JobSpec jobSpec = new JobSpec(new URI("http://localhost:8000/context"), "0.0", "test job spec", ConfigUtils.propertiesToConfig(properties), properties, Optional.absent());
    AzkabanProjectConfig azkabanProjectConfig = new AzkabanProjectConfig(jobSpec);
    String actualZipFileName = azkabanProjectConfig.getAzkabanProjectZipFilename();
    Assert.assertEquals(actualZipFileName, expectedZipFileName);
}
Also used : JobSpec(org.apache.gobblin.runtime.api.JobSpec) Properties(java.util.Properties) URI(java.net.URI) Test(org.testng.annotations.Test)

Example 4 with JobSpec

use of org.apache.gobblin.runtime.api.JobSpec in project incubator-gobblin by apache.

the class AzkabanProjectConfigTest method testProjectZipFileNameForLongName.

@Test
public void testProjectZipFileNameForLongName() throws Exception {
    String expectedZipFileName = "randomPrefixWithReallyLongName_http___localhost_8000__55490420.zip";
    Properties properties = new Properties();
    properties.setProperty("gobblin.service.azkaban.project.namePrefix", "randomPrefixWithReallyLongName");
    JobSpec jobSpec = new JobSpec(new URI("http://localhost:8000/context/that-keeps-expanding-and-explanding"), "0.0", "test job spec", ConfigUtils.propertiesToConfig(properties), properties, Optional.absent());
    AzkabanProjectConfig azkabanProjectConfig = new AzkabanProjectConfig(jobSpec);
    String actualZipFileName = azkabanProjectConfig.getAzkabanProjectZipFilename();
    Assert.assertEquals(actualZipFileName, expectedZipFileName);
}
Also used : JobSpec(org.apache.gobblin.runtime.api.JobSpec) Properties(java.util.Properties) URI(java.net.URI) Test(org.testng.annotations.Test)

Example 5 with JobSpec

use of org.apache.gobblin.runtime.api.JobSpec in project incubator-gobblin by apache.

the class StreamingKafkaSpecExecutorTest method testAddSpec.

@Test
public void testAddSpec() throws Exception {
    _closer = Closer.create();
    _properties = new Properties();
    // Properties for Producer
    _properties.setProperty(KafkaWriterConfigurationKeys.KAFKA_TOPIC, TOPIC);
    _properties.setProperty(KafkaWriterConfigurationKeys.KAFKA_PRODUCER_CONFIG_PREFIX + "bootstrap.servers", _kafkaBrokers);
    _properties.setProperty(KafkaWriterConfigurationKeys.KAFKA_PRODUCER_CONFIG_PREFIX + "value.serializer", "org.apache.kafka.common.serialization.ByteArraySerializer");
    // Properties for Consumer
    _properties.setProperty("jobSpecMonitor.kafka.zookeeper.connect", zkConnect);
    _properties.setProperty(SimpleKafkaSpecExecutor.SPEC_KAFKA_TOPICS_KEY, TOPIC);
    _properties.setProperty("gobblin.cluster.jobconf.fullyQualifiedPath", _JOBS_DIR_PATH);
    Config config = ConfigUtils.propertiesToConfig(_properties);
    // SEI Producer
    _seip = _closer.register(new SimpleKafkaSpecProducer(config));
    String addedSpecUriString = "/foo/bar/addedSpec";
    Spec spec = initJobSpec(addedSpecUriString);
    WriteResponse writeResponse = (WriteResponse) _seip.addSpec(spec).get();
    log.info("WriteResponse: " + writeResponse);
    _jobCatalog = new NonObservingFSJobCatalog(config.getConfig("gobblin.cluster"));
    _jobCatalog.startAsync().awaitRunning();
    // SEI Consumer
    _seic = _closer.register(new StreamingKafkaSpecConsumer(config, _jobCatalog));
    _seic.startAsync().awaitRunning();
    List<Pair<SpecExecutor.Verb, Spec>> consumedEvent = _seic.changedSpecs().get();
    Assert.assertTrue(consumedEvent.size() == 1, "Consumption did not match production");
    Map.Entry<SpecExecutor.Verb, Spec> consumedSpecAction = consumedEvent.get(0);
    Assert.assertTrue(consumedSpecAction.getKey().equals(SpecExecutor.Verb.ADD), "Verb did not match");
    Assert.assertTrue(consumedSpecAction.getValue().getUri().toString().equals(addedSpecUriString), "Expected URI did not match");
    Assert.assertTrue(consumedSpecAction.getValue() instanceof JobSpec, "Expected JobSpec");
}
Also used : Config(com.typesafe.config.Config) WriteResponse(org.apache.gobblin.writer.WriteResponse) Properties(java.util.Properties) NonObservingFSJobCatalog(org.apache.gobblin.runtime.job_catalog.NonObservingFSJobCatalog) SpecExecutor(org.apache.gobblin.runtime.api.SpecExecutor) JobSpec(org.apache.gobblin.runtime.api.JobSpec) JobSpec(org.apache.gobblin.runtime.api.JobSpec) Spec(org.apache.gobblin.runtime.api.Spec) Map(java.util.Map) Pair(org.apache.commons.lang3.tuple.Pair) Test(org.testng.annotations.Test)

Aggregations

JobSpec (org.apache.gobblin.runtime.api.JobSpec)52 Test (org.testng.annotations.Test)34 URI (java.net.URI)18 Properties (java.util.Properties)14 Spec (org.apache.gobblin.runtime.api.Spec)11 SpecExecutor (org.apache.gobblin.runtime.api.SpecExecutor)11 ResolvedJobSpec (org.apache.gobblin.runtime.job_spec.ResolvedJobSpec)9 Map (java.util.Map)8 Pair (org.apache.commons.lang3.tuple.Pair)8 Config (com.typesafe.config.Config)7 Logger (org.slf4j.Logger)7 JobCatalogListener (org.apache.gobblin.runtime.api.JobCatalogListener)6 WriteResponse (org.apache.gobblin.writer.WriteResponse)6 IOException (java.io.IOException)5 ArrayBlockingQueue (java.util.concurrent.ArrayBlockingQueue)5 JobExecutionDriver (org.apache.gobblin.runtime.api.JobExecutionDriver)5 JobExecutionResult (org.apache.gobblin.runtime.api.JobExecutionResult)5 JobLifecycleListener (org.apache.gobblin.runtime.api.JobLifecycleListener)5 Path (org.apache.hadoop.fs.Path)5 SpecNotFoundException (org.apache.gobblin.runtime.api.SpecNotFoundException)4