On Fri, Oct 9, 2009 at 6:10 PM, Pravin Karne <pravin_ka...@persistent.co.in>wrote:
> Hi, > I am new to solr. I have configured solr successfully and its working > smoothly. > > I have one query: > > I want index large data(around 100GB).So can we store these indexes on > different machine as distributed system. > > Are you talking about one large index with 100GB of data? Or do you plan to shard the data into multiple smaller indexes and use Solr's distributed search? > So there will be one master and more slave . Also we have to keep these > data in sync over all the node. > > So when I send update request solr will update that record from > corresponding node. > > Solr will not update corresponding node automatically. You have to make sure to send the add/delete request to the master of the correct shard. Solr does not support update operation (it is always a replace by uniqueKey). > In short I want to create scalable and optimal search system. > > Is this possible with solr? > > Of course you can create a scalable and optimal search system with Solr. We do that all the time ;) -- Regards, Shalin Shekhar Mangar.