Is it possible to visualize data in Apache Kudu? Is there any guideline for it?
0
votes
2 Answers
2
votes
Kudu itself does not have any built-in data visualization tool. Just like Oracle is an RDBMS and it does not come with a data visualization tool either. However, there are a few options:
- Built a custom visualization tool yourself by using Java, Python or C++ API. https://kudu.apache.org/docs/developing.html.
- Impala is a SQL engine that has built-in integration with Kudu. It also supports ODBC/JDBC driver. Thus you can hook almost any BI tools to Impala to query the data in Kudu and build visualization.