Coder Social home page Coder Social logo

Comments (3)

iamqizhao avatar iamqizhao commented on July 19, 2024

On Mon, Mar 23, 2015 at 5:07 PM, Max Hawkins [email protected]
wrote:

Setting the grpc.WithTimeout option in grpc.Dial causes all RPCs to fail
with the error "grpc: the client connection is closing" after a server
restart.

Steps to reproduce:

Create a client with a connection timeout:

conn, err := grpc.Dial(address, grpc.WithTimeout(timeout))

2. Make an RPC call. It succeeds.
  1. Shut down the server
  2. Make an RPC call with a deadline. As expected, it cannot connect
    and fails: 'rpc error: code = 4 desc = "context deadline exceeded"'
  3. Start up the server
  4. Make another RPC call. I expect this to work. Instead, it and each
    subsequent RPC fails with 'rpc error: code = 2 desc = "grpc: the
    client connection is closing"'

This is the expected behavior. Use Dial timeout only when you needed. If
you use it, make sure it is long enough to accommodate the use case that
you do not want to fail.


Reply to this email directly or view it on GitHub
#133.

from grpc-go.

maxhawkins avatar maxhawkins commented on July 19, 2024

Ah, I see. I assumed this only applied to the initial connection. I suppose this makes sense.

I'll close this issue. Thanks!

from grpc-go.

shafreeck avatar shafreeck commented on July 19, 2024

Now I know grpc.WithTimeout(timeout) controls the timeout of grpc.Dail including the time cost of retries. Sometimes in fact I want to set the timeout of tcp connect which avoid blocking the goroutine and I'd like it to retry many times.

from grpc-go.

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.