Results 1 to 2 of 2
Thread: Lucene update not deleting
- 05-11-2012, 12:25 PM #1
Member
- Join Date
- May 2012
- Posts
- 2
- Rep Power
- 0
Lucene update not deleting
Hi, this seems a common problem, except I have had no trouble with this before and the usual fix does not work. It is probably something silly, but I can not find it

I want to index a yammer site as the yammer api is not fast enough for my purpose, problem is that when I try to update my index using the updateDocument functionality the old ones are not deleted. But I have a stored unique key that is not analysed.
Here is the relevant code:
What I see in my log is:Java Code:Document newdoc = new Document(); newdoc.add(new Field(YammerMessageFields.URL, resultUrl, Field.Store.YES, Field.Index.NOT_ANALYZED)); newdoc.add(new Field(YammerMessageFields.THREAD_ID, threadID.toString(), Field.Store.YES, Field.Index.NOT_ANALYZED)); newdoc.add(new Field(YammerMessageFields.AUTHOR, senderName, Field.Store.YES, Field.Index.ANALYZED)); newdoc.add(new Field(YammerMessageFields.CONTENTS, resultText, Field.Store.YES, Field.Index.ANALYZED)); Term key = new Term(YammerMessageFields.THREAD_ID, newdoc.getFieldable(YammerMessageFields.THREAD_ID).toString()); logger.debug("updating document with key: " + key); try { IndexWriter writer = getIndexWriter(); writer.updateDocument(key, newdoc); writer.close(); } catch (IOException e) { }
2012-05-11 12:02:29,816 DEBUG [http-8088-2] LuceneIndex - https://www.yammer.com/api/v1/messages/?newer_than=0
2012-05-11 12:02:38,594 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173285202>
2012-05-11 12:02:45,167 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173033239>
2012-05-11 12:02:51,686 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173014568>
2012-05-11 12:02:51,871 DEBUG [http-8088-2] LuceneIndex - new items:3
2012-05-11 12:03:27,393 DEBUG [http-8088-2] YammerResource - return all documents
2012-05-11 12:03:27,405 DEBUG [http-8088-2] YammerResource - nr docs:3
2012-05-11 12:03:27,405 DEBUG [http-8088-2] YammerResource - nr dels:0
...
next update
...
2012-05-11 12:03:35,802 DEBUG [http-8088-2] LuceneIndex - https://www.yammer.com/api/v1/messages/?newer_than=0
2012-05-11 12:03:43,933 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173322760>
2012-05-11 12:03:50,467 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173285202>
2012-05-11 12:03:56,982 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173056406>
2012-05-11 12:04:03,533 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173033239>
2012-05-11 12:04:10,097 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173030769>
2012-05-11 12:04:16,629 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173014568>
2012-05-11 12:04:23,169 DEBUG [http-8088-2] LuceneIndex - updating document with key: threadid:stored,indexed<threadid:173003570>
2012-05-11 12:04:23,341 DEBUG [http-8088-2] LuceneIndex - new items:7
2012-05-11 12:05:09,694 DEBUG [http-8088-1] YammerResource - return all documents
2012-05-11 12:05:09,696 DEBUG [http-8088-1] YammerResource - nr docs:10
2012-05-11 12:05:09,696 DEBUG [http-8088-1] YammerResource - nr dels:0
- 05-11-2012, 04:15 PM #2
Member
- Join Date
- May 2012
- Posts
- 2
- Rep Power
- 0
Re: Lucene update not deleting
Got my answer on stackexchange: java - Lucene updateDocument not deleting documents - Stack Overflow
Similar Threads
-
deleting spaces !!
By young developer in forum New To JavaReplies: 7Last Post: 03-30-2011, 03:11 PM -
Deleting panels
By dilpreet28 in forum New To JavaReplies: 13Last Post: 08-11-2010, 09:23 AM -
Deleting '.zip' file...
By vaibhavspawar in forum New To JavaReplies: 2Last Post: 07-02-2010, 11:13 AM -
File Not Deleting
By Moncleared in forum New To JavaReplies: 7Last Post: 02-21-2010, 08:28 PM -
Deleting Contractions
By theonly in forum New To JavaReplies: 3Last Post: 04-27-2008, 07:44 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks