TCP multicast and multithreading

后端 未结 7 1827
独厮守ぢ
独厮守ぢ 2021-01-03 08:54

I need to come up with clients that can multicast to other clients reliably. That implies I\'ll be using TCP to connect reliably between clients within a multicast group. Do

相关标签:
7条回答
  • 2021-01-03 09:04

    You need to take a look at 0MQ which is a high speed Messaging System which has as one of it's abilities reliable multicast using the Pragmatic General Multicast (PGM) using OpenPGM.

    There was an article on it recently in lwn.net:

    0MQ: A new approach to messaging

    0 讨论(0)
  • 2021-01-03 09:06

    Just a thought, but does your work need to be done with a networking protocol. You might also look at implementing this with a message service, with a publish-subscribe based model.

    If you do need networking, then you're going to have to deal with either lots of connections, or ensuring delivery yourself. Make very sure of your requirements before going down that road.

    0 讨论(0)
  • 2021-01-03 09:11

    There are several reliable multicast solutions.

    • DDS (Data distribution service)
    • Norm Protocol
    • PGM

    I've tried the first two ones.

    Norm is simple, works like standard udp multicast but incorporates nacks... excelent if you do not need more. There are some implementations that aslo support bandwidth adaptation and other improvements.

    DDS is a step forward. It's really great (I know the RTI implementation and it works great) and has a lot of capabilities as well as a very good though design. It's based on reliable and fault tolerancy and there's an open implementation.

    By the way, at least DDS and NORM do not require n^2 connections. They work like multicast udp.

    0 讨论(0)
  • 2021-01-03 09:12

    PGM is an option, as mentioned above. The issue we had with it is that if a client can't keep up with reading incoming data, it get's disconnected.

    Since we never could reliable guarantee 'fast enough' clients, we've implemented our own reliability protocol on top of UDP multicast. The implementation is not fully generic when it comes to dynamic connects/disconnects, but it might work for you. You can find the implementation here:

    http://www.equalizergraphics.com/cgi-bin/viewvc.cgi/trunk/src/lib/net/rspConnection.h?view=markup http://www.equalizergraphics.com/cgi-bin/viewvc.cgi/trunk/src/lib/net/rspConnection.cpp?view=markup

    0 讨论(0)
  • 2021-01-03 09:13

    multicast and TCP are mutually exclusive.

    Implementing reliable delivery over UDP is nuts. Nobody does this since 1980s and it is impossible to do as good as any cheap TCP stack, in terms of performance and BW overhead. Correction: sometimes it is done manually, but only over exotic transports, such as extremely long or narrow pipes.

    N^2 connections is not very silly. A connection with 1Hz keepalives does not cost much. What costs is the traffic. This is what your design needs to focus on.

    0 讨论(0)
  • 2021-01-03 09:13

    Sure there is a more efficient way - you stay using UDB, and reimplement reliable sending yourself. Not trivial, though. But at least you only need to keep sent packets ONCE on the sending site.

    0 讨论(0)
提交回复
热议问题