1,173
questions
0
votes
1
answer
9
views
OpenSearch: Querying elements of an array
I suppose this should be obvious but I'm a raw noob wrt OpenSearch and I'm clearly missing something:
I have a collection of documents that contain arrays of keywords of the form:
{
"keywords&...
0
votes
0
answers
7
views
Does llamaindex hybrid search use a reranker?
LlamaIndex (based on OpenSearch) offers the option to use a hybrid search algorithm which should include a mix of both lexical and semantic search.
The vector store class definition is in this file ...
0
votes
0
answers
7
views
How to disable authentication in open search security plugin
I’ve installed the security plugin in OpenSearch version 2.15 and followed the developer guide on GitHub. However, when I access localhost:9200, it prompts me for a username and password. Although ...
-1
votes
0
answers
21
views
Ideas on storing telemetry data? [closed]
We have a service that generates opentelemetry spans and metrics
We want to direct spans to opensearch and store metrics in timestream db.
What's the best way possible?
Some of the possible options.
...
0
votes
0
answers
14
views
Amazon OpenSearch: When setting up cross cluster replication, I am getting the error: /_cluster/settings' payload is not allowed
I am trying to setup cross cluster replication (CCR) betweeen two domains that exist in the same account using Lambda python code, snippet of my code looks like this:
leader_domain_endpoint = '...
0
votes
0
answers
31
views
Terraform - AWS KMS Key
I am working with a Terraform workspace that includes both a single-region KMS key and global resources, such as IAM roles. We're now expanding the project to multiple regions. Based on AWS ...
0
votes
1
answer
10
views
How to filter documents in OpenSearch by same propery using AND (filter/must)?
Using this index:
PUT test
{
"mappings": {
"properties": {
"id": {
"type": "keyword"
},
"body": {
&...
0
votes
1
answer
37
views
AWS Opensearch serverless - 403 Forbidden for API access attempt
I have setup an AWS opensearch serverless collection and have one index.
In my opensearch serverless I have the following data access policy:
[
{
"Rules": [
{
"...
0
votes
0
answers
16
views
Opensearch Camel component (4.8.1), "indexRequestBuilder" is null issue
I'm working on a proof of concept to connect Apache Camel with OpenSearch, but I'm running into a consistent issue. Here's the setup and the problem I'm encountering:
Setup:
Opensearch version: 2.17....
0
votes
0
answers
15
views
How to convert sentence-transformers/msmarco-distilbert-base-tas-b model to torchscript
Hii everyone I need to host a custom hugging face model on opensearch which should include the following scalar_quantization logic.
Model: sentence-transformers/msmarco-distilbert-base-tas-b
changes ...
0
votes
0
answers
27
views
Authenticated requests to OpenSearch service with Cognito user
I've got a AWS OpenSearch service configured with Cognito authentication for OpenSearch Dashboards
I followed the steps: created a user pool, identity pool, the roles, and new user. At the end I ...
-6
votes
1
answer
95
views
How to upload a csv to aws opensearch? [closed]
I ran into this https://www.npmjs.com/package/elasticsearch-csv, via this plugin one can directly upload a csv and index it in elastic search. is there something similar for aws opensearch? I realize ...
0
votes
1
answer
20
views
Member must satisfy regular expression pattern: .*
I'm creating a new ElasticSearch/OpenSearch domain from the AWS CLI with an access policy defined in shell variable with an open access policy but it fails.
ACCESS_POLICY_JSON=$(cat <<EOF
{
&...
0
votes
1
answer
39
views
I am curious about the time complexity of search and ranking in Lucene
I am curious about the time complexity of search and ranking in Lucene.
I understand that Lucene supports search using IndexSearcher. IndexWriter builds and stores the documents in an inverted index ...
0
votes
0
answers
21
views
Opensearch Query Returning Highlights which don't Match Highlight Query
I am running an elasticsearch query which looks like the following with require_field_match set to True. I pass the query as both the main and highlight query to ensure my highlights match my logic.
...