Hello,
Thank you for considering my post :)
Quote:
Is it possible that the identifier of you Abonne class is heavy on memory?
Actually i don't think so, here is the identifier:
Code:
@Id
@DocumentId
private String nab9;
it's limited to 9 character maximum; do you think it's really a problem?
this class contains about 35 string attributes.
my current jvm configuration :
Code:
-vmargs
-Dosgi.requiredJavaVersion=1.5
-XX:MaxPermSize=128m
-XX:PermSize=128m
-Xmn100m
-Xms512m
-Xmx1024m
-XX:+TraceClassloading
-XX:+TraceClassUnloading
-Djava.net.preferIPv4Stack=true
-XX:ParallelGCThreads={5}
-XX:+CMSClassUnloadingEnabled
I'm trying someworakround to get this batch update ineterfering with indexes, but I'm convinced that the solution is that MassIndexer: If i'm not missing any detail, post-update listeners do not listen to hibernateTemplate.bulkUpdate, so the only way to make lucene indexes up to date, is to reindex all the database after such modification.
Do you have any suggestion?