I need to store a large set of what is, in my mind (although I'm used to SQL), relational data. Basically consider storing a large subset of ClueWeb (4 TB). There are documents, sentences, and extractions--as well as properties of each. A major use case is running fulltext searches over the extractions.
Running fulltext searches over extractions is easily and effectively implemented using Lucene. However, semantically extractions are parts of sentences, which are parts of documents. Sentences and documents also have their own attributes, but when I store my extractions in Lucene, sentences and documents need to be properties of extractions.
Is there a good database engine that allows for fulltext search over extractions but also a relational structure so I can easily store properties of sentences and documents? Or is there a way to store this data in Lucene that I don't understand?