Questions tagged [luke]

Luke is a development and diagnostic tool, which accesses already existing Lucene indexes and allows you to display and modify their content.

Luke is a development and diagnostic tool, which accesses already existing Lucene indexes and allows you to display and modify their content. The tools supports indexes created with Lucene / Solr / Elasticsearch. Actively developed at: https://github.com/DmitryKey/luke

79 questions
2
votes
1 answer

How to get the set of terms that occur in a search result?

Given the id/url of an indexed document in solr can I get the set of terms contained/indexed for that document? This is done by Luke so I suspect http://wiki.apache.org/solr/LukeRequestHandler could help but I'm !sure how to do.
simpatico
  • 10,709
  • 20
  • 81
  • 126
2
votes
2 answers

Looking for Lucene index version

When I use Luke V3.3.0, it tells me that the Lucene index that I am opening is: Index version: 13172b074a7 Index format: -11 (Lucene 3.1) I am using Solr 3.3, I removed previously my folder /var/data/solr/myrepository before indexing. I would…
Bob Yoplait
  • 2,421
  • 1
  • 23
  • 35
2
votes
1 answer

What causes " indexed without position data" error in Lucene using Luke?

I am trying to search the DOI field from the documents indexed using Lucene. The value for a DOI looks something like this "10.1186/1756-3305-7-73". Pardon me, in case the question is stupid, but this is the first time I am dipping my hands into…
PinkBanter
  • 1,686
  • 5
  • 17
  • 38
2
votes
0 answers

Lucene - trying to find out size occupied by each field in apache lucene index

I am using java lucene 6.3.0 My document has 50 fields and indexing 500k documents takes 1gb of space. I am trying to recognize which field is taking more space in the index. I have already tried analyzing the index using luke but the problem is…
pandaren
  • 119
  • 2
  • 8
2
votes
1 answer

Luke + lucene 5.4.1

I am using custom analyzer for building an index file using Lucene 5.4.1 version, and i am trying to use Luke for finding data in index file. i am trying to add my custom analyzer with Luke, but i don't find that in analyzers tab. i am using below…
raj
  • 33
  • 6
2
votes
1 answer

Lucene Luke. How much is the Last search time?

Luke displays results like this: Last search time: 67999 us What is 'us'? How to convert that to ms?
mynkow
  • 4,408
  • 4
  • 38
  • 65
2
votes
1 answer

Adding custom analyzer to Luke

This question was already asked here on Stack Overflow, BTW even after reading the answer provided, I do not manage to add MyOwnAnalyzer, so that I can use it directly from Luke. Please can someone help me on the right way to do, that is how and…
user1340802
  • 1,157
  • 4
  • 17
  • 36
1
vote
2 answers

Luke Lucene QueryParser Case Sensitivity

In Luke, if I enter the search expression docfile:Tomatoes.jpg* the parsed query is docfile:Tomatoes.jpg*. When the search expression is docfile:Tomatoes.jpg, (no asterisk *) the parsed query is docfile:tomatoes.jpg with a lowercase 't'. …
Dzejms
  • 3,108
  • 2
  • 30
  • 40
1
vote
1 answer

Katta luke integration

I m using Katta for distributed Lucene Index. Is it possible to use LUKE for Katta index, if so, how? Thanks in advance...
Nageswaran
  • 7,481
  • 14
  • 55
  • 74
1
vote
1 answer

luke with datastax solr

I am trying to inspect solr indexes in DSE with luke. But getting the following error. Invalid directory at the location, check console for more information. Last exception: java.lang.IllegalArgumentException: An SPI class of type…
root
  • 3,517
  • 2
  • 19
  • 25
1
vote
3 answers

How to get list of stored tokens created by analyzer in solr 6.6.0

I am uploading documents for indexing in solr it is working perfectly and with the help of luke i can get all index terms created by solr. My requirement is to get list of tokens created by analyzer. like if i pass "This is Simple HTML Document"…
Amit Kumar
  • 19
  • 1
  • 9
1
vote
0 answers

Adding a new field to all existing documents in an index?

I am using Luke, to add a new field to all existing documents in the index. I can easily do this for 1 document by using the "Reconstruct and Edit" option. However, I want to do this for all document, in one go. Right now, I have to do this one by…
panther123
  • 27
  • 7
1
vote
0 answers

luke available version for lucene 4.5

I am trying to test an Apache Lucene 4.5 index by navigating and searching and I was looking for the applicable version of Luke to do so, I understood form Luke website that they use the same version for naming as Lucene, but the latest version they…
sareem
  • 429
  • 1
  • 8
  • 23
1
vote
1 answer

What is the actual meaning of 'Rank' in Lucene when view by Luke?

I am using Luke to view a Lucene index. There is a column named 'Rank'. What is the actual meaning of it? My guess is that the Rank means number of occurrence and the larger Rank number meaning the term is more significant. But I don't understand is…
Ken
  • 3,922
  • 9
  • 39
  • 40
1
vote
1 answer

Lucene search scoring issue

I have two indexes created from directories "test1" and "test2". "test1" directory has "file1.java" whereas "test2" has two files "file1.java" and "file2.java" in it. "file1.java" is identical in both the directories. Let the indexes be index1 and…
trailblazer
  • 1,421
  • 5
  • 20
  • 43