CN110659132A - Request processing optimization method and computer-readable storage medium - Google Patents

Request processing optimization method and computer-readable storage medium Download PDF

Info

Publication number
CN110659132A
CN110659132A CN201910806371.1A CN201910806371A CN110659132A CN 110659132 A CN110659132 A CN 110659132A CN 201910806371 A CN201910806371 A CN 201910806371A CN 110659132 A CN110659132 A CN 110659132A
Authority
CN
China
Prior art keywords
preset
message
processing speed
cpu occupancy
task
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
CN201910806371.1A
Other languages
Chinese (zh)
Other versions
CN110659132B (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.)
Fujian Tianquan Educational Technology Ltd
Original Assignee
Fujian Tianquan Educational Technology 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 Fujian Tianquan Educational Technology Ltd filed Critical Fujian Tianquan Educational Technology Ltd
Priority to CN201910806371.1A priority Critical patent/CN110659132B/en
Publication of CN110659132A publication Critical patent/CN110659132A/en
Application granted granted Critical
Publication of CN110659132B publication Critical patent/CN110659132B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

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/50Allocation of resources, e.g. of the central processing unit [CPU]
    • G06F9/5005Allocation of resources, e.g. of the central processing unit [CPU] to service a request
    • G06F9/5027Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals
    • 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
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/54Indexing scheme relating to G06F9/54
    • G06F2209/548Queue
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)
  • Computer And Data Communications (AREA)

Abstract

The invention discloses a request processing optimization method and a computer readable storage medium, comprising the following steps: creating a first-in first-out queue and a first-in last-out queue; when the server side has a condition of overtime request or reaches the upper limit of the task processing quantity, acquiring the CPU occupancy rate or the message processing speed of the equipment where the server side is located; if the CPU occupancy rate does not reach a preset first threshold value or the message processing speed reaches a preset second threshold value, writing the received task message into the first-in first-out queue; and if the CPU occupancy rate reaches a preset first threshold value or the message processing speed does not reach a preset second threshold value, writing the received task message into the first-in and last-out queue. The invention can improve the request success rate.

Description

Request processing optimization method and computer-readable storage medium
Technical Field
The present invention relates to the field of internet technologies, and in particular, to a request processing optimization method and a computer-readable storage medium.
Background
In many projects, there are two client sides and two server sides, and actually there are many different architecture implementation manners for the server side, one of which is a micro service architecture manner, which mainly embodies operations such as request access and aggregation interface between a gateway and a micro service.
The implementation mode of the architecture is mainly that the gateway calls the micro-services and calls the micro-services mutually. Actually, each interface provided by each micro service has an upper limit of the number of requests or an upper limit of resources, and when the micro service request reaches the upper limit, or when other special conditions, such as abnormal conditions of machine resources or network jitter, occur, there will be a request congestion of the micro service. Once the congestion occurs, other requests continue to be congested, so that the whole micro-service system is unavailable. Or a higher-level system, when the situation occurs, the queue is used for storing the task message, the queue is a first-in first-out queue, the first-in message is processed firstly, so that a lot of time is consumed when the message which arrives at the next time is processed, and the timeout is abandoned, so that the request fails.
Disclosure of Invention
The technical problem to be solved by the invention is as follows: a request processing optimization method and a computer-readable storage medium are provided, which can improve a request success rate.
In order to solve the technical problems, the invention adopts the technical scheme that: a method of request processing optimization, comprising:
creating a first-in first-out queue and a first-in last-out queue;
when the server side has a condition of overtime request or reaches the upper limit of the task processing quantity, acquiring the CPU occupancy rate or the message processing speed of the equipment where the server side is located;
if the CPU occupancy rate does not reach a preset first threshold value or the message processing speed reaches a preset second threshold value, writing the received task message into the first-in first-out queue;
and if the CPU occupancy rate reaches a preset first threshold value or the message processing speed does not reach a preset second threshold value, writing the received task message into the first-in and last-out queue.
The invention also proposes a computer-readable storage medium, on which a computer program is stored which, when being executed by a processor, carries out the steps as described above.
The invention has the beneficial effects that: by setting two queues, when the task message needs to be written into the queue and the CPU occupancy rate is low or the message processing speed is high, the task message is written into the first-in first-out queue, because the resources are sufficient, the first-in task message can be successfully processed, the subsequent task message can be consumed and completed quickly, and the request success rate is ensured; when the task message needs to be written into the queue and the CPU occupancy rate is high or the message processing speed is low, the task message is written into the first-in last-out queue, so that the subsequent task message can be processed quickly, and the overall request success rate is improved by ensuring the processing success rate of the latest task message. According to the invention, through a mode of processing tasks in a self-adjusting manner, the probability of task execution failure caused by insufficient resources can be reduced to a great extent, and the execution success rate is improved.
Drawings
FIG. 1 is a flow chart of a request processing optimization method of the present invention;
fig. 2 is a flowchart of a method according to a first embodiment of the invention.
Detailed Description
In order to explain technical contents, objects and effects of the present invention in detail, the following detailed description is given with reference to the accompanying drawings in conjunction with the embodiments.
The most key concept of the invention is as follows: when the task message needs to be written into the queue, the task message is written into a first-in first-out queue or a first-in last-out queue according to the CPU resource use condition or the message processing speed.
Referring to fig. 1, a method for optimizing request processing includes:
creating a first-in first-out queue and a first-in last-out queue;
when the server side has a condition of overtime request or reaches the upper limit of the task processing quantity, acquiring the CPU occupancy rate or the message processing speed of the equipment where the server side is located;
if the CPU occupancy rate does not reach a preset first threshold value or the message processing speed reaches a preset second threshold value, writing the received task message into the first-in first-out queue;
and if the CPU occupancy rate reaches a preset first threshold value or the message processing speed does not reach a preset second threshold value, writing the received task message into the first-in and last-out queue.
From the above description, the beneficial effects of the present invention are: the request success rate can be improved.
Further, before the obtaining of the CPU occupancy rate or the message processing speed of the device where the server is located, the method further includes:
and detecting the CPU occupancy rate of the equipment where the server side is positioned according to a preset period, or acquiring the total number of task messages processed in the period according to the preset period, and calculating to obtain the message processing speed.
Further, still include:
and storing the CPU occupancy rate or the message processing speed into a local cache.
According to the description, by detecting the CPU occupancy rate in advance or calculating the message processing speed in advance and storing the message processing speed in the local cache, when judgment is needed, relevant data can be acquired quickly, and the efficiency is improved.
Further, after the CPU occupancy does not reach a preset first threshold or the message processing speed reaches a preset second threshold, the method further includes:
and the consumption thread takes out the earliest written task message from the first-in first-out queue for processing.
From the above description, under the condition of sufficient resources, the task messages in the first-in first-out queue are processed in sequence, and the request success rate of the task messages is ensured.
Further, after the CPU occupancy rate reaches a preset first threshold or the message processing speed does not reach a preset second threshold, the method further includes:
and the consumption thread takes out the latest written task message from the first-in and second-out queue for processing.
According to the description, under the condition of insufficient resources, the latest received task message is processed preferentially, the processing success rate of the latest task message is ensured, and therefore the overall request success rate is improved.
The invention also proposes a computer-readable storage medium, on which a computer program is stored which, when being executed by a processor, carries out the steps as described above.
Example one
Referring to fig. 2, a first embodiment of the present invention is: a request processing optimization method can be applied to a micro-service architecture, and comprises the following steps:
s1: creating a first-in first-out queue and a first-in last-out queue; that is, in the system content of the server, two queues are created, i.e., a first-in first-out queue and a first-in last-out queue. The length of the queue can be set according to conditions such as the size of a memory, and preferably, the length of the queue is 1024.
S2: according to a preset period, detecting the CPU occupancy rate of equipment where a server side is located, or acquiring the total number of task messages processed in the period, and calculating to obtain the message processing speed. Detecting the occupation condition of CPU resources in each period to obtain the CPU occupancy rate of the current period; or when the current period is finished, counting the total number of the task messages processed by the server in the current period, and dividing the total number by the duration of the current period to obtain the message processing speed of the current period.
For example, the CPU occupancy is detected every 10s, or the total number of task messages processed by the service end in the 10s is counted every 10s, and then is divided by 10, so as to obtain the message processing speed corresponding to the 10 s.
Further, the CPU occupancy rate or the message processing speed is stored in a local cache. Preferably, only the latest CPU occupancy or message processing speed may be stored in the local cache, so as to save the storage space of the local cache.
S3: receiving a task message sent by a request end; the request end may be a client or a server.
S4: and judging whether the request processing of the server is normally executed, namely whether the request timeout condition does not occur in the server and the upper limit of the task processing quantity is not reached, if so, processing the received task message according to the existing processing method, otherwise, whether the request timeout condition occurs in the server or the task processing quantity is on-line is reached, and if not, writing the received task message into a queue, and executing the step S5.
S5: acquiring the CPU occupancy rate or the message processing speed of the previous period; namely, the newly detected CPU occupancy or the newly calculated message processing speed is acquired.
S6: and judging whether the CPU occupancy rate does not reach a preset first threshold value or whether the message processing speed reaches a preset second threshold value, if so, namely the resource occupancy rate is lower or the message processing speed is higher, indicating that the task message can be continuously received and processed, executing the step S7, and if not, namely the resource occupancy rate is higher or the message processing speed is lower, indicating that more task messages cannot be continuously processed, executing the step S8.
Preferably, the first threshold is 60%; the second threshold is dependent on the specific traffic operation.
S7: the write-in thread writes the received task message into the first-in first-out queue, and the consumption thread takes out the earliest written task message from the first-in first-out queue for processing; the first-in first-out queue is adopted to store the task messages, and the first-in task messages are processed preferentially.
S8: the write-in thread writes the received task message into the first-in-first-out queue, and the consumption thread takes out the latest written task message from the first-in-first-out queue for processing; namely, the first-in and second-out queues are adopted to store the task messages, and the task messages which arrive after the priority processing are also adopted.
When the CPU occupancy is large or the processing speed is slow, if the task message that arrives first is processed first, the task processing is slow, and it is easy for the processing time of the task that is overtime to be delayed (or for the request end to be determined to be failed due to the overtime of the request), which may cause the request to fail, and the task message that arrives later may be abandoned due to the overtime, which may cause the request to fail. Therefore, under the scene, the latest received task message is processed preferentially, and the earlier task message is processed, so that the processing success rate of the later-achieved task message is ensured, and the overall request success rate is improved.
Further, if the processing speed of the message does not reach the speed of writing the message into the queue, the number of the task messages in the queue is increased, and when the maximum supported number of the queue is reached, the queue can not support more messages to be stored, and the task messages written into the queue earlier are discarded or refused to be processed.
Further, for steps S5-S8, if it is detected in the current cycle that the CPU occupancy of the previous cycle reaches the first threshold or the message processing speed does not reach the second threshold, the write thread immediately writes the task message into the fifo queue, but the consumption thread continues to process the task message in the fifo queue in the current cycle, and no matter whether the consumption thread can consume the task message in the fifo queue in the current cycle, the consumption thread starts to process the task message in the fifo queue in the next cycle, and the task message in the fifo queue is abandoned, that is, the default request fails. This is because the alert threshold has been reached at this time, and priority needs to be given to successful processing of the latest task message.
In this embodiment, a new self-adjusting function is adopted, and when a request timeout condition occurs at a server or the upper limit of the task processing number is reached, two queues are used to store task messages, one is a first-in first-out queue, and the other is a first-in last-out queue, and the task messages are specifically analyzed and processed according to the resource occupation condition (mainly CPU occupancy rate) or the message processing speed of the device where the server is located. When the CPU occupancy rate is low or the message processing speed is high, the task message can be continuously received and processed, the first-in first-out queue is adopted to store the task message and perform subsequent processing, and the subsequent task can be quickly consumed and completed due to sufficient resources. When the CPU occupancy rate is high or the message processing speed is low, which indicates that more tasks cannot be processed continuously, the first-in and second-out queues are adopted to store the task messages, so that the latest task messages can be processed quickly, the success rate is ensured, and the previously received task messages have high request failure probability and are subsequently processed. By adopting the mode of processing the tasks in a self-adjusting way, the probability of task execution failure caused by insufficient resources can be reduced to a great extent, and the execution success rate is improved.
Example two
The present embodiment is a computer-readable storage medium corresponding to the above-mentioned embodiments, on which a computer program is stored, which when executed by a processor implements the steps of:
creating a first-in first-out queue and a first-in last-out queue;
when the server side has a condition of overtime request or reaches the upper limit of the task processing quantity, acquiring the CPU occupancy rate or the message processing speed of the equipment where the server side is located;
if the CPU occupancy rate does not reach a preset first threshold value or the message processing speed reaches a preset second threshold value, writing the received task message into the first-in first-out queue;
and if the CPU occupancy rate reaches a preset first threshold value or the message processing speed does not reach a preset second threshold value, writing the received task message into the first-in and last-out queue.
Further, before the obtaining of the CPU occupancy rate or the message processing speed of the device where the server is located, the method further includes:
and detecting the CPU occupancy rate of the equipment where the server side is positioned according to a preset period, or acquiring the total number of task messages processed in the period according to the preset period, and calculating to obtain the message processing speed.
Further, still include:
and storing the CPU occupancy rate or the message processing speed into a local cache.
Further, after the CPU occupancy does not reach a preset first threshold or the message processing speed reaches a preset second threshold, the method further includes:
and the consumption thread takes out the earliest written task message from the first-in first-out queue for processing.
Further, after the CPU occupancy rate reaches a preset first threshold or the message processing speed does not reach a preset second threshold, the method further includes:
and the consumption thread takes out the latest written task message from the first-in and second-out queue for processing.
In summary, according to the optimization method for request processing and the computer-readable storage medium provided by the present invention, when a task message needs to be written into a queue and the CPU occupancy rate is low or the message processing speed is fast, the task message is written into a first-in first-out queue, because resources are sufficient, the first-in task message can be successfully processed, and the subsequent task message can be consumed and completed fast, thereby ensuring the request success rate; when the task message needs to be written into the queue and the CPU occupancy rate is high or the message processing speed is low, the task message is written into the first-in last-out queue, so that the subsequent task message can be processed quickly, and the overall request success rate is improved by ensuring the processing success rate of the latest task message. According to the invention, through a mode of processing tasks in a self-adjusting manner, the probability of task execution failure caused by insufficient resources can be reduced to a great extent, and the execution success rate is improved.
The above description is only an embodiment of the present invention, and not intended to limit the scope of the present invention, and all equivalent changes made by using the contents of the present specification and the drawings, or applied directly or indirectly to the related technical fields, are included in the scope of the present invention.

Claims (10)

1. A method for optimizing request processing, comprising:
creating a first-in first-out queue and a first-in last-out queue;
when the server side has a condition of overtime request or reaches the upper limit of the task processing quantity, acquiring the CPU occupancy rate or the message processing speed of the equipment where the server side is located;
if the CPU occupancy rate does not reach a preset first threshold value or the message processing speed reaches a preset second threshold value, writing the received task message into the first-in first-out queue;
and if the CPU occupancy rate reaches a preset first threshold value or the message processing speed does not reach a preset second threshold value, writing the received task message into the first-in and last-out queue.
2. The method of claim 1, wherein before the obtaining the CPU occupancy or the message processing speed of the device where the server is located, the method further comprises:
and detecting the CPU occupancy rate of the equipment where the server side is positioned according to a preset period, or acquiring the total number of task messages processed in the period according to the preset period, and calculating to obtain the message processing speed.
3. The method of claim 2, further comprising:
and storing the CPU occupancy rate or the message processing speed into a local cache.
4. The method of claim 1, wherein after the CPU occupancy does not reach a preset first threshold or the message processing speed reaches a preset second threshold, the method further comprises:
and the consumption thread takes out the earliest written task message from the first-in first-out queue for processing.
5. The method of claim 1, wherein after the CPU occupancy reaches a preset first threshold or the message processing speed does not reach a preset second threshold, the method further comprises:
and the consumption thread takes out the latest written task message from the first-in and second-out queue for processing.
6. A computer-readable storage medium, on which a computer program is stored, which program, when executed by a processor, performs the steps of:
creating a first-in first-out queue and a first-in last-out queue;
when the server side has a condition of overtime request or reaches the upper limit of the task processing quantity, acquiring the CPU occupancy rate or the message processing speed of the equipment where the server side is located;
if the CPU occupancy rate does not reach a preset first threshold value or the message processing speed reaches a preset second threshold value, writing the received task message into the first-in first-out queue;
and if the CPU occupancy rate reaches a preset first threshold value or the message processing speed does not reach a preset second threshold value, writing the received task message into the first-in and last-out queue.
7. The computer-readable storage medium of claim 6, wherein before the obtaining the CPU occupancy or the message processing speed of the device where the server is located, further comprises:
and detecting the CPU occupancy rate of the equipment where the server side is positioned according to a preset period, or acquiring the total number of task messages processed in the period according to the preset period, and calculating to obtain the message processing speed.
8. The computer-readable storage medium of claim 7, further comprising:
and storing the CPU occupancy rate or the message processing speed into a local cache.
9. The computer-readable storage medium of claim 6, wherein if the CPU occupancy rate does not reach a preset first threshold or the message processing speed reaches a preset second threshold, further comprising:
and the consumption thread takes out the earliest written task message from the first-in first-out queue for processing.
10. The computer-readable storage medium of claim 6, wherein if the CPU occupancy reaches a preset first threshold or the message processing speed does not reach a preset second threshold, further comprising:
and the consumption thread takes out the latest written task message from the first-in and second-out queue for processing.
CN201910806371.1A 2019-08-29 2019-08-29 Request processing optimization method and computer-readable storage medium Active CN110659132B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910806371.1A CN110659132B (en) 2019-08-29 2019-08-29 Request processing optimization method and computer-readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910806371.1A CN110659132B (en) 2019-08-29 2019-08-29 Request processing optimization method and computer-readable storage medium

Publications (2)

Publication Number Publication Date
CN110659132A true CN110659132A (en) 2020-01-07
CN110659132B CN110659132B (en) 2022-09-06

Family

ID=69037891

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910806371.1A Active CN110659132B (en) 2019-08-29 2019-08-29 Request processing optimization method and computer-readable storage medium

Country Status (1)

Country Link
CN (1) CN110659132B (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111552577A (en) * 2020-03-24 2020-08-18 福建天泉教育科技有限公司 Method for preventing invalid request from occurring, storage medium
CN112866145A (en) * 2021-01-13 2021-05-28 中央财经大学 Method, apparatus and computer-readable storage medium for setting internal parameters of node

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030016685A1 (en) * 2001-07-13 2003-01-23 Arthur Berggreen Method and apparatus for scheduling message processing
US20060136930A1 (en) * 2000-11-21 2006-06-22 Microsoft Corporation Generic application server and method of operation therefor
CN107391271A (en) * 2017-05-17 2017-11-24 阿里巴巴集团控股有限公司 A kind of delayed tasks triggering method and device based on Message Queuing system
CN108304254A (en) * 2017-12-29 2018-07-20 珠海国芯云科技有限公司 Quick virtual machine process dispatch control method and device
CN108762953A (en) * 2018-05-25 2018-11-06 连云港杰瑞电子有限公司 A kind of message queue implementation method
CN108920093A (en) * 2018-05-30 2018-11-30 北京三快在线科技有限公司 Data read-write method, device, electronic equipment and readable storage medium storing program for executing

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060136930A1 (en) * 2000-11-21 2006-06-22 Microsoft Corporation Generic application server and method of operation therefor
US20030016685A1 (en) * 2001-07-13 2003-01-23 Arthur Berggreen Method and apparatus for scheduling message processing
CN107391271A (en) * 2017-05-17 2017-11-24 阿里巴巴集团控股有限公司 A kind of delayed tasks triggering method and device based on Message Queuing system
CN108304254A (en) * 2017-12-29 2018-07-20 珠海国芯云科技有限公司 Quick virtual machine process dispatch control method and device
CN108762953A (en) * 2018-05-25 2018-11-06 连云港杰瑞电子有限公司 A kind of message queue implementation method
CN108920093A (en) * 2018-05-30 2018-11-30 北京三快在线科技有限公司 Data read-write method, device, electronic equipment and readable storage medium storing program for executing

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
NARESH SINGHMAR.ET.AL: "A Combined LIFO-Priority Scheme for Overload Control of E-commerce Web Servers", 《INTERNATIONAL INFRASTRUCTURE SURVIVABILITY WORKSHOP》 *
陈梅梅: "基于收益驱动请求分类的多目标动态优先请求调度", 《计算机科学》 *

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111552577A (en) * 2020-03-24 2020-08-18 福建天泉教育科技有限公司 Method for preventing invalid request from occurring, storage medium
CN111552577B (en) * 2020-03-24 2023-11-03 福建天泉教育科技有限公司 Method for preventing invalid request from occurring and storage medium
CN112866145A (en) * 2021-01-13 2021-05-28 中央财经大学 Method, apparatus and computer-readable storage medium for setting internal parameters of node
CN112866145B (en) * 2021-01-13 2022-11-25 中央财经大学 Method, device and computer readable storage medium for setting internal parameters of node

Also Published As

Publication number Publication date
CN110659132B (en) 2022-09-06

Similar Documents

Publication Publication Date Title
CN110222091B (en) Real-time statistical analysis method for mass data
CN108200544B (en) Short message issuing method and short message platform
CN111338773B (en) Distributed timing task scheduling method, scheduling system and server cluster
EP3128420A1 (en) Service flow control method, controller and system in object-based storage system
CN110659132B (en) Request processing optimization method and computer-readable storage medium
CN107341062B (en) Data pushing method, device, equipment and storage medium
CN114095438B (en) Data transmission method, apparatus, device, storage medium and computer program product
CN112650575B (en) Resource scheduling method, device and cloud service system
WO2017185615A1 (en) Method for determining service status of service processing device and scheduling device
US20190286582A1 (en) Method for processing client requests in a cluster system, a method and an apparatus for processing i/o according to the client requests
CN113037846A (en) Data reporting method and device, electronic equipment and computer readable storage medium
CN112040001A (en) Request processing method and device based on distributed storage
US9374325B2 (en) Hash perturbation with queue management in data communication
CN110650182A (en) Network caching method and device, computer equipment and storage medium
CN110569238B (en) Data management method, system, storage medium and server based on big data
CN111857992A (en) Thread resource allocation method and device in Radosgw module
CN115514710B (en) Weak connection flow management and control method based on self-adaptive sliding window
CN116633875A (en) Time order-preserving scheduling method for multi-service coupling concurrent communication
CN107229424B (en) Data writing method for distributed storage system and distributed storage system
CN110795239A (en) Application memory leakage detection method and device
CN109089281A (en) A kind of cluster communication method, terminal device and storage medium
CN108121580B (en) Method and device for realizing application program notification service
CN110019372A (en) Data monitoring method, device, server and storage medium
CN111131083B (en) Method, device and equipment for data transmission between nodes and computer readable storage medium
CN113918093B (en) Capacity reduction optimization method and terminal

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