Hi Mediasoup Team !
Im tring to cluster My Project so i do this scenario :
I Have 2 Nodes (Should they be on different hosts):
lets call them nodeA and nodeB
im tring to use createPipeTransport on each and try produce from A to B or reverse of it
so this is what i do :
- From A : createPipeTransport()
- From B : createPipeTransport()
- User want to produce camera for example so first i Connect A to B : this.pipeTransport.connect() then this.pipeTransport.produce()
- By signaling server i say to client on B to new Producer and it will try to consume it from B
- first i connect B to A : this.pipeTransport.connect()
- and try to consume it : await this.pipeTransport.consume()
but i log pipeTransport in B server there is no consumers (Map size is 0)
q1 : am i wrong steps ?
q2 : how can check them connected each other (ip or port is correct or not )
this scenario just for test to find how it works
thnx for your support