I have an existing database whereby I need to index the existing data with NH.Search and have had no luck doing so.
I've read several articles including:
Easiest way to reindex lucene.net indexes when nhibernate.search used?
http://jwbs-blog.blogspot.com/2009/03/quickstart-guide-for-nhibernatesearch.html
I also see in my logs NH.Search attempting to delete/insert indexing information via the following lines:
2012-02-07 16:52:19,206 [7] DEBUG NHibernate.Search.Backend.Impl.Lucene.LuceneWorker - remove from Lucene index: Index.Domain.Product#38
2012-02-07 16:52:19,567 [7] DEBUG NHibernate.Search.Backend.Impl.Lucene.LuceneWorker - Add to Lucene index: Index.Domain.Product#38: Document stored/uncompressed,indexed indexed,tokenized>
However, if I completely delete any existing indexes and run the code below, no indexes are generated - keeping in mind that if I do a Save in NH, the indexes are created and data is indexed and I can see the data with Luke.
What am I missing to get NH.Search to index existing data?
Thanks,
Kyle
App.config
<appSettings>
<!-- Make sure property hibernate.search.default.indexBase points to same directory. -->
<add key="Lucene.Net.lockdir" value="C:\Users\knovak\Dropbox\Index\Source\Backup\1.13.2012\Index\LuceneIndex" />
</appSettings>
<nhs-configuration xmlns="urn:nhs-configuration-1.0">
<search-factory>
<property name="hibernate.search.default.directory_provider">NHibernate.Search.Store.FSDirectoryProvider, NHibernate.Search</property>
<property name="hibernate.search.default.indexBase">C:\Users\knovak\Dropbox\Index\Source\Backup\1.13.2012\Index\LuceneIndex</property>
<property name="hibernate.search.indexing_strategy">event</property>
</search-factory>
</nhs-configuration>
Code to wire up NH.Search
config.SetListener(NHibernate.Event.ListenerType.PostUpdate, new FullTextIndexEventListener());
config.SetListener(NHibernate.Event.ListenerType.PostInsert, new FullTextIndexEventListener());
config.SetListener(NHibernate.Event.ListenerType.PostDelete, new FullTextIndexEventListener());
Product->Manufacturer Relationship
[Indexed]
public class Product : IProduct
{
[DocumentId]
public virtual int Id
{
get { return id; }
}
[IndexedEmbedded(Depth = 1, Prefix="MANU_")]
public virtual IManufacturer Manufacturer
{
get { return manufacturer; }
}
}
[Indexed]
public class Manufacturer : IManufacturer
{
[DocumentId]
public virtual int Id
{
get { return id; }
}
[Field(NHibernate.Search.Attributes.Index.Tokenized, Store= Store.Yes)]
public virtual string Name
{
get { return name; }
set { name = value; }
}
}
Code attempting to reindex
public static void IndexEntity(ISession session, Type type)
{
IFullTextSession fullTextSession = Search.CreateFullTextSession(session);
IList list = fullTextSession.CreateCriteria(type).List();
using (ITransaction transaction = fullTextSession.BeginTransaction())
{
foreach (var t in list)
{
fullTextSession.Index(t);
}
transaction.Commit();
}
}