US20110161417A1 - Device and Method for Disseminating Content Data Between Peers in A P2P Mode, By Using A Bipartite Peer Overlay - Google Patents

Device and Method for Disseminating Content Data Between Peers in A P2P Mode, By Using A Bipartite Peer Overlay Download PDF

Info

Publication number
US20110161417A1
US20110161417A1 US12/737,295 US73729509A US2011161417A1 US 20110161417 A1 US20110161417 A1 US 20110161417A1 US 73729509 A US73729509 A US 73729509A US 2011161417 A1 US2011161417 A1 US 2011161417A1
Authority
US
United States
Prior art keywords
peers
peer
group
content
data
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US12/737,295
Other versions
US8407283B2 (en
Inventor
Nicolas Le Scouarnec
Mary-Luc Champel
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Magnolia Licensing LLC
Original Assignee
Nicolas Le Scouarnec
Mary-Luc Champel
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Family has litigation
First worldwide family litigation filed litigation Critical https://patents.darts-ip.com/?family=40934207&utm_source=google_patent&utm_medium=platform_link&utm_campaign=public_patent_search&patent=US20110161417(A1) "Global patent litigation dataset” by Darts-ip is licensed under a Creative Commons Attribution 4.0 International License.
Priority claimed from EP09305109A external-priority patent/EP2216957A1/en
Application filed by Nicolas Le Scouarnec, Mary-Luc Champel filed Critical Nicolas Le Scouarnec
Assigned to THOMSON LICENSING reassignment THOMSON LICENSING ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: CHAMPEL, MARY-LUC, LE SCOUARNEC, NICOLAS
Publication of US20110161417A1 publication Critical patent/US20110161417A1/en
Application granted granted Critical
Publication of US8407283B2 publication Critical patent/US8407283B2/en
Assigned to MAGNOLIA LICENSING LLC reassignment MAGNOLIA LICENSING LLC ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: THOMSON LICENSING S.A.S.
Expired - Fee Related legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/10Protocols in which an application is distributed across nodes in the network
    • H04L67/104Peer-to-peer [P2P] networks
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/10Protocols in which an application is distributed across nodes in the network
    • H04L67/104Peer-to-peer [P2P] networks
    • H04L67/1059Inter-group management mechanisms, e.g. splitting, merging or interconnection of groups
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/10Protocols in which an application is distributed across nodes in the network
    • H04L67/104Peer-to-peer [P2P] networks
    • H04L67/1074Peer-to-peer [P2P] networks for supporting data block transmission mechanisms
    • H04L67/1076Resource dissemination mechanisms or network resource keeping policies for optimal resource availability in the overlay network

Definitions

  • the present invention relates to content dissemination between peers in a peer-to-peer (or “P2P”) environment (or network).
  • P2P peer-to-peer
  • peer a user communication equipment capable of exchanging data (or symbols) with other peers or network equipments in a P2P mode, because it comprises at least one executable P2P communication application.
  • a peer may be a fixed personal computer, a laptop, a content receiver (for instance a home gateway or a set-top box (STB) located in the user's home premise), a mobile or cellular telephone, a fixed telephone, or a personal digital assistant (PDA), provided that it comprises a communication modem (or any equivalent communication means).
  • a content receiver for instance a home gateway or a set-top box (STB) located in the user's home premise
  • STB set-top box
  • PDA personal digital assistant
  • symbol a block or packet of data.
  • Dissemination can be performed by means of a multicast-like protocol, which uses trees, or by means of a fully decentralized and random protocol.
  • a (random) dissemination protocol is a protocol which needs each peer it runs to be supplied with random samples of other peers. These random samples of peers can be determined, for instance, by a gossip-based peer sampling protocol. This last protocol allows building neighborhood without a central server and is therefore suitable for frequent updates of the neighborhood.
  • gossip-based peer sampling peers periodically choose random neighbors, exchange therebetween their respective knowledges about other peers and merge their own knowledge with the one received from the other peers in order to exclude old knowledge (for instance the potentially dead peers) while minimizing the loss of information. Indeed, to avoid losing information, after a neighbor information exchange between two peers the information hold by these two peers must still be different enough.
  • Such gossip-based peer sampling protocols produce random graphs as overlays (i.e. logical networks). More information about gossip-based peer sampling protocols can be found in the article of Spyros Voulgaris et al “Gossip-Based Peer Sampling”, ACM Transaction on Computer Systems 2007, Volume 25.
  • Random dissemination protocols can be classified into pull protocols and push protocols.
  • Bittorrent a content is cut in blocks or chunks, and all peers cooperate in a reciprocal manner so that each peer gets all the chunks of this content. This technique is often referred as “content swarming”.
  • Push protocols ensure a fast startup. They do not need feedback channel and have a low control overhead.
  • Push protocols are mainly controlled by two parameters: the “fanout”, which is the number of random peers to which a block or chunk is forwarded, and the lifetime.
  • the delay is highly influenced by the fanout, and the degree of completion (i.e. how many peers got a complete content) is influenced by the product of the fanout and the lifetime. The higher this product is, the higher the overhead of data will be.
  • Push protocols work quite well when a full content completion is not needed. Indeed, the last peers may be hard to reach (even if an encoding with forward erasure correcting (FEC) codes is used), and therefore the lifetime and fanout must be increased, which increases the data overhead.
  • FEC forward erasure correcting
  • a third type of dissemination protocols can be also implemented. It comprises the push-pull protocols. In this third type of protocols, push phases are followed by pull phases. A peer that missed some parts of a content during a push phase will request the missing parts of this content during following pull phase(s). Information about available content blocks being attached to content data, the control overhead is low.
  • push-pull protocols have low delay and low control overhead since the low delay is ensured by the push phase and completion is ensured by the pull phase(s). So, increasing fanout or lifetime is not needed. Moreover, a full content dissemination near every peer does not induce an increase of the data overhead.
  • the main drawback of these push-pull protocols is their non easy implementation because they are more complex and that their parameters are more difficult to adjust (and especially the one defining when we are in a push mode or in a pull mode).
  • the object of this invention is to improve content dissemination by means of a new dissemination protocol.
  • the invention provides a method, intended for disseminating content data in a peer-to-peer mode between peers connected to at least one communication network, and comprising the steps of:
  • the invention also provides a device, intended for controlling dissemination by a peer, connected to a communication network, of content data, in a peer-to-peer mode, to other peers, and comprising:
  • the system according to the invention may include additional characteristics considered separately or combined, and notably:
  • FIG. 1 schematically and functionally illustrates four peers connected to a communication network and each comprising an example of embodiment of a device according to the invention
  • FIG. 2 schematically illustrates a very simple example of bipartite peer overlay comprising a first group of 6 peers and a second group of 9 peers (it is recalled that some overlays may comprise hundreds or even thousands of peers).
  • the invention aims at offering a process, and an associated control device (D), intended for allowing dissemination of content data in a peer-to-peer (P2P) mode between peers (Pj) connected to at least one communication network (CN).
  • D peer-to-peer
  • Pj peer-to-peer
  • CN communication network
  • the communication network is a wired (or fixed) network, such as a DSL network or an optical fiber network or else a cable network.
  • the invention is not limited to this type of communication network.
  • the communication network may be also a wireless communication network, such as a mobile or cellular or else radio communication network.
  • peers are user communication equipments, such as fixed personal computers.
  • the invention is not limited to this type of communication equipment.
  • the invention concerns any type of communication equipment comprising at least one executable P2P communication application and capable of exchanging data (or symbols) with other communication equipments (or peers) or network equipments in a P2P mode.
  • a peer may be also a laptop, a content receiver (for instance a home gateway or a set-top box (STB) located in the user's home premise), a mobile or cellular telephone, a fixed telephone, or a personal digital assistant (PDA), provided that it comprises a communication modem (or any equivalent communication means).
  • a content receiver for instance a home gateway or a set-top box (STB) located in the user's home premise
  • PDA personal digital assistant
  • the contents to be disseminated are files of information data.
  • the invention is not limited to this type of content. Indeed, the invention concerns any type of content which can be used only if it has been completed, and notably video, television programs, radio programs and software updates.
  • the invention proposes a method intended for disseminating content data in a peer-to-peer (P2P) mode between peers Pj.
  • This dissemination method comprises four main steps and can be implemented by control devices D according to the invention which are associated respectively to the peers Pj.
  • control device D equips a peer Pj (as illustrated in FIG. 1 ). But in a variant it could also mean coupled (for instance connected) to a peer Pj.
  • a control device D comprises at least a first means (or module) M 1 and a second means (or module) M 2 .
  • a first main step (i) of the method according to the invention consists in making peers Pj exchange neighboring information between them in order to build a bipartite peer overlay.
  • One means here by “bipartite peer overlay” an overlay (or logical network) comprising a first group G 1 , comprising peers Pj having a complete content that must be fully disseminated, and a second group G 2 , comprising peers Pj′ having not yet received this content or having only received a part of this content and having links therebetween (and preferably random links).
  • the bipartite peer overlay can be seen as a combination of a random graph and a bipartite graph. This results in a split graph, which is a graph with a fully connected component (random part—peers of the second group G 2 ) and isolated peers around it (bipartite part—peers of the first group G 1 ). Only peers of the second group G 2 have incoming edges. Peers of the first group G 1 are not known by any other peers.
  • the first group G 1 comprises six peers (P 1 , P 4 , P 5 , P 6 , P 8 and P 13 ) at a given instant
  • the second group G 2 comprises nine peers (P 2 , P 3 , P 7 , P 9 , P 10 , P 11 , P 12 , P 14 and P 15 ) at the same given instant.
  • the bipartite peer overlay can be built by the first means M 1 of the control devices D of the peers Pj from neighboring information obtained by these peers Pj through exchanges with other peers Pj′. For instance these exchanges can be carried out by the peers Pj by means of a gossip-based peer sampling protocol which is (slightly) modified in order to take into account first and second peer states depending respectively of their belonging to the first group G 1 or second group G 2 .
  • each peer Pj collects neighboring information from its neighbors Pj′ and then constitutes its own part of the bipartite peer overlay, and this is the merging of all these parts which constitutes the bipartite peer overlay.
  • the protocol has a periodic task that chooses a random neighbor of a peer Pj and sends a message with information about local knowledge of the network.
  • a peer Pj receives such a message from another peer Pj′, the content of this message is merged with the local neighboring information (or knowledge) of peer Pj.
  • this merging consists in removing each duplicate peer and each first group peer and at least one of the oldest known peers and/or at least one of the most recently known peers and/or at least one peer chosen randomly.
  • H H oldest peers
  • Some peers can be randomly removed in order the number of peers contained in a part of a bipartite peer overlay remains constant for every peer Pj.
  • the part of a bipartite peer overlay which concerns specifically a peer Pj can be stored into a storing means M 3 of its associated control device D (as illustrated in FIG. 1 ).
  • This storing means M 3 can be of any type known by the man skilled in the art. So, it can be a memory, for instance.
  • This part may comprise, for instance, the identifiers of each peer Pj′ to which a peer Pj is connected and which therefore constitutes one of the neighbors of this peer Pj.
  • the bipartite peer overlay could be also built by a central server, connected to the communication network CN, from the neighboring information transmitted by each peer Pj.
  • a central server which provides any peer Pj with its own part of the bipartite peer overlay (also called “peer view” or “neighborhood”—i.e. the smallest subset of peers that a peer has to know).
  • a second main step (ii) of the method according to the invention consists in disseminating, according to the bipartite peer overlay, the data that must be fully disseminated from peers Pj of the first group G 1 to first peers Pj′ of the second group G 2 .
  • the first peers of the second group G 2 are P 2 , P 3 , P 10 , P 11 , P 12 , P 14 and P 15 .
  • Each peer Pj of the first group G 1 can choose the first peers of the second group G 2 to which it will have to transmit the content data (for dissemination purpose), according to its specific part of the bipartite peer overlay, for instance.
  • Such a choice can be done randomly amongst every peers of the second group G 2 , or according to one or more criteria (for instance a proximity criterion or a completion criterion (for instance at least one of the first peers is a known peer which already possesses the most complete content (but not the full content), even if it is not a neighbor of a first group peer in the bipartite peer overlay)), or else among every peers of the second group G 2 that it considers as neighbors. This allows some peers to complete quickly a content and then to become quickly a peer of the first group G 1 .
  • a proximity criterion or a completion criterion for instance at least one of the first peers is a known peer which already possesses the most complete content (but not the full content), even if it is not a neighbor of a first group peer in the bipartite peer overlay
  • This second means M 2 is further arranged, once it has determined first peers, for ordering to its associated peer Pj (if it belongs to the first group G 1 ) to disseminate the content data to these first peers, according to its own part of the bipartite peer overlay (for instance stored into the storing means M 3 ).
  • the second means M 2 can provide to its associated peer Pj the identifiers of the chosen first peers in order it could transmit the content data it possesses to these first peers.
  • peers of the first group G 1 disseminate the content data after having encoded them.
  • This encoding can be performed by means of rateless erasure correcting codes or low rate erasure correcting codes, for instance, in order to avoid redundancy between content data pushed by different peers.
  • a first peer When a first peer receives content data (or a symbol) from a first group peer it may add them (it) to a dedicated local buffer it comprises. If a received content data (or symbol) is the last missing content data (or symbol), the content is complete and the first peer becomes a peer of the first group G 1 . When a content data (or symbol) is added to a buffer, if this buffer is full, the oldest content data (or symbol) is preferably removed.
  • the peers (neighbors) of the second group G 2 to which a second group peer Pj must transmit content data, are determined (or chosen) by the second means M 2 of its associated control device D. It is important to note that the peer determination (or choice) which is carried out by a second means M 2 may vary according to the group (G 1 , G 2 ) to which belongs its associated peer Pj temporarily.
  • the dissemination protocol used by a second group peer for disseminating the received content data toward other second group peers can be a regular push protocol. But it can be also a push/pull protocol.
  • a fourth main step (iv) of the method according to the invention consists in updating the bipartite peer overlay when a peer of the second group G 2 has fully completed a concerned content. Indeed, in this situation the peer can not be considered anymore as a member of the second group G 2 , but as a new member of the first group G 1 .
  • This updating is automatically performed by the first means M 1 of a peer Pj when the latter has fully completed a content to be disseminated.
  • This first means M 1 updates the part of the bipartite peer overlay of its peer Pj (stored into the storing means M 3 ), and its peer Pj must inform the other peers Pj′ of its change of state (from G 2 to G 1 ).
  • This information can be done by the peer Pj by means of the gossip-based peer sampling protocol (slightly) modified according to the invention (i.e. to take into account first and second peer states depending respectively of their belonging to the first group G 1 or second group G 2 ).
  • the bipartite peer overlay is built by a central server, the latter also proceeds to updating of the bipartite peer overlay each time it is informed by a peer Pj of its change of state (i.e. from G 2 to G 1 ).
  • the control device D (and notably its first means M 1 and second means M 2 ) is preferably made of software modules, at least partly. But it could be also made of electronic circuit(s) or hardware modules, or a combination of hardware and software modules (in this case the control device D comprises also a software interface allowing interworking between the hardware and software modules). In case where it is exclusively made of software modules it can be stored in a memory of the network equipment CS or in any computer software product.
  • the invention offers low delay and low overhead dissemination. Moreover, by making peers unequal, the available resources are used optimally as some peers will be able to re-encode data quickly.

Abstract

A method is intended for disseminating content data in a peer-to-peer mode between peers connected to at least one communication network. This method comprises the steps of: i) making peers exchange neighboring information between them to build a bipartite peer overlay comprising a first group, comprising peers having a complete content to be disseminated, and a second group, comprising peers having not this content or only a part of it and having links therebetween, ii) disseminating the data defining the content (and preferably encoded with erasure correcting codes) from peers of the first group to first peers of the second group according to the bipartite peer overlay, iii) disseminating the data received by the first peers to other peers of the second group according to the bipartite peer overlay, and iv) updating the bipartite peer overlay when a peer of the second group has fully completed the content.

Description

    TECHNICAL FIELD
  • The present invention relates to content dissemination between peers in a peer-to-peer (or “P2P”) environment (or network).
  • One means here by “peer” a user communication equipment capable of exchanging data (or symbols) with other peers or network equipments in a P2P mode, because it comprises at least one executable P2P communication application. So, a peer may be a fixed personal computer, a laptop, a content receiver (for instance a home gateway or a set-top box (STB) located in the user's home premise), a mobile or cellular telephone, a fixed telephone, or a personal digital assistant (PDA), provided that it comprises a communication modem (or any equivalent communication means).
  • Moreover, one means here by “symbol” a block or packet of data.
  • BACKGROUND OF THE INVENTION
  • As it is known by the man skilled in the art, in a distributed system, such as a peer-to-peer network, some contents are disseminated between peers in order each of these peers had at its disposal these contents.
  • Dissemination can be performed by means of a multicast-like protocol, which uses trees, or by means of a fully decentralized and random protocol.
  • A (random) dissemination protocol is a protocol which needs each peer it runs to be supplied with random samples of other peers. These random samples of peers can be determined, for instance, by a gossip-based peer sampling protocol. This last protocol allows building neighborhood without a central server and is therefore suitable for frequent updates of the neighborhood.
  • In gossip-based peer sampling, peers periodically choose random neighbors, exchange therebetween their respective knowledges about other peers and merge their own knowledge with the one received from the other peers in order to exclude old knowledge (for instance the potentially dead peers) while minimizing the loss of information. Indeed, to avoid losing information, after a neighbor information exchange between two peers the information hold by these two peers must still be different enough. Such gossip-based peer sampling protocols produce random graphs as overlays (i.e. logical networks). More information about gossip-based peer sampling protocols can be found in the article of Spyros Voulgaris et al “Gossip-Based Peer Sampling”, ACM Transaction on Computer Systems 2007, Volume 25.
  • Random dissemination protocols can be classified into pull protocols and push protocols.
  • When a pull protocol is implemented, peers have to require to their neighbors missing parts of contents. So this type of dissemination protocol requires bi-directional channels between peers and an important control overhead. One of the main pull protocols used for disseminating contents is the Bittorrent protocol. In Bittorrent, a content is cut in blocks or chunks, and all peers cooperate in a reciprocal manner so that each peer gets all the chunks of this content. This technique is often referred as “content swarming”.
  • Pull protocols, like Bittorrent, do not suffer from a data overhead, but they induce an important control overhead. Moreover, the resulting disseminations have slow startups and high delays. Therefore, they are not suitable for low delay dissemination.
  • When a push protocol is implemented, a peer which receives a block or chunk of a content randomly selects F neighbors and forwards them this received chunk. Each chunk has a lifetime, which is the number of hop a chunk may undergo and which is decreased each time it is forwarded from a peer to another peer. When the lifetime becomes zero, the chunk is no more forwarded. Push protocols ensure a fast startup. They do not need feedback channel and have a low control overhead.
  • Push protocols are mainly controlled by two parameters: the “fanout”, which is the number of random peers to which a block or chunk is forwarded, and the lifetime. The delay is highly influenced by the fanout, and the degree of completion (i.e. how many peers got a complete content) is influenced by the product of the fanout and the lifetime. The higher this product is, the higher the overhead of data will be. One means here by “data overhead” data received by a peer more than one time.
  • Push protocols work quite well when a full content completion is not needed. Indeed, the last peers may be hard to reach (even if an encoding with forward erasure correcting (FEC) codes is used), and therefore the lifetime and fanout must be increased, which increases the data overhead.
  • More information about push protocols can be found in the article of Patrick T. Eugster et al “From Epidemics to Distributed Computing”, IEEE Computer, Volume 37, 2004.
  • A third type of dissemination protocols can be also implemented. It comprises the push-pull protocols. In this third type of protocols, push phases are followed by pull phases. A peer that missed some parts of a content during a push phase will request the missing parts of this content during following pull phase(s). Information about available content blocks being attached to content data, the control overhead is low.
  • These push-pull protocols have low delay and low control overhead since the low delay is ensured by the push phase and completion is ensured by the pull phase(s). So, increasing fanout or lifetime is not needed. Moreover, a full content dissemination near every peer does not induce an increase of the data overhead. The main drawback of these push-pull protocols is their non easy implementation because they are more complex and that their parameters are more difficult to adjust (and especially the one defining when we are in a push mode or in a pull mode).
  • More information about push-pull protocols can be found in the article of Sujay Sanghavi et al “Gossiping with multiple messages”, IEEE International Conference on Computer Communications, 2007 (INFOCOMM 2007).
  • SUMMARY OF THE INVENTION
  • So the object of this invention is to improve content dissemination by means of a new dissemination protocol.
  • For this purpose, the invention provides a method, intended for disseminating content data in a peer-to-peer mode between peers connected to at least one communication network, and comprising the steps of:
    • i) making peers exchange neighboring information between them to build a bipartite peer overlay comprising a first group, comprising peers having a complete content to be disseminated, and a second group, comprising peers having not said content or only a part of it and having links therebetween (preferably random links),
    • ii) disseminating the data defining this content from peers of the first group to first peers of the second group, according to the bipartite peer overlay,
    • iii) disseminating the data received by these first peers to other peers of the second group according to the bipartite peer overlay, and
    • iv) updating the bipartite peer overlay when a peer of the second group has fully completed the content.
  • The method according to the invention may include additional characteristics considered separately or combined, and notably:
      • in step(s) i) and/or iv) one may build and/or update the bipartite peer overlay by means of a gossip-based peer sampling protocol (slightly) modified to take into account first and second peer states depending respectively of their belonging to the first group or second group;
        • in step(s) i) and/or iv) when a peer receives a message containing neighboring information from another peer, it may merge this neighboring information with its own neighboring information by removing each duplicate peer and each first group peer and at least one of the oldest known peers and/or at least one of the most recently known peers and/or at least one peer chosen randomly, in order to update the bipartite peer overlay (and therefore its knowledge of its neighbors);
      • in step iii) one may disseminate the received content data from peers to peers a chosen number of time (defined by a lifetime);
      • in step iii) one may disseminate the received content data from peers to peers by means of a dissemination protocol which is chosen from a protocol group comprising push dissemination protocols and push-pull dissemination protocols;
      • in step ii) peers of the first group may disseminate the data of the content to second group peers that are randomly chosen;
      • in a first variant, in step ii) peers of the first group may disseminate the data of the content to peers of the second group chosen according to at least one criterion;
      • in a second variant, in step ii) peers of the first group may disseminate the data of the content to second group peers that are neighboring peers;
      • in step ii) peers of the first group may disseminate the data of the content after having encoded these data with erasure correcting codes.
  • The invention also provides a device, intended for controlling dissemination by a peer, connected to a communication network, of content data, in a peer-to-peer mode, to other peers, and comprising:
      • a first means arranged for participating to building of a bipartite peer overlay, comprising a first group, comprising peers having a complete content to be disseminated, and a second group, comprising peers having not this content or only a part of it and having links therebetween (preferably random links), from neighboring information exchanged by its peer with other peers, and
      • a second means arranged for ordering to its peer to disseminate data, defining at least partly a content, to peers of the second group according to the bipartite peer overlay,
      • the first means being further arranged for updating the bipartite peer overlay (and therefore its knowledge of its neighbors) when a peer of the second group has fully completed the content.
  • The system according to the invention may include additional characteristics considered separately or combined, and notably:
      • its first means may be arranged, when its peer has received a message containing neighboring information from another peer, for merging this neighboring information with its own neighboring information by removing each duplicate peer and each first group peer and at least one of the oldest known peers and/or at least one of the most recently known peers and/or at least one peer chosen randomly, in order to update the bipartite peer overlay (and therefore its knowledge of its neighbors);
      • its second means may be arranged for ordering to its peer to disseminate a received content data to other peers by means of a dissemination protocol chosen from a protocol group comprising push dissemination protocols and push-pull dissemination protocols;
      • its second means may be arranged for determining randomly into the second group peers toward which its peer must disseminate data of a content;
      • in a first variant its second means may be arranged for determining into the second group, according to at least one criterion, peers toward which its peer must disseminate data of a content;
      • in a second variant its second means may be arranged for determining into the second group peers that are neighbors of its peer and toward which its peer must disseminate data of a content.
    BRIEF DESCRIPTION OF THE FIGURES
  • Other features and advantages of the invention will become apparent on examining the detailed specifications hereafter and the appended drawings, wherein:
  • FIG. 1 schematically and functionally illustrates four peers connected to a communication network and each comprising an example of embodiment of a device according to the invention, and
  • FIG. 2 schematically illustrates a very simple example of bipartite peer overlay comprising a first group of 6 peers and a second group of 9 peers (it is recalled that some overlays may comprise hundreds or even thousands of peers).
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT
  • The appended drawings may serve not only to complete the invention, but also to contribute to its definition, if need be.
  • The invention aims at offering a process, and an associated control device (D), intended for allowing dissemination of content data in a peer-to-peer (P2P) mode between peers (Pj) connected to at least one communication network (CN).
  • In the following description it will be considered that the communication network (CN) is a wired (or fixed) network, such as a DSL network or an optical fiber network or else a cable network. But the invention is not limited to this type of communication network. Indeed, the communication network may be also a wireless communication network, such as a mobile or cellular or else radio communication network.
  • Moreover, in the following description it will be considered that peers (Pj) are user communication equipments, such as fixed personal computers. But the invention is not limited to this type of communication equipment. Indeed, the invention concerns any type of communication equipment comprising at least one executable P2P communication application and capable of exchanging data (or symbols) with other communication equipments (or peers) or network equipments in a P2P mode. So, a peer may be also a laptop, a content receiver (for instance a home gateway or a set-top box (STB) located in the user's home premise), a mobile or cellular telephone, a fixed telephone, or a personal digital assistant (PDA), provided that it comprises a communication modem (or any equivalent communication means).
  • More, in the following description it will be considered that the contents to be disseminated are files of information data. But the invention is not limited to this type of content. Indeed, the invention concerns any type of content which can be used only if it has been completed, and notably video, television programs, radio programs and software updates.
  • As it is schematically illustrated in FIG. 1, the invention concerns a group of peers Pj (here j=1 to 4) which are connected therebetween through a communication network CN. In this non limiting example the group comprises four peers (P1-P4), but it could comprise three peers or more peers than four (this is notably the case in the non limiting example illustrated in FIG. 2 where it comprises fifteen peers (j=1 to 15)), and possibly hundreds or thousands of peers.
  • The invention proposes a method intended for disseminating content data in a peer-to-peer (P2P) mode between peers Pj. This dissemination method comprises four main steps and can be implemented by control devices D according to the invention which are associated respectively to the peers Pj.
  • One means here by “associated” the fact that a control device D equips a peer Pj (as illustrated in FIG. 1). But in a variant it could also mean coupled (for instance connected) to a peer Pj.
  • As illustrated, a control device D comprises at least a first means (or module) M1 and a second means (or module) M2.
  • A first main step (i) of the method according to the invention consists in making peers Pj exchange neighboring information between them in order to build a bipartite peer overlay. One means here by “bipartite peer overlay” an overlay (or logical network) comprising a first group G1, comprising peers Pj having a complete content that must be fully disseminated, and a second group G2, comprising peers Pj′ having not yet received this content or having only received a part of this content and having links therebetween (and preferably random links).
  • The bipartite peer overlay can be seen as a combination of a random graph and a bipartite graph. This results in a split graph, which is a graph with a fully connected component (random part—peers of the second group G2) and isolated peers around it (bipartite part—peers of the first group G1). Only peers of the second group G2 have incoming edges. Peers of the first group G1 are not known by any other peers.
  • In the non limiting example illustrated in FIG. 2, the first group G1 comprises six peers (P1, P4, P5, P6, P8 and P13) at a given instant, and the second group G2 comprises nine peers (P2, P3, P7, P9, P10, P11, P12, P14 and P15) at the same given instant.
  • The bipartite peer overlay can be built by the first means M1 of the control devices D of the peers Pj from neighboring information obtained by these peers Pj through exchanges with other peers Pj′. For instance these exchanges can be carried out by the peers Pj by means of a gossip-based peer sampling protocol which is (slightly) modified in order to take into account first and second peer states depending respectively of their belonging to the first group G1 or second group G2. In fact, each peer Pj collects neighboring information from its neighbors Pj′ and then constitutes its own part of the bipartite peer overlay, and this is the merging of all these parts which constitutes the bipartite peer overlay.
  • For instance the protocol has a periodic task that chooses a random neighbor of a peer Pj and sends a message with information about local knowledge of the network. When a peer Pj receives such a message from another peer Pj′, the content of this message is merged with the local neighboring information (or knowledge) of peer Pj. For instance this merging consists in removing each duplicate peer and each first group peer and at least one of the oldest known peers and/or at least one of the most recently known peers and/or at least one peer chosen randomly. For instance one may remove the H oldest peers, with H=2 or 3 (for instance), so that the overlay has a self-healing property, then one may remove the S first peers, with S=4 or 5 (for instance), because one may consider that they are probably already known from some peers. This minimizes the loss of information. Some peers can be randomly removed in order the number of peers contained in a part of a bipartite peer overlay remains constant for every peer Pj.
  • The part of a bipartite peer overlay which concerns specifically a peer Pj can be stored into a storing means M3 of its associated control device D (as illustrated in FIG. 1). This storing means M3 can be of any type known by the man skilled in the art. So, it can be a memory, for instance. This part may comprise, for instance, the identifiers of each peer Pj′ to which a peer Pj is connected and which therefore constitutes one of the neighbors of this peer Pj.
  • It is important to note that the bipartite peer overlay could be also built by a central server, connected to the communication network CN, from the neighboring information transmitted by each peer Pj. In this case one does not use a gossip-based peer sampling protocol, and this is the central server which provides any peer Pj with its own part of the bipartite peer overlay (also called “peer view” or “neighborhood”—i.e. the smallest subset of peers that a peer has to know).
  • A second main step (ii) of the method according to the invention consists in disseminating, according to the bipartite peer overlay, the data that must be fully disseminated from peers Pj of the first group G1 to first peers Pj′ of the second group G2. In the non limiting example illustrated in FIG. 2, the first peers of the second group G2 are P2, P3, P10, P11, P12, P14 and P15.
  • Each peer Pj of the first group G1 can choose the first peers of the second group G2 to which it will have to transmit the content data (for dissemination purpose), according to its specific part of the bipartite peer overlay, for instance.
  • Such a choice can be done randomly amongst every peers of the second group G2, or according to one or more criteria (for instance a proximity criterion or a completion criterion (for instance at least one of the first peers is a known peer which already possesses the most complete content (but not the full content), even if it is not a neighbor of a first group peer in the bipartite peer overlay)), or else among every peers of the second group G2 that it considers as neighbors. This allows some peers to complete quickly a content and then to become quickly a peer of the first group G1.
  • The first peers of the second group G2, to which a first group peer must transmit content data, are determined (or chosen) by the second means M2 of its associated control device D.
  • This second means M2 is further arranged, once it has determined first peers, for ordering to its associated peer Pj (if it belongs to the first group G1) to disseminate the content data to these first peers, according to its own part of the bipartite peer overlay (for instance stored into the storing means M3). For this purpose, the second means M2 can provide to its associated peer Pj the identifiers of the chosen first peers in order it could transmit the content data it possesses to these first peers.
  • Preferably, in step ii) peers of the first group G1 disseminate the content data after having encoded them. This encoding can be performed by means of rateless erasure correcting codes or low rate erasure correcting codes, for instance, in order to avoid redundancy between content data pushed by different peers.
  • When a first peer receives content data (or a symbol) from a first group peer it may add them (it) to a dedicated local buffer it comprises. If a received content data (or symbol) is the last missing content data (or symbol), the content is complete and the first peer becomes a peer of the first group G1. When a content data (or symbol) is added to a buffer, if this buffer is full, the oldest content data (or symbol) is preferably removed.
  • The dissemination protocol used by a first group peer for disseminating content data toward first peers is a regular push protocol.
  • A third main step (iii) of the method according to the invention consists in disseminating the data received by the first peers to other peers of the second group G2 according to the bipartite peer overlay, then, if necessary, from these other peers to still other peers of the second group G2. The number of hop (between peers Pj, Pj′) content data may undergo is defined by the lifetime of these content data.
  • The peers (neighbors) of the second group G2, to which a second group peer Pj must transmit content data, are determined (or chosen) by the second means M2 of its associated control device D. It is important to note that the peer determination (or choice) which is carried out by a second means M2 may vary according to the group (G1, G2) to which belongs its associated peer Pj temporarily.
  • It is also important to note that each second group peer having received content data transmits the full content of its buffer to the peers (neighbors) of the second group G2 determined (or chosen) by the second means M2 of its associated control device D. Each time a content data is disseminated from a second group peer to other second group peers it decreases the lifetime of this content data.
  • It is also important to note that if in step ii) peers of the first group G1 disseminate the content data after having encoded them, then in step iii) peers of the second group G2 disseminate the received encoded content data.
  • The dissemination protocol used by a second group peer for disseminating the received content data toward other second group peers can be a regular push protocol. But it can be also a push/pull protocol.
  • A fourth main step (iv) of the method according to the invention consists in updating the bipartite peer overlay when a peer of the second group G2 has fully completed a concerned content. Indeed, in this situation the peer can not be considered anymore as a member of the second group G2, but as a new member of the first group G1.
  • This updating is automatically performed by the first means M1 of a peer Pj when the latter has fully completed a content to be disseminated. This first means M1 updates the part of the bipartite peer overlay of its peer Pj (stored into the storing means M3), and its peer Pj must inform the other peers Pj′ of its change of state (from G2 to G1). This information can be done by the peer Pj by means of the gossip-based peer sampling protocol (slightly) modified according to the invention (i.e. to take into account first and second peer states depending respectively of their belonging to the first group G1 or second group G2).
  • In case where the bipartite peer overlay is built by a central server, the latter also proceeds to updating of the bipartite peer overlay each time it is informed by a peer Pj of its change of state (i.e. from G2 to G1).
  • The control device D (and notably its first means M1 and second means M2) is preferably made of software modules, at least partly. But it could be also made of electronic circuit(s) or hardware modules, or a combination of hardware and software modules (in this case the control device D comprises also a software interface allowing interworking between the hardware and software modules). In case where it is exclusively made of software modules it can be stored in a memory of the network equipment CS or in any computer software product.
  • The invention offers low delay and low overhead dissemination. Moreover, by making peers unequal, the available resources are used optimally as some peers will be able to re-encode data quickly.
  • The invention is not limited to the embodiments of dissemination method, control device and peer described above, only as examples, but it encompasses all alternative embodiments which may be considered by one skilled in the art within the scope of the claims hereafter.

Claims (15)

1. Method for disseminating content data in a peer-to-peer mode between peers connected to at least one communication network, comprising the steps of: i) making peers exchange neighboring information between them to build a bipartite peer overlay comprising a first group, comprising peers having a complete content to be disseminated, and a second group, comprising peers having not said content or only a part of it and having links therebetween, ii) disseminating the data defining said content from peers of the first group to first peers of the second group according to said bipartite peer overlay, iii) disseminating the data received by said first peers to other peers of said second group according to said bipartite peer overlay, and iv) updating said bipartite peer overlay when a peer of said second group has fully completed said content.
2. Method according to claim 1, wherein in step(s) i) and/or iv) one builds and/or one updates said bipartite peer overlay by means of a gossip-based peer sampling protocol modified to take into account first and second peer states depending respectively of their belonging to the first group or second group.
3. Method according to claim 2, wherein in step(s) i) and/or iv), when a peer receives a message containing neighboring information from another peer, it merges this neighboring information with its own neighboring information by removing each duplicate peer and each first group peer and at least one of the oldest known peers and/or at least one of the most recently known peers and/or at least one peer chosen randomly, in order to update said bipartite peer overlay.
4. Method according to claim 1, wherein in step iii) one disseminates the received content data from peers to peers a chosen number of time.
5. Method according to claim 1, wherein in step iii) one disseminates the received content data from peers to peers by means of a dissemination protocol chosen from a protocol group comprising push dissemination protocols and push-pull dissemination protocols.
6. Method according to claim 1, wherein in step ii) peers of said first group disseminate the data of said content to second group peers that are randomly chosen.
7. Method according to claim 1, wherein in step ii) peers of said first group disseminate the data of said content to peers of said second group chosen according to at least one criterion.
8. Method according to claim 1, wherein in step ii) peers of said first group disseminate the data of said content to second group peers that are neighboring peers.
9. Method according to claim 1, wherein in step ii) peers of said first group disseminate the data of said content after having encoded said data with erasure correcting codes.
10. Device for controlling dissemination of content data, in a peer-to-peer mode, from a peer, connected to a communication network, to other peers, comprising i) a first means arranged for participating to building of a bipartite peer overlay, comprising a first group, comprising peers having a complete content to be disseminated, and a second group, comprising peers having not said content or only a part of it and having links therebetween, from neighboring information exchanged by its peer with other peers, and ii) a second means arranged for ordering to its peer to disseminate data, defining at least partly a content, to peers of the second group according to said bipartite peer overlay, said first means being further arranged for updating said bipartite peer overlay when a peer of said second group has fully completed said content.
11. Device according to claim 10, wherein said first means is arranged, when its peer has received a message containing neighboring information from another peer, for merging this neighboring information with its own neighboring information by removing each duplicate peer and each first group peer and at least one of the oldest known peers and/or at least one of the most recently known peers and/or at least one peer chosen randomly, in order to update said bipartite peer overlay.
12. Device according to claim 10, wherein said second means is arranged for ordering to its peer to disseminate a received content data to other peers by means of a dissemination protocol chosen from a protocol group comprising push dissemination protocols and push-pull dissemination protocols.
13. Device according to claim 10, wherein said second means is arranged for determining randomly into said second group peers to which its peer must disseminate data of a content.
14. Device according to claim 10, wherein said second means is arranged for determining into said second group, according to at least one criterion, peers toward which its peer must disseminate data of a content.
15. Device according to claim 10, wherein said second means is arranged for determining into said second group peers that are neighbors of its peer and toward which its peer must disseminate data of a content.
US12/737,295 2008-07-02 2009-06-30 Device and method for disseminating content data between peers in a P2P mode, by using a bipartite peer overlay Expired - Fee Related US8407283B2 (en)

Applications Claiming Priority (7)

Application Number Priority Date Filing Date Title
EP08305371 2008-07-02
EP08305371.0 2008-07-02
EP08305371 2008-07-02
EP09305109A EP2216957A1 (en) 2009-02-06 2009-02-06 Device and method for disseminating content data between peers in a P2P mode, by using a bipartite peer overlay
EP09305109.2 2009-02-06
EP09305109 2009-02-06
PCT/EP2009/058158 WO2010000724A1 (en) 2008-07-02 2009-06-30 Device and method for disseminating content data between peers in a p2p mode, by using a bipartite peer overlay

Publications (2)

Publication Number Publication Date
US20110161417A1 true US20110161417A1 (en) 2011-06-30
US8407283B2 US8407283B2 (en) 2013-03-26

Family

ID=40934207

Family Applications (1)

Application Number Title Priority Date Filing Date
US12/737,295 Expired - Fee Related US8407283B2 (en) 2008-07-02 2009-06-30 Device and method for disseminating content data between peers in a P2P mode, by using a bipartite peer overlay

Country Status (6)

Country Link
US (1) US8407283B2 (en)
EP (1) EP2294795B1 (en)
JP (1) JP5462252B2 (en)
KR (1) KR101511154B1 (en)
CN (1) CN102113296B (en)
WO (1) WO2010000724A1 (en)

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120210014A1 (en) * 2011-02-15 2012-08-16 Peerialism AB P2p-engine
US20120311099A1 (en) * 2011-06-03 2012-12-06 Fujitsu Limited Method of distributing files, file distribution system, master server, computer readable, non-transitory medium storing program for distributing files, method of distributing data, and data distribution system
WO2013112153A1 (en) * 2012-01-26 2013-08-01 Hewlett-Packard Development Company, L.P. Identifying a push communication pattern
US8713194B2 (en) 2011-11-18 2014-04-29 Peerialism AB Method and device for peer arrangement in single substream upload P2P overlay networks
US8799498B2 (en) 2011-11-18 2014-08-05 Peerialism AB Method and device for peer arrangement in streaming-constrained P2P overlay networks
US8898327B2 (en) 2011-10-05 2014-11-25 Peerialism AB Method and device for arranging peers in a live streaming P2P network
US20150334181A1 (en) * 2013-01-10 2015-11-19 Telefonaktiebolaget L M Ericsson (Publ) Connection Mechanism for Energy-Efficient Peer-to-Peer Networks
CN107690777A (en) * 2015-03-30 2018-02-13 爱迪德技术有限公司 Monitor peer-to-peer network

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103092716A (en) * 2013-01-10 2013-05-08 曙光信息产业(北京)有限公司 Method and device for obtaining erasure code parameters
CA2928587C (en) * 2013-10-25 2022-01-04 Hive Streaming Ab Aggressive prefetching

Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060218222A1 (en) * 2005-03-23 2006-09-28 Cisco Technology, Inc. Method and apparatus for achieving optimal transfer times in a peer-to-peer network
US20070025363A1 (en) * 2005-07-29 2007-02-01 Roxbeam Media Network Corp. Distributed system for delivery of information via a digital network
US20070233972A1 (en) * 2006-03-28 2007-10-04 Emc Corporation Methods and apparatus for transferring content to multiple destinations
US20070244894A1 (en) * 2006-04-04 2007-10-18 Xerox Corporation Peer-to-peer file sharing system and method using downloadable data segments
US20070294422A1 (en) * 2006-06-20 2007-12-20 Gal Zuckerman Methods and systems for push-to-storage
US20080037438A1 (en) * 2006-08-11 2008-02-14 Adam Dominic Twiss Content delivery system for digital object
US20080059631A1 (en) * 2006-07-07 2008-03-06 Voddler, Inc. Push-Pull Based Content Delivery System
US20080107122A1 (en) * 2006-11-06 2008-05-08 Institute For Information Industry Method and computer program product for a new node joining a peer to peer network and computer readable medium and the network thereof
US20080155061A1 (en) * 2006-09-06 2008-06-26 Akamai Technologies, Inc. Hybrid content delivery network (CDN) and peer-to-peer (P2P) network
US20080288580A1 (en) * 2007-05-16 2008-11-20 Microsoft Corporation Peer-to-peer collaboration system with edge routing
US20090037566A1 (en) * 2005-03-31 2009-02-05 British Telecommunications Public Limited Company Computer Network
US20090144412A1 (en) * 2007-12-03 2009-06-04 Cachelogic Ltd. Method and apparatus for the delivery of digital data
US20090234967A1 (en) * 2008-03-17 2009-09-17 Nokia Corporation Method, system, and apparatus for transferring P2P file distribution tasks between devices
US20100005185A1 (en) * 2008-06-24 2010-01-07 Zhengye Liu Substream trading in a peer to peer live streaming system
US20110087783A1 (en) * 2009-10-09 2011-04-14 Siddhartha Annapureddy Allocating resources of a node in a server farm
US8010748B2 (en) * 2006-08-11 2011-08-30 Velocix Ltd. Cache structure for peer-to-peer distribution of digital objects
US8103777B2 (en) * 2006-02-24 2012-01-24 Koninklijke Philips Electronics N.V. Device and a method for sharing resources in a network of peers
US8224968B1 (en) * 2005-09-19 2012-07-17 At&T Intellectual Property Ii, L.P. Method and system for scalable content storage and delivery

Family Cites Families (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP4256218B2 (en) * 2003-07-30 2009-04-22 株式会社東芝 COMMUNICATION SYSTEM, COMMUNICATION DEVICE, PROGRAM, AND COMMUNICATION METHOD
US7627678B2 (en) 2003-10-20 2009-12-01 Sony Computer Entertainment America Inc. Connecting a peer in a peer-to-peer relay network
JP2006178782A (en) * 2004-12-22 2006-07-06 Fuji Xerox Co Ltd Information processing method, delivery information processing method, delivery information processing program and delivery processor
JP4715388B2 (en) * 2005-08-24 2011-07-06 ブラザー工業株式会社 Information distribution system, information distribution method, node apparatus included in information distribution system, and information processing program
CN1738273A (en) * 2005-08-26 2006-02-22 上海贝豪通讯电子有限公司 Method for building self-organized network in TD-SCDMA system
US9049205B2 (en) * 2005-12-22 2015-06-02 Genesys Telecommunications Laboratories, Inc. System and methods for locating and acquisitioning a service connection via request broadcasting over a data packet network
EP1901525A1 (en) * 2006-09-15 2008-03-19 THOMSON Licensing File repair method for a content distribution system
JP2008109188A (en) 2006-10-23 2008-05-08 Onkyo Corp Content distribution system, peer, and center server
CN101184037B (en) * 2007-10-31 2010-06-02 北京航空航天大学 Probability effective broadcast coefficient based flooding method

Patent Citations (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060218222A1 (en) * 2005-03-23 2006-09-28 Cisco Technology, Inc. Method and apparatus for achieving optimal transfer times in a peer-to-peer network
US20090037566A1 (en) * 2005-03-31 2009-02-05 British Telecommunications Public Limited Company Computer Network
US20070025363A1 (en) * 2005-07-29 2007-02-01 Roxbeam Media Network Corp. Distributed system for delivery of information via a digital network
US8224968B1 (en) * 2005-09-19 2012-07-17 At&T Intellectual Property Ii, L.P. Method and system for scalable content storage and delivery
US8103777B2 (en) * 2006-02-24 2012-01-24 Koninklijke Philips Electronics N.V. Device and a method for sharing resources in a network of peers
US20070233972A1 (en) * 2006-03-28 2007-10-04 Emc Corporation Methods and apparatus for transferring content to multiple destinations
US20070244894A1 (en) * 2006-04-04 2007-10-18 Xerox Corporation Peer-to-peer file sharing system and method using downloadable data segments
US20100241708A1 (en) * 2006-06-20 2010-09-23 Patentvc Ltd Methods and systems for push-to-storage
US20070294422A1 (en) * 2006-06-20 2007-12-20 Gal Zuckerman Methods and systems for push-to-storage
US8131971B2 (en) * 2006-06-20 2012-03-06 Patentvc Ltd. Methods and systems for push-to-storage
US20080059631A1 (en) * 2006-07-07 2008-03-06 Voddler, Inc. Push-Pull Based Content Delivery System
US20080037438A1 (en) * 2006-08-11 2008-02-14 Adam Dominic Twiss Content delivery system for digital object
US8010748B2 (en) * 2006-08-11 2011-08-30 Velocix Ltd. Cache structure for peer-to-peer distribution of digital objects
US20080155061A1 (en) * 2006-09-06 2008-06-26 Akamai Technologies, Inc. Hybrid content delivery network (CDN) and peer-to-peer (P2P) network
US20080107122A1 (en) * 2006-11-06 2008-05-08 Institute For Information Industry Method and computer program product for a new node joining a peer to peer network and computer readable medium and the network thereof
US20080288580A1 (en) * 2007-05-16 2008-11-20 Microsoft Corporation Peer-to-peer collaboration system with edge routing
US20090144412A1 (en) * 2007-12-03 2009-06-04 Cachelogic Ltd. Method and apparatus for the delivery of digital data
US20090234967A1 (en) * 2008-03-17 2009-09-17 Nokia Corporation Method, system, and apparatus for transferring P2P file distribution tasks between devices
US20100005185A1 (en) * 2008-06-24 2010-01-07 Zhengye Liu Substream trading in a peer to peer live streaming system
US20110087783A1 (en) * 2009-10-09 2011-04-14 Siddhartha Annapureddy Allocating resources of a node in a server farm

Non-Patent Citations (6)

* Cited by examiner, † Cited by third party
Title
Chan, J.S.K. et al, "Scheduling algorithms for peer-to-peer collaborative file distribution", aborative Computing: Networking, Applications and Worksharing, 2005 International Conference on Digital Object Identifier: 10.1109/COLCOM.2005.1651215 Publication Year: 2005 *
Ganesh, A.J et al, "Peer-to-peer membership management for gossip-based protocols", Computers, IEEE Transactions on Vol. 52, issue 2, Pub. 2003, pages 139-149. *
Igarashi, D. et al, "Overlay network topology for gossip-based multicast", Parallel and Distributed Systems, 2005, proceedings 11th International Conference, on Volume: 1 *
Liu Yunhao et al, "Building a Scalable Bipartite P2P Overlay Network ", Parallel and Distributed Systems, IEEE Transactions on Volume: 18 , Issue: 9 Digital Object Identifier: 10.1109/TPDS.2007.1059 Publication Year: 2007 , Page(s): 1296 - 1306 *
Liu, Y. et al, "Buliding a scalaable bipartite P2P overlay network," Parallel and Distributed Processing Symposium, 2004. *
Liu, Y. et al, "Buliding a scalaable bipartite P2P overlay network," Parallel and Distributed System, IEEE Transaction on vol. 18, issue 9, pub. 2007, pages 1296-1306. *

Cited By (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8806049B2 (en) * 2011-02-15 2014-08-12 Peerialism AB P2P-engine
US20120210014A1 (en) * 2011-02-15 2012-08-16 Peerialism AB P2p-engine
US20120311099A1 (en) * 2011-06-03 2012-12-06 Fujitsu Limited Method of distributing files, file distribution system, master server, computer readable, non-transitory medium storing program for distributing files, method of distributing data, and data distribution system
US8898327B2 (en) 2011-10-05 2014-11-25 Peerialism AB Method and device for arranging peers in a live streaming P2P network
US8713194B2 (en) 2011-11-18 2014-04-29 Peerialism AB Method and device for peer arrangement in single substream upload P2P overlay networks
US8799498B2 (en) 2011-11-18 2014-08-05 Peerialism AB Method and device for peer arrangement in streaming-constrained P2P overlay networks
WO2013112153A1 (en) * 2012-01-26 2013-08-01 Hewlett-Packard Development Company, L.P. Identifying a push communication pattern
US11082510B2 (en) 2012-01-26 2021-08-03 Micro Focus Llc Identifying a push communication pattern
US20150334181A1 (en) * 2013-01-10 2015-11-19 Telefonaktiebolaget L M Ericsson (Publ) Connection Mechanism for Energy-Efficient Peer-to-Peer Networks
US10075519B2 (en) * 2013-01-10 2018-09-11 Telefonaktiebolaget Lm Ericsson (Publ) Connection mechanism for energy-efficient peer-to-peer networks
CN107690777A (en) * 2015-03-30 2018-02-13 爱迪德技术有限公司 Monitor peer-to-peer network
US20180287878A1 (en) * 2015-03-30 2018-10-04 Irdeto B.V. Monitoring a peer-to-peer network
US11411826B2 (en) * 2015-03-30 2022-08-09 Irdeto B.V. Monitoring a peer-to-peer network

Also Published As

Publication number Publication date
JP5462252B2 (en) 2014-04-02
US8407283B2 (en) 2013-03-26
WO2010000724A1 (en) 2010-01-07
KR101511154B1 (en) 2015-04-10
JP2011526712A (en) 2011-10-13
EP2294795A1 (en) 2011-03-16
CN102113296A (en) 2011-06-29
EP2294795B1 (en) 2013-12-11
KR20110025933A (en) 2011-03-14
CN102113296B (en) 2013-10-16

Similar Documents

Publication Publication Date Title
US8407283B2 (en) Device and method for disseminating content data between peers in a P2P mode, by using a bipartite peer overlay
EP2279584B1 (en) System and method for distributing a map of content available at multiple receivers
US8307024B2 (en) Assisted peer-to-peer media streaming
KR20110095231A (en) Method and apparatus for peer to peer streaming
US9654329B2 (en) Content distribution over a network
WO2006120946A1 (en) Tree-type network system, node device, broadcast system, broadcast method, etc.
KR101573197B1 (en) Control method for transmitting distributed file based on P2Peer and P2P communication control apparatus therefor
CN103037015A (en) Active P2P data distribution method and node client-side
Xu et al. Twittering by cuckoo: decentralized and socio-aware online microblogging services
Parisis et al. Efficient content delivery through fountain coding in opportunistic information-centric networks
Goh et al. A comparative study of tree-based and mesh-based overlay p2p media streaming
Belblidia et al. Part-whole dissemination of large multimedia contents in opportunistic networks
US20110191418A1 (en) Method for downloading segments of a video file in a peer-to-peer network
Belblidia et al. Epics: Fair opportunistic multi-content dissemination
Matos et al. Lightweight, efficient, robust epidemic dissemination
EP2216957A1 (en) Device and method for disseminating content data between peers in a P2P mode, by using a bipartite peer overlay
CN103037017A (en) Passive P2P data distribution method and node client-side
KR101568564B1 (en) A METHOD OF CONTENT DELIVERY IN LTE RAN, AN eNB AND COMMUNICATION SYSTEM
KR20100120086A (en) Device and method for controlling dissemination of contents between peers having wireless communication capacities, depending on impatience reaction functions
Kim et al. An adaptive algorithm for live streaming using tree-based peer-to-peer networking in mobile environments
US20120016936A1 (en) Device and method for controlling dissemination of content data between peers in a p2p mode, by using a two-level ramdomized peer overlay and a dynamic unchoke mechanism
Duraisamy et al. Mesh based peer to peer live video streaming using ant algorithm
Ghettas et al. An Efficient Hybrid Push-Pull Based Protocol for VOD In Peer-to-Peer network
Zhang et al. Bottom-up trie structure for P2P live streaming
Ha et al. Topology optimization in hybrid tree/mesh-based peer-to-peer streaming system

Legal Events

Date Code Title Description
AS Assignment

Owner name: THOMSON LICENSING, FRANCE

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:LE SCOUARNEC, NICOLAS;CHAMPEL, MARY-LUC;REEL/FRAME:025617/0680

Effective date: 20101223

STCF Information on status: patent grant

Free format text: PATENTED CASE

FPAY Fee payment

Year of fee payment: 4

AS Assignment

Owner name: MAGNOLIA LICENSING LLC, TEXAS

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:THOMSON LICENSING S.A.S.;REEL/FRAME:053570/0237

Effective date: 20200708

FEPP Fee payment procedure

Free format text: MAINTENANCE FEE REMINDER MAILED (ORIGINAL EVENT CODE: REM.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

LAPS Lapse for failure to pay maintenance fees

Free format text: PATENT EXPIRED FOR FAILURE TO PAY MAINTENANCE FEES (ORIGINAL EVENT CODE: EXP.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20210326