1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- name: 'canary_environment'
- version: '1.0.0'
- config-version: 2
- profile: 'canary_environment'
- macro-paths: ["macros"]
- model-paths: ["models"]
- test-paths: ["tests"]
- target-path: "target" # directory which will store compiled SQL files
- clean-targets: # directories to be removed by `dbt clean`
- - "target"
- - "dbt_packages"
- models:
- canary_environment:
- loadgen:
- schema: loadgen
- post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"infra+bot@materialize.com\", \"infra+qacanaryload@materialize.io\""
- tpch:
- schema: tpch
- post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"infra+bot@materialize.com\", \"infra+qacanaryload@materialize.io\""
- pg_cdc:
- schema: pg_cdc
- post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"infra+bot@materialize.com\", \"infra+qacanaryload@materialize.io\""
- mysql_cdc:
- schema: mysql_cdc
- post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"infra+bot@materialize.com\", \"infra+qacanaryload@materialize.io\""
- table:
- schema: table
- post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"infra+bot@materialize.com\", \"infra+qacanaryload@materialize.io\""
- tests:
- +cluster: qa_canary_environment_compute
|