cancel
Showing results for 
Search instead for 
Did you mean: 

PostgreSQL slow query detected

Henri_Jacob
Champ on-the-rise
Champ on-the-rise

When load testing my (LTS2015 HF27 + PosgreSQL 9.6 + ElasticSearch 1.x) platform with Tsung , i get a (very) slow query as shown below .

Even if create the index as suggested by PoWa : CREATE INDEX hierarchy_mixintypes_idx
/> ON public.hierarchy
/> USING gin (mixintypes COLLATE pg_catalog."default");

Regards, Henri

4 REPLIES 4

Henri_Jacob
Champ on-the-rise
Champ on-the-rise

index suggestions by PoWa

Florent_Guillau
World-Class Innovator
World-Class Innovator

Your query contains NX_ACCESS_ALLOWED which means you disabled the ACL optimizations. It's unavoidable that with a largish amount of data any query will become slow. See https://doc.nuxeo.com/nxdoc/read-acls/

Make sur you define nuxeo.vcs.optimizations.acl.enabled=true and follow the guide in the page above (REBUILDING READ ACLS) to make sure the indexes needed are recomputed after you do the switch.

Henri_Jacob
Champ on-the-rise
Champ on-the-rise

We defined nuxeo.vcs.optimizations.acl.enabled=false in order to minimize the ACL write time, as recommended in https

adam_bo_
Star Contributor
Star Contributor

Could you execute your query in pgAdmin with EXPLAIN ANALYZE commands and check result on page https