-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add elasticsearch _score and highlights to ElasticsearchQueryResult #16909
base: main
Are you sure you want to change the base?
Add elasticsearch _score and highlights to ElasticsearchQueryResult #16909
Conversation
src/OrchardCore/OrchardCore.Search.Elasticsearch.Core/Services/ElasticQuerySource.cs
Outdated
Show resolved
Hide resolved
results.Add(new JsonObject(document.Select(x => | ||
KeyValuePair.Create(x.Key, (JsonNode)JsonValue.Create(x.Value.ToString()))))); | ||
var keyValuePairs = document.Source.Select(x => | ||
KeyValuePair.Create(x.Key, (JsonNode)JsonValue.Create(x.Value.ToString()))).ToList(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
KeyValuePair.Create(x.Key, (JsonNode)JsonValue.Create(x.Value.ToString()))).ToList(); | |
KeyValuePair.Create(x.Key, (JsonNode)JsonValue.Create(x.Value.ToString()))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/OrchardCore/OrchardCore.Search.Elasticsearch.Core/Services/ElasticQuerySource.cs
Outdated
Show resolved
Hide resolved
src/OrchardCore/OrchardCore.Search.Elasticsearch.Core/Services/ElasticQueryService.cs
Outdated
Show resolved
Hide resolved
@@ -78,10 +81,17 @@ public async Task<IQueryResults> ExecuteQueryAsync(Query query, IDictionary<stri | |||
{ | |||
var results = new List<JsonObject>(); | |||
|
|||
foreach (var document in docs.TopDocs) | |||
foreach (var document in docs.Hits) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why Hits
here not TopDocs
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not good. This is the old way of returning results. You should use TopDocs now. This will alter all the search results.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hits contain all the data I need (including _score and highlights), topDocs is the information that contains in Hits.Source.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should be able to use return _score
and highlights
in the TopDocs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@denispetrische I think you should modify the ElasticQueryService
class, before the line "hits.Add(row);" you could add
row["_source"] = hit.Source;
row["highlight"] = hit.Highlight;
Then in the source you'll have that info available to be returned.
But, if you add highlight and score, you'll need to probably also use them when returning ContentItems. I am wondering if we can return a new object instead of returning content item directly something like
public class ElasticsearchQueryResult
{
public string Key { get; set; }
public double? Score { get; set; }
public string Highlight { get; set; }
public IEnumerable<ContentItem> ContentItems { get; set; }
}
But I am not sure about the extend of adding ElasticsearchQueryResult
instead of returning ContentItems because it likely to require changes to IQueryResults
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But, if you add highlight and score, you'll need to probably also use them when returning ContentItems.
I am not sure about the extend of adding ElasticsearchQueryResult instead of returning ContentItems because it likely to require changes to IQueryResults
Yeah, It's easier to add _score and highlight only for object return type). Will it be okay if I leave contentItems as that, without score and highlight?
I think there is no problem to get all the info I need with object return type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Skrypt would be better as answering these questions as he is more involved in the implementation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Skrypt What do you think?)
src/OrchardCore/OrchardCore.Search.Elasticsearch.Core/Services/ElasticQueryService.cs
Show resolved
Hide resolved
…/ElasticQuerySource.cs Co-authored-by: Mike Alhayek <mike@crestapps.com>
…/ElasticQuerySource.cs Co-authored-by: Mike Alhayek <mike@crestapps.com>
…/ElasticQueryService.cs Co-authored-by: Mike Alhayek <mike@crestapps.com>
Ok, I'm trying to understand what you are trying to achieve or fix here in this PR. I will need to run this PR locally and it will take some time so that I can review everything and see what's happening when debugging. I don't remember everything related with ElasticSearch. These proposed changes may be appropriate or not depending on what we did with Lucene implementation and we need to make sure that both implementations are similar. And the part involving GraphQL is probably a Query Schema that you expose for GraphQL simply right? |
Right) |
I have a task to get low level elasticsearch information such as _score of a hit and highlights. And for now it is impossible to get it.
So this fix: