OK, I was thrown off by your use of "schema", I thought
you were talking about schema.xml....

Anyway, assuming you have some kind of loop that pages
through the documents via Solr, gets the results and then
sends them to another Solr server... yeah, that'll be slow.
You have the "deep paging" problem here.

I'd consider dropping into Lucene to spin through the
documents, fetch them and then assemble what you need
into a new SolrInputDocument that you then send to your
new server.

You really aren't moving any "interesting" data. By that I mean
by the time things go through your intermediate code, they're
pretty much primitive types so the fact that the various Solr
indexes have different schemas really isn't relevant.

Best
Erick


On Tue, Mar 20, 2012 at 1:17 PM, in.abdul <in.ab...@gmail.com> wrote:
> Thanks ..
> i need to index data from one solr  to another solr with different analyser
> ..
> Now i am able to do this by querying from solr which will be index into
> another solr
> NOTE: As the field which i need to reindex is stored so it is easy by as my
> index has 31 lakh record it is taking lot of time .. (suggest me for
> better performance)
>
>            Thanks and Regards,
>        S SYED ABDUL KATHER
>
>
>
> On Tue, Mar 13, 2012 at 10:05 PM, Erick Erickson [via Lucene] <
> ml-node+s472066n3822752...@n3.nabble.com> wrote:
>
>> Why would you want to? This seems like an
>> XY problem, see:
>> http://people.apache.org/~hossman/#xyproblem
>>
>> See the "confFiles" section here:
>> http://wiki.apache.org/solr/SolrReplication
>> although it mentions solrconfig.xml, it
>> might work with schema.xml.
>>
>> BUT: This strikes me as really, really
>> dangerous. I'm having a hard time
>> thinking of a use-case that this makes sense
>> for, so be very cautious. Having an index
>> created with one schema and searched
>> on with another is a recipe for disaster
>> IMO unless you're very careful.
>>
>> Best
>> Erick
>>
>> On Tue, Mar 13, 2012 at 3:40 AM, syed kather <[hidden 
>> email]<http://user/SendEmail.jtp?type=node&node=3822752&i=0>>
>> wrote:
>> > Team,
>> >  Is it possible to do replication with different Schema  in solr ?
>> >  If not how can i acheive this .
>> >
>> > Can any one can give an idea to do this
>> > advance thanks ..
>> >
>> >            Thanks and Regards,
>> >        S SYED ABDUL KATHER
>>
>>
>> ------------------------------
>>  If you reply to this email, your message will be added to the discussion
>> below:
>>
>> http://lucene.472066.n3.nabble.com/Replication-with-different-schema-tp3821672p3822752.html
>> To unsubscribe from Lucene, click 
>> here<http://lucene.472066.n3.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=472066&code=aW4uYWJkdWxAZ21haWwuY29tfDQ3MjA2NnwxMDczOTUyNDEw>
>> .
>> NAML<http://lucene.472066.n3.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>>
>
>
> -----
> THANKS AND REGARDS,
> SYED ABDUL KATHER
> --
> View this message in context: 
> http://lucene.472066.n3.nabble.com/Replication-with-different-schema-tp3821672p3843068.html
> Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to