Hi,

Thank you for attaching the code sample and configration. Most likely this
information will be enough to reproduce the issue.

Meanwhile could you please try to add `defer client.Close()` into your code:

func main() {
  client, err := redis.DialTimeout("tcp", "10.1.14.221:11211", 500 *
time.Microsecond)
  if err != nil {
    panic(err)
  }
  
  defer client.Close()

  foo, err := client.Cmd("GET", "foo").Str()
  if err != nil {
    panic(err)
  }
  fmt.Println("foo: ", foo)
}

I think it should help to fix "Connection reset by peer" exceptions on
Ignite nodes.

Best Regards,
Roman



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to