What is it you want help with? You haven't told us what the problem you're trying to solve is. Are you asking how to speed up indexing? What have you tried? Have you looked at: http://wiki.apache.org/solr/FAQ#Performance?
Best Erick On Tue, Jun 21, 2011 at 2:16 AM, Jonty Rhods <jonty.rh...@gmail.com> wrote: > I am using solrj to index the data. I have around 50000 docs indexed. As at > the time of commit due to lock server stop giving response so I was > calculating commit time: > > double starttemp = System.currentTimeMillis(); > server.add(docs); > server.commit(); > System.out.println("total time in commit = " + (System.currentTimeMillis() - > starttemp)/1000); > > It taking around 9 second to commit the 5000 docs with 15 fields. However I > am not confirm the lock time of index whether it is start > since server.add(docs); time or server.commit(); time only. > > If I am changing from above to following > > server.add(docs); > double starttemp = System.currentTimeMillis(); > server.commit(); > System.out.println("total time in commit = " + (System.currentTimeMillis() - > starttemp)/1000); > > then commit time becomes less then 1 second. I am not sure which one is > right. > > please help. > > regards > Jonty >