Git Product home page Git Product logo

Comments (9)

karmi avatar karmi commented on May 18, 2024

Hello, first of all, why are you using a configuration with so many empty fields, and why do you customize the default transport at all?

Second, what version of Go and the package is this? Ie. can you paste the relevant import lines, and the output of elasticsearch.Version()?

from go-elasticsearch.

tx991020 avatar tx991020 commented on May 18, 2024

I don't understand how go.mod works, it is go.mod not imported properly。now it is ok

from go-elasticsearch.

karmi avatar karmi commented on May 18, 2024

Cool, so it's OK to close the issue?

from go-elasticsearch.

 avatar commented on May 18, 2024

Hi karmi, there is something fishy going on here. This is what I ran :

package main
import (
	"github.com/elastic/go-elasticsearch"
	"reflect"
	"fmt"
)

func main() {
	cfg := elasticsearch.Config{}
    e := reflect.ValueOf(&cfg).Elem()
    for i := 0; i < e.NumField(); i++ {
        varName := e.Type().Field(i).Name
        varType := e.Type().Field(i).Type
        varValue := e.Field(i).Interface()
        fmt.Printf("%v %v %v\n", varName,varType,varValue)
    }
}

and this is what I get in the output:

Addresses []string []
Transport http.RoundTripper <nil>

version in go.mod file :

github.com/elastic/go-elasticsearch v0.0.0
github.com/elastic/go-elasticsearch/v8 v8.0.0-20200408073057-6f36a473b19f

Can I get any help ?

from go-elasticsearch.

karmi avatar karmi commented on May 18, 2024

Hey! Can you remove this line from go.mod?

github.com/elastic/go-elasticsearch v0.0.0

Go perhaps resolves this to the initial version of the package, which didn't have the configuration fields. Sometimes IDEs and editor plugins mess up the import declarations.

Use the import with the version suffix — the one you have points to a recent commit on the master branch:

github.com/elastic/go-elasticsearch/v8 v8.0.0-20200408073057-6f36a473b19f

Note: In general, use a major version of the package matching the major version of Elasticsearch. For example, if you're using Elastiscsearch 7.x, use either the 7.x branch, or a specific tag.

from go-elasticsearch.

 avatar commented on May 18, 2024

github.com/elastic/go-elasticsearch v0.0.0
The above line is auto added anyway right ?
The issue still persists..

from go-elasticsearch.

karmi avatar karmi commented on May 18, 2024

As I'm saying, your editor might be adding this, but that line is incorrect — that points to a really old version. You have to remove the line.

from go-elasticsearch.

 avatar commented on May 18, 2024

Got it!, Awesome. Works now after I changed that.
my go.mod file now has:
github.com/elastic/go-elasticsearch/v7 v7.5.1-0.20200429062015-142e0c281dde
Thanks Karmi!

from go-elasticsearch.

karmi avatar karmi commented on May 18, 2024

You're welcome — glad that it's working!


Note: Go resolver is a bit funky, note that it seems to point to version v7.5.1, but if you decipher the date and the commit, it points to a recent commit. When you print elasticsearch.Version, that should tell the truth about the version you're using.

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.