-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] BrokenPipe: server socket closed error when we execute any dbt model in dbt core with redshift adapter #252
Comments
Hi, facing the same issue, Have you been able to resolve it? |
We are struggling with the same problem |
same problem here |
@karthickGK4794, there is an undocumented setting called |
I see this parameter has been deprecated after 1.5 in dbt however i tried to add it in the profiles.yml of my dbt project like below but it is not working |
@karthickGK4794 dbt-redshift maintainer here, have you set retries in your profile? We recently made a change to retry these exceptions as they are usually transient |
@colin-rogers-dbt - We have retry parameter set to 1 by default but we are not sure whether this retry is working as expected or not as we dont see any log or information related to this in dbt log. Could you let me know how this can be traced? |
Same issue here, but we’re not using dbt-redshif. We also rely on redshift_connector for our Redshift connections, and we’re encountering the same “(redshift_connector.error.InterfaceError) BrokenPipe: server socket closed.” error. Specifically:
|
Looking into this issue, the driver does enable tcp keepalives by default but does not set the interval. Therefore, depending upon the operating system configuration, the interval may be too long. There are some instruction here for configuring the operating system default keep alive intervals: https://docs.aws.amazon.com/redshift/latest/mgmt/troubleshooting-connections.html#connecting-firewall-guidance.change-tcpip-settings |
We are facing an issue if we execute a dbt model in dbt core with redshift adapter in multi nodes or multi threads. We did some analysis to find the reason for a failure by checking the dbt logs and we found that at some random point one of the threads was going to idle state for a certain period of time and it was not executing any tasks sent to it and eventually it got failed with the below statement.
BrokenPipe: server socket closed. Please check that client side networking configurations such as Proxies, firewalls, VPN, etc. are not affecting your network connection.
We suspect this could be because of introduction of redshift_connector in dbt-redshift adapter by replacing psycopg2. We weren't facing any such issues in dbt older versions which used psycopg2.
Attaching the context from dbt log file
As you can see last time when connection was used in Thread-1 was at 13:28:59.394786 (first line)
After almost 25mins dbt got back to this connection to sent the next statement but the connection was no longer open
There is no keep_alive option in redshift_connector - this is something we had specified in the old redshift adapter.
The text was updated successfully, but these errors were encountered: