shop page does not display all products
- MuratParticipant3 years, 8 months ago #23507
visiting my shop page i see at the top::
“Showing 1–100 of 10000 results” and pages up to 100 pages.As I have around 70,000 products fully indexed (and yes I have rebuild the indices manually to rule out any corrupt index issue) using wpsolr 22.0 + elastic search
so it should rather be showing
“Showing 1–700 of 70000 results” and pages up to 100 pages….
is there a cap of 100 pages –?wpsolrKeymaster3 years, 8 months ago #23508The detailed tutorial to fix the 10,000 results in Elasticsearch is on Fix Elasticsearch error “Result window is too large”
MuratParticipant3 years, 8 months ago #23513I am correcting my self – please ignore or (delete) my last erroneous response about putting “index.max_result_window: 1000000” in the elasticsearch.yml … as it turned out this parameter does not work starting in recent versions of elastic search engine…
I have followed your guide – but had to fix the quotation strings as curl was giving many errors in ACE string conversions….
Therefore, finally — this is the CLEAN one AS-IS – which worked.======================
curl -X PUT ‘https://127.0.0.1:9200/sharif/_settings’ -H ‘Content-Type: application/json’ -d ‘{ “index” : { “max_result_window” : 1000000 } }’
=======================
You must be logged in to reply to this topic.