Solr 流机制

Solr Streams Mechanics

对于 SOLR 流式处理,流式表达式 reduce(merge(search())) 中提到的整个活动流水线是在 SOLR 服务器上还是在客户端执行的?

所有操作都在您的 Solr 集群中的可用节点上执行(例如 using the parallel function)。

并行函数是唯一可以将工作分散到检索实际数据集时未使用的节点的 oen,因此在大多数情况下,当从节点检索数据集时,工作由节点执行。

A worker collection can be any SolrCloud collection that has the /stream handler configured. Unlike normal SolrCloud collections, worker collections don't have to hold any data. Worker collections can be empty collections that exist only to execute streaming expressions.

您可以通过 cURL 调用 Streaming Expression,这表明该功能不依赖于任何客户端功能。