-
Notifications
You must be signed in to change notification settings - Fork 59
Description
Hello, I am having difficulties to pull stored field and scroll_id.
Stored field:
The field is called "text" and in Kibana I can see it is present for the index "document-000002". When specifying "text" as a value for parameter stored_fields I don't get it pulled, instead only "_index", "_type", "_id", "_score" and "_source" are present in the resulting list (first two lines of code). When I tested the line with source parameter, element "_source" was an empty list.
An exemplary record from ES, accessed via Kibana:
{
"_index": "document-000002",
"_type": "_doc",
"_id": "AS_63689606",
"_version": 1,
"_score": 1,
"_source": {
"visitid": "65_63209606",
"processingdate": "2022-08-24 17:24-0400",
"gender": "male",
"facility": "40998",
"user": "JOHNDOE",
"customer": "656"
},
"fields": {
"processingdate": [
"2022-08-24T21:24:00.000Z"
],
"servicedate": [
"2022-08-22T22:05:00.000Z"
],
"text": [
"an exemplary text I want to pull"
]
}
}
Tried code:
library(elastic)
docs <- Search(c, "document-000002", size = 8, stored_fields = "text")$hits$hits
docs <- Search(c, "document-000002", size = 8, stored_fields = c("text", "servicedate"))$hits$hits
docs <- Search(c, "document-000002", size = 8, source = "text")$hits$hits
scroll_id
I would like to use scroll parameter to pull more than the default 10K documents for the same index. I see it should be possible, because:
all_docs <- Search(conn = c, index = "document-000002")
all_docs$hits$total$value
all_docs$`_scroll_id`
total hits amount to more than 8 millions. However, scroll ID is always NULL
I will appreciate any help.
ES version in use: 7.3.1 Elastic package version in use: 1.2.0