Two ways to visualize ClickHouse data using Apache Superset

Two ways to visualize ClickHouse data using Apache Superset

Apache Superset is a powerful BI tool that provides ways to view and explore data. It is also gaining popularity among ClickHouse users.

We will cover 2 ways to install Superset and then show how to connect to your first ClickHouse database from Superset. The code examples are based on Ubuntu 18.04, Superset 1.1.0, and clickhouse-sqlalchemy 0.1.6.

Method 1: Python virtual environment

The first method installs Superset directly on your host. We will first create a Python virtual environment. The following are commonly used commands.

python3 -m venv clickhouse-sqlalchemy
. clickhouse-sqlalchemy/bin/activate
pip install --upgrade pi

Install and start Superset

Install dependency packages

sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-pip libsasl2-dev libldap2-dev

Commands for handling Superset connections to ClickHouse. Might need to be tweaked slightly depending on your environment.

export FLASK_APP=superset
pip install apache-superset
superset db upgrade
superset fab create-admin
superset load_examples
superset init

Install clickhouse-sqlalchemy driver

pip install clickhouse-sqlalchemy

clickhouse-driver version must be 0.2.0 or higher.

pip freeze |grep clickhouse
clickhouse-driver==0.2.0
clickhouse-sqlalchemy==0.1.6

Start Superset and log in

It’s time to start Superset. Run the following command:

superset run -p 8088 --with-threads --reload --debugger

Browse to localhost:8088

You will see the login screen as shown below. Enter the administrator login name and password you defined during Superset installation (for example, admin/secret).

Method 2: Run Superset using Docker Compose

If you don't want to worry about Python versions, virtual environments, and pip. You can use docker.

First install docker and docker-compose.

Installation complete, check the version.

$ docker --version
Docker version 19.03.4, build 9013bf583a
$ docker-compose --version
docker-compose version 1.29.1, build c34c88b2

Install superset using docker-compose

git clone https://github.com/apache/superset
cd superset
touch ./docker/requirements-local.txt
echo "clickhouse-driver>=0.2.0" >> ./docker/requirements-local.txt
echo "clickhouse-sqlalchemy>=0.1.6" >> ./docker/requirements-local.txt
docker-compose -f docker-compose-non-dev.yml up

After successful operation, the browser accesses localhost:8088

The default login/password is admin/admin.

Connecting to ClickHouse

Regardless of the installation method you choose, you can now connect to your first ClickHouse database.

Once you log in, you'll see a screen with your recent work and your current dashboard. Select the Data tab in the upper right corner, then select Database. A page will appear containing your current database connections. Press the + Database button to add a new database.

Enter the following values:

Database name: clickhouse-public
SQLALCHEMY URL: clickhouse+native://demo:[email protected]/default?secure=true

Altinity.Cloud is a public dataset site.

Press the Test Connection button. Save the link after success.

Connection Process

The connection uses SQLAlchemy, a common API for connecting to ClickHouse and many other databases.

SQLAlchemy connections use a specialized URL format that supports multiple drivers. To connect to ClickHouse, you need to provide a URL similar to the one we showed before:

clickhouse+native://demo:[email protected]/default?secure=true

There are two main protocols for connecting to ClickHouse, native TCP and HTTP.

It is recommended to use raw TCP.

clickhouse+native://<user>:<password>@<host>:<port>/<database>[?options…]

Configure Superset

We have successfully connected to ClickHouse. Now we will use Superset to build a dashboard.

First, let's create the dataset. Select clickhouse-public as the connection, then select schema default and table ontime.

Once you have a dataset, creating your first chart is simple. Just click on the dataset name on the datasets page. Superset will switch to a screen to define a chart, as shown below.

Creating a Time Series Chart

Publish charts on dashboards.

Select the DASHBOARD button to add the created chart.

The above is the whole process of Apache Superset visualization of ClickHouse data.

This concludes this article on two ways to visualize ClickHouse data using Apache Superset. For more information about Apache Superset visualization of ClickHouse, please search for previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Springboot uses clickhouse real-time big data analysis engine (usage method)
  • Explain the deployment and configuration of Clickhouse Docker cluster with examples
  • How to connect Mybatis to ClickHouse
  • SpringBoot2 integrated ClickHouse database case analysis
  • Data analysis database ClickHouse application practice in the field of big data

<<:  Detailed explanation of JavaScript function introduction

>>:  How to implement the association between frame windows and the use of the target attribute of hyperlinks

Recommend

Installation tutorial of mysql5.7.21 decompression version under win10

Install the unzipped version of Mysql under win10...

You may need a large-screen digital scrolling effect like this

The large-screen digital scrolling effect comes f...

A simple method to regularly delete expired data records in MySQL

1. After connecting and logging in to MySQL, firs...

Web Design Tutorial (1): Steps and Overall Layout

<br /> Note: All texts, except those indicat...

Implementation code for infinite scrolling with n container elements

Scenario How to correctly render lists up to 1000...

Implementing Binary Search Tree in JavaScript

The search binary tree implementation in JavaScri...

Solve the problem that Navicat cannot connect to MySQL on the Linux server

At the beginning, I felt sad. The screenshots are...

Detailed explanation of the use of base tag in HTML

In requireJS, there is a property called baseURL....

Docker network mode and configuration method

1. Docker Network Mode When docker run creates a ...

Detailed explanation of the WeChat applet request pre-processing method

question Because some of our pages request data i...

How to use Nginx proxy to surf the Internet

I usually use nginx as a reverse proxy for tomcat...

Appreciation of the low-key and elegant web design in black, white and gray

Among classic color combinations, probably no one...

Detailed example of creating and deleting tables in MySQL

The table creation command requires: The name of...