Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add streaming_rate_limit param option for MV creation #48

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jackson-burke
Copy link

This PR allows for the specification of a streaming_rate_limit for MV creation. See here for its use.

Script can now appear as such:

{{ config(
    materialized="materialized_view",
    streaming_rate_limit=2500
) }}
SELECT *
FROM test_table

and output DDL will look like:

CREATE MATERIALIZED VIEW mv_name
WITH (streaming_rate_limit=2500)
AS
SELECT *
FROM test_table

@jackson-burke jackson-burke marked this pull request as ready for review August 6, 2024 08:41
@MattiasMTS
Copy link
Collaborator

#52 should support this now FYI @jackson-burke .

@KeXiangWang KeXiangWang requested a review from chenzl25 November 7, 2024 17:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants