GitHub user dosubot[bot] added a comment to the discussion: Help Needed: Connecting TDengine or VictoriaMetrics to Apache Superset
<!-- Greeting --> Hi @kirankv2536! I'm [Dosu](https://go.dosu.dev/dosubot) and Iām helping the superset team. <!-- Answer --> TDengine is supported as a data source in Apache Superset, but there are a few caveats depending on your Superset version. The integration uses the taospy and taos-ws-py libraries, and the connection string format is: ``` taosws://<user>:<password>@<host>:<port> ``` For example: ``` taosws://root:[email protected]:6041 ``` If you are using Superset 4.1.2, the TDengine connector file (tdengine.py) may not be included in the setup package, so you might need to manually download it from the Superset repository and place it in the correct directory. Then, install the required dependencies with: ``` pip install taospy pip install taos-ws-py ``` Official package support for TDengine is planned for future Superset releases (4.2, 5.1, or 6.0), but not for patch releases like 4.1.3 or 5.0.0. More details and step-by-step instructions are available in the [Superset docs](https://docs.tdengine.com/third-party/bi/superset/) and [related GitHub discussions](https://github.com/apache/superset/issues/33545). There is currently no support or documentation for connecting VictoriaMetrics to Apache Superset, and no SQLAlchemy dialect or community plugin appears to exist for it at this time. Let me know if you need more details on the TDengine setup or run into any issues! <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=hallucination) | [Report š](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/461c8882-8272-4977-a6ee-a47ca88b82df?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/33751) GitHub link: https://github.com/apache/superset/discussions/33751#discussioncomment-13441839 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
