Scripts that make local Metabase development handier. Currently these only consist of scripts for running different databases we support like MySQL or Spark SQL locally, but we can add scripts for other stuff in the future if we think of anything good.
To get setup you'll need:
- babashka
brew install borkdude/brew/babashka
- fzf
brew install fzf
To see a list of avaliable tasks, run:
bb tasks
MB_DIR=/path/to/metabase
for help with a task, use -h
or --help
.
bb run-branch --help
To start repl that you can connect to from Visual Studio Code you can use following alias instead of the default :nrepl
.
~/.clojure/deps.edn
{:aliases
{:vsc {:extra-deps {nrepl/nrepl {:mvn/version,"1.0.0"}
cider/cider-nrepl {:mvn/version,"0.28.5"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware]"]}}}
Your startup command could then look as following:
bb metabuild -d postgres -e dev:ee:ee-dev:drivers:drivers-dev:vsc
If you are running the app db in docker container from images in this repo you need to pass in also the correct credentials, eg. MB_JETTY_PORT=10001 MB_DIR=path/to/your/mb/repo bb --config /path/to/this/repo/bb.edn metabuild -d postgres -u metabase -p Password1234 -e dev:ee:ee-dev:drivers:drivers-dev:vsc
These scripts run the same Docker images with the same env vars we use in CI and then dump out some useful info for using them. They also nuke the existing image when you run the script a second time so you can just run it again to completely reset the DB e.g. when running tests.
$ ~/mb-scripts/run-mariadb-latest.sh
Removing existing container...
maria-db-latest
Nothing to remove
73003b822d25aaf5b55f739f9b91f94f7f8d16a5abbd43b76fb2d34116d49ceb
Started MariaDB latest on port 3306.
jdbc:mysql://localhost:3306/metabase_test?user=root
MB_DB_TYPE=mysql MB_DB_DBNAME=metabase_test MB_DB_HOST=localhost MB_DB_PASS='' MB_DB_PORT=3306 MB_DB_USER=root MB_MYSQL_TEST_USER=root
mysql --user=root --host=127.0.0.1 --port=3306 --database=metabase_test
You need to have Docker installed to use these scripts!
Some drivers like oracle, vertica, sqlserver, mysql (and possibly more) are currently not able to run on Apple M chips. The work around is using colima:
- Install colima
- Start it with
colima start --arch x86_64 --memory 4
- Start the database with scripts like normal
Rather than use Docker, you can run Presto with Postgres with the following steps:
- Follow these steps to install presto using homebrew
- Add a properties file for postgresql in
/usr/local/Cellar/prestodb/<version>/libexec/etc/catalog
, calledtest_data.properties
(test_data
is the catalog name) with the following contents:connector.name=postgresql connection-url=jdbc:postgresql://localhost:5432/test_data connection-user=<mb-postgresql-test-user> connection-password=<mb-postgresql-test-password>
- To run the presto-jdbc driver tests, you'll need to create a database
test_data
on the postgres server that has all privileges to, and create a schema in the database named "default". - Start the presto server with
/usr/local/opt/prestodb/bin/presto-server run
Alternatively, Luis has created a Link for testing Presto and Trino with Docker that might work too.
In stacks->setup-container you'll find a Compose file that has a Metabase container along with a setup container. The setup container waits till the Metabase container is ready (status:ok in the health endpoint) and then sets up a user (a@b as the user/ metabot1 as the password). You can tweak the script as much as you want.
This stack is to test how Metabase behaves in HA mode, so you'll have a configuration like the following:
--------------
| HAProxy |
--------------
| |
------ ------
| MB | | MB |
------ ------
| |
--------------
| Postgres |
--------------
HAProxy is configured to balance requests in a round-robin manner and it checks the health of the application (so you can also simulate a failure)
This will allow you to test how Metabase behaves when it scales horizontally, both on the FE (showing things like the process picker in the troubleshooting -> logs section) and on the backend (health checks, queues, settings, etc). All configs in the LB can be changed from the config in stacks/ha/config/haproxy.cfg