Problem I’m having
I write this tread especially for @data-mie, but maybe others will be able to help me too. I have two kinds of problem. First, I would like to create data profile for data objects in dbt with help of dbt_profiler package.
For example, I have a BigQuery table (and model) called ft_activity. I would like to create a data profile for that table and store it to a separate table (eg. mtd_profiler_result).
I cannot find out, how to make it work, at least easily. I do not see any example of any similiar scenario on dbt_profiler package site (dbt - Package hub)
example code
dbt run-operation print_profile --args '{"relation_name": "ft_activity", "schema": "cz_pdw", "database": "t-dev-mesh-tr-d-1"}'
Question regarding support for Trino
My second question is following. Is there any possibility to use dbt_profiler package with a Trino database? Or is there any plan to extend supported adapters also with Trino. Now I can see, that Presto (which is similiar) is not supported. Is there any plan to add a support for these?
Thank you very much.