Benoit Perigaud

Results 150 comments of Benoit Perigaud

Renaming resources is a bit of a pain in Terraform as it will require people to change their configs/modules and update their state but as I don't expect this one...

I will actually deprecate the resource and remove it entirely. The need to set the default jobs for docs and source freshness doesn't exist anymore with dbt Explorer.

Hi @kcd83 Yes, this is still a problem, and the dbt Cloud team is aware of it, but there is nothing we can do just on the Terraform side for...

Hi @chenxuanrong Sorry that we didn't reply before! Yes, actually, we are working on adding `--project-id` and `--environment-id` as filters for `sync` and `plan`. This should allow people to use...

The branches with the changes mentioned are: - session: https://github.com/dbt-labs/dbt-jobs-as-code/tree/feature/use-session - asyncio: https://github.com/dbt-labs/dbt-jobs-as-code/tree/feature/use-httpx-asyncio

Added `session` in the latest release. Will open new targeted performance one if needed.

Hi @efung ! Thanks for this. I am off for a bit but will have a look in the next couple of weeks

I have done a couple of tests but will need to do more and most likely modify slightly this PR. It might take a few days. The first issue I...

I just raised an issue in dbt-core about the performance hit of this approach and whether it can be fixed on the Core side

Hi @jaklan, I believe that the error is because of this ``` {% macro postgres__list_relations_without_caching(schema_relation) %} {% if schema_relation.database == target.database %} {{ return(postgres__list_relations_without_caching(schema_relation) }} {% else %} ... {%...