Skip to content

Commit

Permalink
adds note in troubleshooting about docker network mtu (#1990)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzelei authored May 21, 2024
1 parent 2551d73 commit 1e9a02c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/docs/guides/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,21 @@ You can resolve this by disabling the "Truncate" option in the Source Options, a
If you have views with triggers that refresh said views on inserts you may see this error when attempting to create records in the table that the view is based on.

The easiest way to resolve this, is to disable and/or remove the triggers on the view, and re-enable them after the job has completed.

### Networking issues with Docker

Some Linux environments have issues with Docker Networking, which may cause problems with Neosync communications.
There have been reports of this on Ubuntu and GCP.

This can possibly be fixed by updating the docker networks to use the correct MTU size.
Be sure to update all of the networks within the compose. Example below:

```yml
networks:
neosync-network:
name: neosync-network
driver_opts:
com.docker.network.driver.mtu: 1460
```
This topic is further discussed [here](https://www.civo.com/learn/fixing-networking-for-docker) and [here](https://stackoverflow.com/questions/73101754/docker-change-mtu-on-the-fly).

0 comments on commit 1e9a02c

Please sign in to comment.