Hi,
unfortunately you are not giving a lot of information so I will try to give you some general hints. Have you turned on debug log? Is there anything there? Any exceptions? Are you using @IndexedEmbedded? If so are you sure that you don't have a cyclic object graph? Do you try to index large collections? If so, have you optimized the Hibernate mapping? This includes lazy loading options as well as a properly configured second level cache.
Also have a look at the different performance options you can use for indexing. You can set Lucene related indexing parameters like max_buffered_docs via the Hibernate configuration file. And of course there is index optimization? If you don't specify any of the automatic index optimization parameters, automatic optimization won't occur and you have to optimize manually.
I hope you got some pointers.
--Hardy
|