Git Product home page Git Product logo

Comments (3)

karmi avatar karmi commented on May 18, 2024 1

So, the fundamental principle of the "low-level" client is that it doesn't "touch" the body, either for request in response; this is for multiple reasons:

  • To provide as much performance as possible, the body is not parsed, and only passed around as an io.Reader, and handling the body is left to the calling code.
  • To allow using any third-party JSON package, without declaring some kind of contract it has to implement.

Most responses in Elasticsearch will have at least a top-level predictable response structure.

That's a pretty brave statement :) In fact, Elasticsearch has quite a lot of completely different response structures, not only for different APIs, but also within a single API, like Search.

As of now, there is no formal specification of the request and response body structures — as we have for the API "surface" —, making it impractical (or impossible) to provide a reliable and maintainable implementation of the structure. (The maintainability of the olivere/elasticsearch Go package and the NEST client suffers due to this fact.)

With that in mind, you absolutely don't have to "define response type structs all over the place".

First of all, the package implements the String() method for responses, which makes it possible to pass it eg to fmt.Println, as you see in the README examples, in order to make one of the obvious use cases ("I want to see the response") as easy as possible. (There's also a built-in logging with multiple formats for that.)

Second, when it comes to the request body, the library provides a helper, esutil.JSONReader, so you can pass a custom struct with a document, or a map[string]interface{} with a query, to the client without messing around with conversion to io.Reader.

Third, in many cases, it's impractical to define the full representation of the Elasticsearch response, because you're interested only in specific parts. For this, the tidwall/gjson package is very convenient — and much faster.

Have you seen the examples in _examples/encoding? They may provide some inspiration about different approaches to decoding the response bodies.

from go-elasticsearch.

karmi avatar karmi commented on May 18, 2024 1

Hello, any news here?

from go-elasticsearch.

karmi avatar karmi commented on May 18, 2024

Hi @jordansissel, closing for now, please re-open if you want to discuss the topic more?

from go-elasticsearch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.