You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are hitting the limits of number of parameters that can be passed to a prepared statement in Goonj.
When we are trying to get sync details on server, there are too many addresses in some catchment. This user has master catchment in Goonj.
all inheritors of org.avni.server.dao.SyncableRepository#isEntityChanged are likely impacted
They will also break the avni server
So should limit this.
The text was updated successfully, but these errors were encountered:
65,535 is the limit of number of prepared statement parameters supported by postgres in a single query. So to be on the same side we should keep it below 65,500 at least from correctness perspective.
org.avni.server.dao.SyncableRepository#isEntityChanged inheritors pass the addresses to postgres to query for changes.
https://avni.freshdesk.com/a/tickets/5365
We are hitting the limits of number of parameters that can be passed to a prepared statement in Goonj.
When we are trying to get sync details on server, there are too many addresses in some catchment. This user has master catchment in Goonj.
all inheritors of org.avni.server.dao.SyncableRepository#isEntityChanged are likely impacted
They will also break the avni server
So should limit this.
The text was updated successfully, but these errors were encountered: