Skip to content

Releases: risingwavelabs/dbt-risingwave

v1.8.1

08 Nov 05:27
Compare
Choose a tag to compare
  • add cancel method for streaming jobs #49
  • add create_indexes on table_with_connector and handle on_configuration_change #51
  • add sql_header support #52

v1.8.0

09 Aug 06:12
88bd89b
Compare
Choose a tag to compare
  • Bump dbt-core to 1.8.0

v1.7.4

07 May 03:31
f58af57
Compare
Choose a tag to compare
  • Support emit on window close syntax for the materialized view model.

v1.7.3

15 Mar 06:32
Compare
Choose a tag to compare
  • Support rename statement in dbt-risingwave.
  • Fix incremental model, dbt run with --full-refresh.

v1.7.2

13 Mar 05:20
Compare
Choose a tag to compare
  • Support incremental model. You can use incremental when you want to have better control of when the table should be updated in a batch way.
  • Improve sink model, now we can define sink in this way
{{
    config(
        materialized="sink",
        connector="kinesis",
        data_format="PLAIN",
        data_encode="JSON",
        connector_parameters={
            "primary_key": "pk,sk",
            "stream": var("kinesis_sink")[target.profile_name]["stream"],
            "aws.region": var("kinesis_sink")[target.profile_name]["region"],
            "aws.credentials.role.arn": var("kinesis_sink")[target.profile_name]["role_arn"],
            "aws.credentials.access_key_id": env_var('AWS_ACCESS_KEY_ID', ''),
            "aws.credentials.secret_access_key": env_var("AWS_SECRET_ACCESS_KEY", ''),

        },
        format_parameters={
            "force_append_only": true,
        },
    )
}}

-- do some wrangling here:
SELECT * FROM {{ ref("model1") }}

v1.7.1

26 Feb 06:59
Compare
Choose a tag to compare
  • Add connection parameter gssencmode=disable by default.

v1.7.0

06 Feb 09:00
eb7745b
Compare
Choose a tag to compare
  • Updated dbt-core from v1.6.0 to v1.7.0.
  • Improved skip logic for models such as source, table_with_connector, sink, view.

v1.6.1

26 Dec 12:32
Compare
Choose a tag to compare
  • change relation_max_name_length from 63 to 1024
  • support on_configuration_change on materialized_view model. Same as PostgreSQL, the configuration only handles indexes at this moment.

v1.6.0

25 Dec 07:45
1d15898
Compare
Choose a tag to compare
  • Change dbt run default behavior to not drop models. Option --full-refresh is needed, if you want to drop models first and then create.
  • Use materialized_view instead of materializedview in model materialization.
  • Support new model materializations: source, table_with_connector, and sink. All these materializations need you to provide the create statement as a whole instead of a select query.
  • Support model contract.
  • Support indexes configuration.

v1.5.1

30 Aug 05:34
Compare
Choose a tag to compare
  • Support materialization materializedview, table, view and ephemeral.