Questions tagged [aws-elasticsearch]

Use this tag for questions related to AWS OpenSearch, which is an open-source, RESTful, distributed search and analytics engine built on Apache Lucene.

Useful Links:

  1. OpenSearch
  2. OpenSearch Service
448 questions
0
votes
1 answer

Forward Traffic from Windows EC2 Instance to ElasticSearch VPC Endpoint

I have Windows EC2 instance I use for my public-facing C# API. The VPC(and related Internet Gateway, subnets, etc) are all default. I've now setup an AWS ElasticSearch service using their more secure VPC Endpoint option (instead of public-facing)…
NullHypothesis
  • 4,286
  • 6
  • 37
  • 79
0
votes
0 answers

Authentication error while connecting to remote elastic search using kibana?

Elastic search is running in remote aws server and I have configured the end point link in local kibana it was showing authentication error. Image corresponding to the error is attached below And the corresponding log message is…
0
votes
2 answers

How to match different instances of the same query in Elasticsearch?

Example 1: My query term is "abcd". My query structure is like this: query: { query_string: { query: "abc", fields: ["field1", "field2", "field3"] } }, size: 50, "highlight": { "fields": { …
1_0
  • 15
  • 1
  • 7
0
votes
1 answer

How I can save user's actions logging to DynamoDB?

I have project on the AWS web services. I use AppSync and serverless. How I can save user action logging for all mutation and query ? For example: user create new Item, I need write action to DB I need save all user's actions.
0
votes
1 answer

node.js elasticsearch API query search request sending a POST method instead of GET

I'm using the elasticsearch API for node.js to make the following query to aws elasticsearch. The elasticsearch documentation says that the request body search uses the GET method. I'm using wireshark to look at the request send by my application…
JosepB
  • 2,205
  • 4
  • 20
  • 40
0
votes
1 answer

How to connect ElasticSearch in AWS lambda

I have created ElasticSearch service's public instance. I can't find any proper examples on how to connect my lambda function to it. I thought of using AWS-SDK (class: AWS.ES) with javascript to make the connection. But can't find how to. How can I…
Lasitha Yapa
  • 4,309
  • 8
  • 38
  • 57
0
votes
1 answer

How to have sample dataset on AWS ElasticSearch or other service provider for SearchKitManager()?

I am trying to use SearchKit and I want to know how to set up an ElasticSearch instance indexed with sample movie dataset. Tried using: AWS ElasticSearch Service. But don't have an actual dataset to upload through bulk API. The one that I have…
0
votes
1 answer

ElasticSearch Mapper Parsing Exception while insertion of data

https://pastebin.com/Xu9CH4B1 I have shared the above data sample that I am trying to insert in Elasticsearch with the Mapping: elastic_search.indices.put_mapping( index=index_name_requester, …
Arup
  • 49
  • 6
0
votes
0 answers

Make Elastic Search return certain items from a list

I have list of complex object (address in below example) where each object has attributes as {string,string,string,string,string}. I want to do filtering on the list and instead of entire document, I just want to get 2 items from the list in the…
0
votes
1 answer

Querying for a substring within a field in elasticsearch

I'm trying to query all documents in an index that have 143=NEWYORK in the msg field. Here's an example: "_index": "sample-2018.07.23", "_type": "logs", "_id": "osDryGQBWeBeIkHntjFo", "_score": 11.664754, "_source":…
Ash_s94
  • 787
  • 6
  • 19
0
votes
0 answers

Python Connect AWS ElasticSearch Domain and upload, retrieve data

I have setup the elasticsearch domain in AWS Elasticsearch Service. It has endpoint like "https://search-testelasticseach-xxxxxxxxxxxxxxxxxxx.us-east-2.es.amazonaws.com". I am trying to connect the AWS Elasticsearch Domain endpoint using IAM users…
0
votes
2 answers

Elastic search 2.3 query issue

I am doing a query on data in python, When I just do a match and sort it works fine. res = es.search( body={"size" : 100, "query": {"match": {"SensorId": "f0038c53272a"}}, "sort":{"StartDateTime": "desc"}}) Now when…
lalit
  • 1,485
  • 2
  • 17
  • 32
0
votes
0 answers

union and intersection operations on elasticsearch

I have two different dynamoDB databases, one for in person students: {teacherID, studentID, year} and one for online class subscribers: {teacherID, subscriberID, subscribed_date} I want to find list of : (1) In person students of that teacher who…
user2759617
  • 597
  • 1
  • 8
  • 20
0
votes
1 answer

AWS Elasticsearch - Suggest how many number shard & replica create for m4.large.elasticsearch instance

I have 3 master node and 5 data node on this instance type m4.large.elasticsearch (2cCPU & 8gb memory) with storage of 512gb. Please suggest max number of shard and replica i can create for above configuration.
0
votes
1 answer

Whether AWS Elasticsearch 6.2 kurumoji plugin support user dictionary

In my appliction I am using AWS Elasticsearch service version 6.2. In this version I have installed kurumoji plugin to support Japanese string. I need to use user_dictionary for few Japanese strings. Whether AWS Elasticsearch (Kurumoji) have…
svs
  • 251
  • 1
  • 4
  • 12
1 2 3
29
30