Re: 500 Error when attempting to post (Solr 9.7, MacOS 15.0.1)

2024-10-23 Thread govind nitk
com/apache/solr/blob/b6e5f9f08339b1407217a2e8d8ec106cd0d0f587/solr/server/etc/security.policy#L32 > ) > > this seems insufficient for MacOS, so I tried changing it to: > > ``` > permission java.io.FilePermission "${java.io.tmpdir}${/}*", > "read,write,delete";

Re: 500 Error when attempting to post (Solr 9.7, MacOS 15.0.1)

2024-10-18 Thread govind nitk
Solr server does not have permission to read a specific file in the Jetty temporary directory for you local setup try starting solr with java.security.manager=allow It will disable the security manager entirely and remove all the security checks enforced by it, allowing SOLR to access any files or

Re: Using min/max value of field in boost query

2024-04-22 Thread govind nitk
ivalued field. > > > https://solr.apache.org/guide/solr/latest/query-guide/function-queries.html#field-function > > > > : Date: Tue, 2 Apr 2024 12:34:42 +0530 > : From: govind nitk > : Reply-To: users@solr.apache.org > : To: users@solr.apache.org > : Subject: Us

Using min/max value of field in boost query

2024-04-02 Thread govind nitk
Hi, currently a working solution is like: 1. First api call - take min, max value of numeric fields say price field 2. In another api call to solr use it like bq="div(sub(price,min_price),sub(max_price,sum(1,min_price)))^0.05" above is a working solution, but its two api based. Can we use the

Re: Quantile of the field as pseudo field

2022-01-30 Thread govind nitk
ide/8_11/the-stats-component.html > > On Thu, Jan 27, 2022 at 10:35 AM govind nitk > wrote: > > > Hello All, > > > > Can I get to listen whether it's possible or not ? > > Am I asking something about computationally expensive operations ? > > > > >

Re: Quantile of the field as pseudo field

2022-01-26 Thread govind nitk
Hello All, Can I get to listen whether it's possible or not ? Am I asking something about computationally expensive operations ? On Thu, Jan 20, 2022 at 7:03 AM govind nitk wrote: > Hello to everyone, > > Question: Find a quantile for a field ( say price) as a pseudo field.

Quantile of the field as pseudo field

2022-01-19 Thread govind nitk
Hello to everyone, Question: Find a quantile for a field ( say price) as a pseudo field. Workaround: Without pseudo field Once the docs are indexed, I can find min and max for a field and update all products with quantile computed. Issues: 1. Once a new update comes for any document, then this n

Re: Solr Synonyms list is not working

2021-11-10 Thread govind nitk
> to update the Synonyms list in Solr did you try using solr's api to update synonyms ? On Wed, Nov 10, 2021 at 6:19 PM Lasith De Silva < lasith.desi...@3chillies.co.uk> wrote: > Hi, > > > > Any update on this? > > > > > > Thanks > > > > Lasith > > > > *From:* Lasith De Silva > *Sent:* 27 Octob

Re: Search inside parent and nested documents

2021-11-01 Thread govind nitk
Can anyone help in using multiple query parsers ? On Sun, Oct 31, 2021 at 8:42 AM govind nitk wrote: > in case of subquery, I used {!terms } query and able to get the sql-join > like operation. > > Can we use multiple query parsers in query ? > Ex. child.q={!dismax ... } {!te

Re: Search inside parent and nested documents

2021-10-30 Thread govind nitk
, Oct 30, 2021 at 1:42 PM govind nitk wrote: > > Solr documentation says, > [subquery] transformer is intended to be an improvement for [child] . > > Will try this out. > > On Sat, Oct 30, 2021 at 1:37 PM govind nitk wrote: > >> Hi, >> >> I am using edismax

Re: Search inside parent and nested documents

2021-10-30 Thread govind nitk
> Solr documentation says, [subquery] transformer is intended to be an improvement for [child] . Will try this out. On Sat, Oct 30, 2021 at 1:37 PM govind nitk wrote: > Hi, > > I am using edismax parser for querying parent documents. With [child ] > transformer, I am able t

Search inside parent and nested documents

2021-10-30 Thread govind nitk
Hi, I am using edismax parser for querying parent documents. With [child ] transformer, I am able to get the child/nested documents of matching parents. But I am curious to know any way to user queryfields for child docs? For example, q= A B C I am trying to get child documents matching these qu

Re: "Negative Boost" removed from Solr 8.4

2021-10-01 Thread govind nitk
@Jan, @Sayanti Thanks for the insights. On Fri, Oct 1, 2021 at 3:24 PM sayanti dey wrote: > Scorer must produce positive scores (LUCENE-7996 > ) > > Scorers are no longer allowed to produce negative scores. If you have > custom query implement

Re: "Negative Boost" removed from Solr 8.4

2021-09-30 Thread govind nitk
Hello Amrit, Can you mention how you are giving a negative boost? I have a working example: category:"Sports"^-1 On Fri, Oct 1, 2021 at 11:45 AM Amrit Sarkar wrote: > Hi fellow users, > > I am not able to locate any JIRA for removal of "Using Negative Boost" in > Solr 8.4, nor any discussio