-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: Hibernate Search - MassIndexer not working.
PostPosted: Mon Jul 01, 2013 10:10 am 
Newbie

Joined: Mon Jul 01, 2013 9:29 am
Posts: 2
Hi,

im testing around with Hibernate search and i got a Database with thousands of records which need to be indexed. But the MassIndexer does nothing.
Im Using this code:

Code:
FullTextSession session = Search.getFullTextSession((Session) entityManager.getDelegate());
MassIndexerProgressMonitor monitor = new SimpleIndexingProgressMonitor(1);
try {
    session.createIndexer()
   .progressMonitor( monitor )
        .startAndWait();
}
catch (InterruptedException e) {
    e.printStackTrace();
}


It is wrapped in a @Transactional method and my Entities are created with Roo but also annotated with @Entity. The above code just creates the Index if it is not there but actually does not work. Indexing manually with session.index(instance) works fine but well it takes its time ;).

Can someone help me with this ? I Tried some other options with threadcounts and so on but the result is all the same. It just hankgs up.


Top
 Profile  
 
 Post subject: Re: Hibernate Search - MassIndexer not working.
PostPosted: Tue Jul 02, 2013 4:48 pm 
Hibernate Team
Hibernate Team

Joined: Fri Oct 05, 2007 4:47 pm
Posts: 2536
Location: Third rock from the Sun
Hi,
what do you mean with "it doesn't work" ?
If you mean it's blocking without making progress, try with a larger pool of JDBC connections.

_________________
Sanne
http://in.relation.to/


Top
 Profile  
 
 Post subject: Re: Hibernate Search - MassIndexer not working.
PostPosted: Thu Jul 04, 2013 10:07 am 
Newbie

Joined: Mon Jul 01, 2013 9:29 am
Posts: 2
Yes thanks that solved it.

But the monitor is still not logging any progress im missing something here?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.