asfimport
asfimport
Shai Erera (@shaie) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-6828?focusedCommentId=14946187&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14946187)) I read the post @tokee, very interesting! I've got a couple of comments. First, if you want to avoid the micro benchmark, you could...
Toke Eskildsen (@tokee) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-6828?focusedCommentId=14946317&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14946317)) Shai: That all sounds very right. Great idea with the custom collector test. I was aware of the sentinels being re-used in-search, but thank...
Tom Burton-West ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-6828?focusedCommentId=14947328&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14947328)) We have a use case where some our users want set-based results. They don't care about relevance ranking or sorting, they just want a list...
Erick Erickson (@ErickErickson) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-6828?focusedCommentId=14947390&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14947390)) Tom: This sounds like it can currently be handled by the export functionality (starting in 4.10), see: https://cwiki.apache.org/confluence/display/solr/Exporting+Result+Sets. Note two restrictions: 1> the fl...
Tom Burton-West ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-6828?focusedCommentId=14947487&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14947487)) Thanks Erick, I plan to add a docValues id field the next time we re-index all 14 million volumes. After we do our next re-index,...
Bruno Roustant (@bruno-roustant) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-9379?focusedCommentId=17136783&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17136783)) So I plan to implement an EncryptingDirectory extending FilterDirectory. Encryption method: AES CTR (counter) - This mode is approved by NIST. () - AES...
Bruno Roustant (@bruno-roustant) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-9379?focusedCommentId=17143886&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17143886)) First PR, functional but incomplete. The idea of using a pool of Cipher does not work in Lucene. To run the tests, two options:...
Bruno Roustant (@bruno-roustant) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-9379?focusedCommentId=17149691&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17149691)) I updated the PR. Now it is functional and complete, with javadoc. There should be no perf issue anymore because I replaced javax.crypto.Cipher by...
Bruno Roustant (@bruno-roustant) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-9379?focusedCommentId=17149694&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17149694)) Watchers, I need your help. I need to know how you would use the encryption, and more precisely how you would provide the keys....
Bruno Roustant (@bruno-roustant) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-9379?focusedCommentId=17151914&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17151914)) @rmuir makes an important callout in the PR. A better approach is by leveraging the OS encryption at filesystem level because it fits the...