Hi Everyone,
Am trying to run my dbt code in a Docker container environment by creating a “python flask” application to pass the dbt execution commands as POST API parameters. When I try to do that. Image is getting built fine. And for a sample test when I pass dbt --version it is completing successfully. But if i execute any other dbt command like debug , test , run. Am getting Function not implemented error.
Below is the output sample:
{
“Command_Result”: “Success”,
Running with dbt=0.16.1
dbt version: 0.16.1
python version: 3.8.2
python path: /usr/local/bin/python
os info: Linux-4.4.0-x86_64-with-glibc2.2.5
Using profiles.yml file at /dbt/profiles.yml
Using dbt_project.yml file at /dbt/dbt_project.yml
Configuration:
profiles.yml file [OK found and valid]
dbt_project.yml file [OK found and valid]
Required dependencies: - git [OK found]
Connection:
method: service-account
database: <database_name>
schema: <schema_name>
location: US
priority: interactive
timeout_seconds: 300
Encountered an error:
[Errno 38] Function not implemented
}
Please help!!
Thanks in advance!
Thanks,
Gowtham