Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f8393ba
Reindex robustness: selective fields, cache fail-fast, stop actually …
harshach May 4, 2026
e626769
Address review: synchronize Redis state transitions, drop weak test
harshach May 4, 2026
e7b36b7
Address review: complete selective fields, preserve checkpoint, skip …
harshach May 4, 2026
54b7d21
Reindex bypasses Redis entity cache
harshach May 4, 2026
529b148
Address review: on-demand config reload, semaphore timeout test, test…
harshach May 4, 2026
5d35437
Address review: bypass guards on put*, volatile timeout
harshach May 4, 2026
f4edb0c
Reindex bypass: zero Redis traffic — guard every cache touchpoint
harshach May 4, 2026
126902d
Merge branch 'main' into harshach/indexing-perf
mohityadav766 May 4, 2026
ddcdcf1
Merge remote-tracking branch 'origin/main' into harshach/indexing-perf
harshach May 4, 2026
29c5999
Merge branch 'harshach/indexing-perf' of github.com:open-metadata/Ope…
harshach May 4, 2026
ade6439
Reindex: filter required fields against entity allowedFields
harshach May 4, 2026
5a39918
Add reindex perf-test tooling: 100k container generator + bootstrap
harshach May 4, 2026
a68c801
Merge branch 'main' into harshach/indexing-perf
harshach May 4, 2026
c67b9b0
PR #27876 review: address open Copilot/gitar-bot threads (batch 1)
harshach May 4, 2026
1186162
Merge branch 'harshach/indexing-perf' of github.com:open-metadata/Ope…
harshach May 4, 2026
67fae84
PR #27876 review: state-machine test + intent comments (batch 2)
harshach May 4, 2026
e46dc0d
PR #27876 review: expand ReindexingUtil parity coverage (batch 3)
harshach May 4, 2026
f877ae6
PR #27876 review 4222114380: failure context, claim release, ES test …
harshach May 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,301 @@
/*
* Copyright 2026 Collate
* Licensed 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.openmetadata.it.tests;

import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assumptions.assumeFalse;

import java.time.Duration;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.awaitility.Awaitility;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
import org.junit.jupiter.api.parallel.Isolated;
import org.openmetadata.it.bootstrap.TestSuiteBootstrap;
import org.openmetadata.it.util.SdkClients;
import org.openmetadata.it.util.TestNamespaceExtension;
import org.openmetadata.schema.entity.app.AppRunRecord;
import org.openmetadata.sdk.fluent.Apps;
import org.openmetadata.sdk.network.HttpClient;
import org.openmetadata.sdk.network.HttpMethod;

/**
* Regression guard for the
* {@code ReindexingUtil.getSearchIndexFields → Entity.getFields(entityType, fields)} contract.
*
* <p>{@link org.openmetadata.service.search.indexes.SearchIndex#COMMON_REINDEX_FIELDS} is the
* union of relationship/enrichment fields the reindex pipeline asks {@code EntityRepository}
* to fetch. Many entity schemas omit one or more of these (e.g. {@code storageService},
* {@code databaseService} and every other {@code *Service} have no {@code reviewers} /
* {@code votes} / {@code extension} / {@code certification}; {@code ingestionPipeline} has no
* {@code dataProducts}; {@code user} / {@code team} omit most of them).
*
* <p>Without the {@code allowedFields} intersection inside
* {@link org.openmetadata.service.workflows.searchIndex.ReindexingUtil#getSearchIndexFields(String)
* ReindexingUtil.getSearchIndexFields}, the validation in
* {@link org.openmetadata.service.util.EntityUtil.Fields} throws
* {@code IllegalArgumentException("Invalid field name reviewers")} on the first batch, which
* surfaces as a {@code Reader}-source {@code IndexingError} and terminates that entity-type's
* partition.
*
* <p>This test triggers the bundled {@code SearchIndexingApplication} (which runs reindex for
* every registered entity type), waits for completion, and asserts that:
*
* <ul>
* <li>The job completed successfully (status not {@code failed}).</li>
* <li>Per-entity {@code entityStats} for every fields-missing type reports zero
* {@code failedRecords} — i.e. no batches were rejected by the field validator.</li>
* <li>{@code totalRecords > 0} for at least one of those types, proving the reindex actually
* exercised the {@code Entity.getFields} validation path (a vacuous "0 failures because
* 0 entities" result wouldn't catch the regression).</li>
* </ul>
*/
@Execution(ExecutionMode.SAME_THREAD)
@Isolated
@ExtendWith(TestNamespaceExtension.class)
public class SearchIndexingFieldsParityIT {

private static final String APP_NAME = "SearchIndexingApplication";

/** Entity types whose JSON schema is missing one or more fields from {@code
* COMMON_REINDEX_FIELDS} ({@code owners, domains, reviewers, followers, votes, extension,
* certification, dataProducts}). Any of these would throw on the first batch without the
* {@code allowedFields} intersection. Verified against the generated {@code @JsonPropertyOrder}
* on each entity class as of this commit. */
private static final Set<String> FIELDS_MISSING_TYPES =
Set.of(
"container",
"databaseService",
"storageService",
"messagingService",
"pipelineService",
"dashboardService",
"mlmodelService",
"metadataService",
"searchService",
"apiService",
"ingestionPipeline",
"team",
"user",
"tag",
"classification",
"glossary",
"glossaryTerm",
"dataProduct",
"domain",
"table",
"topic",
"dashboard",
"pipeline",
"mlmodel",
"database",
"databaseSchema",
"chart",
"dashboardDataModel",
"apiCollection",
"apiEndpoint",
"spreadsheet",
"worksheet",
"directory",
"file",
"storedProcedure",
"searchIndex",
"query",
"metric");

@BeforeAll
static void setup() {
Apps.setDefaultClient(SdkClients.adminClient());
}

@Test
void allEntityTypesReindexWithoutFieldValidationFailures() throws Exception {
assumeFalse(
TestSuiteBootstrap.isK8sEnabled(), "App trigger not compatible with K8s pipeline backend");

HttpClient httpClient = SdkClients.adminClient().getHttpClient();

waitForCurrentRunCompletion(httpClient);
triggerWithDefaultConfig(httpClient);
AppRunRecord run = waitForLatestRunSuccess(httpClient);

assertNoFieldValidationFailures(run);
}

private static void triggerWithDefaultConfig(HttpClient httpClient) {
// Re-trigger with the bundled config. The default config indexes "all" entity types with
// recreateIndex=true, which is exactly the surface we need to exercise: every registered
// entity type goes through PaginatedEntitiesSource → Entity.getFields(entityType, fields).
Map<String, Object> config = new HashMap<>();
config.put("entities", List.of("all"));
config.put("recreateIndex", true);
config.put("batchSize", "100");

Awaitility.await("Trigger " + APP_NAME)
.atMost(Duration.ofMinutes(2))
.pollInterval(Duration.ofSeconds(3))
.ignoreExceptionsMatching(
e -> e.getMessage() != null && e.getMessage().contains("already running"))
.until(
() -> {
httpClient.execute(
HttpMethod.POST, "/v1/apps/trigger/" + APP_NAME, config, Void.class);
return true;
});
}

private static AppRunRecord waitForLatestRunSuccess(HttpClient httpClient) {
AppRunRecord[] holder = new AppRunRecord[1];
Awaitility.await("Reindex run completion")
.atMost(Duration.ofMinutes(10))
.pollDelay(Duration.ofSeconds(2))
.pollInterval(Duration.ofSeconds(5))
.ignoreExceptions()
.untilAsserted(
() -> {
AppRunRecord run =
httpClient.execute(
HttpMethod.GET,
"/v1/apps/name/" + APP_NAME + "/runs/latest",
null,
Comment thread
harshach marked this conversation as resolved.
AppRunRecord.class);
assertNotNull(run);
assertNotNull(run.getStatus());
String status = run.getStatus().value();
assertTrue(
"success".equalsIgnoreCase(status)
|| "completed".equalsIgnoreCase(status)
|| "failed".equalsIgnoreCase(status)
|| "activeError".equalsIgnoreCase(status),
"Run not in terminal state yet: " + status);
holder[0] = run;
});
AppRunRecord run = holder[0];
String status = run.getStatus().value();
assertNotEquals("failed", status.toLowerCase(), () -> "Reindex job failed: " + run);
Comment thread
gitar-bot[bot] marked this conversation as resolved.
Outdated
return run;
}

private static void waitForCurrentRunCompletion(HttpClient httpClient) {
try {
Awaitility.await("Wait for in-flight " + APP_NAME)
.atMost(Duration.ofMinutes(5))
.pollInterval(Duration.ofSeconds(3))
.ignoreExceptions()
.until(
() -> {
AppRunRecord latest =
httpClient.execute(
HttpMethod.GET,
"/v1/apps/name/" + APP_NAME + "/runs/latest",
null,
AppRunRecord.class);
if (latest == null || latest.getStatus() == null) {
return true;
}
String status = latest.getStatus().value().toLowerCase();
return !"running".equals(status) && !"started".equals(status);
});
} catch (org.awaitility.core.ConditionTimeoutException ignored) {
// Best-effort wait; the trigger logic retries on "already running".
}
}

/** Walk {@code successContext.stats.entityStats} and assert that every fields-missing
* entity type reports {@code failedRecords == 0}. We additionally require at least one of
* those types to have processed records, so a coverage regression (no entities seeded)
* doesn't hide the underlying validation bug. */
@SuppressWarnings("unchecked")
private static void assertNoFieldValidationFailures(AppRunRecord run) {
Object successContext = run.getSuccessContext();
assertNotNull(
successContext,
() ->
"successContext missing; run="
+ run.getStatus().value()
+ ", failureContext="
+ run.getFailureContext());
Map<String, Object> ctxMap = readMap(successContext);
Map<String, Object> stats = readMap(ctxMap.get("stats"));
Map<String, Object> entityStats = readMap(stats.get("entityStats"));
assertNotNull(entityStats, "entityStats absent — cannot verify per-entity failures");

Set<String> typesWithFailures = new LinkedHashSet<>();
long totalProcessedAcrossWatchedTypes = 0;

for (String entityType : FIELDS_MISSING_TYPES) {
Object perTypeStats = entityStats.get(entityType);
if (perTypeStats == null) {
continue;
}
Map<String, Object> perType = readMap(perTypeStats);
long failed = asLong(perType.get("failedRecords"));
long total = asLong(perType.get("totalRecords"));
totalProcessedAcrossWatchedTypes += total;
if (failed > 0) {
typesWithFailures.add(entityType + "(failed=" + failed + " total=" + total + ")");
}
}

assertTrue(
typesWithFailures.isEmpty(),
() ->
"Reindex reported failed records for entity types whose JSON schema is missing"
+ " one or more COMMON_REINDEX_FIELDS — this is the symptom of"
+ " ReindexingUtil.getSearchIndexFields requesting a field that"
+ " EntityRepository.allowedFields rejects. Failing types: "
+ typesWithFailures);

assertTrue(
totalProcessedAcrossWatchedTypes > 0,
"None of the watched fields-missing entity types had any seeded data. The test cannot"
+ " distinguish 'all clean' from 'nothing exercised'. Seed at least one entity of a"
+ " watched type before running this test.");
Comment thread
harshach marked this conversation as resolved.
Outdated
}

@SuppressWarnings("unchecked")
private static Map<String, Object> readMap(Object o) {
if (o == null) {
return Map.of();
}
if (o instanceof Map<?, ?> m) {
return (Map<String, Object>) m;
}
return org.openmetadata.schema.utils.JsonUtils.getMap(o);
}

private static long asLong(Object o) {
if (o == null) {
return 0L;
}
if (o instanceof Number n) {
return n.longValue();
}
return Long.parseLong(o.toString());
}

private static void assertNotEquals(
String expected, String actual, java.util.function.Supplier<String> msg) {
if (expected.equalsIgnoreCase(actual)) {
throw new AssertionError(msg.get());
}
}
}
Loading