Error: BrokenPipe: server socket closed. Please check that client side networking configurations such as Proxies, firewalls, VPN, etc. are not affecting your network connection.
DBT newbie here. Currently I am running DBT locally with following versions & settings: "dbt-core>=1.9.1" "dbt-redshift>=1.9.0"
Thread size: 4
I am trying to create two models in Redshift. First model is reading from an external table within Redshift. This table takes 80secs as a startup time irrespective of how many rows I am calling. The second table is reading from this model with some additional joins from other models.
However, I am consistently getting this error: BrokenPipe: server socket closed. Please check that client side networking configurations such as Proxies, firewalls, VPN, etc. are not affecting your network connection.
Reading online it seems like keepalives_idle is deprecated. How can I resolve this issue?
I have tried materiliazing the staging model as ephemeral and second model as table but the issue is still there.
Reading online I am cannot see any additional setting I can apply to my Redshift.
Any help/guidance?