|
| 1 | +package com.linkedin.datahub.graphql.resolvers.ingest.execution; |
| 2 | + |
| 3 | +import static com.linkedin.datahub.graphql.resolvers.ResolverUtils.bindArgument; |
| 4 | +import static com.linkedin.datahub.graphql.resolvers.ResolverUtils.buildFilter; |
| 5 | + |
| 6 | +import com.google.common.collect.ImmutableSet; |
| 7 | +import com.linkedin.common.urn.Urn; |
| 8 | +import com.linkedin.datahub.graphql.QueryContext; |
| 9 | +import com.linkedin.datahub.graphql.concurrency.GraphQLConcurrencyUtils; |
| 10 | +import com.linkedin.datahub.graphql.generated.FacetFilterInput; |
| 11 | +import com.linkedin.datahub.graphql.generated.IngestionSourceExecutionRequests; |
| 12 | +import com.linkedin.datahub.graphql.generated.ListExecutionRequestsInput; |
| 13 | +import com.linkedin.datahub.graphql.resolvers.ingest.IngestionResolverUtils; |
| 14 | +import com.linkedin.entity.EntityResponse; |
| 15 | +import com.linkedin.entity.client.EntityClient; |
| 16 | +import com.linkedin.metadata.Constants; |
| 17 | +import com.linkedin.metadata.query.filter.SortCriterion; |
| 18 | +import com.linkedin.metadata.query.filter.SortOrder; |
| 19 | +import com.linkedin.metadata.search.SearchEntity; |
| 20 | +import com.linkedin.metadata.search.SearchResult; |
| 21 | +import graphql.schema.DataFetcher; |
| 22 | +import graphql.schema.DataFetchingEnvironment; |
| 23 | +import java.util.Collections; |
| 24 | +import java.util.HashSet; |
| 25 | +import java.util.List; |
| 26 | +import java.util.Map; |
| 27 | +import java.util.Objects; |
| 28 | +import java.util.concurrent.CompletableFuture; |
| 29 | +import lombok.RequiredArgsConstructor; |
| 30 | +import lombok.extern.slf4j.Slf4j; |
| 31 | + |
| 32 | +@Slf4j |
| 33 | +@RequiredArgsConstructor |
| 34 | +public class ListExecutionRequestsResolver |
| 35 | + implements DataFetcher<CompletableFuture<IngestionSourceExecutionRequests>> { |
| 36 | + |
| 37 | + private static final String DEFAULT_QUERY = "*"; |
| 38 | + private static final Integer DEFAULT_START = 0; |
| 39 | + private static final Integer DEFAULT_COUNT = 20; |
| 40 | + |
| 41 | + private final EntityClient _entityClient; |
| 42 | + |
| 43 | + @Override |
| 44 | + public CompletableFuture<IngestionSourceExecutionRequests> get( |
| 45 | + final DataFetchingEnvironment environment) throws Exception { |
| 46 | + |
| 47 | + final QueryContext context = environment.getContext(); |
| 48 | + |
| 49 | + final ListExecutionRequestsInput input = |
| 50 | + bindArgument(environment.getArgument("input"), ListExecutionRequestsInput.class); |
| 51 | + final Integer start = input.getStart() == null ? DEFAULT_START : input.getStart(); |
| 52 | + final Integer count = input.getCount() == null ? DEFAULT_COUNT : input.getCount(); |
| 53 | + final String query = input.getQuery() == null ? DEFAULT_QUERY : input.getQuery(); |
| 54 | + final List<FacetFilterInput> filters = |
| 55 | + input.getFilters() == null ? Collections.emptyList() : input.getFilters(); |
| 56 | + |
| 57 | + // construct sort criteria, defaulting to systemCreated |
| 58 | + final SortCriterion sortCriterion; |
| 59 | + |
| 60 | + // if query is expecting to sort by something, use that |
| 61 | + final com.linkedin.datahub.graphql.generated.SortCriterion sortCriterionInput = input.getSort(); |
| 62 | + if (sortCriterionInput != null) { |
| 63 | + sortCriterion = |
| 64 | + new SortCriterion() |
| 65 | + .setField(sortCriterionInput.getField()) |
| 66 | + .setOrder(SortOrder.valueOf(sortCriterionInput.getSortOrder().name())); |
| 67 | + } else { |
| 68 | + sortCriterion = new SortCriterion().setField("requestTimeMs").setOrder(SortOrder.DESCENDING); |
| 69 | + } |
| 70 | + |
| 71 | + return GraphQLConcurrencyUtils.supplyAsync( |
| 72 | + () -> { |
| 73 | + try { |
| 74 | + // First, get all execution request Urns. |
| 75 | + final SearchResult gmsResult = |
| 76 | + _entityClient.search( |
| 77 | + context.getOperationContext().withSearchFlags(flags -> flags.setFulltext(true)), |
| 78 | + Constants.EXECUTION_REQUEST_ENTITY_NAME, |
| 79 | + query, |
| 80 | + buildFilter(filters, Collections.emptyList()), |
| 81 | + sortCriterion != null ? List.of(sortCriterion) : null, |
| 82 | + start, |
| 83 | + count); |
| 84 | + |
| 85 | + log.info(String.format("Found %d execution requests", gmsResult.getNumEntities())); |
| 86 | + |
| 87 | + final List<Urn> entitiesUrnList = |
| 88 | + gmsResult.getEntities().stream().map(SearchEntity::getEntity).toList(); |
| 89 | + // Then, resolve all execution requests |
| 90 | + final Map<Urn, EntityResponse> entities = |
| 91 | + _entityClient.batchGetV2( |
| 92 | + context.getOperationContext(), |
| 93 | + Constants.EXECUTION_REQUEST_ENTITY_NAME, |
| 94 | + new HashSet<>(entitiesUrnList), |
| 95 | + ImmutableSet.of( |
| 96 | + Constants.EXECUTION_REQUEST_INPUT_ASPECT_NAME, |
| 97 | + Constants.EXECUTION_REQUEST_RESULT_ASPECT_NAME)); |
| 98 | + final List<EntityResponse> entitiesOrdered = |
| 99 | + entitiesUrnList.stream().map(entities::get).filter(Objects::nonNull).toList(); |
| 100 | + // Now that we have entities we can bind this to a result. |
| 101 | + final IngestionSourceExecutionRequests result = new IngestionSourceExecutionRequests(); |
| 102 | + result.setStart(gmsResult.getFrom()); |
| 103 | + result.setCount(gmsResult.getPageSize()); |
| 104 | + result.setTotal(gmsResult.getNumEntities()); |
| 105 | + result.setExecutionRequests( |
| 106 | + IngestionResolverUtils.mapExecutionRequests(context, entitiesOrdered)); |
| 107 | + return result; |
| 108 | + } catch (Exception e) { |
| 109 | + throw new RuntimeException("Failed to list executions", e); |
| 110 | + } |
| 111 | + }, |
| 112 | + this.getClass().getSimpleName(), |
| 113 | + "get"); |
| 114 | + } |
| 115 | +} |
0 commit comments