Model persistence
Currently available for PostgreSQL, MySQL, and Redshift.
Metabase can persist the results of your models so that your models (and the questions based on those models) load faster.
Metabase will store model results in tables in a bespoke schema in your data warehouse (not the Metabase application database). When people ask questions based on your models, Metabase will use the tables with the stored results instead of re-running the model’s query.
Model persistence doesn’t work with data sandboxing.
Turn on model persistence in Metabase
To persist models for faster loading, you’ll need to turn on model persistence for:
Turn on model persistence for your Metabase
To turn on model persistence for your Metabase, go to Admin settings > Performance > Model persistence.
You can set models to refresh based on one of the default frequencies (every 1 hour, 2 hours, etc.), or select the Custom option to use cron syntax to specify your own update frequency.
The cron scheduler uses the Report Timezone if selected. Otherwise the scheduler will use the System Timezone (which defaults to GMT in Metabase Cloud).
We recommend scheduling your models to refresh on a frequency that makes sense with how often your source tables update with new data.
If someone changes the query definition of a model, any question based on that model will re-run the model’s query until the next scheduled model refresh.
Turn on model persistence for each database
Once you’ve turned on model persistence for your Metabase, you’ll need to set it up for each specific database, as Metabase will need to create a schema in your data warehouse to store the persisted models.
-
Go to Admin settings > Databases > [your database] > Turn model persistence on. If the credentials you’ve given Metabase to connect to your database are permissive, Metabase should do all the work for you: Metabase will check if the schema already exists, or otherwise attempt to create it. If the connection’s credentials lack the necessary permissions to create the schema in your database, you’ll need to create the schema in the database yourself.
-
To manually create the schema in your data warehouse, click on the info icon to get the schema name.
-
Create the schema in your database—make sure you use the exact schema name from step 1. For example, if you’re running PostgreSQL as your data warehouse, you’d create the schema by running
CREATE SCHEMA IF NOT EXISTS schema_name
, withschema_name
being whatever Metabase showed you in the info icon. -
Ensure that the credentials Metabase uses to connect to your data warehouse can manage and write to that schema.
Turn on model persistence for individual models
Individual model persistence is only available on Pro and Enterprise plans (both self-hosted and on Metabase Cloud).
You can also toggle persistence on or off for individual models. When viewing a model, click on the … in the upper right and select Edit settings. Toggle Persist model data on (you’ll need Curate access to the model’s collection to do this).
Toggling persistence for individual models is useful for models with data that updates at different frequencies than the schedule you set for other models in that database, or for models that are used more or less than other models in that database.
Refreshing a model’s persisted results
To refresh a model’s results, go to the model and click on the three-dot menu (…) and select Edit settings. In the info sidebar that opens, you’ll see a note about when Metabase last refreshed the model’s results, and an icon to refresh the results.
View model persistence logs
You can view the logs for model persistence by clicking on the gear icon in the upper right and selecting Admin settings > Tools > Model caching logs. See Admin tools.
Difference between persisted models and caching
Persisted models differ from cached results:
- Models are persisted in your data warehouse; cached results are stored in the application database. Metabase stores cached results in its application database. Metabase persists models in your connected data warehouse as tables.
- Metabase refreshes model results and invalidates cached results. Metabase will refresh results of models according to the schedule you set. That is, Metabase will re-run the model’s query and store the results in your data warehouse. For cached results of saved questions and dashboards, Metabase won’t run the queries automatically; it will cache results when people view the question or dashboard, and invalidate the cached results according to the caching policy you set.
Further reading
Read docs for other versions of Metabase.