forked from tjake/Solandra
-
Notifications
You must be signed in to change notification settings - Fork 1
kumm/Lucandra
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Lucandra - A Cassandra Backend for Lucene/Solr By Jake Luciani - http://twitter.com/tjake ============================================== Lucandra provides a Lucene IndexReader and IndexWriter that interfaces with Cassandra. Solr is also supported. Before you get started you should read this article: http://blog.sematext.com/2010/02/09/lucandra-a-cassandra-based-lucene-backend/ You can see Lucandra in action here: http://sparse.ly Bookmarks demo: ============== Lucandra includes a delicious like bookmarks demo to get you started. to build run the following: 1. Setup Cassandra 0.6 with storage-conf.xml in config 2. ant lucandra.jar 3. ant test -Dcassandra.host=127.0.0.1 -Dcassandra.port=9160 -Dcassandra.framed=false #edit run-demo with appropriate settings (delicious clone) 4. run_demo.sh -index bookmarks.tsv 5. run_demo.sh -search title:linu* Solr example: ============= Lucandra also supports Solr. to build run the following: 1. Setup Cassandra 0.6 with storage-conf.xml in config 2. ant lucandra.jar 3. cd solr-example; java -jar start.jar 4. cd exampledocs; ./post.sh *.xml 5. surf to http://localhost:8983/solr/admin/ Background ========== Storing an inverted index in Cassandra was the initial use-case for Cassandra at Facebook. The Cassandra wiki discusses this: "You can think of each super column name as a term and the columns within as the docids with rank info and other attributes being a part of it. If you have keys as the userids then you can have a per-user index stored in this form. This is how the per user index for term search is laid out for Inbox search at Facebook." Initially we implemented Lucene support with supercolumn as described but we ran into a major scaling issue when we tried to index all of wikipedia. Turns out Cassandra keeps the supercolumn in memory for a given key. Also all columns for a key are tied to one cassandra node so we don't gain much scalability this way. Thankfully Cassandra recently added support for distributed ordered keys that allows us to use keys to store index terms without supercolumns. Implementation Notes ====================== The Lucandra Cassandra config looks like this. <Keyspaces> <Keyspace Name="Lucandra"> <ColumnFamily CompareWith="BytesType" Name="TermVectors"/> <ColumnFamily CompareWith="BytesType" Name="Documents"/> </Keyspace> </Keyspaces> *Documents Ids are currently random and autogenerated. *Term keys and Document Keys are encoded as follows (using a random binary delimiter) Term Key col name value "index_name/field/term" => { documentId , position vector } Document Key "index_name/documentId" => { fieldName , value } The IndexReader caches terms aggressively during search and tries to avoid lots of back and forth with Cassandra. What Works ========== * Real-Time indexing (documents become available immediately) * No optimizing * Search * Sort * Delete * Wildcards and other Lucene magic What's Missing (for now) ============== * No normalizations are stored (no scoring) * You can't walk the documents with index reader * Faceting isn't yet supported
About
Lucandra = Lucene + Cassandra
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Java 93.2%
- JavaScript 6.3%
- Shell 0.5%