/** * 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.atlas.web.resources; import org.apache.atlas.AtlasClient; import org.apache.atlas.discovery.DiscoveryException; import org.apache.atlas.discovery.LineageService; import org.apache.atlas.typesystem.exception.EntityNotFoundException; import org.apache.atlas.utils.AtlasPerfTracer; import org.apache.atlas.web.util.Servlets; import org.codehaus.jettison.json.JSONObject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.inject.Inject; import javax.inject.Singleton; import javax.servlet.http.HttpServletRequest; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.Context; import javax.ws.rs.core.Response; /** * Jersey Resource for Hive Table Lineage. */ @Path("lineage/hive") @Singleton @Deprecated public class DataSetLineageResource { private static final Logger LOG = LoggerFactory.getLogger(DataSetLineageResource.class); private static final Logger PERF_LOG = AtlasPerfTracer.getPerfLogger("rest.DataSetLineageResource"); private final LineageService lineageService; /** * Created by the Guice ServletModule and injected with the * configured LineageService. * * @param lineageService lineage service handle */ @Inject public DataSetLineageResource(LineageService lineageService) { this.lineageService = lineageService; } /** * Returns the inputs graph for a given entity. * * @param tableName table name */ @GET @Path("table/{tableName}/inputs/graph") @Consumes(Servlets.JSON_MEDIA_TYPE) @Produces(Servlets.JSON_MEDIA_TYPE) public Response inputsGraph(@Context HttpServletRequest request, @PathParam("tableName") String tableName) { if (LOG.isDebugEnabled()) { LOG.debug("==> DataSetLineageResource.inputsGraph({})", tableName); } AtlasPerfTracer perf = null; try { if (AtlasPerfTracer.isPerfTraceEnabled(PERF_LOG)) { perf = AtlasPerfTracer.getPerfTracer(PERF_LOG, "DataSetLineageResource.inputsGraph(tableName=" + tableName + ")"); } final String jsonResult = lineageService.getInputsGraph(tableName); JSONObject response = new JSONObject(); response.put(AtlasClient.REQUEST_ID, Servlets.getRequestId()); response.put("tableName", tableName); response.put(AtlasClient.RESULTS, new JSONObject(jsonResult)); return Response.ok(response).build(); } catch (EntityNotFoundException e) { LOG.error("table entity not found for {}", tableName); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.NOT_FOUND)); } catch (DiscoveryException | IllegalArgumentException e) { LOG.error("Unable to get lineage inputs graph for table {}", tableName, e); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.BAD_REQUEST)); } catch (WebApplicationException e) { LOG.error("Unable to get lineage inputs graph for table {}", tableName, e); throw e; } catch (Throwable e) { LOG.error("Unable to get lineage inputs graph for table {}", tableName, e); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.INTERNAL_SERVER_ERROR)); } finally { AtlasPerfTracer.log(perf); } } /** * Returns the outputs graph for a given entity. * * @param tableName table name */ @GET @Path("table/{tableName}/outputs/graph") @Consumes(Servlets.JSON_MEDIA_TYPE) @Produces(Servlets.JSON_MEDIA_TYPE) public Response outputsGraph(@Context HttpServletRequest request, @PathParam("tableName") String tableName) { if (LOG.isDebugEnabled()) { LOG.debug("==> DataSetLineageResource.outputsGraph({})", tableName); } AtlasPerfTracer perf = null; try { if (AtlasPerfTracer.isPerfTraceEnabled(PERF_LOG)) { perf = AtlasPerfTracer.getPerfTracer(PERF_LOG, "DataSetLineageResource.outputsGraph(tableName=" + tableName + ")"); } final String jsonResult = lineageService.getOutputsGraph(tableName); JSONObject response = new JSONObject(); response.put(AtlasClient.REQUEST_ID, Servlets.getRequestId()); response.put("tableName", tableName); response.put(AtlasClient.RESULTS, new JSONObject(jsonResult)); return Response.ok(response).build(); } catch (EntityNotFoundException e) { LOG.error("table entity not found for {}", tableName); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.NOT_FOUND)); } catch (DiscoveryException | IllegalArgumentException e) { LOG.error("Unable to get lineage outputs graph for table {}", tableName, e); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.BAD_REQUEST)); } catch (WebApplicationException e) { LOG.error("Unable to get lineage outputs graph for table {}", tableName, e); throw e; } catch (Throwable e) { LOG.error("Unable to get lineage outputs graph for table {}", tableName, e); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.INTERNAL_SERVER_ERROR)); } finally { AtlasPerfTracer.log(perf); } } /** * Return the schema for the given tableName. * * @param tableName table name */ @GET @Path("table/{tableName}/schema") @Consumes(Servlets.JSON_MEDIA_TYPE) @Produces(Servlets.JSON_MEDIA_TYPE) public Response schema(@Context HttpServletRequest request, @PathParam("tableName") String tableName) { if (LOG.isDebugEnabled()) { LOG.debug("==> DataSetLineageResource.schema({})", tableName); } AtlasPerfTracer perf = null; try { if (AtlasPerfTracer.isPerfTraceEnabled(PERF_LOG)) { perf = AtlasPerfTracer.getPerfTracer(PERF_LOG, "DataSetLineageResource.schema(tableName=" + tableName + ")"); } final String jsonResult = lineageService.getSchema(tableName); JSONObject response = new JSONObject(); response.put(AtlasClient.REQUEST_ID, Servlets.getRequestId()); response.put("tableName", tableName); response.put(AtlasClient.RESULTS, new JSONObject(jsonResult)); return Response.ok(response).build(); } catch (EntityNotFoundException e) { LOG.error("table entity not found for {}", tableName); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.NOT_FOUND)); } catch (DiscoveryException | IllegalArgumentException e) { LOG.error("Unable to get schema for table {}", tableName, e); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.BAD_REQUEST)); } catch (WebApplicationException e) { LOG.error("Unable to get schema for table {}", tableName, e); throw e; } catch (Throwable e) { LOG.error("Unable to get schema for table {}", tableName, e); throw new WebApplicationException(Servlets.getErrorResponse(e, Response.Status.INTERNAL_SERVER_ERROR)); } finally { AtlasPerfTracer.log(perf); } } }