CN110716813A - Data stream processing method and device, readable storage medium and processor - Google Patents

Data stream processing method and device, readable storage medium and processor Download PDF

Info

Publication number
CN110716813A
CN110716813A CN201910877474.7A CN201910877474A CN110716813A CN 110716813 A CN110716813 A CN 110716813A CN 201910877474 A CN201910877474 A CN 201910877474A CN 110716813 A CN110716813 A CN 110716813A
Authority
CN
China
Prior art keywords
data
memory
data stream
divided data
dividing
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.)
Pending
Application number
CN201910877474.7A
Other languages
Chinese (zh)
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.)
Seashell Housing Beijing Technology Co Ltd
Original Assignee
Beike Technology Co Ltd
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 Beike Technology Co Ltd filed Critical Beike Technology Co Ltd
Priority to CN201910877474.7A priority Critical patent/CN110716813A/en
Publication of CN110716813A publication Critical patent/CN110716813A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/546Message passing systems or structures, e.g. queues
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/466Transaction processing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/54Indexing scheme relating to G06F9/54
    • G06F2209/548Queue

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The embodiment of the invention provides a data stream processing method, a data stream processing device, a readable storage medium and a processor, and belongs to the technical field of data processing. The method comprises the following steps: dividing the data stream into a plurality of divided data; aiming at least one piece of divided data in the plurality of pieces of divided data, configuring a service main key of the data for each piece of divided data; dividing the same type of data in each divided data into the same memory queue according to the service main key to form a plurality of memory queues; and carrying out parallel processing on the plurality of memory queues. The data stream processing method, the data stream processing device, the readable storage medium and the processor can ensure the consistency of data services and simultaneously realize the rapid processing of the data streams.

Description

Data stream processing method and device, readable storage medium and processor
Technical Field
The present invention relates to the field of data processing technologies, and in particular, to a data stream processing method, an apparatus, a readable storage medium, and a processor.
Background
kafka or rockmq can be regarded as a message component, data can be divided into several parts by dividing (partition) the same topic (topic), but each part of divided data can be processed by only one consumer of one consumer group at the same time, and if the consumption efficiency is improved, the number of the consumers can be increased by adjusting the number of the divided parts in a conventional mode, but the number of the divided parts cannot be infinitely enlarged; in addition, in a general project, the same consumer processes distributed data through a single thread, which is certainly a waste, and meanwhile, even if a multi-thread mode is adopted in the same consumer, the same divided data is consumed relatively out of order, and under special conditions, the orderliness of services cannot be guaranteed.
Disclosure of Invention
Embodiments of the present invention provide a data stream processing method, an apparatus, a readable storage medium, and a processor, which can implement fast processing of a data stream while ensuring consistency in data services.
In order to achieve the above object, an embodiment of the present invention provides a data stream processing method, where the method includes: dividing the data stream into a plurality of divided data; aiming at least one piece of divided data in the plurality of pieces of divided data, configuring a service main key of the data for each piece of divided data; dividing the same type of data in each divided data into the same memory queue according to the service main key to form a plurality of memory queues; and carrying out parallel processing on the plurality of memory queues.
Preferably, the step of dividing the same type of data in each divided data into the same memory queue according to the service primary key to form a plurality of memory queues is performed by a hash algorithm.
Preferably, the hash algorithm is the murmurur hash2 algorithm or the murmurur hash3 algorithm.
Preferably, the parallel processing of the plurality of memory queues includes: respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue; the multiple threads are executed in parallel.
An embodiment of the present invention further provides a data stream processing apparatus, where the apparatus includes: the device comprises a dividing unit, a configuration unit, a slicing unit and a processing unit, wherein the dividing unit is used for dividing the data stream into a plurality of pieces of divided data; the configuration unit is used for configuring a service main key of data for each piece of divided data aiming at least one piece of divided data in the plurality of pieces of divided data; the fragmentation unit is used for dividing the same type of data in each part of divided data into the same memory queue according to the service main key so as to form a plurality of memory queues; the processing unit is used for carrying out parallel processing on the plurality of memory queues.
Preferably, the operations performed by the fragmentation unit are performed by a hashing algorithm.
Preferably, the hash algorithm is the murmurur hash2 algorithm or the murmurur hash3 algorithm.
Preferably, the parallel processing of the plurality of memory queues includes: respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue; the multiple threads are executed in parallel.
Embodiments of the present invention also provide a machine-readable storage medium, which stores instructions for causing a machine to execute the above-mentioned data stream processing method.
An embodiment of the present invention further provides a processor, configured to run a program, where the program is run to perform: a method of data stream processing as hereinbefore described.
By adopting the technical scheme, the data stream processing method, the device, the readable storage medium and the processor provided by the embodiment of the invention are adopted, and aiming at least one piece of divided data in a plurality of pieces of divided data, a service main key of the data is configured for each piece of divided data; dividing the same type of data in each divided data into the same memory queue according to the service main key to form a plurality of memory queues; and carrying out parallel processing on the plurality of memory queues. Because each type of data is positioned in one queue and the queues are processed in parallel, the consistency of data service can be ensured and the data flow can be processed quickly.
Additional features and advantages of embodiments of the invention will be set forth in the detailed description which follows.
Drawings
The accompanying drawings, which are included to provide a further understanding of the embodiments of the invention and are incorporated in and constitute a part of this specification, illustrate embodiments of the invention and together with the description serve to explain the embodiments of the invention without limiting the embodiments of the invention. In the drawings:
fig. 1 is a flowchart of a data stream processing method according to an embodiment of the present invention;
fig. 2 is a flowchart of a data stream processing method according to another embodiment of the present invention;
fig. 3 is a schematic flow chart illustrating an implementation of a data stream processing method according to an embodiment of the present invention;
fig. 4 is a schematic structural diagram of a data stream processing apparatus according to an embodiment of the present invention.
Description of the reference numerals
1 dividing unit 2 configuration unit
3 slicing unit 4 processing unit.
Detailed Description
The following detailed description of embodiments of the invention refers to the accompanying drawings. It should be understood that the detailed description and specific examples, while indicating embodiments of the invention, are given by way of illustration and explanation only, not limitation.
Fig. 1 is a flowchart of a data stream processing method according to an embodiment of the present invention. As shown in fig. 1, the method includes:
step S11, dividing the data stream into a plurality of divided data;
specifically, kafka or rockmq can be used as a message component, and kafka et al can divide data into multiple shares by performing a division (partition) process on a data stream of the same topic (topic) to form multiple divided data.
Step S12, for at least one of the plurality of divided data, configuring a service key of the data for each divided data;
specifically, according to the data characteristics, a service primary key is configured for each piece of divided data to be used as a basis for subsequent data slicing, for example, if the service primary key is a user ID, data of the same user may be a type of data, or if the service primary key is a house source ID, data of the same house source ID may be a type of data. If the service key is the house source ID, the data fragmentation is performed according to the house source ID.
Step S13, according to the service key, dividing the same type of data in each divided data into the same memory queue to form a plurality of memory queues;
specifically, a concurrency number n, i.e., the number of queues fragmented by the hash algorithm, is first allocated to the topic. Data fragmentation can then be performed by a hash (hash) algorithm, such as the murmurr hash2 algorithm or the murmurr hash3 algorithm. If the number of types of data is different from the number of the concurrency number n, for example, there are 4 types of data, and the concurrency number n is 2, then the 2 types of data may be placed in one queue, and the other 2 types of data may be placed in another queue, so as to ensure that the data of the same type is divided into one queue, but there is not necessarily only one type of data in one queue.
Step S14, parallel processing is performed on the plurality of memory queues.
Specifically, as shown in fig. 2, the parallel processing of the plurality of memory queues includes:
step S21, putting the plurality of memory queues into a plurality of threads, respectively, where one thread corresponds to one memory queue;
step S22, the plurality of threads are executed in parallel.
As described above, after one divided data is processed, the next divided data may be processed continuously, and the plurality of divided data may be processed in serial.
Fig. 3 is a schematic flow chart illustrating an execution of a data stream processing method according to an embodiment of the present invention. As shown in fig. 3, first, for each piece of divided data, batch acquisition is performed; then, the divided data may actually have a plurality of classes, for example, 1, 2, and 3 shown in the figure are respectively data of different classes; performing hash fragmentation, putting the data of the type represented by the 1 into a first queue, putting the data of the type represented by the 2 into a second queue, and putting the data of the type represented by the 3 into a third queue; finally, the three queues are processed in parallel.
Fig. 4 is a schematic structural diagram of a data stream processing apparatus according to an embodiment of the present invention. As shown in fig. 4, the apparatus includes: the device comprises a dividing unit 1, a configuration unit 2, a slicing unit 3 and a processing unit 4, wherein the dividing unit 1 is used for dividing the data stream into a plurality of pieces of divided data; the configuration unit 2 is configured to configure a service primary key of data for each piece of divided data, for at least one piece of divided data of the plurality of pieces of divided data; the fragmentation unit 3 is configured to divide the same type of data in each piece of divided data into the same memory queue according to the service primary key to form multiple memory queues; the processing unit 4 is configured to perform parallel processing on the plurality of memory queues.
Preferably, the operations performed by the fragmentation unit 3 are performed by a hash algorithm.
Preferably, the hash algorithm is the murmurur hash2 algorithm or the murmurur hash3 algorithm.
Preferably, the parallel processing of the plurality of memory queues includes: respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue; the multiple threads are executed in parallel.
The embodiments of the data stream processing apparatus are similar to the embodiments of the data stream processing method described above, and are not described herein again.
The data stream processing device comprises a processor and a memory, wherein the dividing unit, the configuration unit, the slicing unit, the processing unit and the like are stored in the memory as program units, and the processor executes the program units stored in the memory to realize corresponding functions.
The processor comprises a kernel, and the kernel calls the corresponding program unit from the memory. One or more than one kernel can be set, and the fast processing of the data stream is realized while the consistency of the data service is ensured by adjusting the kernel parameters.
The memory may include volatile memory in a computer readable medium, Random Access Memory (RAM) and/or nonvolatile memory such as Read Only Memory (ROM) or flash memory (flash RAM), and the memory includes at least one memory chip.
An embodiment of the present invention provides a storage medium on which a program is stored, the program implementing the data stream processing method when executed by a processor.
The embodiment of the invention provides a processor, which is used for running a program, wherein the data stream processing method is executed when the program runs.
The embodiment of the invention provides equipment, which comprises a processor, a memory and a program which is stored on the memory and can run on the processor, wherein the processor executes the program and realizes the following steps:
dividing the data stream into a plurality of divided data; aiming at least one piece of divided data in the plurality of pieces of divided data, configuring a service main key of the data for each piece of divided data; dividing the same type of data in each divided data into the same memory queue according to the service main key to form a plurality of memory queues; and carrying out parallel processing on the plurality of memory queues.
Preferably, the step of dividing the same type of data in each divided data into the same memory queue according to the service primary key to form a plurality of memory queues is performed by a hash algorithm.
Preferably, the hash algorithm is the murmurur hash2 algorithm or the murmurur hash3 algorithm.
Preferably, the parallel processing of the plurality of memory queues includes: respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue; the multiple threads are executed in parallel.
The device herein may be a server, a PC, a PAD, a mobile phone, etc.
The present application further provides a computer program product adapted to perform a program for initializing the following method steps when executed on a data processing device:
dividing the data stream into a plurality of divided data; aiming at least one piece of divided data in the plurality of pieces of divided data, configuring a service main key of the data for each piece of divided data; dividing the same type of data in each divided data into the same memory queue according to the service main key to form a plurality of memory queues; and carrying out parallel processing on the plurality of memory queues.
Preferably, the step of dividing the same type of data in each divided data into the same memory queue according to the service primary key to form a plurality of memory queues is performed by a hash algorithm.
Preferably, the hash algorithm is the murmurur hash2 algorithm or the murmurur hash3 algorithm.
Preferably, the parallel processing of the plurality of memory queues includes: respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue; the multiple threads are executed in parallel.
As will be appreciated by one skilled in the art, embodiments of the present application may be provided as a method, system, or computer program product. Accordingly, the present application may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present application may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present application is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the application. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
In a typical configuration, a computing device includes one or more processors (CPUs), input/output interfaces, network interfaces, and memory.
The memory may include forms of volatile memory in a computer readable medium, Random Access Memory (RAM) and/or non-volatile memory, such as Read Only Memory (ROM) or flash memory (flash RAM). The memory is an example of a computer-readable medium.
Computer-readable media, including both non-transitory and non-transitory, removable and non-removable media, may implement information storage by any method or technology. The information may be computer readable instructions, data structures, modules of a program, or other data. Examples of computer storage media include, but are not limited to, phase change memory (PRAM), Static Random Access Memory (SRAM), Dynamic Random Access Memory (DRAM), other types of Random Access Memory (RAM), Read Only Memory (ROM), Electrically Erasable Programmable Read Only Memory (EEPROM), flash memory or other memory technology, compact disc read only memory (CD-ROM), Digital Versatile Discs (DVD) or other optical storage, magnetic cassettes, magnetic tape magnetic disk storage or other magnetic storage devices, or any other non-transmission medium that can be used to store information that can be accessed by a computing device. As defined herein, a computer readable medium does not include a transitory computer readable medium such as a modulated data signal and a carrier wave.
It should also be noted that the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in the process, method, article, or apparatus that comprises the element.
The above are merely examples of the present application and are not intended to limit the present application. Various modifications and changes may occur to those skilled in the art. Any modification, equivalent replacement, improvement, etc. made within the spirit and principle of the present application should be included in the scope of the claims of the present application.

Claims (10)

1. A method for processing a data stream, the method comprising:
dividing the data stream into a plurality of divided data;
aiming at least one piece of divided data in the plurality of pieces of divided data, configuring a service main key of the data for each piece of divided data;
dividing the same type of data in each divided data into the same memory queue according to the service main key to form a plurality of memory queues;
and carrying out parallel processing on the plurality of memory queues.
2. The data stream processing method according to claim 1, wherein the step of dividing the same type of data in each of the divided data into the same memory queue according to the service key to form a plurality of memory queues is performed by a hash algorithm.
3. The data stream processing method of claim 2, wherein the hash algorithm is a murmurur hash2 algorithm or a murmurur hash3 algorithm.
4. The data stream processing method of claim 1, wherein the parallel processing of the plurality of memory queues comprises:
respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue;
the multiple threads are executed in parallel.
5. A data stream processing apparatus, characterized in that the apparatus comprises:
a dividing unit, a configuration unit, a slicing unit and a processing unit, wherein,
the dividing unit is used for dividing the data stream into a plurality of divided data;
the configuration unit is used for configuring a service main key of data for each piece of divided data aiming at least one piece of divided data in the plurality of pieces of divided data;
the fragmentation unit is used for dividing the same type of data in each part of divided data into the same memory queue according to the service main key so as to form a plurality of memory queues;
the processing unit is used for carrying out parallel processing on the plurality of memory queues.
6. The data stream processing apparatus according to claim 5, wherein the operations performed by the fragmentation unit are performed by a hashing algorithm.
7. The data stream processing apparatus of claim 6, wherein the hash algorithm is a murmurur hash2 algorithm or a murmurur hash3 algorithm.
8. The data stream processing apparatus of claim 5, wherein the parallel processing of the plurality of memory queues comprises:
respectively putting the plurality of memory queues into a plurality of threads, wherein one thread corresponds to one memory queue;
the multiple threads are executed in parallel.
9. A machine-readable storage medium having stored thereon instructions for causing a machine to perform the data stream processing method of any one of claims 1-4.
10. A processor configured to execute a program, wherein the program is configured to perform: a method of processing a data stream according to any of claims 1 to 4.
CN201910877474.7A 2019-09-17 2019-09-17 Data stream processing method and device, readable storage medium and processor Pending CN110716813A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910877474.7A CN110716813A (en) 2019-09-17 2019-09-17 Data stream processing method and device, readable storage medium and processor

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910877474.7A CN110716813A (en) 2019-09-17 2019-09-17 Data stream processing method and device, readable storage medium and processor

Publications (1)

Publication Number Publication Date
CN110716813A true CN110716813A (en) 2020-01-21

Family

ID=69209910

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910877474.7A Pending CN110716813A (en) 2019-09-17 2019-09-17 Data stream processing method and device, readable storage medium and processor

Country Status (1)

Country Link
CN (1) CN110716813A (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111475305A (en) * 2020-05-06 2020-07-31 智博云信息科技(广州)有限公司 Big data processing method and system based on cloud platform multithreading
CN111491015A (en) * 2020-03-31 2020-08-04 北京金山云网络技术有限公司 Preheating task processing method and system, proxy server and service center
CN112422635A (en) * 2020-10-27 2021-02-26 中国银联股份有限公司 Data checking method, device, equipment, system and storage medium
CN114218303A (en) * 2021-12-30 2022-03-22 北京宇信科技集团股份有限公司 Transaction data processing system, processing method, medium and equipment

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105100271A (en) * 2015-08-31 2015-11-25 南京势行软件开发有限公司 System for publishing distributed flexible extension information and control method thereof
CN105608223A (en) * 2016-01-12 2016-05-25 北京中交兴路车联网科技有限公司 Hbase database entering method and system for kafka
CN105791431A (en) * 2016-04-26 2016-07-20 北京邮电大学 On-line distributed monitoring video processing task scheduling method and device
CN107451147A (en) * 2016-05-31 2017-12-08 北京京东尚科信息技术有限公司 A kind of method and apparatus of kafka clusters switching at runtime
CN108121792A (en) * 2017-12-20 2018-06-05 第四范式(北京)技术有限公司 Method, apparatus, equipment and the storage medium of task based access control parallel data processing stream
CN108737177A (en) * 2018-05-21 2018-11-02 中国联合网络通信有限公司重庆市分公司 A kind of implementation method mobile Internet real-time streaming data acquisition and analyzed
CN109451072A (en) * 2018-12-29 2019-03-08 广东电网有限责任公司 A kind of message caching system and method based on Kafka
CN109684370A (en) * 2018-09-07 2019-04-26 平安普惠企业管理有限公司 Daily record data processing method, system, equipment and storage medium
CN110086636A (en) * 2019-04-17 2019-08-02 平安科技(深圳)有限公司 A kind of message distributing method based on mqtt, server and storage medium
CN110134500A (en) * 2019-04-15 2019-08-16 平安普惠企业管理有限公司 Method of data synchronization, device, equipment and storage medium based on multithreading
CN110231992A (en) * 2019-06-06 2019-09-13 深圳前海微众银行股份有限公司 Distributed resource allocation method, device, equipment and readable storage medium storing program for executing

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105100271A (en) * 2015-08-31 2015-11-25 南京势行软件开发有限公司 System for publishing distributed flexible extension information and control method thereof
CN105608223A (en) * 2016-01-12 2016-05-25 北京中交兴路车联网科技有限公司 Hbase database entering method and system for kafka
CN105791431A (en) * 2016-04-26 2016-07-20 北京邮电大学 On-line distributed monitoring video processing task scheduling method and device
CN107451147A (en) * 2016-05-31 2017-12-08 北京京东尚科信息技术有限公司 A kind of method and apparatus of kafka clusters switching at runtime
CN108121792A (en) * 2017-12-20 2018-06-05 第四范式(北京)技术有限公司 Method, apparatus, equipment and the storage medium of task based access control parallel data processing stream
CN108737177A (en) * 2018-05-21 2018-11-02 中国联合网络通信有限公司重庆市分公司 A kind of implementation method mobile Internet real-time streaming data acquisition and analyzed
CN109684370A (en) * 2018-09-07 2019-04-26 平安普惠企业管理有限公司 Daily record data processing method, system, equipment and storage medium
CN109451072A (en) * 2018-12-29 2019-03-08 广东电网有限责任公司 A kind of message caching system and method based on Kafka
CN110134500A (en) * 2019-04-15 2019-08-16 平安普惠企业管理有限公司 Method of data synchronization, device, equipment and storage medium based on multithreading
CN110086636A (en) * 2019-04-17 2019-08-02 平安科技(深圳)有限公司 A kind of message distributing method based on mqtt, server and storage medium
CN110231992A (en) * 2019-06-06 2019-09-13 深圳前海微众银行股份有限公司 Distributed resource allocation method, device, equipment and readable storage medium storing program for executing

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
BOLON0708: "细谈RockertMQ", 《CSDN》 *
修梅婷: "家庭开发平台中消息中间件的设计与实现", 《中国优秀硕士学位论文全文数据库 信息科技辑》 *
汉无为: "什么是集群消费,什么是广播消费,什么是Topic、什么又是Broker", 《个人图书馆》 *

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111491015A (en) * 2020-03-31 2020-08-04 北京金山云网络技术有限公司 Preheating task processing method and system, proxy server and service center
CN111491015B (en) * 2020-03-31 2022-11-11 北京金山云网络技术有限公司 Preheating task processing method and system, proxy server and service center
CN111475305A (en) * 2020-05-06 2020-07-31 智博云信息科技(广州)有限公司 Big data processing method and system based on cloud platform multithreading
CN111475305B (en) * 2020-05-06 2020-11-17 睿智合创(北京)科技有限公司 Big data processing method and system based on cloud platform multithreading
CN112422635A (en) * 2020-10-27 2021-02-26 中国银联股份有限公司 Data checking method, device, equipment, system and storage medium
CN114218303A (en) * 2021-12-30 2022-03-22 北京宇信科技集团股份有限公司 Transaction data processing system, processing method, medium and equipment

Similar Documents

Publication Publication Date Title
CN107450979B (en) Block chain consensus method and device
CN110716813A (en) Data stream processing method and device, readable storage medium and processor
CN107391527B (en) Data processing method and device based on block chain
CN106933534B (en) Data synchronization method and device
CN110768912B (en) API gateway current limiting method and device
US9459903B2 (en) Techniques for routing service chain flow packets between virtual machines
CN111953780B (en) Micro-service gray level publishing method, device, equipment, system and storage medium
CN110262847B (en) Application program starting acceleration method and device and machine-readable storage medium
CN110875935B (en) Message publishing, processing and subscribing method, device and system
CN110971430B (en) Automatic capacity expansion and reduction control method and device, storage medium and processor
CN107818012B (en) Data processing method and device and electronic equipment
CN107578338B (en) Service publishing method, device and equipment
CN109857516B (en) Cluster migration method and device based on container
CN109739627B (en) Task scheduling method, electronic device and medium
CN102301664A (en) Method and device for dispatching streams of multicore processor
CN112748993A (en) Task execution method and device, storage medium and electronic equipment
CN108595315B (en) Log collection method, device and equipment
CN109992470B (en) Threshold value adjusting method and device
CN114035947A (en) Method, device, equipment and system for dynamically allocating resources
CN112817428A (en) Task running method and device, mobile terminal and storage medium
CN111338803A (en) Thread processing method and device
US10901972B2 (en) Table partition configuration method, apparatus and system for database system
CN111930530A (en) Equipment message processing method, device and medium based on Internet of things
CN115328608A (en) Kubernetes container vertical expansion adjusting method and device
CN111221644B (en) Resource scheduling method, device and equipment

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
TA01 Transfer of patent application right
TA01 Transfer of patent application right

Effective date of registration: 20200228

Address after: 100085 Floor 102-1, Building No. 35, West Second Banner Road, Haidian District, Beijing

Applicant after: Seashell Housing (Beijing) Technology Co., Ltd.

Address before: 300280 unit 05, room 112, floor 1, building C, comprehensive service area, Nangang Industrial Zone, Binhai New Area, Tianjin

Applicant before: Shell Technology Co., Ltd.

RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20200121