mikemccand commented on a change in pull request #442: URL: https://github.com/apache/lucene/pull/442#discussion_r751348311
########## File path: lucene/facet/src/java/org/apache/lucene/facet/taxonomy/directory/TaxonomyIndexArrays.java ########## @@ -130,15 +125,49 @@ private void initParents(IndexReader reader, int first) throws IOException { return; } + if (tryLoadParentUsingTermPosition(reader, first)) { Review comment: Hrmph, yes -- this is the `near-real-time` case, where we are opening a taxo reader from a taxo writer before any segment infos have been committed. In this case, we know the index is created with the latest (current) version of Lucene, so maybe we could catch the `IndexNotFoundException` and add a comment that this is OK? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org