As mentioned in adobe docs - OAK does not index anything by default & custom indexes need to be created when necessary.
But OOTB lucene index under /oak:index/lucene index all content text & binary by default which is 180 degree shift to above statement. If this is true than ideally same lucene index should be used for search and we should not see error.
Source - AEM Lucene OOTB Index - Q43
WARN Traversed 1000 nodes with filter Filter(query=select ...) consider creating an index or changing the query
Of course it does not index any property but still things should be good as most of times query goes for content only. Can anybody suggest?
/oak:index/cqPageLucene
is on the typecq:Page
and for a number of properties like title, nodename, cq:lastRolledoutBy etc. so if I query for a page with title home, that index will be used. – awd