Skip to content

Commit

Permalink
Update sync global ip rib info
Browse files Browse the repository at this point in the history
  • Loading branch information
TimEvens committed Jun 29, 2022
1 parent 0056eb9 commit 6a5e049
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
9 changes: 8 additions & 1 deletion install_config/fresh_upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,11 @@ The latest changes should not result in this problem, but in case it does the
```sync_global_ip_rib()``` function can be used to sync the global rib. The function can take a while to run and
will cause a lot of extra disk IOPS. It is recommended to run it after initial RIB dumps.

Run ```select sync_global_ip_rib();``` to synchronize the global IP RIB table.

Run the below to synchronize the global IP RIB table:
```
truncate global_ip_rib;
select sync_global_ip_rib();
```

7 changes: 6 additions & 1 deletion release_notes/2.2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,12 @@ The global IP RIB could be missing prefixes when initial RIB dumps are out of sy
```sync_global_ip_rib()``` function can be used to sync the global rib. The function can take a while to run and
will cause a lot of extra disk IOPS. It is recommended to run it after initial RIB dumps.

Run ```select sync_global_ip_rib();``` to synchronize the global IP RIB table.
Run the below to synchronize the global IP RIB table:
```
truncate global_ip_rib;
select sync_global_ip_rib();
```

### Upgrading from 2.1.x
```warning
Expand Down
7 changes: 6 additions & 1 deletion troubleshooting/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,9 @@ The global IP RIB could be missing prefixes when initial RIB dumps are out of sy
```sync_global_ip_rib()``` function can be used to sync the global rib. The function can take a while to run and
will cause a lot of extra disk IOPS. It is recommended to run it after initial RIB dumps.

Run ```select sync_global_ip_rib();``` to synchronize the global IP RIB table.
Run the below to synchronize the global IP RIB table:
```
truncate global_ip_rib;
select sync_global_ip_rib();
```

0 comments on commit 6a5e049

Please sign in to comment.