Expand my Community achievements bar.

AEM persisted query is not getting cached in dispatcher

Avatar

Level 9

I created a graphql endpoint for my content fragment and it is working fine in author/publisher/dispatcher. Now I am trying to setup cache rule for the  AEM persisted query. I followed below doc and setup the dispatcher config. But the cache is not happening at dispatcher level. Note this is AMS (AEM 6.5.22)

 

https://experienceleague.adobe.com/en/docs/experience-manager-learn/getting-started-with-aem-headles...

https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/headless/deploym...

 

Add the variable to the Dispatcher file global.vars:

Define CACHE_GRAPHQL_PERSISTED_QUERIES
 
/src/conf.dispatcher.d/filters/dexa_publish_filters.any
/0152 { /type "allow" /method '(GET|POST|OPTIONS)' /url "/graphql/execute.json*" }

 

src/conf.dispatcher.d/cache/dexa_publish_cache.any

/0000 {
/glob "*"
/type "allow"
}
/0003 {
/glob "/graphql/execute*.json"
/type "allow"
}
## Don't cache csrf login tokens
/0001 {
/glob "/libs/granite/csrf/token.json"
/type "deny"
}

 

grapth endpint = 

https://{disp-domain-name}/graphql/execute.json/dexa/product1;contentFragmentLocation=/content/dam/s...

 

I can see the json response in dispatcher but it is not getting cached. Below the log message. Is there any config that I should add to cache this persisted query 

 

[Fri Mar 28 05:03:28 2025] [D] [pid 2263756:tid 140498874312448] Found farm publishfarm for dexa-dev.adobe.net

[Fri Mar 28 05:03:28 2025] [D] [pid 2263756:tid 140498874312448] checking [/]

[Fri Mar 28 05:03:28 2025] [D] [pid 2263756:tid 140498874312448] request URL has no extension: /

[Fri Mar 28 05:03:28 2025] [D] [pid 2263756:tid 140498874312448] cache-action for [/]: NONE

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] Decomposing URL :

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] uri : / 

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] suffix : No suffix 

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] extension : No extension 

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] selector : No selectors 

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] Decomposing Complete

[Fri Mar 28 05:03:28 2025] [T] [pid 2263756:tid 140498874312448] Filter rule entry /0001 blocked 'GET / HTTP/1.1'

[Fri Mar 28 05:03:28 2025] [D] [pid 2263756:tid 140498874312448] Filter rejects: GET / HTTP/1.1

[Fri Mar 28 05:03:28 2025] [I] [pid 2263756:tid 140498874312448] "GET /" - blocked [publishfarm/-] 0ms

4 Replies

Avatar

Level 8

Hi @Mario248 ,

Could you please check if your default_rewrite.rules has the below rules

 

# Allow caching of persisted queries
RewriteCond %{REQUEST_URI} ^/graphql/execute.json
RewriteRule ^/(.*)$ /$1;.json [PT,L]

Avatar

Level 9

Thanks for your response. I didn’t have this rewrite rule earliercbut I added it and tested it but still caching is still not happening in the dispatcher. Is there any other configuration I might be missing?

Avatar

Administrator

@Mario248 Did you find the suggestion helpful? Please let us know if you need more information. If a response worked, kindly mark it as correct for posterity; alternatively, if you found a solution yourself, we’d appreciate it if you could share it with the community. Thank you!



Kautuk Sahni

Avatar

Level 9

Thanks. I am still looking for a solution.