When working with Lucene, it is often useful to inspect an index.
Luke is awesome, but often times it is not feasible to inspect an index on a remote machine using a GUI. That's where Clue comes in. You can ssh into your production box and inspect your index using your favorite shell.
Another important feature for Clue is the ability to interact with other Unix commands via piping, e.g. grep, more etc.
Clue is under the Apache Public License v2.0.
Please file bugs and feature requests here.
latest version: 0.0.2
- lucene 4.3 upgrade.
- readonly support - you can toggle on/off readonly mode so you can view an index opened (for write) by another process.
- better docvalue support - major speed on up viewing docvalues, and all types of docvalus are now supported: numeric, binary, sorted and sortedset.
- bundle sample data and tool for producing a sample index exhibiting all features of the tool.
source: release-0.0.2.zip
clue-all executable jar with all dependencies: clue-all-0.0.2.jar
clue jar with only clue class files, used as a library: clue-0.0.2.jar
mvn package
This will create 2 artifacts in the target directory:
-
clue-xxx.jar
jar file containing all clue classes.
-
clue-all-xxx.jar
executable jar file containing all clue classes as well as all runtime dependencies, e.g. java -jar clue-all-xxx.jar works
Interactive Mode:
./bin/clue.sh my-idx
Non-interactive Mode:
./bin/clue.sh my-idx command args
Command list:
./bin/clue.sh my-idx help
delete - deletes a list of documents from searching via a query, input: query
directory - prints directory information
docval - gets doc value for a given doc, <field> <docid>, if <docid> not specified, all docs are shown
exit - exits program
help - displays help
info - displays information about the index, <segment number> to get information on the segment
merge - force merges segments into given N segments, input: number of max segments
postings - iterating postings given a term, e.g. <fieldname:fieldvalue>
readonly - puts clue in readonly mode
search - executes a query against the index, input: <query string>
terms - gets terms from the index, <field:term>, term can be a prefix
Clue bundles with some test data (15000 car data) for you to build a sample index to play with, do:
./bin/build_sample_index.sh my-idx
-
Getting all the terms in the field 'color_indexed':
./bin/clue.sh my-idx terms color_indexed
-
Getting all the terms in the field 'color_indexed' starting with the term staring with 'r':
./bin/clue.sh my-idx terms color_indexed:r
./bin/clue.sh my-idx terms color_indexed | grep r
-
Do a search:
./bin/clue.sh my-idx search myquery
-
Get the index info:
./bin/clue.sh my-idx info
-
Iterate a posting for the term color_indexed:red
./bin/clue.sh my-idx postings color_indexed:red
-
List docvalues for the column-stride-field color:
./bin/clue.sh my-idx docval color
-
Get docvalue for the column-stride-field category for document 4:
./bin/clue.sh my-idx docval category 5
-
Get docvalue for the column-stride-field year of type numeric for document 3:
./bin/clue.sh my-idx docval year 3
-
Get docvalue for the column-stride-field json of type binary for document 3:
./bin/clue.sh my-idx docval json 3
-
Get docvalue for the column-stride-field tags of type sorted-set for document 3:
./bin/clue.sh my-idx docval tags 3