Hi there
How do I config the models properly in the dbt_profile.yml
Project_name/
data_ingestion/
| input_data/
| | input.csv
| staging/
| dbt_models
|
models/
seeds/
My doubt is input_data folder .csv data should be loaded into psa schema
So I configured in dbt_profile.yml
In dbt_profile.yml define the schema
seed-paths: ["seeds","data-ingestion/input-data"]
seeds:
Project_name :
data_ingestion:
input_data :
schema: +psa
But getting
[WARNING]: Configuration paths exist in your dbt_project.yml file which do not apply to any resources.
There are 1 unused configuration paths:
- seeds.project_name.data-ingestion.input-data
Is there some thing all the seeds data .csv should exist in seed folder
am I missing something here.