You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Cao Manh Dat (JIRA)" <ji...@apache.org> on 2016/08/09 02:04:22 UTC

[jira] [Updated] (SOLR-9299) Allow Streaming Expressions to use Analyzers

     [ https://issues.apache.org/jira/browse/SOLR-9299?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cao Manh Dat updated SOLR-9299:
-------------------------------
    Attachment: SOLR-9299.patch

Initial patch for this ticket. The patch include a vector() stream, it take docs from search() and terms from features() stream to convert doc to vector. Based on how parallel() stream work, vector also support vectorize docs in parallel ways.

{code}
parallel(
  collection1, 
  vectors(
    search(
      collection1, 
      q="*:*", 
      fl="text_s,id", qt="/export", sort="id desc", partitionKeys="id"),
    field="text_s",
    fieldType="standardtok",
    terms=features(..)),
  workers="2", 
  zkHost=,
  sort="id asc")
{code}

> Allow Streaming Expressions to use Analyzers
> --------------------------------------------
>
>                 Key: SOLR-9299
>                 URL: https://issues.apache.org/jira/browse/SOLR-9299
>             Project: Solr
>          Issue Type: Improvement
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: Joel Bernstein
>         Attachments: SOLR-9299.patch
>
>
> As SOLR-9240 is close to completion it will be important for Streaming Expressions to be able to analyze text fields. This ticket will add this capability.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org