john-bodley commented on a change in pull request #8995: [druid] Making scaning/refreshing Druid datasource view items optional URL: https://github.com/apache/incubator-superset/pull/8995#discussion_r369857663
########## File path: superset/config.py ########## @@ -191,11 +191,16 @@ def _try_json_readsha(filepath, length): # pylint: disable=unused-argument DRUID_TZ = tz.tzutc() DRUID_ANALYSIS_TYPES = ["cardinality"] -# Legacy Druid connector +# Legacy Druid NoSQL (native) connector # Druid supports a SQL interface in its newer versions. # Setting this flag to True enables the deprecated, API-based Druid # connector. This feature may be removed at a future date. -DRUID_IS_ACTIVE = False +DRUID_IS_ACTIVE = True + +# If Druid is active whether to include the links to scan/refresh Druid datasources. +# This should be disable if you are trying to wean yourself off of the Druid NoSQL +# connector. +DRUID_METADATA_VIEW_LINKS = True Review comment: Agreed. The `VIEW` term related to FAB views but the way it reads it's misleading. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
