EP1540461A1 - Improving transaction-processing performance by preferentially reusing frequently used processes - Google Patents

Improving transaction-processing performance by preferentially reusing frequently used processes

Info

Publication number
EP1540461A1
EP1540461A1 EP02741775A EP02741775A EP1540461A1 EP 1540461 A1 EP1540461 A1 EP 1540461A1 EP 02741775 A EP02741775 A EP 02741775A EP 02741775 A EP02741775 A EP 02741775A EP 1540461 A1 EP1540461 A1 EP 1540461A1
Authority
EP
European Patent Office
Prior art keywords
transaction
transaction request
server
recently
means arranged
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.)
Ceased
Application number
EP02741775A
Other languages
German (de)
French (fr)
Other versions
EP1540461A4 (en
Inventor
Charles Loboz
Jonatan Kelu
Raymond Cheung
Paul Street
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.)
Unisys Corp
Original Assignee
Unisys Corp
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 Unisys Corp filed Critical Unisys Corp
Publication of EP1540461A1 publication Critical patent/EP1540461A1/en
Publication of EP1540461A4 publication Critical patent/EP1540461A4/en
Ceased legal-status Critical Current

Links

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
    • G06F9/5033Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals considering data affinity
    • 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
    • G06F9/505Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals considering the load
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/50Indexing scheme relating to G06F9/50
    • G06F2209/5018Thread allocation

Abstract

The present invention relates to an apparatus and method for improving transaction processing performance in a transaction processing system, particularly but not exclusively, in a transaction processing computing system comprising a plurality of processors.

Description

IMPROVING TRANSACTION-PROCESSING PERFORMANCE BY PREFERENTIALLY REUSING FREQUENTLY USED PROCESSES
Field of the invention The present invention relates to an apparatus and method for improving transaction processing performance in a transaction processing system, particularly but not exclusively, in a transaction processing computing system comprising a plurality of processors.
Background of the invention As the demand for computing resources has increased exponentially over the past decade, new ways have been sought to allow computing systems to process large amounts of data and user requests in an efficient manner. A common way to handle a large number of simultaneous user requests on a single computing system is to divide the requests either by software or by hardware, into separate "tasks" or "transactions". In a software environment, this has become known as multi-tasking, a method whereby simultaneous user requests are placed in a queue, and executed in a sequential manner by a process. A transaction request will be understood to be a request generated by a software application, for some task to be performed by a computing system. A process will be understood to be a component (usually software) within an operating system which accepts a transaction request (hereinafter referred to as a "transaction") , queues the transaction, and then processes the transaction. Processing the transaction will be understood to mean carrying out a task or tasks requested by the transaction. The task and/or tasks may include any suitable instructions, such as searching a database, carrying out a mathematical calculation, writing to a file, accessing a hardware device, or any other activity which may be performed by a computing system. In a hardware environment, the ability to handle multiple simultaneous user requests has commonly been enhanced by using more than one central processing unit (processor) . When constructing operating systems, or other software designed to run in a multi-tasking environment, programmers are faced with the issue of deciding how transactions are allocated amongst several processes. The simplest way to decide which process a transaction will be sent to is to allocate the process in a round robin fashion. That is, a transaction currently waiting in the queue would be allocated to the next available process. Alternatively, other operating systems allocate transactions randomly to any process, irrespective of its availability or other operating characteristics. Such allocation systems have been found by the present applicants to be sub-optimal, because they do not take into account the time overhead involved in flushing various memory caches used for the previous process, and restocking various memory caches before the new transaction can be processed. When a transaction is scheduled to be executed by a process that has been idle for some time rather than by a process that has recently completed executing a transaction, there is a high likelihood that the code and data used by the previous transaction has been flushed from the process's associated cache (for example, the cache in a processor used by the process) . Therefore, the probability of cache misses is increased and performance suffers accordingly. In addition, when a transaction is scheduled to a process that has been idle for some time rather than to a process that has recently become available, the likelihood that the process's associated virtual memory has been paged out to disk is also increased. Therefore, the probability of page faults occurring is increased and performance suffers accordingly. A page fault will be understood to mean an error which occurs when a program requests data that is not currently loaded into memory. This requires an operating system to fetch the requested data from a storage device and load it into memory. Similarly, the same performance degradation may occur with any type of associated cache memory whether it be processor cache, main system memory, or virtual memory on a data storage device, such as a hard disk. The problem of having a high number of process cache misses or other secondary cache misses due to the random scheduling of incoming transactions to any available process is not addressed by the prior art. It has generally been assumed by programmers that the operating system which resides on the computing system will schedule the transactions to processes in the most efficient manner possible. This assumption may be incorrect for certain applications . While it is true that some operating systems have better scheduling strategies than others, in general the operating system is not aware of the specific architecture of the applications it is running, and therefore it cannot fully optimise the transaction scheduling for these applications. In the past, the problem of having increased page faults due to the scheduling of incoming transactions to processes that may have already had their virtual memory swapped out to disk is generally addressed by adding more RAM (Random Access Memory) to a system. While this works well in general, it increases the hardware requirements for the system. Thus, adding RAM is also a sub-optimal solution as it does not address the fundamental nature of the problem. Therefore, there is a need for a new system and method which allows for more efficient use of computing resources.
Summary of the invention In accordance with a first aspect of the present invention, there is provided a method of scheduling transactions within a computing system, comprising the steps of receiving a transaction request from a client, determining the idle server process that most recently finished execution of a previous transaction, and forwarding the transaction request to the most recently idle process. This has the advantage of reducing the probability that a process's cache or any other types of cache memory will need to be flushed before the process can begin execution. Preferably, the method is implemented as a sub-module within a gateway module, whereby the gateway module is responsible for receiving transaction requests from a client, and allocating the requests to server processes. Preferably, the method further comprises the step of storing the most recent finish time and the status of a server process in a database. In accordance with a second aspect of the present invention, there is provided a system arranged to schedule transactions within a computing environment comprising a transaction request means arranged to receive a transaction request from a client, determination means, arranged to determine the idle server process that most recently finished execution of a previous transaction, and forwarding means arranged to forward the transaction request to the most recently idle process. In accordance with a third aspect, the present invention provides a computer program arranged, when loaded onto a computer, to instruct the computer to operate in accordance with a system for scheduling transactions within a computing system, comprising a transaction request means arranged to receive a transaction request from a client, determination means arranged to determine the idle server process that most recently finished execution of a previous transaction, and forwarding means arranged to forward the transaction request to the most recently idle process. In accordance with a fourth aspect, the present invention provides a computer readable medium having a computer readable program code embodied therein for causing a computer to operate in accordance with a system for scheduling transactions within a computing system, comprising a transaction request means arranged to receive a transaction request from a client, determination means arranged to determine the idle server process that most recently finished execution of a previous transaction, and forwarding means arranged to forward the transaction request to the most recently idle process.
Brief description of the drawings The present invention will now be described by way of example only with reference to the accompanying drawings, in which: Figure 1 is a schematic block diagram illustrating a prior art system for scheduling transactions across several processors (e.g. several separate CPUs); Figure 2 is a flow diagram illustrating a request assignment algorithm in accordance with an embodiment of the present invention, and Figure 3 is a schematic block diagram illustrating a system in accordance with an embodiment of the present invention.
Description of a preferred embodiment of the present invention The present invention broadly relates to a system and a corresponding method which preferably enables a more efficient use of multiple process or multi-tasking computing systems . In particular, an embodiment of the present invention applies to an Enterprise Application Environment as implemented on the Windows™ and Unix™ platforms. The term Enterprise Application Environment will be understood to mean one type of computing system arranged to process many user requests at once. This could include, but is not limited to, a database application server, web server, or any other type of computing system arranged to process a large number of simultaneous user requests. It will also be understood that whilst the particular embodiment described relates to an Enterprise Application Environment, the present invention may be used in any computing system, whether the computing system consists of a single processor, or multiple processors. Figure 1 depicts a block diagram of a common prior art system for scheduling transactions across several processors . The block diagram in Figure 1 illustrates an enterprise application environment architecture, where each client 10a, 10b, ..., lOn runs in a separate process and where each process may be running on a separate machine or a separate processor within the same machine. It will also be understood that the "server" denoted in figure 1 may also refer to a server process. That is, a server process is a "virtual" server that may be implemented in software alone (i.e. more than one server process may map onto a single processor or computing system) . A client 10a, 10b, ... , lOn may be a user located at a remote terminal, making a request from their user terminal to the server, or the client may also take the form of a request from another software application residing on the computing system. Each server process 20a, 20b,..., 20n also runs in a separate process. It will be understood that in the context of the present invention, the term "server process" will refer to a particular process implemented within a computing system, and the term does not necessarily denote a physically separate computing system or a separate CPU within the same computing system. However, the term "server process" may encompass a separate physical computing system or a separate CPU within the same computing system. The clients 10a, 10b, ... , lOn connect to a gateway process 30. The gateway process functions as a conduit forwarding transaction requests to the server processes, and receiving server responses for forwarding to the appropriate client. The server processes 20a, 20b, ... , 20n remain idle until they receive a transaction request from the gateway process 30. When the transaction request is received, the server performs the appropriate processing, and subsequently relays a response to the gateway process 30. The gateway process 30 then relays the server process response to a client lOn. In the prior art, the transaction requests are commonly randomly assigned, or assigned in a "round robin" fashion, by the gateway process 30 to an available server 20n. It will be understood that the gateway process is commonly implemented as a module within an operating system which resides on the computing system. It will be understood that the gateway process may be implemented as a software module within (or as a layer on) a software operating system, or the gateway process also be implemented as hardware, for example, as a separate component such as a ROM chip attached to other computing hardware. Any current or future hardware or software tools used to implement the invention is within the contemplation of a person skilled in the art. Figure 2 illustrates a system architecture implementing an embodiment of the present invention. In this embodiment, there is provided a gateway module arranged to receive transaction requests and forward the transaction requests to server processes. Referring to Figure 2, a three step algorithm is used to determine the server process to which the gateway process should forward the next transaction request. The first step SI is for the gateway process to wait for the transaction request from the client. The second step S2 is to determine the idle server process that has most recently finished execution of a previous transaction. The third step S3 is to forward the transaction request to the server process which has most recently finished execution of the previous transaction. In an embodiment of the present invention, the second step S2 and third step S3 is achieved by the addition of a new software module that tracks the amount of time each server process has been idle and forwards the current transaction request to the process that has most recently become available on an available server. The addition of the new module is shown in the block diagram of Figure 3, which represents a system in accordance with an embodiment of the present invention. Clients 40a, 40b, ..., 40n interact with the new gateway process 51 which consists of two sub-modules. The first is the client interface 52 which is responsible for interacting with client requests. The new module 53 performs the function of determining the idle server process that most recently finished execution of the previous transaction, in addition to the task of forwarding transaction requests to the server processes 50a, 50b, ... , 50n. In an embodiment of the present invention, the new module 53 is arranged to hold a number of tables, each table containing a number of entries equal to the number of (server) processes available. The first table held by the new module 53 is a server process status table, which contains a flag that indicates the current status of each server process (i.e. whether the server process is busy or free) . The second table held by the new module 53 contains the server process finish time (i.e. the time the server process finished processing the last transaction request) . When a new transaction request arrives from the client, after passing through the gateway process, the new module 53 will firstly find the server process with the highest free time (by searching the server process finish time table) and the server process status (as found in the server process status table) . In this context, the phrase "highest free time" will be understood to mean the server process time table entry with the most recent completion time. Secondly, the new module 53 will assign the incoming transaction request to a currently free server process with the highest free time (by placing the transaction request into the processes message queue) and will subsequently set the entry in the server process status table to "busy". Subsequently, when a transaction request has been successfully completed by the server process, the new module 53 will set the server process status flag to "free" in the server process status table and store the current time in the server process finish time table. It will be understood that whilst, in this particular embodiment, the new module sets the status flag and stores the current time other implementations are possible. For example, the server process may perform these functions. In the following example, it is assumed that there are four server processes run by the operating system residing on a computing system. The gateway process contains a table with three columns, and four entries in each column. These four entries denote the four server processes. Let us assume that the current time is 12.05 and the gateway process has received a transaction request. The gateway process must assign the transaction request to one of the four server processes. At this point in time, the table contains the following entries:
Table 1 - Contents of table at 12.05
From the table, it is apparent that server process 1 is busy (and the "finish time" represents the finish time of the previously processed transaction) . Furthermore, server processes 2, 3 and 4 are free. Of these free server processes, server process 3 has the highest finish time value. Therefore, according to the algorithm outlined in the preceding paragraphs, the new module 53 forwards the transaction to server process 3. The new module subsequently changes the table entry for server process 3 to "busy", but it will be noted that the finish time for server process 3 remains at 12.02, since the finish time represents the finish time of the previously processed transaction. At 12.07, server process 1 finishes processing the transaction, and therefore updates the status entry in the table to reflect this change. That is, for server process 1 the status entry in the table changes to "free", and the finish time is changed to 12.07, representing the finish time of the last transaction request to be processed by server process 1. At 12.08, a new transaction request arrives at the gateway process. At this point, the table now reads as follows :
Table 2 - Status of server processors at 12.0£
The new module 53 transaction will assign the transaction to the most recently used server process 1, since server process 1 meets the criteria of being a free server process with the highest finish time entry. At 12.10, the transaction request at server process 3 finishes. Thus, the table will be updated such that the status of server process 3 will change to free, and the finish time for server process 3 will be changed to 12.10. At 12.11, a new transaction arrives at the gateway process, and the new module 53 will assign the new transaction request to server process 3. It should be noted that throughout this worked example, server processes 2 and 4 were ignored by the new module and no transactions were assigned to either server process, even though they were free to perform the transaction request. Instead, only server processes 1 and 3 received transactions for processing as they were not only free but also the most recently used server processes. In effect, this creates a dynamic situation, making it impossible for a user or a computing system to predict which server process will receive the transaction ahead of time. Which server process receives the transaction request will depend on the current status of all server processes at the transaction request arrival time. Therefore, the server process usage is stochastic but not random. The algorithm used to assign transaction requests to server processes skews the probability of a server process being used towards higher usage of server processes which have most recently been used. That is, in the long run, certain server processes receive more transaction requests than other server processes. Moreover, the memory and CPU overhead involved in making changes to the tables is minimal in comparison to the total time taken for a transaction request to be performed. The entire process involves setting the values in status and finish time tables, searching for a minimum value in a small table (typically the number of server processes is well below 100) and reading the system clock (routinely done for housekeeping purposes) . This method further preferably reduces the need for setting fixed processor affinities to server processors, as the inherent "process stickiness" produced by the present embodiment will keep the most recently used transaction request on the same process. The new module 53 provides a number of benefits over the existing gateway process 30 shown in Figure 1. Firstly, the server process to which the new transaction request is forwarded by the new module 53 is the server process which has most recently completed execution of the previous transaction request. This particular server process is the least likely server process to have had the process memory cache flushed or overwritten. Depending on the operating system scheduling policy, the performance improvement due to the reduced probability of cache misses will vary. However, irrespective of the operating system residing on the computing system, there is preferably at worst no negative impact on performance, and at best a positive impact on performance. In addition, the most recently requested transactions are least likely to have had the associated process virtual memory swapped out to disk. Therefore, it is less likely that page faults would occur, also improving performance. Furthermore with continued use of an embodiment of the present invention, a natural processing order is formed, such that the most frequent transaction requests are prioritised over the least frequent transaction requests . In turn, the least frequently used processes will be the first transactions to have their associated process memory swapped out to disk. This results in three additional benefits that compound the performance gains described above. Firstly, swapping out the memory of the least requested transactions to disk leaves more RAM (Random Access Memory) for the most frequently used processes, resulting in further reductions to the number of page faults . Secondly, the less frequently used transaction requests will have less opportunity to overwrite the process cache of the most frequently used transaction requests, thus further reducing the number of process cache misses. Thirdly, when one of the less frequently used transaction requests is scheduled to a process, the cost of the corresponding page faults is minimised over a long period of time so that the significance of the associated performance penalty is significantly reduced. Therefore, the present invention provides more efficient use of computing resources, and overcomes the sub-optimal prior solutions for process scheduling in multi-processor and/or multi-thread environments. It will be understood that the invention is not limited to multi-processor environments or computing systems. The invention may be used on a single processor computing system to allocated incoming transaction requests to server processes.

Claims

THE CLAIMS DEFINING THE INVENTION ARE AS FOLLOWS:
1. A method for scheduling transactions within a computing system, comprising the steps of: - receiving a transaction request from a client, - determining the idle server process that most recently finished execution of a previous transaction, and forwarding the transaction request to the most recently idle process.
2. A method in accordance with claim 1, further comprising the step of storing the most recent finish time and the status of a server process.
3. A method in accordance with claim 1 or 2 , whereby the method is implemented as a sub-module within a gateway process module, whereby the gateway module is responsible for receiving transaction requests from a client, and allocating the requests to server processes.
4. A method in accordance with claim 3, the method further comprising the step of storing the most recent finish time and the status of a server process.
5. A method in accordance with any one of the preceding claims, wherein the method is implemented as a software module arranged to operate in an enterprise application environment .
6. A method in accordance with any one of the preceding claims, wherein each server process interacts with a separate central processing unit.
7. A system for scheduling transactions within a computing system, comprising: - a transaction request means arranged to receive a transaction request from a client; - determination means arranged to determine the idle server process that most recently finished execution of a previous transaction; and - forwarding means arranged to forward the transaction request to the most recently idle process.
8. A computer program arranged, when loaded onto a computer, to instruct the computer to operate in accordance with a system for scheduling transactions within a computing system, comprising: - a transaction request means arranged to receive a transaction request from a client; - determination means arranged to determine the idle server process that most recently finished execution of a previous transaction; and - forwarding means arranged to forward the transaction request to the most recently idle process.
9. A computer readable medium having a computer readable program code embodied therein for causing a computer to operate in accordance with a system for scheduling transactions within a computing system, comprising: - a transaction request means arranged to receive a transaction request from a client; - determination means arranged to determine the idle server process that most recently finished execution of a previous transaction; and - forwarding means arranged to forward the transaction request to the most recently idle process.
EP02741775A 2002-05-31 2002-05-31 Improving transaction-processing performance by preferentially reusing frequently used processes Ceased EP1540461A4 (en)

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/US2002/017099 WO2005008493A1 (en) 2002-05-31 2002-05-31 Improving transaction-processing performance by preferentially reusing frequently used processes

Publications (2)

Publication Number Publication Date
EP1540461A1 true EP1540461A1 (en) 2005-06-15
EP1540461A4 EP1540461A4 (en) 2007-10-03

Family

ID=34078432

Family Applications (1)

Application Number Title Priority Date Filing Date
EP02741775A Ceased EP1540461A4 (en) 2002-05-31 2002-05-31 Improving transaction-processing performance by preferentially reusing frequently used processes

Country Status (2)

Country Link
EP (1) EP1540461A4 (en)
WO (1) WO2005008493A1 (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7222178B2 (en) * 2002-05-31 2007-05-22 Unisys Corporation Transaction-processing performance by preferentially reusing frequently used processes

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5553239A (en) * 1994-11-10 1996-09-03 At&T Corporation Management facility for server entry and application utilization in a multi-node server configuration
GB2315384A (en) * 1996-07-11 1998-01-28 Mitel Corp Resource management in a multiple process system
WO2001013228A2 (en) * 1999-08-13 2001-02-22 Sun Microsystems, Inc. Graceful distribution in application server load balancing

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6185619B1 (en) * 1996-12-09 2001-02-06 Genuity Inc. Method and apparatus for balancing the process load on network servers according to network and serve based policies
US5918017A (en) * 1996-08-23 1999-06-29 Internatioinal Business Machines Corp. System and method for providing dynamically alterable computer clusters for message routing

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5553239A (en) * 1994-11-10 1996-09-03 At&T Corporation Management facility for server entry and application utilization in a multi-node server configuration
GB2315384A (en) * 1996-07-11 1998-01-28 Mitel Corp Resource management in a multiple process system
WO2001013228A2 (en) * 1999-08-13 2001-02-22 Sun Microsystems, Inc. Graceful distribution in application server load balancing

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
EVANS J, KESSLER R: "A Communication-Ordered Task Graph Allocation Algorithm" TECHNICAL REPORT - UNIVERSITY OF UTAH - DEPARTMENT OF COMPUTER SCIENCE, [Online] no. UUCS-92-026, 21 April 1992 (1992-04-21), pages I, 1-25, XP002446406 Retrieved from the Internet: URL:http://citeseer.ist.psu.edu/rd/67963798%2C640652%2C1%2C0.25%2CDownload/http://citeseer.ist.psu.edu/cache/papers/cs/32492/http:zSzzSzwww.cs.utah.eduzSztechreportszSz1992zSzpdfzSzUUCS-92-026.pdf/evans92communicationordered.pdf> [retrieved on 2007-08-10] *
See also references of WO2005008493A1 *
SUN MICROSYSTEMS: "Introduction to cloud computing architecture" INTERNET CITATION 29 June 2009 (2009-06-29), XP007910393 Retrieved from the Internet: URL:http://www-cdn.sun.com/featured-articles/CloudComputing.pdf> [retrieved on 2009-11-02] *

Also Published As

Publication number Publication date
EP1540461A4 (en) 2007-10-03
WO2005008493A1 (en) 2005-01-27

Similar Documents

Publication Publication Date Title
EP3073374B1 (en) Thread creation method, service request processing method and related device
JP4028674B2 (en) Method and apparatus for controlling the number of servers in a multi-system cluster
US5606685A (en) Computer workstation having demand-paged virtual memory and enhanced prefaulting
US5784698A (en) Dynamic memory allocation that enalbes efficient use of buffer pool memory segments
US20060037017A1 (en) System, apparatus and method of reducing adverse performance impact due to migration of processes from one CPU to another
US8627325B2 (en) Scheduling memory usage of a workload
EP2256632B1 (en) Multi-processor scheduling
US20050283786A1 (en) Optimizing workflow execution against a heterogeneous grid computing topology
US20050022173A1 (en) Method and system for allocation of special purpose computing resources in a multiprocessor system
CN109564528B (en) System and method for computing resource allocation in distributed computing
US20040088498A1 (en) System and method for preferred memory affinity
US20060037021A1 (en) System, apparatus and method of adaptively queueing processes for execution scheduling
CN114265679A (en) Data processing method and device and server
JP4348639B2 (en) Multiprocessor system and workload management method
KR100400165B1 (en) Processing system scheduling
CN110838987B (en) Queue current limiting method and storage medium
US6631446B1 (en) Self-tuning buffer management
CN114721818A (en) Kubernetes cluster-based GPU time-sharing method and system
CN110750339B (en) Thread scheduling method and device and electronic equipment
CN113327053A (en) Task processing method and device
US7222178B2 (en) Transaction-processing performance by preferentially reusing frequently used processes
JP2004030567A (en) Method and system for maintaining queue
US11392388B2 (en) System and method for dynamic determination of a number of parallel threads for a request
CN111858014A (en) Resource allocation method and device
WO2005008493A1 (en) Improving transaction-processing performance by preferentially reusing frequently used processes

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20041227

AK Designated contracting states

Kind code of ref document: A1

Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LI LU MC NL PT SE TR

RIC1 Information provided on ipc code assigned before grant

Ipc: G06F 9/00 20060101AFI20050208BHEP

Ipc: G06F 9/50 20060101ALI20070820BHEP

A4 Supplementary search report drawn up and despatched

Effective date: 20070903

17Q First examination report despatched

Effective date: 20080326

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION HAS BEEN REFUSED

18R Application refused

Effective date: 20091103