Search in sources :

Example 1 with JobStoreException

use of com.netflix.titus.api.jobmanager.store.JobStoreException in project titus-control-plane by Netflix.

the class CassandraJobStoreTest method testRetrieveTask.

@Test
public void testRetrieveTask() {
    JobStore store = getJobStore();
    Job<BatchJobExt> job = createBatchJobObject();
    store.init().await();
    store.storeJob(job).await();
    Pair<List<Job<?>>, Integer> jobsAndErrors = store.retrieveJobs().toBlocking().first();
    checkRetrievedJob(job, jobsAndErrors.getLeft().get(0));
    Task task = createTaskObject(job);
    store.storeTask(task).await();
    Task retrievedTask = store.retrieveTask(task.getId()).toBlocking().first();
    checkRetrievedTask(task, retrievedTask);
    // Check that archive access does not return anything.
    try {
        store.retrieveArchivedTask(task.getId()).toBlocking().first();
        fail("Should not return active task");
    } catch (JobStoreException e) {
        assertThat(e.getErrorCode()).isEqualTo(JobStoreException.ErrorCode.TASK_DOES_NOT_EXIST);
    }
}
Also used : BatchJobTask(com.netflix.titus.api.jobmanager.model.job.BatchJobTask) Task(com.netflix.titus.api.jobmanager.model.job.Task) ServiceJobTask(com.netflix.titus.api.jobmanager.model.job.ServiceJobTask) JobStoreException(com.netflix.titus.api.jobmanager.store.JobStoreException) BatchJobExt(com.netflix.titus.api.jobmanager.model.job.ext.BatchJobExt) JobStore(com.netflix.titus.api.jobmanager.store.JobStore) ArrayList(java.util.ArrayList) List(java.util.List) Test(org.junit.Test) IntegrationNotParallelizableTest(com.netflix.titus.testkit.junit.category.IntegrationNotParallelizableTest)

Example 2 with JobStoreException

use of com.netflix.titus.api.jobmanager.store.JobStoreException in project titus-control-plane by Netflix.

the class CassandraJobStoreTest method testRetrieveJobs.

@Test
public void testRetrieveJobs() {
    Session session = cassandraCqlUnit.getSession();
    JobStore bootstrappingStore = getJobStore(session);
    Job<BatchJobExt> job = createBatchJobObject();
    bootstrappingStore.storeJob(job).await();
    JobStore store = getJobStore(session);
    store.init().await();
    Pair<List<Job<?>>, Integer> jobsAndErrors = store.retrieveJobs().toBlocking().first();
    assertThat(jobsAndErrors.getLeft()).hasSize(1);
    assertThat(jobsAndErrors.getRight()).isEqualTo(0);
    checkRetrievedJob(job, jobsAndErrors.getLeft().get(0));
    // Check that archive access does not return anything.
    try {
        store.retrieveArchivedJob(job.getId()).toBlocking().first();
        fail("Should not return active job");
    } catch (JobStoreException e) {
        assertThat(e.getErrorCode()).isEqualTo(JobStoreException.ErrorCode.JOB_DOES_NOT_EXIST);
    }
}
Also used : JobStoreException(com.netflix.titus.api.jobmanager.store.JobStoreException) BatchJobExt(com.netflix.titus.api.jobmanager.model.job.ext.BatchJobExt) JobStore(com.netflix.titus.api.jobmanager.store.JobStore) ArrayList(java.util.ArrayList) List(java.util.List) Session(com.datastax.driver.core.Session) Test(org.junit.Test) IntegrationNotParallelizableTest(com.netflix.titus.testkit.junit.category.IntegrationNotParallelizableTest)

Aggregations

BatchJobExt (com.netflix.titus.api.jobmanager.model.job.ext.BatchJobExt)2 JobStore (com.netflix.titus.api.jobmanager.store.JobStore)2 JobStoreException (com.netflix.titus.api.jobmanager.store.JobStoreException)2 IntegrationNotParallelizableTest (com.netflix.titus.testkit.junit.category.IntegrationNotParallelizableTest)2 ArrayList (java.util.ArrayList)2 List (java.util.List)2 Test (org.junit.Test)2 Session (com.datastax.driver.core.Session)1 BatchJobTask (com.netflix.titus.api.jobmanager.model.job.BatchJobTask)1 ServiceJobTask (com.netflix.titus.api.jobmanager.model.job.ServiceJobTask)1 Task (com.netflix.titus.api.jobmanager.model.job.Task)1