CN110519329B - Method, device and readable medium for concurrently processing samba protocol request - Google Patents

Method, device and readable medium for concurrently processing samba protocol request Download PDF

Info

Publication number
CN110519329B
CN110519329B CN201910666765.1A CN201910666765A CN110519329B CN 110519329 B CN110519329 B CN 110519329B CN 201910666765 A CN201910666765 A CN 201910666765A CN 110519329 B CN110519329 B CN 110519329B
Authority
CN
China
Prior art keywords
thread
samba
samba protocol
file path
protocol requests
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
CN201910666765.1A
Other languages
Chinese (zh)
Other versions
CN110519329A (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.)
Suzhou Inspur Intelligent Technology Co Ltd
Original Assignee
Suzhou Inspur Intelligent 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 Suzhou Inspur Intelligent Technology Co Ltd filed Critical Suzhou Inspur Intelligent Technology Co Ltd
Priority to CN201910666765.1A priority Critical patent/CN110519329B/en
Publication of CN110519329A publication Critical patent/CN110519329A/en
Application granted granted Critical
Publication of CN110519329B publication Critical patent/CN110519329B/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/01Protocols
    • H04L67/06Protocols specially adapted for file transfer, e.g. file transfer protocol [FTP]
    • 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/60Scheduling or organising the servicing of application requests, e.g. requests for application data transmissions using the analysis and optimisation of the required network resources
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/22Parsing or analysis of headers

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Computer Security & Cryptography (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method for concurrently processing samba protocol request, which executes the following steps at a server side: connecting with a client and creating a main thread; receiving a plurality of samba protocol requests; creating a thread pool including a plurality of threads by a main thread; sequentially analyzing a plurality of samba protocol requests through a main thread to obtain a file path corresponding to each samba protocol request; and distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution. The invention also discloses a computer device and a readable storage medium. The method and the device for concurrently processing the samba protocol request can effectively improve the processing efficiency of the server request in the client concurrent service scene, thereby improving the service access performance of the system.

Description

Method, device and readable medium for concurrently processing samba protocol request
Technical Field
The present invention relates to the field of protocol requests, and more particularly, to a method, device and readable medium for concurrently processing samba protocol requests.
Background
Samba is software for realizing SMB protocol on Linux and UNIX systems, runs a program on a server, and can respond to SMB protocol requests sent by a processing client. When a certain client side is connected with the samba server side, the samba server side can newly generate an smbd process, and the smbd process is used for processing smb protocol requests sent to the server side by the client side. After receiving the request of the client, the server process analyzes the information in the request packet, and executes corresponding operations according to the analyzed information, such as opening a certain file in the distributed storage system, reading the content of the file, deleting the file, closing the file, and the like. The whole processing process of the client request at the server is executed by the same thread, so the client request must be processed in sequence according to the receiving order.
When the client service itself supports concurrent operation, for example, the client simultaneously has an operation request a1, a2, A3 … … for a file a and an operation request B1, B2, B3 … … for a file B, because the client sends requests concurrently and has only one link with the server, the message requests received by the server may be sequentially a1, a2, B1, A3, B2, B3 … …, then according to the original samba server request processing logic, the requests a1, a2, B1, A3, B2, and B3 … … must be processed in the order of receiving, but actually, some requests are processed without depending on the previous requests, for example, the B1 request does not need to wait for the successful processing of the a1 and a2 requests.
Disclosure of Invention
In view of this, an object of the embodiments of the present invention is to provide a method and an apparatus for concurrently processing a samba protocol request, where a thread pool is created, and protocol requests of different files are allocated to different threads, so that multiple threads concurrently process protocol requests, and the efficiency of processing protocol requests is improved.
Based on the above object, an aspect of the embodiments of the present invention provides a method for concurrently processing a samba protocol request, where the method includes: connecting with a client and creating a main thread; receiving a plurality of samba protocol requests; creating a thread pool including a plurality of threads by a main thread; sequentially analyzing a plurality of samba protocol requests through a main thread to obtain a file path corresponding to each samba protocol request; and distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution.
In some embodiments, allocating a plurality of samba protocol requests to corresponding threads in a thread pool according to a file path for concurrent execution comprises: analyzing the file path to obtain a character string; obtaining a unique value according to the character string; determining a corresponding thread in the thread pool according to the unique value; and distributing the samba protocol request corresponding to the file path to the corresponding thread.
In some embodiments, determining the corresponding thread in the thread pool from the unique value comprises: measuring a remainder value of the thread number of the thread pool by using the unique value; and determining the corresponding thread in the thread pool according to the residual value.
In some embodiments, allocating the samba protocol request corresponding to the file path to the corresponding thread includes: distributing a plurality of samba protocol requests with the same residual value to the same thread; and sequentially processing a plurality of samba protocol requests with the same residual value in the same thread according to the sequence of the entering thread.
In some embodiments, further comprising: and sending the message comprising the thread processing result to the client.
In another aspect of the embodiments of the present invention, there is also provided a computer device, including: at least one processor; and a memory storing computer instructions executable on the processor, the instructions being executable by the processor to perform the steps of: connecting with a client and creating a main thread; receiving a plurality of samba protocol requests; creating a thread pool including a plurality of threads by a main thread; sequentially analyzing a plurality of samba protocol requests through a main thread to obtain a file path corresponding to each samba protocol request; and distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution.
In some embodiments, allocating a plurality of samba protocol requests to corresponding threads in a thread pool according to a file path for concurrent execution comprises: analyzing the file path to obtain a character string; obtaining a unique value according to the character string; determining a corresponding thread in the thread pool according to the unique value; and distributing the samba protocol request corresponding to the file path to the corresponding thread.
In some embodiments, determining the corresponding thread in the thread pool from the unique value comprises: measuring a remainder value of the thread number of the thread pool by using the unique value; and determining the corresponding thread in the thread pool according to the residual value.
In some embodiments, allocating the samba protocol request corresponding to the file path to the corresponding thread includes: distributing a plurality of samba protocol requests with the same residual value to the same thread; and sequentially processing a plurality of samba protocol requests with the same residual value in the same thread according to the sequence of entering the thread.
In yet another aspect of the embodiments of the present invention, a computer-readable storage medium is also provided, which stores a computer program for executing the above method when executed by a processor.
The invention has the following beneficial technical effects: the invention realizes the concurrent processing of the samba protocol request by establishing the thread pool and adopting different threads to process the protocol requests of different files, and can effectively improve the processing efficiency of the server request under the client concurrent service scene, thereby improving the service access performance of the system.
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 embodiments or the prior art descriptions will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art that other embodiments can be obtained according to the drawings without creative efforts.
Fig. 1 is a schematic diagram illustrating an embodiment of a method for concurrently processing a samba protocol request according to the present invention;
fig. 2 is a flowchart of an embodiment of a method for concurrently processing samba protocol requests according to the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the following embodiments of the present invention are described in further detail with reference to the accompanying drawings.
It should be noted that all expressions using "first" and "second" in the embodiments of the present invention are used for distinguishing two entities with the same name but different names or different parameters, and it should be noted that "first" and "second" are merely for convenience of description and should not be construed as limitations of the embodiments of the present invention, and they are not described in any more detail in the following embodiments.
In view of the above object, a first aspect of the embodiments of the present invention provides an embodiment of a method for concurrently processing samba protocol requests. Fig. 1 is a schematic diagram illustrating an embodiment of a method for concurrently processing a samba protocol request according to the present invention. As shown in fig. 1, the embodiment of the present invention includes the following steps performed at the server:
s1, connecting with the client and creating a main thread;
s2, receiving a plurality of samba protocol requests;
s3, creating a thread pool comprising a plurality of threads through the main thread;
s4, sequentially analyzing the plurality of samba protocol requests through the main thread to obtain a file path corresponding to each samba protocol request; and
and S5, distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path and executing the samba protocol requests concurrently.
After a connection is established between a client and a server and a main thread is established, the client sends a plurality of samba protocol requests to the server, after the server receives the samba protocol requests, the main thread firstly establishes a thread pool, N threads (N values can be configured according to actual conditions) in the thread pool, then the main thread sequentially analyzes the plurality of samba protocol requests to obtain a file path corresponding to each samba protocol request, and then the plurality of samba protocol requests are distributed to the corresponding threads in the thread pool according to the file paths to be executed concurrently. In some embodiments, allocating the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution comprises: analyzing the file path to obtain a character string; obtaining a unique value according to the character string; determining a corresponding thread in the thread pool according to the unique value; and distributing the samba protocol request corresponding to the file path to the corresponding thread.
In some embodiments, determining the corresponding thread in the thread pool from the unique value comprises: measuring a remainder value of the thread number of the thread pool by using the unique value; and determining the corresponding thread in the thread pool according to the residual value. For example, the number of threads is 10, the unique value corresponding to the file path requested by a samba protocol is 16, the remainder of the thread number is measured by using the unique value, that is, 6 is obtained by using 16 to obtain 10, and the corresponding thread can be determined according to the remainder 6. In some embodiments, a hash value may be taken for a file path parsed in a request, and a remainder value may be taken for a thread number of a thread pool, so that requests belonging to the same file may also be allocated to the same thread, thereby ensuring that the processing of the same file request is not out of order.
In some embodiments, the allocating the samba protocol request corresponding to the file path to the corresponding thread includes: distributing a plurality of samba protocol requests with the same residual value to the same thread; and in the same thread, sequentially processing the samba protocol requests with the same residual value according to the sequence of entering the thread.
In certain embodiments, further comprising: sending a message including a thread processing result to a client in some embodiments, sending a message including a thread processing result to a client includes: assembling the message corresponding to each thread; and sending the assembled message to the client. And the threads in the thread pool process the requests in the respective thread queues, assemble the response messages after the processing is finished, and place the response messages into the response queue of the main thread, wherein the main thread is responsible for sending the response messages in the response queue to the client.
Fig. 2 is a flowchart illustrating an embodiment of a method for concurrently processing samba protocol requests provided in the present invention. As shown in FIG. 2, beginning at block 101 and proceeding to block 102, the server connects with the client and creates a main thread; then proceed to block 103 where a plurality of samba protocol requests are received; continuing to block 104, a thread pool is created by the main thread that includes a plurality of threads; then, proceeding to a block 105, sequentially analyzing the plurality of samba protocol requests through the main thread to obtain a file path corresponding to each samba protocol request; then, the flow proceeds to a block 106, and a plurality of samba protocol requests are distributed to corresponding threads in the thread pool according to the file path and are executed concurrently; then, the process proceeds to block 107, where the message including the thread processing result is sent to the client; and then proceeds to block 108 to end.
It should be particularly noted that, the steps in the embodiments of the method for concurrently processing samba protocol request can be mutually intersected, replaced, added, or deleted, so that these methods for concurrently processing samba protocol request, which are transformed by reasonable permutation and combination, shall also belong to the scope of the present invention, and shall not limit the scope of the present invention to the embodiments.
In view of the above object, a second aspect of the embodiments of the present invention provides a computer device, including: at least one processor; and a memory storing computer instructions executable on the processor, the instructions being executable by the processor to perform the steps of: s1, connecting with the client and creating a main thread; s2, receiving a plurality of samba protocol requests; s3, creating a thread pool comprising a plurality of threads through the main thread; s4, sequentially analyzing the plurality of samba protocol requests through the main thread to obtain a file path; and S5, distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution.
In some embodiments, allocating the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution comprises: analyzing the file path to obtain a character string; obtaining a unique value according to the character string; determining a corresponding thread in the thread pool according to the unique value; and distributing the samba protocol request corresponding to the file path to the corresponding thread.
In some embodiments, determining the corresponding thread in the thread pool from the unique value comprises: measuring a remainder value of the thread number of the thread pool by using the unique value; and determining the corresponding thread in the thread pool according to the residual value.
In some embodiments, allocating the samba protocol request corresponding to the file path to the corresponding thread includes: distributing a plurality of samba protocol requests with the same residual value to the same thread; and in the same thread, sequentially processing the samba protocol requests with the same residual value according to the sequence of entering the thread.
The invention also provides a computer readable storage medium storing a computer program which, when executed by a processor, performs the method as above.
Finally, it should be noted that, as one of ordinary skill in the art can appreciate, all or part of the processes of the methods of the above embodiments may be implemented by a computer program to instruct related hardware to implement the methods, and a program of the method for processing a samba protocol request may be stored in a computer readable storage medium, and when executed, the program may include the processes of the embodiments of the methods described above. The storage medium of the program may be a magnetic disk, an optical disk, a Read Only Memory (ROM), a Random Access Memory (RAM), or the like. The embodiments of the computer program may achieve the same or similar effects as any of the above-described method embodiments.
Furthermore, the methods disclosed according to embodiments of the invention may also be implemented as a computer program executed by a processor, which may be stored in a computer-readable storage medium. Which when executed by a processor performs the above-described functions as defined in the method disclosed by an embodiment of the invention.
Further, the above method steps and system elements may also be implemented using a controller and a computer readable storage medium for storing a computer program for causing the controller to implement the functions of the above steps or elements.
Further, it should be appreciated that the computer-readable storage media (e.g., memory) herein can be either volatile memory or nonvolatile memory, or can include both volatile and nonvolatile memory. By way of example, and not limitation, nonvolatile memory can include Read Only Memory (ROM), Programmable ROM (PROM), Electrically Programmable ROM (EPROM), Electrically Erasable Programmable ROM (EEPROM), or flash memory. Volatile memory can include Random Access Memory (RAM), which can act as external cache memory. By way of example and not limitation, RAM is available in a variety of forms such as synchronous RAM (DRAM), Dynamic RAM (DRAM), Synchronous DRAM (SDRAM), double data rate SDRAM (DDR SDRAM), Enhanced SDRAM (ESDRAM), Synchronous Link DRAM (SLDRAM), and Direct Rambus RAM (DRRAM). The storage devices of the disclosed aspects are intended to comprise, without being limited to, these and other suitable types of memory.
Those of skill would further appreciate that the various illustrative logical blocks, modules, circuits, and algorithm steps described in connection with the disclosure herein may be implemented as electronic hardware, computer software, or combinations of both. To clearly illustrate this interchangeability of hardware and software, various illustrative components, blocks, modules, circuits, and steps have been described above generally in terms of their functionality. Whether such functionality is implemented as software or hardware depends upon the particular application and design constraints imposed on the overall system. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present disclosure.
The various illustrative logical blocks, modules, and circuits described in connection with the disclosure herein may be implemented or performed with the following components designed to perform the functions herein: a general purpose processor, a Digital Signal Processor (DSP), an Application Specific Integrated Circuit (ASIC), a Field Programmable Gate Array (FPGA) or other programmable logic device, discrete gate or transistor logic, discrete hardware components, or any combination of these components. A general purpose processor may be a microprocessor, but in the alternative, the processor may be any conventional processor, controller, microcontroller, or state machine. A processor may also be implemented as a combination of computing devices, e.g., a combination of a DSP and a microprocessor, a plurality of microprocessors, one or more microprocessors in conjunction with a DSP, and/or any other such configuration.
The steps of a method or algorithm described in connection with the disclosure herein may be embodied directly in hardware, in a software module executed by a processor, or in a combination of the two. A software module may reside in RAM memory, flash memory, ROM memory, EPROM memory, EEPROM memory, registers, hard disk, a removable disk, a CD-ROM, or any other form of storage medium known in the art. An exemplary storage medium is coupled to the processor such the processor can read information from, and write information to, the storage medium. In the alternative, the storage medium may be integral to the processor. The processor and the storage medium may reside in an ASIC. The ASIC may reside in a user terminal. In the alternative, the processor and the storage medium may reside as discrete components in a user terminal.
In one or more exemplary designs, the functions may be implemented in hardware, software, firmware, or any combination thereof. If implemented in software, the functions may be stored on or transmitted over as one or more instructions or code on a computer-readable medium. Computer-readable media includes both computer storage media and communication media including any medium that facilitates transfer of a computer program from one place to another. A storage media may be any available media that can be accessed by a general purpose or special purpose computer. By way of example, and not limitation, such computer-readable media can comprise RAM, ROM, EEPROM, CD-ROM or other optical disk storage, magnetic disk storage or other magnetic storage devices, or any other medium that can be used to carry or store desired program code in the form of instructions or data structures and that can be accessed by a general-purpose or special-purpose computer, or a general-purpose or special-purpose processor. Also, any connection is properly termed a computer-readable medium. For example, if the software is transmitted from a website, server, or other remote source using a coaxial cable, fiber optic cable, twisted pair, Digital Subscriber Line (DSL), or wireless technologies such as infrared, radio, and microwave, then the coaxial cable, fiber optic cable, twisted pair, DSL, or wireless technologies such as infrared, radio, and microwave are included in the definition of medium. Disk and disc, as used herein, includes Compact Disc (CD), laser disc, optical disc, Digital Versatile Disc (DVD), floppy disk, blu-ray disc where disks usually reproduce data magnetically, while discs reproduce data optically with lasers. Combinations of the above should also be included within the scope of computer-readable media.
The foregoing is an exemplary embodiment of the present disclosure, but it should be noted that various changes and modifications could be made herein without departing from the scope of the present disclosure as defined by the appended claims. The functions, steps and/or actions of the method claims in accordance with the disclosed embodiments described herein need not be performed in any particular order. Furthermore, although elements of the embodiments of the invention may be described or claimed in the singular, the plural is contemplated unless limitation to the singular is explicitly stated.
It should be understood that, as used herein, the singular forms "a", "an" and "the" are intended to include the plural forms as well, unless the context clearly supports the exception. It should also be understood that "and/or" as used herein is meant to include any and all possible combinations of one or more of the associated listed items.
The numbers of the embodiments disclosed in the embodiments of the present invention are merely for description, and do not represent the merits of the embodiments.
It will be understood by those skilled in the art that all or part of the steps for implementing the above embodiments may be implemented by hardware, or may be implemented by a program instructing relevant hardware, and the program may be stored in a computer-readable storage medium, and the above-mentioned storage medium may be a read-only memory, a magnetic disk or an optical disk, etc.
Those of ordinary skill in the art will understand that: the discussion of any embodiment above is meant to be exemplary only, and is not intended to intimate that the scope of the disclosure, including the claims, of embodiments of the invention is limited to these examples; within the idea of an embodiment of the invention, also technical features in the above embodiment or in different embodiments may be combined and there are many other variations of the different aspects of the embodiments of the invention as described above, which are not provided in detail for the sake of brevity. Therefore, any omissions, modifications, substitutions, improvements, and the like that may be made without departing from the spirit and principles of the embodiments of the present invention are intended to be included within the scope of the embodiments of the present invention.

Claims (4)

1. A method for concurrently processing samba protocol request is characterized in that the following steps are executed at a server side:
connecting with a client and creating a main thread;
receiving a plurality of samba protocol requests;
creating, by the main thread, a thread pool comprising a plurality of threads;
sequentially analyzing the plurality of samba protocol requests through the main thread to obtain a file path corresponding to each samba protocol request; and
distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution,
wherein the allocating the plurality of samba protocol requests to the corresponding threads in the thread pool according to the file path and executing concurrently comprises:
analyzing the file path to obtain a character string;
obtaining a unique value according to the character string;
determining a corresponding thread in the thread pool according to the unique value; and
allocating the samba protocol request corresponding to the file path to the corresponding thread,
wherein the determining the corresponding thread in the thread pool according to the unique value comprises: measuring a remainder value of the thread number of the thread pool by using the unique value; and determining a corresponding thread in the thread pool according to the residual value,
the allocating the samba protocol request corresponding to the file path to the corresponding thread includes: distributing a plurality of samba protocol requests with the same residual value to the same thread; and in the same thread, sequentially processing the samba protocol requests with the same residual value according to the sequence of entering the thread.
2. The method of claim 1, further comprising: and sending the message comprising the thread processing result to the client.
3. A computer device, comprising:
at least one processor; and
a memory storing computer instructions executable on the processor, the instructions being executable by the processor to perform the steps of:
connecting with a client and creating a main thread;
receiving a plurality of samba protocol requests;
creating, by the main thread, a thread pool comprising a plurality of threads;
sequentially analyzing the plurality of samba protocol requests through the main thread to obtain a file path corresponding to each samba protocol request; and
distributing the plurality of samba protocol requests to corresponding threads in the thread pool according to the file path for concurrent execution,
wherein the allocating the plurality of samba protocol requests to the corresponding threads in the thread pool according to the file path and executing concurrently comprises:
analyzing the file path to obtain a character string;
obtaining a unique value according to the character string;
determining a corresponding thread in the thread pool according to the unique value; and
allocating the samba protocol request corresponding to the file path to the corresponding thread,
wherein the determining the corresponding thread in the thread pool according to the unique value comprises: measuring a remainder value of the thread number of the thread pool by using the unique value; and determining a corresponding thread in the thread pool according to the residual value,
the allocating the samba protocol request corresponding to the file path to the corresponding thread comprises: distributing a plurality of samba protocol requests with the same residual value to the same thread; and in the same thread, sequentially processing the samba protocol requests with the same residual values according to the sequence of the entering thread.
4. A computer-readable storage medium, in which a computer program is stored which, when being executed by a processor, is adapted to carry out the method of any one of claims 1-2.
CN201910666765.1A 2019-07-23 2019-07-23 Method, device and readable medium for concurrently processing samba protocol request Active CN110519329B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910666765.1A CN110519329B (en) 2019-07-23 2019-07-23 Method, device and readable medium for concurrently processing samba protocol request

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910666765.1A CN110519329B (en) 2019-07-23 2019-07-23 Method, device and readable medium for concurrently processing samba protocol request

Publications (2)

Publication Number Publication Date
CN110519329A CN110519329A (en) 2019-11-29
CN110519329B true CN110519329B (en) 2022-06-07

Family

ID=68623167

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910666765.1A Active CN110519329B (en) 2019-07-23 2019-07-23 Method, device and readable medium for concurrently processing samba protocol request

Country Status (1)

Country Link
CN (1) CN110519329B (en)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111309700B (en) 2020-02-14 2022-11-29 苏州浪潮智能科技有限公司 Control method and system for multi-sharing directory tree
CN111737201B (en) * 2020-06-05 2022-11-22 苏州浪潮智能科技有限公司 Method for closing opened file, computer equipment and storage medium
CN111901386B (en) * 2020-06-30 2023-05-09 广东浪潮大数据研究有限公司 Method, system, equipment and readable storage medium for processing remote files
CN112100186B (en) * 2020-08-26 2024-04-05 金蝶软件(中国)有限公司 Data processing method and device based on distributed system and computer equipment
CN112463072A (en) * 2020-12-11 2021-03-09 苏州浪潮智能科技有限公司 Client feedback method and system based on samba software read-write file operation
CN113452708A (en) * 2021-06-28 2021-09-28 苏州科达科技股份有限公司 Data analysis method, system, data server and storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101982955A (en) * 2010-11-19 2011-03-02 深圳华大基因科技有限公司 High-performance file transmission system and method thereof
CN103905484A (en) * 2012-12-26 2014-07-02 北京新媒传信科技有限公司 Method of processing hyper text transport protocol (HTTP) requests and device
CN104699461A (en) * 2013-12-10 2015-06-10 Arm有限公司 Configuring thread scheduling on a multi-threaded data processing apparatus
CN104754424A (en) * 2013-12-26 2015-07-01 乐视网信息技术(北京)股份有限公司 Node list access method and node list access device
CN109271763A (en) * 2018-08-16 2019-01-25 黄疆 Striding course network share access authority giving method and system

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090006520A1 (en) * 2007-06-28 2009-01-01 Microsoft Corporation Multiple Thread Pools for Processing Requests
US9015449B2 (en) * 2011-03-27 2015-04-21 International Business Machines Corporation Region-weighted accounting of multi-threaded processor core according to dispatch state

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101982955A (en) * 2010-11-19 2011-03-02 深圳华大基因科技有限公司 High-performance file transmission system and method thereof
CN103905484A (en) * 2012-12-26 2014-07-02 北京新媒传信科技有限公司 Method of processing hyper text transport protocol (HTTP) requests and device
CN104699461A (en) * 2013-12-10 2015-06-10 Arm有限公司 Configuring thread scheduling on a multi-threaded data processing apparatus
CN104754424A (en) * 2013-12-26 2015-07-01 乐视网信息技术(北京)股份有限公司 Node list access method and node list access device
CN109271763A (en) * 2018-08-16 2019-01-25 黄疆 Striding course network share access authority giving method and system

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
ISocial Network Analysis of Developers" and Users" Mailing Lists of Some Free Open Source Software;Armel Jacques Nzekon Nzeko"o;《2015 IEEE International Congress on Big Data》;20150820;全文 *
基于CEPH分布式文件系统的云盘系统的设计与实现;孙嘉岑;《信息科技辑》;20180215;全文 *

Also Published As

Publication number Publication date
CN110519329A (en) 2019-11-29

Similar Documents

Publication Publication Date Title
CN110519329B (en) Method, device and readable medium for concurrently processing samba protocol request
CN111367983B (en) Database access method, system, device and storage medium
US11823178B2 (en) Optimization of high volume transaction performance on a blockchain
US9300577B2 (en) Application intelligent request management based on server health and client information
US20210406250A1 (en) Method and system for reducing the size of a blockchain
US20190268320A1 (en) Dynamic web services server
CN110413650B (en) Method, device, equipment and storage medium for processing service data
WO2021120763A1 (en) Network card binding method and apparatus for multi-network card server, and electronic device and storage medium
CN111104232A (en) Method, device and medium for accelerating message writing of message queue
CN109446093B (en) Method and device for testing expansion platform interface
CN111708482B (en) Method, system, device and medium for limiting bandwidth in distributed storage
CN112785408A (en) Account checking method and device based on Hash
CN110413354B (en) Method, equipment and storage medium for realizing interaction with third-party platform
CN111221826A (en) Method, system, device and medium for processing shared cache synchronization message
CN111045604A (en) Small file read-write acceleration method and device based on NVRAM
CN111309264B (en) Method, system, device and medium for making directory quota compatible with snapshot
CN111045989A (en) Method, device and medium for querying CPLD version information
CN112698783A (en) Object storage method, device and system
CN111107049B (en) Method, device and medium for establishing connection of storage device
CN111130976B (en) Method, equipment and medium for configuring virtual local area network of white box switch
CN113810463A (en) Configuration method and system for issuing CDN server
CN113282347A (en) Plug-in operation method, device, equipment and storage medium
CN111177066A (en) Method, device and medium for improving efficiency of accessing off-chip memory
CN110764927A (en) Method and equipment for asynchronous communication among multiple machines
CN111158591A (en) Method, equipment and medium for adapting storage system to streaming media service

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