opensearch-go
opensearch-go copied to clipboard
Go Client for OpenSearch
### Is your feature request related to a problem? Yes, I am experimenting with the neural/semantic/k-NN search features in 2.13 described by [Neural search tutorial](https://opensearch.org/docs/latest/search-plugins/neural-search-tutorial/) and related docs. After going...
### What is the bug? When releasing 3.1.0 I ran into https://github.com/opensearch-project/opensearch-go/pull/498#issuecomment-2030597365. The release was not appearing in https://pkg.go.dev/github.com/opensearch-project/opensearch-go/v3. A workaround was to navigate to https://pkg.go.dev/github.com/opensearch-project/opensearch-go/[email protected] and hit "request". I...
Hi, We have a problem with `opensearch-go` client but we can't find it so we want to instrument the client in order to improve the observability. Is there an easy...
### Is your feature request related to a problem? I have a Lambda that consumes events from a Kinesis stream and posts them to an OpenSearch Cluster - I use...
### Is your feature request related to a problem? The BulkIndexer allows the configuration of multiple workers via `NumWorkers`. Which `fans out` bulk requests to N go routines which manage...
**What is the bug?** It seems that with a BulkIndexer with 2 workers, I am getting unexpected latency on `BulkIndexer.Add()`. It seems that somehow the workers are not consuming the...
### What is the bug? SigV4 signature by signer may be broken on retry. A retry request may fail with the following error log: ``` The request signature we calculated...
### Is your feature request related to a problem? when I use bulk request to create doc, I want to modify some extraData on CallBack func (onSuccess/OnFailed) ### What solution...
### What is the bug? When having to sign OpenSearch requests (i.e.; AWS Hosted OpenSearch with IAM Auth), it only works with non-port URLs. At least with the [awsdkv2 signer](https://github.com/opensearch-project/opensearch-go/blob/main/signer/awsv2/sdkv2signer.go)...
### Is your feature request related to a problem? OpenSearch _search is limited to max 10_000 docs per request. Users need to do pagination with scroll or point in time....