[ https://issues.apache.org/jira/browse/SOLR-1499?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13183535#comment-13183535 ]
Mikhail Khludnev commented on SOLR-1499: ---------------------------------------- @Noble, Agree. And why SolrDatasource can't get an url or q= or q=..&fq=... part from entity processor and return Iterator<Map<>> which is actually (or adaptable from) SolrDocumentList? @Lance, Hypothetically why SqlEntityProcessor can't consume SolrDocumentList from SolrDatasource? It seems I've missed something. Thanks for your replies. I'm asking because I need to make a lot of index scaffolding work like generate some random documents, etc. I feel something common with this ticket. I'm considering to employ ScriptTransformer idea and create ScriptDatasource or ScriptEntityProcessor. The former one seems much promising to me, because it can be used with any of entity processors. As an a query I consider just a string which is passed to script engine for evaluation. WDYT? > SolrEntityProcessor - DIH EntityProcessor that queries an external Solr via > SolrJ > --------------------------------------------------------------------------------- > > Key: SOLR-1499 > URL: https://issues.apache.org/jira/browse/SOLR-1499 > Project: Solr > Issue Type: New Feature > Components: contrib - DataImportHandler > Reporter: Lance Norskog > Fix For: 3.6, 4.0 > > Attachments: SOLR-1499-3x.patch, SOLR-1499-trunk.patch, > SOLR-1499.core.rev1182017.patch, SOLR-1499.patch, SOLR-1499.patch, > SOLR-1499.patch, SOLR-1499.patch, SOLR-1499.patch, SOLR-1499.patch, > SOLR-1499.patch, SOLR-1499.patch, SOLR-1499.patch, > SOLR-1499.tests.rev1182017.patch > > > The SolrEntityProcessor queries an external Solr instance. The Solr documents > returned are unpacked and emitted as DIH fields. > The SolrEntityProcessor uses the following attributes: > * solr='http://localhost:8983/solr/sms' > ** This gives the URL of the target Solr instance. > *** Note: the connection to the target Solr uses the binary SolrJ format. > * query='Jefferson&sort=id+asc' > ** This gives the base query string use with Solr. It can include any > standard Solr request parameter. This attribute is processed under the > variable resolution rules and can be driven in an inner stage of the indexing > pipeline. > * rows='10' > ** This gives the number of rows to fetch per request.. > ** The SolrEntityProcessor always fetches every document that matches the > request.. > * fields='id,tag' > ** This selects the fields to be returned from the Solr request. > ** These must also be declared as <field> elements. > ** As with all fields, template processors can be used to alter the contents > to be passed downwards. > * timeout='30' > ** This limits the query to 5 seconds. This can be used as a fail-safe to > prevent the indexing session from freezing up. By default the timeout is 5 > minutes. > Limitations: > * Solr errors are not handled correctly. > * Loop control constructs have not been tested. > * Multi-valued returned fields have not been tested. > The unit tests give examples of how to use it as the root entity and an inner > entity. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org