config(gms): enable some features by default (#14889)

This commit is contained in:
Aseem Bansal 2025-10-03 20:31:23 +05:30 committed by GitHub
parent 1d0e3778a5
commit c88a4a5a48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 16 additions and 1 deletions

View File

@ -124,6 +124,11 @@ x-datahub-gms-service: &datahub-gms-service
ENTITY_VERSIONING_ENABLED: ${ENTITY_VERSIONING_ENABLED:-true}
THEME_V2_DEFAULT: ${THEME_V2_DEFAULT:-true}
METADATA_SERVICE_AUTH_ENABLED: ${METADATA_SERVICE_AUTH_ENABLED:-true}
SHOW_HAS_SIBLINGS_FILTER: ${SHOW_HAS_SIBLINGS_FILTER:-true}
SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN: ${SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN:-true}
SEARCH_BAR_API_VARIANT: ${SEARCH_BAR_API_VARIANT:-SEARCH_ACROSS_ENTITIES}
SHOW_INGESTION_PAGE_REDESIGN: ${SHOW_INGESTION_PAGE_REDESIGN:-true}
SHOW_HOME_PAGE_REDESIGN: ${SHOW_HOME_PAGE_REDESIGN:-true}
healthcheck:
test: curl -sS --fail http://datahub-gms:${DATAHUB_GMS_PORT:-8080}/health
start_period: 90s

View File

@ -76,6 +76,11 @@ services:
NEO4J_USERNAME: neo4j
PE_CONSUMER_ENABLED: 'true'
SCHEMA_REGISTRY_TYPE: INTERNAL
SEARCH_BAR_API_VARIANT: SEARCH_ACROSS_ENTITIES
SHOW_HAS_SIBLINGS_FILTER: 'true'
SHOW_HOME_PAGE_REDESIGN: 'true'
SHOW_INGESTION_PAGE_REDESIGN: 'true'
SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN: 'true'
STRICT_URN_VALIDATION_ENABLED: 'true'
THEME_V2_DEFAULT: 'true'
UI_INGESTION_ENABLED: 'true'

View File

@ -786,7 +786,7 @@ healthCheck:
cacheDurationSeconds: ${HEALTH_CHECK_CACHE_DURATION_SECONDS:5}
featureFlags:
showSimplifiedHomepageByDefault: ${SHOW_SIMPLIFIED_HOMEPAGE_BY_DEFAULT:false} # shows a simplified homepage with just datasets, charts and dashboards by default to users. this can be configured in user settings
showSimplifiedHomepageByDefault: ${SHOW_SIMPLIFIED_HOMEPAGE_BY_DEFAULT:false} # Deprecated in new UI. Shows a simplified homepage with just datasets, charts and dashboards by default to users. this can be configured in user settings
lineageSearchCacheEnabled: ${LINEAGE_SEARCH_CACHE_ENABLED:true} # Enables in-memory cache for searchAcrossLineage query
graphServiceDiffModeEnabled: ${GRAPH_SERVICE_DIFF_MODE_ENABLED:true} # Enables diff mode for graph writes, uses a different code path that produces a diff from previous to next to write relationships instead of wholesale deleting edges and reading
alwaysEmitChangeLog: ${ALWAYS_EMIT_CHANGE_LOG:false} # Enables always emitting a MCL even when no changes are detected. Used for Time Based Lineage when no changes occur.

View File

@ -21,6 +21,11 @@ ELASTICSEARCH_USE_SSL="${ELASTICSEARCH_USE_SSL:=false}"
USE_AWS_ELASTICSEARCH="${USE_AWS_ELASTICSEARCH:=true}"
THEME_V2_DEFAULT=false \
SHOW_HAS_SIBLINGS_FILTER=false \
SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN=false \
SHOW_INGESTION_PAGE_REDESIGN=false \
SHOW_HOME_PAGE_REDESIGN=false \
SEARCH_BAR_API_VARIANT=AUTOCOMPLETE_FOR_MULTIPLE \
DATAHUB_TELEMETRY_ENABLED=false \
DOCKER_COMPOSE_BASE="file://$( dirname "$DIR" )" \
DATAHUB_SEARCH_IMAGE="$DATAHUB_SEARCH_IMAGE" DATAHUB_SEARCH_TAG="$DATAHUB_SEARCH_TAG" \