hashicorp/memberlist

Is it feasible to reuse the gassip port for grpc service?

kcmvp opened this issue · 1 comments

kcmvp commented

my applcation bases on memberlist. right now I am using SendReliable api to exchange data between nodes.
right now I want to use grpc for my application. I know memberlist use one port for both (tcp/udp). Is it feasible to reuse the port my my grpc service?

thank you very much!

kcmvp commented

right now my findings/difficulty is

as memberlist process data/messsage based on the connection to make sure gossip functionality and seems only supply connection-oriented api , but grpc use method call by hidding the network connection.

how can I reuse the port but dont break memberlist itself functionality?