Coder Social home page Coder Social logo

Concurrency about grpc-go HOT 7 CLOSED

grpc avatar grpc commented on July 19, 2024
Concurrency

from grpc-go.

Comments (7)

dfawley avatar dfawley commented on July 19, 2024 2

That's helpful, thanks, but doesn't quite clarify if a single client object can be used by all those "multiple goroutines". It sounds like the answer is yes. This example suggests the same. Is that right?

However, a stream can't be shared.

That all sounds right to me.

@trevorgray, these kinds of concurrency topics are apparently still not documented, per #682.

Documentation is a well-known deficiency that I hope to address sometime this quarter.

from grpc-go.

timbunce avatar timbunce commented on July 19, 2024 1

Trying to summarize for myself...

@rubenv asks:

Can I use a client from different threads in parallel?

@iamqizhao replies:

On client, if you want to perform multiple rpc in parallel, you should spawn multiple goroutines to do that since the rpc is synchronous/blocking

That's helpful, thanks, but doesn't quite clarify if a single client object can be used by all those "multiple goroutines". It sounds like the answer is yes. This example suggests the same. Is that right?

However, a stream can't be shared.

@trevorgray, these kinds of concurrency topics are apparently still not documented, per #682.

from grpc-go.

iamqizhao avatar iamqizhao commented on July 19, 2024

On Fri, Feb 27, 2015 at 9:40 AM, Ruben Vermeersch [email protected]
wrote:

How does grpc handle concurrency? Can I use a client from different
threads in parallel?

On client, if you want to perform multiple rpc in parallel, you should
spawn multiple goroutines to do that since the rpc is synchronous/blocking.


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

from grpc-go.

jpfuentes2 avatar jpfuentes2 commented on July 19, 2024

since the rpc is synchronous/blocking

That's what I got from looking at the route_guide example: the server's end points access a slice without locks. Is this considered quasi similar to an actor model? Is there documentation about this fact (I might have missed it)?

from grpc-go.

iamqizhao avatar iamqizhao commented on July 19, 2024

On Fri, Feb 27, 2015 at 11:27 AM, Jacques Fuentes [email protected]
wrote:

since the rpc is synchronous/blocking

That's what I got from looking at the route_guide example: the server's
end points access a slice without locks. Is this considered quasi similar
to an actor model? Is there documentation about this fact (I might have
missed it)?

To be clear, I was talking about client side. On the server side, each rpc
still has its own goroutine but the concurrency is model is different --
the goroutine is spawned by grpc internals instead of applications.

Were you talking about "savedFeatures" slice? There is no lock for that
because it is read-only once it is initialized (in grpc.NewServer).


Reply to this email directly or view it on GitHub
#85 (comment).

from grpc-go.

jpfuentes2 avatar jpfuentes2 commented on July 19, 2024

There is no lock for that because it is read-only once it is initialized

Got it, thanks.

from grpc-go.

trevorgray avatar trevorgray commented on July 19, 2024

I also wasn't able to find this documented anywhere but this issue. Would you be able to add this to the godoc documentation to make it more clear that it's safe to call a client from multiple go routines concurrently?

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.