Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I connect Jet Brains DataGrip to an Elasticsearch instance?

I have Jet Brains DataGrip, I also have an elasticsearch instance running locally in docker exposed on a known port via the tcp protocol.

How can I connect DataGrip to my elasticsearch instance?

DataGrip doesn't list it as a type of database to be connected to, nor does googling seem to reveal anything useful to me.

like image 486
Chor Hatara Hud'u Keturi Avatar asked May 02 '19 12:05

Chor Hatara Hud'u Keturi


People also ask

Does Elasticsearch support DataGrip?

DataGrip doesn't list it as a type of database to be connected to, nor does googling seem to reveal anything useful to me. You can't connect to an Elasticsearch instance via Datagrip. It doesn't have that feature. You can try ElasticHQ or elasticsearch-gui for this.

How do you code in DataGrip?

In the editor, press Ctrl+Shift+Enter or from the main menu select Code | Complete Current Statement. DataGrip inserts the required trailing comma automatically in structs, slices, and other composite literals. The caret is moved to the position where you can start typing the next statement.


1 Answers

You can try Elasticsearch Plugin for Intellij IDEA (DataGrip). It uses REST API, not a JDBC. The main functionality:

  • Connecting to cluster with Basic Auth, SSL
  • Viewing main information about clusters and indices
  • Convenient sending requests with a set of commonly used requests
like image 113
anton Avatar answered Nov 05 '22 02:11

anton