blob: 633d861410d8d14b728cac0ce2013fc8df010a4b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.druid.indexing.overlord;
import com.google.common.collect.ImmutableList;
import org.apache.druid.error.DruidException;
import org.apache.druid.error.DruidExceptionMatcher;
import org.apache.druid.indexer.TaskInfo;
import org.apache.druid.indexer.TaskStatus;
import org.apache.druid.indexing.common.task.NoopTask;
import org.apache.druid.indexing.common.task.Task;
import org.apache.druid.java.util.common.DateTimes;
import org.apache.druid.java.util.common.Intervals;
import org.easymock.EasyMock;
import org.hamcrest.MatcherAssert;
import org.joda.time.Interval;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.util.List;
public class IndexerMetadataStorageAdapterTest
{
private TaskStorageQueryAdapter taskStorageQueryAdapter;
private IndexerMetadataStorageCoordinator indexerMetadataStorageCoordinator;
private IndexerMetadataStorageAdapter indexerMetadataStorageAdapter;
@Before
public void setup()
{
indexerMetadataStorageCoordinator = EasyMock.strictMock(IndexerMetadataStorageCoordinator.class);
taskStorageQueryAdapter = EasyMock.strictMock(TaskStorageQueryAdapter.class);
indexerMetadataStorageAdapter = new IndexerMetadataStorageAdapter(
taskStorageQueryAdapter,
indexerMetadataStorageCoordinator
);
}
@Test
public void testDeletePendingSegments()
{
final List<TaskInfo<Task, TaskStatus>> taskInfos = ImmutableList.of(
new TaskInfo<>(
"id1",
DateTimes.of("2017-12-01"),
TaskStatus.running("id1"),
"dataSource",
NoopTask.create()
),
new TaskInfo<>(
"id2",
DateTimes.of("2017-12-02"),
TaskStatus.running("id2"),
"dataSource",
NoopTask.create()
)
);
EasyMock.expect(taskStorageQueryAdapter.getActiveTaskInfo("dataSource")).andReturn(taskInfos);
final Interval deleteInterval = Intervals.of("2017-01-01/2017-12-01");
EasyMock
.expect(
indexerMetadataStorageCoordinator.deletePendingSegmentsCreatedInInterval(
EasyMock.anyString(),
EasyMock.eq(deleteInterval)
)
)
.andReturn(10);
EasyMock.replay(taskStorageQueryAdapter, indexerMetadataStorageCoordinator);
Assert.assertEquals(10, indexerMetadataStorageAdapter.deletePendingSegments("dataSource", deleteInterval));
}
@Test
public void testDeletePendingSegmentsOfOneOverlappingRunningTask()
{
final ImmutableList<TaskInfo<Task, TaskStatus>> taskInfos = ImmutableList.of(
new TaskInfo<>(
"id1",
DateTimes.of("2017-11-01"),
TaskStatus.running("id1"),
"dataSource",
NoopTask.create()
),
new TaskInfo<>(
"id2",
DateTimes.of("2017-12-02"),
TaskStatus.running("id2"),
"dataSource",
NoopTask.create()
)
);
EasyMock.expect(taskStorageQueryAdapter.getActiveTaskInfo("dataSource")).andReturn(taskInfos);
final Interval deleteInterval = Intervals.of("2017-01-01/2017-12-01");
EasyMock
.expect(
indexerMetadataStorageCoordinator.deletePendingSegmentsCreatedInInterval(
EasyMock.anyString(),
EasyMock.eq(deleteInterval)
)
)
.andReturn(10);
EasyMock.replay(taskStorageQueryAdapter, indexerMetadataStorageCoordinator);
MatcherAssert.assertThat(
Assert.assertThrows(
DruidException.class,
() -> indexerMetadataStorageAdapter.deletePendingSegments("dataSource", deleteInterval)
),
DruidExceptionMatcher.invalidInput().expectMessageIs(
"Cannot delete pendingSegments for datasource[dataSource] as there is at least one active task[id1]"
+ " created at[2017-11-01T00:00:00.000Z] that overlaps with the delete "
+ "interval[2017-01-01T00:00:00.000Z/2017-12-01T00:00:00.000Z]. Please retry when there are no active tasks."
)
);
}
@Test
public void testDeletePendingSegmentsOfMultipleOverlappingRunningTasks()
{
final ImmutableList<TaskInfo<Task, TaskStatus>> taskInfos = ImmutableList.of(
new TaskInfo<>(
"id1",
DateTimes.of("2017-12-01"),
TaskStatus.running("id1"),
"dataSource",
NoopTask.create()
),
new TaskInfo<>(
"id2",
DateTimes.of("2017-11-01"),
TaskStatus.running("id2"),
"dataSource",
NoopTask.create()
)
);
EasyMock.expect(taskStorageQueryAdapter.getActiveTaskInfo("dataSource")).andReturn(taskInfos);
final Interval deleteInterval = Intervals.of("2017-01-01/2018-12-01");
EasyMock
.expect(
indexerMetadataStorageCoordinator.deletePendingSegmentsCreatedInInterval(
EasyMock.anyString(),
EasyMock.eq(deleteInterval)
)
)
.andReturn(10);
EasyMock.replay(taskStorageQueryAdapter, indexerMetadataStorageCoordinator);
MatcherAssert.assertThat(
Assert.assertThrows(
DruidException.class,
() -> indexerMetadataStorageAdapter.deletePendingSegments("dataSource", deleteInterval)
),
DruidExceptionMatcher.invalidInput().expectMessageIs(
"Cannot delete pendingSegments for datasource[dataSource] as there is at least one active task[id2]"
+ " created at[2017-11-01T00:00:00.000Z] that overlaps with the delete"
+ " interval[2017-01-01T00:00:00.000Z/2018-12-01T00:00:00.000Z]. Please retry when there are no active tasks."
)
);
}
}