Materialized view refresh is only available for object storage catalogs.
In the navigation menu, click Jobs. The Materialized view refresh tab is where you view, search for, and manage materialized view refresh jobs.
All of the materialized view refresh jobs you create are displayed in a list with the following information:
You can create a materialized view refresh job by using the Create materialized view refresh job dialog or by running a SQL statement in the query editor.
To use the dialog, click Create materialized view refresh job, then provide the following information:
In the Materialized view section, select a catalog, schema, and materialized view.
In the Execution details section:
Expand the first drop-down menu, and select a role to run the statement. The role must have the Manage Security privilege.
In the Select cluster field, choose a cluster to run the statement on. We recommend using a fault tolerant cluster.
In the Job schedule section:
Choose the time zone of your operating system from the drop-down menu.
Choose the Select frequency or Enter cron expression recurring interval format.
For Select frequency: Choose an hourly, daily, weekly, monthly, or annual schedule from the drop-down menu. The corresponding values depend on the schedule selected:
hh:mm
, then specify AM or PM.hh:mm
, specify AM or PM, then
select a day of the week.hh:mm
, specify AM or PM, then
select a date.MM/DD
hh:mm
. Specify AM or PM.For Enter cron expression: Enter the desired schedule in the form of a cron expression. For example, a SQL job run weekly at 9:30 AM on Monday, Wednesday, and Friday:
30 9 * * 1,3,5
To create a materialized view refresh job using a SQL statement, go to the query editor.
Write a statement using CREATE MATERIALIZED
VIEW that includes
the refresh_schedule
property. The refresh_schedule
property must be set
with the frequency of the refresh as a cron expression:
CREATE MATERIALIZED VIEW my_refresh_materialization
WITH (
refresh_schedule = '0 0 1 * *'
) AS
SELECT *
FROM lakehouse.burst_bank.customer;
The job scheduler is set to the UTC time zone by default. To ensure your new refresh job runs as scheduled, complete the following steps:
To view the details of a materialized view refresh job, click the name of the job. The header of the Job details pane displays the following information about your materialized view refresh job:
Run now allows you to run the materialized view refresh job instantly.
Completed statements and statements in progress appear in the Job history section, which displays the following information:
To see statement details, click the Query ID.
You can manage materialized view refresh jobs in the Materialized view refresh jobs pane, the Job details pane, and the query editor.
To edit, delete, pause, or resume the selected SQL job, click themore_vertoptions menu.
To make changes to a materialized view refresh job in the query editor, use the ALTER MATERIALIZED VIEW statement.
To drop a materialized view refresh job, use the DROP MATERIALIZED
VIEW statement. To
remove a refresh job from a materialized view without dropping it, set the
refresh_schedule
property to DEFAULT
.
Your active role set determines which materialized view refresh jobs you can access.
The accountadmin
role cannot access all refresh jobs by default. To grant
accountadmin
access to the jobs created by another role, you must grant that
role to accountadmin
using the following command:
GRANT <role_name> TO accountadmin;
Is the information on this page helpful?
Yes
No