How use sort parent documents by a child document's field with specific _nest_path?

2022-11-26 Thread Chatree Srichart
Hello all, I have these 2 parent documents and each of them has 2 children with different nest paths (/path1, and /path2) [ { "id": "parent_1", "children": [ { "id": "child_1.1", "field": "value 1.1", "_nest_path_": "/path1#" }, { "id": "child_1.2", "field": "value 1.2", "_nest_path_": "/path2#"

Re: How use sort parent documents by a child document's field with specific _nest_path?

2022-11-26 Thread Mikhail Khludnev
Hello, Chatree. Please check about `of` param https://solr.apache.org/guide/solr/latest/query-guide/block-join-query-parser.html#block-mask It's really important note. I've made childfield() myself, so I can consult about it, but I don't know is those _nest_path. Unfortunately I'm unaware of them.

Announcing {!mlt_content} Re: MoreLikeThis with externally supplied text, and facets?

2022-11-26 Thread Mikhail Khludnev
Hi, I've made {!mlt_content} accepting external content in cloud mode. See https://issues.apache.org/jira/browse/SOLR-16420 It will be released at 9.2. Meanwhile, you can check it in snapshot like https://ci-builds.apache.org/job/Solr/job/Solr-Artifacts-9x/lastStableBuild/artifact/solr/packaging/bu

Re: Is there a way to run the entire payload of a request through a charFilter and not just the fields?

2022-11-26 Thread Mikhail Khludnev
Hi Matthew. Can it be https://solr.apache.org/guide/solr/latest/configuration-guide/script-update-processor.html ? On Sat, Nov 26, 2022 at 1:15 AM Matthew Castrigno wrote: > I need to filter out some characters in a payload so that SOLR will > recognize the payload as a JSON document. > > The so

Solr create collections on different servers

2022-11-26 Thread Aravind Reddy Jangam
Hi All I started solr in cloud mode & ran below command to create collection ./solr create_collection -c doc1 -s 4 -rf 2 -force I noticed all cores are created in same server can you please share process to create cores on different server, I would like each shard data to be on separate server C