Integrate ClickHouse® with Metabase, an open source BI tool

Learn how to get ClickHouse® data into the Metabase Business Intelligence tool, as a pathway to getting visualisation and insights into your data.

Data analysis is a critical component of modern business operations. As organizations generate more and more data, it becomes increasingly difficult to extract meaningful insights from the raw information. That's where Business Intelligence (BI) tools can help us. BI tools allow organisations to transform their data into visual, actionable insights that support informed decision-making.

In this tutorial, you'll learn how you can integrate a ClickHouse® database with the open source BI tool Metabase to visualise the data stored in your database. After completing this tutorial you'll have a dashboard in Metabase with insights from the data you have in ClickHouse.

After all, a picture is worth a thousand words.

Preparing ClickHouse cluster and data

We'll start on the ClickHouse side. In this section we'll set up the cluster and load the data that we can use for analysis.

Setting up Aiven for ClickHouse

We recommend you use Aiven for ClickHouse when following this tutorial. If you still don't have an Aiven account, register over here. You'll get free credits that you can use for this tutorial.

Once you're logged into the Aiven platform, click on Create service and follow the wizard to set up the preferences.

We also have documentation for detailed instructions.

Loading data

If you already have data in your ClickHouse database for analysis, feel free to skip this step and visualise your data.

Alternatively, you can use a dataset from New York Public Library "What's on the Menu?" as an example. This dataset is easy to setup and it has ample opportunities for exploration. The official documentation of ClickHouse offers a convenient set of instructions to create the tables and load the data.

We'll be utilizing the data from the "What's on the Menu?" dataset in the examples below. However, the same techniques are applicable to your data.

Animated GIF showing creation of a service

Setting up the OSS version of Metabase

Depending on your operating system and preferences, you can choose between two approaches when setting up the open source edition of Metabase: using a Docker image or running Metabase as a JAR.

In this tutorial we'll be using Docker. However, similar results can be achieved using the .jar file.

If you don't have a license token for a paid version of Metabase and you don't need a production installation, these steps for the quick start plus a minor adjustment to include a ClickHouse driver is what you need.

When starting your Docker container, make sure that you have access to the mounted folder located in /path-to-plugins-folder. We'll need this folder for the next step.

docker run -d -p 3000:3000 \ --mount type=bind,source=/path-to-plugins-folder,destination=/plugins \ --name metabase metabase/metabase

Here is a preview of how that should work:

Animated GIF showing pulling latest docker image and running it

Adding drivers

Metabase comes with a predefined set of supported databases. ClickHouse is not in the list of officially supported drivers, but we can include it as a third-party community driver.

You can find the ClickHouse driver (and extra documentation, in case you need it) in the ClickHouse driver for Metabase GitHub repository.

Load the driver by going to the latest release and selecting clickhouse.metabase-driver.jar from the list of assets.

Animated GIF showing loading the driver for ClickHouse Metabase from the GitHub page

Add this file to the folder that you mounted in the previous step. This will allow Metabase to access the ClickHouse driver and therefore work with ClickHouse data.

Starting Metabase

Time to start Metabase! If you used the default ports when running the container, go to http://localhost:3000, if you used a different port, adjust it accordingly.

The first time you open Metabase, it will ask you several questions. Remember the email and password you enter, they are needed for logins. Skip adding data, we'll do it separately in the next step

Animated GIF showing the setup form of Metabase

Connecting to ClickHouse

In order to connect to the ClickHouse server you need to add a database to Metabase and provide all necessary credentials for access. To add a database, click on Add your own data, this will navigate you to the Add Database form.

If all went well installing a driver, you'll see ClickHouse in the list of available databases types. If you don't see ClickHouse there, try restarting the container.

The connection between Metabase and ClickHouse happens over HTTPS. You can take all the necessary properties (such as host, port and user credentials) from your Aiven for ClickHouse page in the section ClickHouse HTTPS & JDBC.

Animated GIF showing adding a database to Metabase

Visualising the data

Now we can run analysis and visualise the data. There are two ways you can create requests to the ClickHouse database. One is using SQL and another is by relying on a visual editor. Below we try out both of these approaches.

Querying data with SQL

To start with something simple, check for most popular currencies used across the menus in the dataset we have.

Click on the New button and select SQL Query from the list. Next, choose the database for your query (AivenForClickHouse in our case) and you'll land onto the SQL query editor. You can use the same syntax here as running your usual ClickHouse queries.

SELECT menu_currency, count() FROM menu_item_denorm GROUP BY menu_currency

The results will appear below the query editor. To visualise the findings, click on the button Visualisation. This will show you a set of possible options that fit your data. For this specific example, for example, you can use a pie chart.

Once you're happy with the visualisation, save it. Metabase will also suggest adding the visualisation to a dashboard. If you don't want to do that yet, you can add it later.

Animated GIF showing creation of a new visualisation based on SQL query

Using the visual editor

Alternatively, you can create a query using the Metabase visual editor. For instance, out of curiosity we'll look at dishes that were popular before 1920, but then disappeared from the menu.

Press on the New button and select Question from the available options.

Metabase will ask you to pick the database and the table to run requests. Select AivenForClickHouse (or the name you gave to your database) and Menu Item Denorm. Once data is selected you'll use the wizard with multiple options to shape the request.

To find old menus in the Filter section press on Add filters to narrow your answer and select the field Dish Last Appeared. Use the between function and set the year values to 1700 and 1920 (or even better - experiment and select your own values!). This will find only those dishes that disappeared before 1920.

Next, we'll use the Summarize section to get the most popular dishes among those that vanished. Pick the metric "Maximum of" and use the property Dish Times Appeared. Next to it pick Dish Name to group by.

Finally, sort data by Max of Dish Times Appeared in descending order and click Visualise. You will now see the list of disappeared popular dishes.

Animated GIF showing creation of a query with the visual editor

Conclusions

In this tutorial we described how to use ClickHouse together with an open source BI tool, Metabase. We used open source edition of Metabase and a community-developer driver for ClickHouse.

You can find more information about Aiven for ClickHouse in our documentation.