mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-30 10:14:53 +00:00
config(gms): enable some features by default (#14889)
This commit is contained in:
parent
1d0e3778a5
commit
c88a4a5a48
@ -124,6 +124,11 @@ x-datahub-gms-service: &datahub-gms-service
|
|||||||
ENTITY_VERSIONING_ENABLED: ${ENTITY_VERSIONING_ENABLED:-true}
|
ENTITY_VERSIONING_ENABLED: ${ENTITY_VERSIONING_ENABLED:-true}
|
||||||
THEME_V2_DEFAULT: ${THEME_V2_DEFAULT:-true}
|
THEME_V2_DEFAULT: ${THEME_V2_DEFAULT:-true}
|
||||||
METADATA_SERVICE_AUTH_ENABLED: ${METADATA_SERVICE_AUTH_ENABLED:-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:
|
healthcheck:
|
||||||
test: curl -sS --fail http://datahub-gms:${DATAHUB_GMS_PORT:-8080}/health
|
test: curl -sS --fail http://datahub-gms:${DATAHUB_GMS_PORT:-8080}/health
|
||||||
start_period: 90s
|
start_period: 90s
|
||||||
|
|||||||
@ -76,6 +76,11 @@ services:
|
|||||||
NEO4J_USERNAME: neo4j
|
NEO4J_USERNAME: neo4j
|
||||||
PE_CONSUMER_ENABLED: 'true'
|
PE_CONSUMER_ENABLED: 'true'
|
||||||
SCHEMA_REGISTRY_TYPE: INTERNAL
|
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'
|
STRICT_URN_VALIDATION_ENABLED: 'true'
|
||||||
THEME_V2_DEFAULT: 'true'
|
THEME_V2_DEFAULT: 'true'
|
||||||
UI_INGESTION_ENABLED: 'true'
|
UI_INGESTION_ENABLED: 'true'
|
||||||
|
|||||||
@ -786,7 +786,7 @@ healthCheck:
|
|||||||
cacheDurationSeconds: ${HEALTH_CHECK_CACHE_DURATION_SECONDS:5}
|
cacheDurationSeconds: ${HEALTH_CHECK_CACHE_DURATION_SECONDS:5}
|
||||||
|
|
||||||
featureFlags:
|
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
|
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
|
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.
|
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.
|
||||||
|
|||||||
@ -21,6 +21,11 @@ ELASTICSEARCH_USE_SSL="${ELASTICSEARCH_USE_SSL:=false}"
|
|||||||
USE_AWS_ELASTICSEARCH="${USE_AWS_ELASTICSEARCH:=true}"
|
USE_AWS_ELASTICSEARCH="${USE_AWS_ELASTICSEARCH:=true}"
|
||||||
|
|
||||||
THEME_V2_DEFAULT=false \
|
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 \
|
DATAHUB_TELEMETRY_ENABLED=false \
|
||||||
DOCKER_COMPOSE_BASE="file://$( dirname "$DIR" )" \
|
DOCKER_COMPOSE_BASE="file://$( dirname "$DIR" )" \
|
||||||
DATAHUB_SEARCH_IMAGE="$DATAHUB_SEARCH_IMAGE" DATAHUB_SEARCH_TAG="$DATAHUB_SEARCH_TAG" \
|
DATAHUB_SEARCH_IMAGE="$DATAHUB_SEARCH_IMAGE" DATAHUB_SEARCH_TAG="$DATAHUB_SEARCH_TAG" \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user