Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mara/mara-metabase
Configuration and schema sync for Metabase from Python
https://github.com/mara/mara-metabase
data-governance mara metabase metabase-python metadata python
Last synced: about 2 months ago
JSON representation
Configuration and schema sync for Metabase from Python
- Host: GitHub
- URL: https://github.com/mara/mara-metabase
- Owner: mara
- License: mit
- Created: 2020-07-02T10:07:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-23T20:35:31.000Z (almost 2 years ago)
- Last Synced: 2024-09-18T05:01:13.257Z (4 months ago)
- Topics: data-governance, mara, metabase, metabase-python, metadata, python
- Language: Python
- Homepage:
- Size: 2.07 MB
- Stars: 19
- Watchers: 4
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Mara Metabase
[![Build Status](https://travis-ci.org/mara/mara-metabase.svg?branch=master)](https://travis-ci.org/mara/mara-metabase)
[![PyPI - License](https://img.shields.io/pypi/l/mara-metabase.svg)](https://github.com/mara/mara-metabase/blob/master/LICENSE)
[![PyPI version](https://badge.fury.io/py/mara-metabase.svg)](https://badge.fury.io/py/mara-metabase)
[![Slack Status](https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social)](https://communityinviter.com/apps/mara-users/public-invite)Automating the setup and configuration of Metabase instances. Comes with
- Functions for adding users, databases & settings
- Syncing of field descriptions and metrics defined with [Mara Schema](https://github.com/mara/mara-schema) to Metabase
- Syncing of users and permissions to Metabase
- A Makefile for running Metabase locally
## Installation
To use the library directly, use pip:
```
pip install mara-metabase
```or
```
pip install -e git+https://github.com/mara/mara-metabase.git
```For an example of an integration into a flask application, have a look at the [mara example project 1](https://github.com/mara/mara-example-project-1).
## Running Metabase
From within a project, include [https://github.com/mara/mara-metabase/tree/master/.scripts/metabase.mk] in your project Makefile (as for example in [https://github.com/mara/mara-example-project-1/blob/master/Makefile](https://github.com/mara/mara-example-project-1/blob/master/Makefile)).
Running `make setup-metabase` will download a Metabase jar file, run database migrations, add an admin user & create a database connection to the data warehouse. Then, running `make run-metabase` will start Metabase on port 3000:
![Metabase](docs/metabase.png)
You can log in with the default username `[email protected]` and the password `123abc` (configurable via [mara_metabase/config.py](https://github.com/mara/mara-metabase/tree/master/mara_metabase/config.py), please change in production).
For running Metabase in production, please have a look at [https://www.metabase.com/docs/latest/operations-guide/installing-metabase.html](https://www.metabase.com/docs/latest/operations-guide/installing-metabase.html).
## Features
### Programatically setting up Metabase
The file [mara_metabase/setup.py](https://github.com/mara/mara-metabase/tree/master/mara_metabase/setup.py) contains functions for configuring a Metabase instance by directly writing to its metadata database (rather than manually configuring an instance through the UI). These functions are particularly useful when multiple Metabase instances are maintained (e.g. one for each testing / staging environment).
There is a flask cli command for running the `setup` function: `flask mara_metabase.setup`.
**Danger: this will remove any other configured database connections from metabase!**
### Metadata sync
If you have a data warehouse schema defined in [Mara Schema](https://github.com/mara/mara-schema), then you can automatically sync field descriptions and metric definitions with the `update_metadata` function in [mara_metabase/metadata.py](https://github.com/mara/mara-metabase/tree/master/mara_metabase/metadata.py).
Here's an example of an automatically synced definition for the metric average order value:
![Metabae metadata sync](docs/metabase-metadata-sync.png)
This function assumes that all reporting tables were created using the sql-generation features of Mara Schema.
The schema sync can be triggered manually with `flask mara_metabase.update-metadata`.
Have a look at [https://github.com/mara/mara-example-project-1/blob/master/app/pipelines/update_frontends/\_\_init\_\_.py](https://github.com/mara/mara-example-project-1/blob/master/app/pipelines/update_frontends/__init__.py) for how to integrate schema sync into a data pipeline.
## Syncing of users, groups & permissions from [Mara ACL](https://github.com/mara/mara-acl)
Once you add the Metabase ACL resource in [mara_metabase/views.py](https://github.com/mara/mara-metabase/tree/master/mara_metabase/views.py) to your project, you can easily control which users can query which data set:
![Metabase ACL](docs/mara-acl.png)
The sync must be explicitly enabled in your setup code to not interfere with a metabase instance which has its own user management:
```python
# e.g. in app/ui/__init__.py
import mara_metabase.acl
mara_metabase.acl.enable_automatic_sync_of_users_and_permissions_to_metabase()
```**Danger: Enabling this feature will overwrite any existing users, groups & permissions in Metabase**
After enabling, all users in Mara ACL will be synced to Metabase together with their respective groups on "Save" of the permissions. Permissions in Metabase can be given for all or for individual data sets.
In this example, users from the "Management" group can query all data sets, and users from "Marketing" only "Customers" and "Leads" (with the exception of Thomas who can also query "Order items" and "Sellers").
This is the same data in the Metabase admin UI:
![Metabase permissions](docs/metabase-permissions.png)
The easiest way to try out Mara Metabase is to run the [mara example project 1](https://github.com/mara/mara-example-project-1).