dosubot[bot] commented on issue #33089: URL: https://github.com/apache/superset/issues/33089#issuecomment-2793001411
<!-- Answer --> The issue you're experiencing, where clicking on the 'datasets' link redirects to `http://tablemodelview/list/` and results in a DNS resolution failure, is likely related to the routing configuration in your Docker setup. 1. **Routing Logic**: The 'datasets' link in Apache Superset is supposed to navigate to the Dataset List page, which is associated with the path `/tablemodelview/list/` in the routing logic <sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/src/views/routes.tsx)</sup>. 2. **DNS Resolution Error**: The error `DNS_PROBE_FINISHED_NXDOMAIN` indicates a DNS resolution failure, which means the domain name could not be resolved to an IP address. This is often due to incorrect DNS settings or network configuration in your Docker environment. 3. **Docker Configuration**: Check your Docker setup for any misconfigurations that might affect DNS resolution. Ensure that the `extra_hosts` entries in your `docker-compose.yml` are correctly set up, as they can influence DNS resolution within the Docker network <sup>[[2]](https://github.com/apache/superset/blob/master/docker-compose.yml)</sup>. 4. **Environment Variables**: Verify if the `SUPERSET_APP_ROOT` environment variable is set correctly, as it can affect URL routing. Also, if you're using a reverse proxy, ensure that `ENABLE_PROXY_FIX = True` is set in your `superset_config.py` to handle forwarded headers properly <sup>[[3]](https://github.com/apache/superset/blob/master/docs/docs/configuration/configuring-superset.mdx)</sup>. By addressing these areas, you should be able to resolve the DNS issue and ensure proper navigation to the datasets page. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/af102c0c-79f7-4bd1-8d6c-b1379d2b784b?feedback_type=other)</sup> -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
