1

I'm building an application that has to store some gigabytes of log data (not exactly log data but similar) in a way so that the log data can be queried efficiently. I'm planning to use Lucene or something based on Lucene. While the data enters the index via the API I'd prefer not to build my own frontend for querying the data. I don't need anything fancy here, just a simple way to query the index.

I'm not sure if Solr would solve my problem. Is there something like a generic web frontend for querying Lucene indexes?

lex82
  • 11,173
  • 2
  • 44
  • 69
  • As a comment, as I do not have experience with it:[Banana](https://github.com/LucidWorks/banana). This is a port of Kibana. – cheffe Dec 26 '15 at 19:48

1 Answers1

3

Solr has the Velocity UI Response Writer which is a general search interface for Lucene indexes. Should probably work fine as long as you're able to serve your indexes through Solr. See Can a raw Lucene index be loaded by Solr for how to do this.

Community
  • 1
  • 1
MatsLindh
  • 49,529
  • 4
  • 53
  • 84
  • Thanks, looks good! I'll just keep the question open for a few hours in case somebody else has another idea. – lex82 Dec 24 '15 at 16:09