CN113271336B - DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium - Google Patents

DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium Download PDF

Info

Publication number
CN113271336B
CN113271336B CN202110428228.0A CN202110428228A CN113271336B CN 113271336 B CN113271336 B CN 113271336B CN 202110428228 A CN202110428228 A CN 202110428228A CN 113271336 B CN113271336 B CN 113271336B
Authority
CN
China
Prior art keywords
dpdk
message
data
data transmission
interface
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.)
Active
Application number
CN202110428228.0A
Other languages
Chinese (zh)
Other versions
CN113271336A (en
Inventor
张小刚
王绍源
黄梓侨
陈华
齐乐
肖平
程文远
张潇文
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.)
Hunan University
Original Assignee
Hunan University
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
Application filed by Hunan University filed Critical Hunan University
Priority to CN202110428228.0A priority Critical patent/CN113271336B/en
Publication of CN113271336A publication Critical patent/CN113271336A/en
Application granted granted Critical
Publication of CN113271336B publication Critical patent/CN113271336B/en
Active legal-status Critical Current
Anticipated 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/50Network services
    • H04L67/56Provisioning of proxy services
    • H04L67/562Brokering proxy services
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/56Provisioning of proxy services
    • H04L67/568Storing data temporarily at an intermediate stage, e.g. caching

Abstract

The invention discloses a DPDK-based robot middleware DDS data transmission method, electronic equipment and a computer-readable storage medium, wherein the method comprises the following steps: step S1, the message subscriber obtains the memory space naming mark of each topic information; step S2, the DCPS information base matches the message publisher and the message subscriber according to the subject information and sends the message subscriber information to the message publisher; step S3, the message publisher processes the subject information data and writes the processed subject information data into a data queue to wait for sending; step S4, the message subscriber processes the received data packet to obtain the corresponding data; the invention can improve the real-time performance of data transmission, reduce transmission delay and meet the real-time data transmission requirement of strict requirement and low delay.

Description

DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium
Technical Field
The invention belongs to the technical field of robot middleware, and relates to a DPDK-based robot middleware DDS data transmission method, electronic equipment and a computer-readable storage medium.
Background
With the increasing maturity of industrial robot technology, industrial robots develop towards a distributed and clustered direction, the industry generally controls and transmits messages to distributed robot clusters through robot middleware, and data communication among the distributed robot clusters is realized by data-centric DDS (direct digital synthesis) adopted by part of the robot middleware; data Distribution Service (DDS) is a distributed real-time communication middleware technical specification established by an Object Management Group (OMG), adopts a publish/subscribe system architecture, emphasizes taking data as a center, provides a QoS (quality of service) quality strategy capable of meeting various distributed real-time communication application requirements, has high transmission efficiency and network resource utilization rate compared with the traditional TCP (transmission control protocol), UDP (user datagram protocol) communication technology and CORBA specification, the DDS has been widely applied to the fields of national defense, civil aviation, industrial control and the like at present, and becomes a standard solution for data publishing/subscribing in a distributed real-time system.
In the current DDS implementation, a kernel network protocol stack of an operating system is used for data transmission, which has the following problems: 1. after a large number of network data packets enter the network card, the kernel of the operating system frequently responds to hardware interrupt requests of the network card, and the processes of responding to the interrupt requests can preempt the calling of other systems, so that a large amount of context switching overhead is generated, and the performance overhead is high; 2. network data is transmitted to a buffer area of a kernel space from a network card through DMA and the like, and then is copied to a user mode space buffer area from the kernel space buffer area, and the process accounts for 40% -50% of time consumed by a data packet processing flow, so that the time delay of data transmission is large; the above disadvantages result in that the DDS data throughput, data processing speed, and data transmission time delay cannot meet the requirements of a strong real-time application scenario with strict requirements and low delay.
Disclosure of Invention
In order to solve the above problems, the invention provides a DPDK-based robot middleware DDS data transmission method, which can reduce the process of responding to a terminal request, reduce the performance overhead of a data distribution system, reduce the time consumption of transfer storage in the data distribution process, reduce the time delay of data distribution, and improve the processing speed of data distribution.
In order to solve the above problem, the present invention also provides an electronic device and a computer-readable storage medium.
The technical scheme adopted by the invention is that the DDS data transmission method of the robot middleware based on the DPDK comprises the following steps:
step S1, the message subscriber applies for the storage space in the DPDK memory pool bound by the message subscriber, and carries out the address naming identification to the storage space;
step S2, the message subscriber and the message publisher access the DCPS information base, the DCPS information base obtains the subject information, the MAC address and the address naming identification of the message subscriber, matches the subject information of the message publisher and the message subscriber, and sends the MAC address of the matched message subscriber and the DPDK memory pool address naming identification to the message publisher;
step S3, after DDS coding compression and address naming identification adding processing are carried out on data corresponding to the subject information by the message publisher, a data packet is written into a data queue of a DPDK-bound network card by using DMA to wait for transmission;
step S4, the network card bound with DPDK sends the data packet to the message subscriber according to the MAC address, and the message subscriber obtains corresponding data.
Further, both the message publisher and the message subscriber use the gigabit-capable network card to configure the DPDK operating environment, initialize the DPDK operating environment, and start the DPDK memory pool.
Further, the configuring the DPDK operation environment includes: setting kernel parameters of an operating system, setting a large-page memory, loading a user mode IO module, and setting a network card to run a DPDK user mode driver.
Further, the message publisher performs the operation environment initialization and the DPDK network card start in step S2 through the following processes: the message publisher calls a PDKD initialization interface rte _ eal _ init (), a port setting interface port _ init (), a data transceiving configuration interface rte _ eth _ dev _ configuration (), a transmission queue initialization interface rte _ eth _ tx _ queue _ setup (), completes the configuration and initialization of data transmission and reception, and calls a device start interface rte _ eth _ dev _ start () to start a DPDK network card.
Further, the step S2 is that the message subscriber performs the operation environment initialization and the DPDK network card start by the following procedures: the message subscriber calls a PDKD initialization interface rte _ eal _ init (), a port setting interface port _ init (), a data transceiving configuration interface rte _ eth _ dev _ configuration (), a receiving queue initialization interface rte _ eth _ rx _ queue _ setup (), completes the configuration and initialization of data transmission and reception, and calls a device starting interface rte _ eth _ dev _ start () to start a DPDK network card.
Further, the number of the message publishers and the number of the message subscribers is at least one.
Further, in step S3, the message issuer performs segmentation, DMA address padding, packet length processing, and offload parameter processing on the binary data.
Further, in step S4, the message subscriber data is parsed to obtain the data header address naming identifier, and accordingly, the data packet is read from the network card to the corresponding storage space of the DPDK memory pool.
An electronic device is characterized by comprising a processor, a communication interface, a memory and a communication bus, wherein the processor and the communication interface are used for realizing mutual communication by the memory through the communication bus;
a memory for storing a computer program;
and the processor is used for realizing the steps of the method when executing the program stored in the memory.
A computer-readable storage medium, in which a computer program is stored which, when being executed by a processor, carries out the above-mentioned method steps.
The invention has the beneficial effects that: according to the invention, the kernel of the operating system is not required to copy and rewrite the data in the data distribution process of the robot middleware, so that the context switching overhead caused by the interruption of other work by the kernel of the operating system is avoided, the time consumption of the conversion of the data between the kernel state and the user state is reduced, and the processing speed of data distribution is improved; the invention does not use a TCP/IP protocol stack, does not need to add a message header at the head of the data packet, reduces the volume of the data packet, reduces the processing flow of the data packet and improves the efficiency of data transmission.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts.
Fig. 1 is a flow chart of data transmission according to the present invention.
Fig. 2 is a flow chart of initialization and start-up of a DPDK network card by a message publisher.
Fig. 3 is a flow chart of initialization and start-up of a DPDK network card for a message subscriber.
Fig. 4 is a schematic diagram of data transmission by multiple message subscribers using the present invention.
Fig. 5 is a comparison diagram of the transmission delay of the DDS data distribution technique and the embodiment of the invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
The DDS data transmission method of the robot middleware based on the DPDK comprises the following steps:
step 1, configuring DPDK operating environments by a message publisher and a message subscriber by using a gigabit network card, respectively initializing the configured DPDK operating environments, and starting a DPDK memory pool;
the configuration operation environment comprises the steps of setting kernel parameters of an operating system, setting a large-page memory, loading a user mode IO module, and setting a gigabit-class network card to operate a user mode IO driver in a DPDK mode for data transmission;
as shown in fig. 2, the message publisher calls a PDKD initialization interface rte _ eal _ init (), a port setting interface port _ init (), a data transceiving configuration interface rte _ eth _ dev _ configuration (), a transmission queue initialization interface rte _ eth _ tx _ queue _ setup (), completes the configuration and initialization of data transmission and reception, and calls a device start interface rte _ eth _ dev _ start () to start a DPDK network card;
as shown in fig. 3, the message subscriber calls a PDKD initialization interface rte _ eal _ init (), a port setting interface port _ init (), a data transceiving configuration interface rte _ eth _ dev _ configuration (), a receiving queue initialization interface rte _ eth _ rx _ queue _ setup (), completes the configuration and initialization of data transmission and reception, and calls a device start interface rte _ eth _ dev _ start () to start a DPDK network card;
step 2, the message subscriber applies for a storage space from a DPDK memory pool (memory) bound by the message subscriber, and carries out address naming identification on the storage space;
step 3, both the message publisher and the message subscriber access the DCPS information base, the DCPS information base obtains the topic information, the MAC address and the DPDK memory pool address naming identification of the message publisher/message subscriber, matches the topic information of the message publisher and the message subscriber, and sends the MAC address and the address naming identification of the matched message subscriber to the message publisher;
the MAC address is the physical ID of a DPDK network card used by the message subscriber/message publisher, and the message publisher can access the DPDK network card of the interconnected message subscriber/message publisher through the MAC address in the local area network;
step 4, as shown in fig. 1, the message publisher calls rte _ pktmbuf _ alloc () interface to apply for a storage space on the bound DPDK memory pool, compresses data corresponding to the subject information into binary data by DDS coding, and adds a DPDK memory pool address naming identifier of the message subscriber to the head of the data packet;
then the DPDK segments the data packet, fills DMA address, data packet length, unloading parameters and other operations, and writes the data into the bound DPDK network card by using DMA to wait for transmission;
the DMA address is used for directly accessing a memory controller (DMA) to directly write the data of the address into a network card buffer zone, namely a DPDK network card bound by a message publisher;
and 5, the message publisher binds the network card of the DPDK and transmits data to the message subscriber according to the MAC address, the message subscriber calls an rte _ eth _ burst () interface to obtain a data packet, the head of the data packet is analyzed through DPDK drive, a DPDK memory pool naming identifier corresponding to the data packet is obtained, the data packet is read from the network card bound with the DPDK and is stored in a storage space corresponding to the address naming identifier, and the message subscriber obtains corresponding data.
According to the invention, after the DPDK network card of the message subscriber receives the data packet corresponding to the theme information, the data packet is directly stored in the memory so that the message subscriber can process the data packet through the corresponding interface without informing the CPU through interruption, the data is copied to the memory space and then is copied to the user mode space, the operation time of copying the data to the kernel space is reduced, the time consumption of interrupt response of an operating system and switching between the kernel mode and the user mode is reduced, and the real-time property of data transmission is improved.
When the method is used for data transmission, a message publisher and a message subscriber can be in one or more pairs, namely a plurality of users can simultaneously access a DCPS information base, a plurality of data transmission pairs are formed according to topic information matching, then each message publisher sends a topic information data packet to a DPDPK memory pool of the message subscriber for storage, at the moment, the users can be used as the message publishers and can also be used as the message subscribers, one message publisher can send the topic information data packet to a plurality of message subscribers, and one message subscriber can also receive the topic information data packets sent by a plurality of message publishers; the invention does not use TCP/IP protocol stack in the data packet transmission process, does not need to add message header at the data packet head, reduces the volume of the data packet and the processing flow of the data packet, improves the data transmission efficiency and the data distribution speed, and reduces the data transmission time delay.
When the traditional DDS is used for data distribution, the received data is read into a kernel state storage space of a computer, then the data is copied into a user state storage space, the DDS judges a transmitted object of the data, and the data is further distributed to corresponding subscribers; as shown in fig. 4, in the present invention, if a plurality of different message subscribers exist in one device at the same time, when the DPDK polls and reads the network card data, the data is directly read from the network card into the storage space of the DPDK memory pool of the corresponding message subscriber according to the header identifier of the data packet, and the subscriber to which the data packet belongs does not need to be distinguished after the data packet is read into the memory space, so that the flow of data distribution is simplified, and the data transmission efficiency is improved.
The electronic equipment comprises a memory and a processor, wherein computer program instructions for configuring a DPDK operating environment, matching a message publisher and a message subscriber and performing DMA transmission are stored in the memory, the processor executes the computer program instructions to configure the DPDK operating environment, match subject information of the message publisher and the message subscriber, perform operations such as DDS coding compression and name identifier addition on data corresponding to the subject information as the message publisher, store the data in a DPDK memory pool, write the data into a sending queue after the DPDK memory pool processes the data, send the data to the message subscriber according to an MAC address and the name identifier, perform operations such as DDS decompression on a received data packet as the message subscriber, write the data into a memory pool storage space corresponding to the name identifier, and obtain the data corresponding to the subject information.
In the invention, users can be used as a message publisher and a message subscriber at the same time, and a plurality of users can be used as the message publisher and/or the message subscriber at the same time to communicate with the DCPS information base to obtain the matched message subscriber/message publisher, thereby carrying out parallel multi-party data transmission.
The electronic device of the present invention may communicate with one or more external devices (e.g., keyboard, pointing device, bluetooth device, etc.), may also communicate with one or more devices that enable a user to interact with the electronic device, and/or any devices that enable the electronic device to communicate with one or more other computing devices, and may also communicate with one or more networks (e.g., local area network, wide area network, and/or public network) through a network adapter.
The present invention also includes a computer readable medium storing a computer program that can be executed by a processor to implement DPDK based DDS data transmission, which can include, but is not limited to, magnetic storage devices, optical disks, digital versatile disks, smart cards, and flash memory devices, and further readable storage media of the present invention can represent one or more devices for storing information and/or other machine readable media, the term "machine readable medium" including, but not limited to, wireless channels and various other media (and/or storage media) capable of storing, containing, and/or carrying code and/or instructions and/or data.
Examples
OpenDDS is a specific open source implementation scheme of DDS, and in this embodiment, a DPDK-based transport layer instance is constructed on OpenDDS for testing; the specific method is that DPDK is used for constructing a ReceiveStrength class (used for data receiving), a SendStrategy class (used for data sending), a Transport class and a dataLink class of an OpenDDS transmission layer, a DPDK-based transmission layer dynamic library is generated, the transmission layer dynamic library is loaded when the OpenDDS is started, and data can be sent and received through a DPDK mode in the data sending and receiving stages.
The DPDK-based transport layer dynamic library implementation method comprises the following processes:
1. initializing DPDK library and port setting in a Transport class, loading a MacAddr field in a DPDKconfig.ini configuration file, and acquiring an MAC address binding a DPDK network card;
2. setting a function for receiving and analyzing matched data from a DCPS information base in a dataLink class, recording the MAC address of a DPDK network card bound by a message publisher/message subscriber, and then completing the configuration and initialization of data receiving and transmitting through a data receiving and transmitting configuration interface rte _ eth _ dev _ configuration (), a receiving queue initialization interface rte _ eth _ rx _ queue _ setup () and a transmitting queue initialization interface rte _ eth _ tx _ queue _ setup ();
3. the SendStratage class segments the data packets, writes a message subscriber naming identifier for each segment of data packets, sets a DMA address, a data packet length and unloading parameter data, puts the DMA address, the data packet length and the unloading parameter data into a data queue, and sends the data queue to a ReceiveStratage class; the receiveStrength class obtains the naming identification of the parsed data packet through rte _ eth _ rx _ burst (), and returns the data to the upper layer for calling.
In the same experimental environment, a data transmission delay test is performed by using a DDS data distribution technology and the embodiment of the invention, the data transmission delay test is to measure the round trip time RTT of each data, the data delay is defined as RTT/2, the length of the test data is 1KB, the statistical data amount is 5000, the sending interval of each data is 10ms, the experimental result pair is shown in fig. 5, the average delay of the DDS data distribution technology is 333.2us, and the average delay of data transmission of the embodiment of the invention is 270.6us, which shows that the embodiment of the invention can accelerate the data processing speed and transmission speed of a DDS transmission system, reduce the data transmission delay, and meet the real-time use requirement of strict requirement and low delay.
All the embodiments in the present specification are described in a related manner, and the same and similar parts among the embodiments may be referred to each other, and each embodiment focuses on the differences from the other embodiments.
The above description is only for the preferred embodiment of the present invention, and is not intended to limit the scope of the present invention. Any modification, equivalent replacement, or improvement made within the spirit and principle of the present invention shall fall within the protection scope of the present invention.

Claims (9)

1. The DPDK-based robot middleware DDS data transmission method is characterized by comprising the following steps:
step S1, the message subscriber applies for the storage space in the DPDK memory pool bound by the message subscriber, and carries out the address naming identification to the storage space;
step S2, the DCPS information base obtains the subject information, MAC address and DPDK memory pool address naming identification, matches the subject information of the message publisher and the message subscriber, and sends the MAC address and DPDK memory pool address naming identification of the matched message subscriber to the message publisher; the MAC address is the physical ID of a DPDK network card used by the message subscriber/message publisher;
step S3, after carrying out DDS coding compression and adding DPDK memory pool address naming identification processing on data corresponding to the subject information by the message publisher, writing the data packet into a data queue of a DPDK-bound network card by using DMA to wait for transmission;
step S4, the network card bound to the DPDK sends the data packet to the message subscriber according to the MAC address, the message subscriber calls the rte _ eth _ burst () interface to obtain the data packet, the DPDK driver parses the header of the data packet, obtains the DPDK memory pool address naming identifier corresponding to the data packet, reads the data packet from the network card bound to the DPDK and stores the data packet in the storage space corresponding to the DPDK memory pool address naming identifier, and the message subscriber obtains corresponding data.
2. The DDS data transmission method for the DPDK-based robot middleware of claim 1, wherein the message publisher and the message subscriber use a gigabit-capable network card to configure a DPDK operating environment, initialize the DPDK operating environment, and start a DPDK memory pool.
3. The DDS data transmission method for DPDK-based robot middleware of claim 2, wherein the configuring the DPDK operating environment includes: setting kernel parameters of an operating system, setting a large-page memory, loading a user mode IO module, and setting a network card to run a DPDK user mode driver.
4. The DDS data transmission method for DPDK-based robot middleware of claim 2, wherein the message publisher of step S2 performs the initialization of the operating environment and the startup of the DPDK network card through the following procedures: the message publisher calls a PDKD initialization interface rte _ eal _ init (), a port setting interface port _ init (), a data transceiving configuration interface rte _ eth _ dev _ configuration (), a transmission queue initialization interface rte _ eth _ tx _ queue _ setup (), completes the configuration and initialization of data transmission and reception, and calls a device start interface rte _ eth _ dev _ start () to start a DPDK network card.
5. The DDS data transmission method for DPDK-based robot middleware of claim 2, wherein the message subscriber in step S2 performs the initialization of the operating environment and the startup of the DPDK network card through the following procedures: the message subscriber calls a PDKD initialization interface rte _ eal _ init (), a port setting interface port _ init (), a data transceiving configuration interface rte _ eth _ dev _ configuration (), a receiving queue initialization interface rte _ eth _ rx _ queue _ setup (), completes the configuration and initialization of data transmission and reception, and calls a device starting interface rte _ eth _ dev _ start () to start a DPDK network card.
6. The DDS data transmission method for DPDK-based robot middleware of claim 1, wherein the number of the message publisher and the message subscriber is at least one.
7. The DDS data transmission method for DPDK-based robot middleware of claim 1, wherein the message issuer performs the processes of segmenting binary data, filling DMA address, packet length and unloading parameters in step S3.
8. An electronic device is characterized by comprising a processor, a communication interface, a memory and a communication bus, wherein the processor and the communication interface are used for realizing mutual communication by the memory through the communication bus;
a memory for storing a computer program;
a processor for implementing the method steps of any of claims 1 to 7 when executing a program stored in the memory.
9. A computer-readable storage medium, characterized in that a computer program is stored in the computer-readable storage medium, which computer program, when being executed by a processor, carries out the method steps of any one of claims 1 to 7.
CN202110428228.0A 2021-04-21 2021-04-21 DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium Active CN113271336B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110428228.0A CN113271336B (en) 2021-04-21 2021-04-21 DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110428228.0A CN113271336B (en) 2021-04-21 2021-04-21 DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium

Publications (2)

Publication Number Publication Date
CN113271336A CN113271336A (en) 2021-08-17
CN113271336B true CN113271336B (en) 2022-04-22

Family

ID=77229043

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110428228.0A Active CN113271336B (en) 2021-04-21 2021-04-21 DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium

Country Status (1)

Country Link
CN (1) CN113271336B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115037807B (en) * 2022-06-10 2023-08-18 湖南大学 Method and system for integrating DDS protocol on industrial robot service bus

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101848236A (en) * 2010-05-06 2010-09-29 北京邮电大学 Real-time data distribution system with distributed network architecture and working method thereof
US9948579B1 (en) * 2015-03-30 2018-04-17 Juniper Networks, Inc. NIC-based packet assignment for virtual networks
CN107368178A (en) * 2017-08-21 2017-11-21 湖南大学 Power consumption optimization method based on DPDK processing data packets platforms
CN108259492B (en) * 2018-01-15 2021-07-20 北京天融信网络安全技术有限公司 Traffic data retention method and device and computer readable storage medium
LU101360B1 (en) * 2019-08-26 2021-03-11 Microsoft Technology Licensing Llc Pinned physical memory supporting direct memory access for virtual memory backed containers
CN112383452B (en) * 2021-01-15 2021-03-23 奥特酷智能科技(南京)有限公司 DPDK frame-based DDS data transmission diagnosis method and system

Also Published As

Publication number Publication date
CN113271336A (en) 2021-08-17

Similar Documents

Publication Publication Date Title
EP2312807B1 (en) Method and system for enabling zero-copy transmission of streaming media data
CN108494817A (en) Data transmission method, relevant apparatus and system
WO2024037296A1 (en) Protocol family-based quic data transmission method and device
CN111163130A (en) Network service system and data transmission method thereof
CN111343148A (en) FGPA communication data processing method, system and device
CN113064742A (en) Message processing method, device, equipment and storage medium
CN113271336B (en) DPDK-based robot middleware DDS data transmission method, electronic equipment and computer-readable storage medium
CN110083468A (en) A kind of data transmission method, electronic device and storage medium
CN111698275B (en) Data processing method, device and equipment
WO2021238259A1 (en) Data transmission method, apparatus and device, and computer-readable storage medium
CN111698274B (en) Data processing method and device
CN109951532B (en) DPDK-based automatic flow model conversion device
CN112422485A (en) Communication method and device of transmission control protocol
CN115913473A (en) Data selective retransmission method and system, storage medium and electronic equipment
CN104969533A (en) Data packet processing method and device
CN115623057A (en) RDMA (remote direct memory Access) -based connection establishing method, device, equipment and storage medium
CN111835770B (en) Data processing method, device, server and storage medium
CN111245794B (en) Data transmission method and device
CN112422457B (en) Message processing method and device and computer storage medium
CN111857964A (en) Method and equipment for transmitting data of virtual machine CAN port to physical machine CAN port equipment
CN111586040A (en) High-performance network data receiving method and system
CN113301104B (en) Data processing system and method
CN110069422A (en) Core buffer recovery method based on MIPS multi-core processor
WO2023082609A1 (en) Data processing method and related device
WO2010020646A2 (en) A method of processing packetised data

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
CB03 Change of inventor or designer information
CB03 Change of inventor or designer information

Inventor after: Zhang Xiaogang

Inventor after: Wang Shaoyuan

Inventor after: Huang Ziqiao

Inventor after: Chen Hua

Inventor after: Qi Le

Inventor after: Xiao Ping

Inventor after: Cheng Weiyuan

Inventor after: Zhang Xiaowen

Inventor before: Zhang Xiaogang

Inventor before: Wang Shaoyuan

Inventor before: Huang Ziqiao

Inventor before: Chen Hua

Inventor before: Qi Le

Inventor before: Xiao Ping

Inventor before: Cheng Wenyuan

Inventor before: Zhang Xiaowen