Skip to content

Commit 2e731de

Browse files
anshbansalRyanHolstien
authored andcommitted
config(gms): enable some features by default (#14889)
1 parent eec5c45 commit 2e731de

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

docker/profiles/docker-compose.gms.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ x-datahub-gms-service: &datahub-gms-service
124124
ENTITY_VERSIONING_ENABLED: ${ENTITY_VERSIONING_ENABLED:-true}
125125
THEME_V2_DEFAULT: ${THEME_V2_DEFAULT:-true}
126126
METADATA_SERVICE_AUTH_ENABLED: ${METADATA_SERVICE_AUTH_ENABLED:-true}
127+
SHOW_HAS_SIBLINGS_FILTER: ${SHOW_HAS_SIBLINGS_FILTER:-true}
128+
SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN: ${SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN:-true}
129+
SEARCH_BAR_API_VARIANT: ${SEARCH_BAR_API_VARIANT:-SEARCH_ACROSS_ENTITIES}
130+
SHOW_INGESTION_PAGE_REDESIGN: ${SHOW_INGESTION_PAGE_REDESIGN:-true}
131+
SHOW_HOME_PAGE_REDESIGN: ${SHOW_HOME_PAGE_REDESIGN:-true}
127132
healthcheck:
128133
test: curl -sS --fail http://datahub-gms:${DATAHUB_GMS_PORT:-8080}/health
129134
start_period: 90s

docker/quickstart/docker-compose.quickstart-profile.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ services:
7676
NEO4J_USERNAME: neo4j
7777
PE_CONSUMER_ENABLED: 'true'
7878
SCHEMA_REGISTRY_TYPE: INTERNAL
79+
SEARCH_BAR_API_VARIANT: SEARCH_ACROSS_ENTITIES
80+
SHOW_HAS_SIBLINGS_FILTER: 'true'
81+
SHOW_HOME_PAGE_REDESIGN: 'true'
82+
SHOW_INGESTION_PAGE_REDESIGN: 'true'
83+
SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN: 'true'
7984
STRICT_URN_VALIDATION_ENABLED: 'true'
8085
THEME_V2_DEFAULT: 'true'
8186
UI_INGESTION_ENABLED: 'true'

metadata-service/configuration/src/main/resources/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ healthCheck:
786786
cacheDurationSeconds: ${HEALTH_CHECK_CACHE_DURATION_SECONDS:5}
787787

788788
featureFlags:
789-
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
789+
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
790790
lineageSearchCacheEnabled: ${LINEAGE_SEARCH_CACHE_ENABLED:true} # Enables in-memory cache for searchAcrossLineage query
791791
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
792792
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.

smoke-test/run-quickstart.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ ELASTICSEARCH_USE_SSL="${ELASTICSEARCH_USE_SSL:=false}"
2121
USE_AWS_ELASTICSEARCH="${USE_AWS_ELASTICSEARCH:=true}"
2222

2323
THEME_V2_DEFAULT=false \
24+
SHOW_HAS_SIBLINGS_FILTER=false \
25+
SHOW_SEARCH_BAR_AUTOCOMPLETE_REDESIGN=false \
26+
SHOW_INGESTION_PAGE_REDESIGN=false \
27+
SHOW_HOME_PAGE_REDESIGN=false \
28+
SEARCH_BAR_API_VARIANT=AUTOCOMPLETE_FOR_MULTIPLE \
2429
DATAHUB_TELEMETRY_ENABLED=false \
2530
DOCKER_COMPOSE_BASE="file://$( dirname "$DIR" )" \
2631
DATAHUB_SEARCH_IMAGE="$DATAHUB_SEARCH_IMAGE" DATAHUB_SEARCH_TAG="$DATAHUB_SEARCH_TAG" \

0 commit comments

Comments
 (0)