Dbt-risingwave

Latest version: v1.9.0

Safety actively analyzes 687942 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 2

1.9.0

- use `__get_index_name` for dropping index too https://github.com/risingwavelabs/dbt-risingwave/pull/57
- bump dbt version to 1.9 https://github.com/risingwavelabs/dbt-risingwave/pull/58

1.8.1

- add cancel method for streaming jobs https://github.com/risingwavelabs/dbt-risingwave/pull/49
- add create_indexes on table_with_connector and handle on_configuration_change https://github.com/risingwavelabs/dbt-risingwave/pull/51
- add sql_header support https://github.com/risingwavelabs/dbt-risingwave/pull/52

1.8.0

- Bump `dbt-core` to 1.8.0

1.7.4

- Support emit on window close syntax for the materialized view model.

1.7.3

- Support rename statement in dbt-risingwave.
- Fix `incremental` model, dbt run with `--full-refresh`.

1.7.2

- 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") }}

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.