mirror of https://github.com/apache/druid.git
Fix for issue 2021.
This commit is contained in:
parent
34cd8f8c72
commit
6ec6835b5d
|
@ -167,6 +167,7 @@ public class DatasourcesResource
|
|||
}
|
||||
|
||||
@DELETE
|
||||
@Deprecated
|
||||
@Path("/{dataSourceName}")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
public Response deleteDataSource(
|
||||
|
@ -200,7 +201,30 @@ public class DatasourcesResource
|
|||
return Response.ok().build();
|
||||
}
|
||||
|
||||
@GET
|
||||
@DELETE
|
||||
@Path("/{dataSourceName}/intervals/{interval}")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
public Response deleteDataSourceSpecificInterval(@PathParam("dataSourceName") final String dataSourceName, @PathParam("interval") final String interval, @QueryParam("kill") final String kill)
|
||||
{
|
||||
if (indexingServiceClient == null) {
|
||||
return Response.ok(ImmutableMap.of("error", "no indexing service found")).build();
|
||||
}
|
||||
final Interval theInterval = new Interval(interval.replace("_", "/"));
|
||||
if (kill != null && Boolean.valueOf(kill)) {
|
||||
try {
|
||||
indexingServiceClient.killSegments(dataSourceName, new Interval(theInterval));
|
||||
} catch (Exception e) {
|
||||
return Response.serverError().entity(ImmutableMap.of("error", "Exception occurred. Are you sure you have an indexing service?")).build();
|
||||
}
|
||||
} else {
|
||||
if (!databaseSegmentManager.removeDatasource(dataSourceName)) {
|
||||
return Response.noContent().build();
|
||||
}
|
||||
}
|
||||
return Response.ok().build();
|
||||
}
|
||||
|
||||
@GET
|
||||
@Path("/{dataSourceName}/intervals")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
public Response getSegmentDataSourceIntervals(
|
||||
|
|
|
@ -25,6 +25,7 @@ import io.druid.client.CoordinatorServerView;
|
|||
import io.druid.client.DruidDataSource;
|
||||
import io.druid.client.DruidServer;
|
||||
import io.druid.client.InventoryView;
|
||||
import io.druid.client.indexing.IndexingServiceClient;
|
||||
import io.druid.timeline.DataSegment;
|
||||
import org.easymock.EasyMock;
|
||||
import org.joda.time.Interval;
|
||||
|
@ -383,4 +384,22 @@ public class DatasourcesResourceTest
|
|||
}
|
||||
EasyMock.verify(inventoryView);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteDataSourceSpecificInterval() throws Exception
|
||||
{
|
||||
String interval = "2010-01-01_P1D";
|
||||
Interval theInterval = new Interval(interval.replace("_", "/"));
|
||||
|
||||
IndexingServiceClient indexingServiceClient = EasyMock.createStrictMock(IndexingServiceClient.class);
|
||||
indexingServiceClient.killSegments("datasource1", theInterval);
|
||||
EasyMock.expectLastCall().once();
|
||||
EasyMock.replay(indexingServiceClient, server);
|
||||
|
||||
DatasourcesResource datasourcesResource = new DatasourcesResource(inventoryView, null, indexingServiceClient);
|
||||
Response response = datasourcesResource.deleteDataSourceSpecificInterval("datasource1", interval, "true");
|
||||
Assert.assertEquals(200, response.getStatus());
|
||||
EasyMock.verify(indexingServiceClient, server);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue