- Notifications
You must be signed in to change notification settings - Fork631
The official Go client for Elasticsearch
License
elastic/go-elasticsearch
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The official Go client forElasticsearch.
Download the latest version of Elasticsearchorsign-upfor a free trial of Elastic Cloud.
Starting from version8.12.0
, this library follow the Go languagepolicy. Each major Go release is supported until there are two newer major releases. For example, Go 1.5 was supported until the Go 1.7 release, and Go 1.6 was supported until the Go 1.8 release.
Language clients are forward compatible; meaning that clients support communicating with greater or equal minor versions of Elasticsearch.Elasticsearch language clients are only backwards compatible with default distributions and without guarantees made.
When using Go modules, include the version in the import path, and specify either an explicit version or a branch:
require github.com/elastic/go-elasticsearch/v9 v9.x.xrequire github.com/elastic/go-elasticsearch/v8 v8.x.x
It's possible to use multiple versions of the client in a single project:
// go.modgithub.com/elastic/go-elasticsearch/v8 v8.18.0github.com/elastic/go-elasticsearch/v9 v9.0.0// main.goimport ( elasticsearch7 "github.com/elastic/go-elasticsearch/v8" elasticsearch8 "github.com/elastic/go-elasticsearch/v9")// ...es8, _ := elasticsearch7.NewDefaultClient()es9, _ := elasticsearch8.NewDefaultClient()
Themain
branch of the client is compatible with the currentmaster
branch of Elasticsearch.
Refer to theInstallation sectionof the getting started documentation.
Refer to theConnecting sectionof the getting started documentation.
- Creating an index
- Indexing documents
- Getting documents
- Searching documents
- Updating documents
- Deleting documents
- Deleting an index
Theesutil
package provides convenience helpers for working with the client. At the moment, it provides theesutil.JSONReader()
and theesutil.BulkIndexer
helpers.
The_examples
folder contains a number of recipes and comprehensive examples to get you started with the client, including configuration and customization of the client, using a custom certificate authority (CA) for security (TLS), mocking the transport for unit tests, embedding the client in a custom type, building queries, performing requests individually and in bulk, and parsing the responses.
This software is licensed under theApache 2 license. SeeNOTICE.
About
The official Go client for Elasticsearch
Topics
Resources
License
Code of conduct
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.