-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jakub Dardzinski <[email protected]> Add call to API in frontend. Add tests. Signed-off-by: Jakub Dardzinski <[email protected]> Update javadocs. Signed-off-by: Jakub Dardzinski <[email protected]> Apply spotless fixes. Signed-off-by: Jakub Dardzinski <[email protected]>
- Loading branch information
1 parent
3492df2
commit d9daa4e
Showing
76 changed files
with
499 additions
and
481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright 2018-2023 contributors to the Marquez project | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package marquez.api; | ||
|
||
import static javax.ws.rs.core.MediaType.APPLICATION_JSON; | ||
|
||
import com.codahale.metrics.annotation.ExceptionMetered; | ||
import com.codahale.metrics.annotation.ResponseMetered; | ||
import com.codahale.metrics.annotation.Timed; | ||
import javax.ws.rs.GET; | ||
import javax.ws.rs.Path; | ||
import javax.ws.rs.Produces; | ||
import javax.ws.rs.PathParam; | ||
import javax.ws.rs.core.Response; | ||
import lombok.NonNull; | ||
import lombok.extern.slf4j.Slf4j; | ||
import marquez.common.models.RunId; | ||
import marquez.db.OpenLineageDao; | ||
import marquez.service.ServiceFactory; | ||
import marquez.service.models.Facets; | ||
|
||
|
||
@Slf4j | ||
@Path("/api/v1/facets") | ||
public class FacetResource extends BaseResource { | ||
|
||
private final OpenLineageDao openLineageDao; | ||
|
||
public FacetResource( | ||
@NonNull final ServiceFactory serviceFactory, @NonNull final OpenLineageDao openLineageDao) { | ||
super(serviceFactory); | ||
this.openLineageDao = openLineageDao; | ||
} | ||
|
||
@Timed | ||
@ResponseMetered | ||
@ExceptionMetered | ||
@GET | ||
@Produces(APPLICATION_JSON) | ||
@Path("/run/{id}") | ||
public Response getRunFacets( | ||
@PathParam("id") RunId runId) { | ||
throwIfNotExists(runId); | ||
Facets runFacets = openLineageDao.findRunFacetsByRunUuid(runId.getValue()); | ||
return Response.ok(runFacets).build(); | ||
} | ||
|
||
@Timed | ||
@ResponseMetered | ||
@ExceptionMetered | ||
@GET | ||
@Produces(APPLICATION_JSON) | ||
@Path("job/run/{id}") | ||
public Response getJobFacets( | ||
@PathParam("id") RunId runId) { | ||
throwIfNotExists(runId); | ||
Facets jobFacets = openLineageDao.findJobFacetsByRunUuid(runId.getValue()); | ||
return Response.ok(jobFacets).build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.