Is the lucene.apache.org link dead?

2021-01-31 Thread Taisuke Miyazaki
Hi, I tried to open the Solr News page to check the contents of the solr release, but it seems to get Not Found. I think it's either the wrong link or the link is messed up. If there is a problem, do you think you can fix it? Sorry if this has already been discussed somewhere. Solr News Page:

Re: When are the score values evaluated?

2020-10-26 Thread Taisuke Miyazaki
This was my mistake. Thank you. Taisuke 2020年10月23日(金) 15:02 Taisuke Miyazaki : > Thanks. > > I analyzed it as explain=true and this is what I found. > Why does this behave this way? > > fq=foo:1 > bq=foo:(1)^1 > bf=sum(200) > > If you do this, the score wi

Re: When are the score values evaluated?

2020-10-23 Thread Taisuke Miyazaki
is marked as 2.0E7 on EXPLAIN.) Regards, Taisuke 2020年10月22日(木) 21:41 Erick Erickson : > You’d get a much better idea of what goes on > if you added =true and analyzed the > output. That’d show you exactly what is > calculated when. > > Best, > Erick > > > On Oct

When are the score values evaluated?

2020-10-22 Thread Taisuke Miyazaki
Hi, If you use a high value for the score, the values on the smaller scale are ignored. Example : bq = foo:(1.0)^1.0 bf = sum(200) When I do this, the additional score for "foo" at 1.0 does not affect the sort order. I'm assuming this is an issue with the precision of the score floating

Proposals for health checks new parameters

2020-10-01 Thread Taisuke Miyazaki
Hi, I want to add a parameter to the handler for health checks. In our case, we want to add a parameter like "failIfEmptyCores" because we want the state of a node with no core to be an error. I don't think it will change the existing behavior by setting default to false. What do you think about

Problem: "pull" replica commits to leader?

2020-09-14 Thread Taisuke Miyazaki
Hi, everyone, The data is not synchronized to the pull replica from tlog solr node. We are using a replica of tlog and pull. We are trying to change the version of solr we use from 7.5.0 to 8.6.2. Configuration : The pull node is being started after the tlog node is filled with data. Problem.

Forwarding a request to a stopped instance

2020-07-29 Thread Taisuke Miyazaki
Current Configuration Solr Version: 7.5.0 Operating mode: solrcloud Number of shards: 1 Configuration of nodes: 1 tlog reader (static) One tlog replica (static) Multiple pull replicas (started dynamically by AutoScalingGroup in aws) Startup activity : 1. instance launched by AutoScalingGroup

Re: On the delay in electing a leader when the leader is dead(Solr 7.5)

2020-04-28 Thread Taisuke Miyazaki
.com/post/understanding-transaction-logs-softcommit-and-commit-in-sorlcloud/ > > I’d set it to, say, 15 seconds (openSearcher=false). This is entirely > independent of the soft commit interval which governs the ability > to search the docs… > > Best, > Erick > > > On Apr

On the delay in electing a leader when the leader is dead(Solr 7.5)

2020-04-14 Thread Taisuke Miyazaki
Hi, Made Of: tlog replicas + pull replicas Writing: leader and tlog replicas Loading: pull replica only Solr version: 7.5 Number of shards: 1 Write throughput: 1 docs/minutes Number of documents: 4,500,000 Size per document: about 4KB During verification, the replay of the transaction log

Re: If the leader dies, will the data be lost?

2020-04-06 Thread Taisuke Miyazaki
ower until some event changes things > again. > > Best, > Erick > > > On Apr 6, 2020, at 1:53 AM, Taisuke Miyazaki > wrote: > > > > Hi, > > Using solr 7.5.0 on solr cloud, and replica type is tlog. > > > > If a leader dies, how is the re-election of

If the leader dies, will the data be lost?

2020-04-05 Thread Taisuke Miyazaki
Hi, Using solr 7.5.0 on solr cloud, and replica type is tlog. If a leader dies, how is the re-election of the leader and the synchronization of the replicas done? In my opinion. Leader dies→ New tlog replica tries to become Leader→ Replays tlogs not reflected in the index→ Becomes Leader Is this

Re: How to get boosted field and values?

2020-03-25 Thread Taisuke Miyazaki
debug" query parameter or "explain" document transformer will help > you > to know which fields and query conditions are boosted. > > https://lucene.apache.org/solr/guide/7_5/common-query-parameters.html > https://lucene.apache.org/solr/guide/7_5/transforming-result-docu

Re: How to get boosted field and values?

2020-03-22 Thread Taisuke Miyazaki
t; q= features:2^=1.0 AND features:3^=5.0 > > in this example your document id: 3 will have a score of 6.0 > > Not sure if this answers your question, if not feel free to elaborate more. > > Cheers > > ------ > Alessandro Benedetti > Search Consultant, R Sof

How to get boosted field and values?

2020-03-19 Thread Taisuke Miyazaki
I'm using Solr 7.5.0. I want to get boosted field and values per documents. e.g. documents: id: 1, features: [1] id: 2, features: [1,2] id: 3, features: [1,2,3] query: bq: features:2^1.0 AND features:3^1.0 I expect results like below. boosted: - id: 2 - field: features, value: 2