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
When querying more than one corpus ANNIS will use the parent "facts" table in it's FROM clauses. This will acquire a lock on all child tables, even if they are excluded by the conditions. If you have more corpora imported than the value of the max_locks_per_transaction PostgreSQL parameter there will be an error. It is also bad for the statistics since PostgreSQL will use the overall statistics of all fact tables combined.
We should fix it in a way that only the fact-child tables that are really needed are queried.
The text was updated successfully, but these errors were encountered:
When querying more than one corpus ANNIS will use the parent "facts" table in it's FROM clauses. This will acquire a lock on all child tables, even if they are excluded by the conditions. If you have more corpora imported than the value of the
max_locks_per_transaction
PostgreSQL parameter there will be an error. It is also bad for the statistics since PostgreSQL will use the overall statistics of all fact tables combined.We should fix it in a way that only the fact-child tables that are really needed are queried.
The text was updated successfully, but these errors were encountered: