US20060195508A1 - Distributed computing - Google Patents

Distributed computing Download PDF

Info

Publication number
US20060195508A1
US20060195508A1 US11/248,381 US24838105A US2006195508A1 US 20060195508 A1 US20060195508 A1 US 20060195508A1 US 24838105 A US24838105 A US 24838105A US 2006195508 A1 US2006195508 A1 US 2006195508A1
Authority
US
United States
Prior art keywords
job
broker
engine
task
tasks
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.)
Abandoned
Application number
US11/248,381
Inventor
James Bernardin
Peter Lee
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.)
Individual
Original Assignee
Individual
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 Individual filed Critical Individual
Priority to US11/248,381 priority Critical patent/US20060195508A1/en
Publication of US20060195508A1 publication Critical patent/US20060195508A1/en
Assigned to ORIX VENTURE FINANCE LLC reassignment ORIX VENTURE FINANCE LLC SECURITY AGREEMENT Assignors: DATASYNAPSE, INC.
Priority to US11/981,137 priority patent/US8195739B2/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/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/503Resource availability

Definitions

  • the present invention relates generally to the field of high-performance computing (“HPC”); more specifically, to systems and techniques for distributed and/or parallel processing.
  • HPC high-performance computing
  • HPC has long been a focus of both academic research and commercial development, and the field presents a bewildering array of standards, products, tools, and consortia. Any attempt at comparative analysis is complicated by the fact that many of these interrelate not as mutually exclusive alternatives, but as complementary component or overlapping standards.
  • PVM Parallel Virtual Machine
  • MPI the Message Passing Interface
  • Grid Computing represents a more amorphous and broad-reaching initiative—in certain respects, it is more a philosophical movement than an engineering project.
  • the overarching objective of Grid Computing is to pool together heterogeneous resources of all types (e.g., storage, processors, instruments, displays, etc.), anywhere on the network, and make them available to all users. Key elements of this vision include decentralized control, shared data, and distributed, interactive collaboration.
  • Clusters provide HPC by aggregating commodity, off-the-shelf technology (COTS).
  • COTS off-the-shelf technology
  • Beowulf a loose confederation of researchers and developers focused on clusters of Linux-based PCs.
  • Berkeley NOW Network of Workstations
  • clusters and grid implementations share, and in many cases, exacerbate, some of the most important weaknesses of supercomputing hardware solutions, particularly within a commercial enterprise environment.
  • Complex, low-level APIs necessitate protracted, costly development and integration efforts.
  • Administration, especially scheduling and management of distributed resources is burdensome and expensive.
  • elaborate custom development is needed to provide fault tolerance and reliability. Both developers and administrators require extensive training and special skills.
  • clusters offer some advantages versus dedicated hardware with respect to scale, fragility and administrative complexity effectively impose hard limits on the number of nodes—commercial installations with as many as 50 nodes are rare, and only a handful support more than 100.
  • MBS mortgage-backed securities
  • clustering and grid technologies have offered a partial solution, in that they reduce the upfront hardware cost and eliminate some of the redevelopment associated with incremental upgrades. But they continue to suffer from the same basic defect—as an outgrowth of traditional supercomputing, they are loaded with irrelevant features and low-level APIs that drive up cost and complexity, while failing to provide turnkey support for basic enterprise requirements like fault-tolerance and central administration.
  • the invention provides an improved, Grid-like distributed computing system that addresses the practical needs of real-world commercial users, such as those in the financial services and energy industries.
  • the invention provides an off-the-shelf product solution to target the specific needs of commercial users with naturally parallel applications.
  • a top-level, public API provides a simple “compute server” or “task farm” model that dramatically accelerates integration and deployment.
  • the invention eliminates the need for customized middleware and yields enormous, on-going savings in maintenance and administrative overhead.
  • P2P peer-to-peer
  • the invention supports effectively unlimited scaling over commoditized resource pools, so that end-users can add resources as needed, with no incremental development cost.
  • the invention seamlessly incorporates both dedicated and intermittently idle resources on multiple platforms (WindowsTM, Unix, Linux, etc.). And it provides true idle detection and automatic fault-tolerant rescheduling, thereby harnessing discrete pockets of idle capacity without sacrificing guaranteed service levels. (In contrast, previous efforts to harness idle capacity have run low-priority background jobs, restricted utilization to overnight idle periods, or imposed intrusive measures, such as checkpointing.)
  • the invention provides a system that can operate on user desktops during peak business hours without degrading performance or intruding on the user experience in any way.
  • a key aspect of the present invention relates to “pull-based” (i.e., resources (Engines) poll the server (Broker) for work, and submitters (Drivers) poll the Broker for results) adaptive scheduling of tasks in a coarse-grained parallel or grid-based computing framework.
  • Pull-based i.e., resources (Engines) poll the server (Broker) for work, and submitters (Drivers) poll the Broker for results
  • Each Job consists of one or more Tasks, which may be executed in any order.
  • the Broker maintains a queue for Tasks within each active Job.
  • a Driver submits the first Task within a Job
  • the Broker creates a Waiting Task List for that Job, then adds this list to the appropriate Job List, according to the Job's priority.
  • each Job List is list of Task Lists.
  • the Broker appends them to the end of the Waiting Task List.
  • an Engine Whenever an Engine becomes available, it polls the Broker to request work.
  • the Broker determines which Job should receive service (using priorities and/or discriminators, as described below), then assigns the Task at the front of that Job's Waiting Task List to the Engine. Once it has been assigned to an Engine, the Broker moves the Task from the Waiting Task List to the Pending Task List; the Pending Task List contains all the Tasks in the Job that have been assigned to Engines.
  • the Broker When an Engine completes a Task, it notifies the Broker, and the Broker searches both the Pending and Waiting Task Lists for the corresponding Job. If the Task appears on either list, the Broker removes it from both, and adds it to the Completed Task List. (If the Task does not appear on either list, it is a redundant Task that has already completed on another Engine, and the Broker ignores it; however, the Broker may also free or restart engines that are currently processing redundant instances of the same Task.) When the submitting Driver polls for results, the Broker returns the entries from the Completed Task List and clears them from the list.
  • Each Job has an associated priority: a priority is attached to it at inception, and the priority may be changed while the Job is running.
  • the Broker maintains a Job List corresponding to each priority level.
  • a configuration setting selects between Serial and Interleaved Priority Execution.
  • the Broker services the priority lists sequentially. That is, the Broker always services the non-empty Job list of highest priority.
  • the. Broker provides interleaved service to all non-empty Job Lists, so that lower priority lists continue to receive some level of service even when higher priority Jobs are active.
  • the proportion of service that the Broker allocates to competing priority lists is based on an N-tuple of non-negative integer Priority Weights, where N is the number of distinct priorities.
  • N is the number of distinct priorities.
  • the Broker distributes priority-1 Tasks until either the priority-1 list is empty, or it has distributed w 1 Tasks.
  • priority-2 Tasks until either the priority-2 list is empty or it has distributed w 2 Tasks, and so forth, until it has serviced all N priority lists, at which point the process repeats.
  • the Broker may be configured to provide either Serial or Interleaved Job Execution for Jobs of the same priority.
  • Serial Job Execution Jobs of the same priority receive strict sequential service; the first Job submitted completes before the next begins.
  • Interleaved Job Execution the Broker provides round-robin service to all Jobs of a given priority, regardless of the order in which they were submitted.
  • Redundant scheduling strategies may be employed to provide guaranteed service levels and reliable Job throughput when resources and/or Tasks are heterogeneous. Redundant scheduling addresses a weakness of the basic scheduling algorithm, as described above, namely: A relatively small number of long-running Tasks, distributed to less capable processors, can significantly delay or prevent Job completion.
  • the basic idea is to launch redundant instances of bottleneck or long-running Tasks.
  • the Broker accepts the first result returned by any Engine, and cancels the remaining instances.
  • a configurable parameter determines the maximum number of redundant instances of a given Task that the Broker will distribute.
  • a Maximum Task Time may be associated with any Job.
  • the Broker schedules redundant instances of Tasks that fail to complete within the time limit.
  • one or more Rescheduling Strategies may become active after a (possibly Job- and/or Strategy-specific) percentage of Tasks within the Job have completed.
  • the Broker scans the Pending Task Lists for each active Job at regular intervals. Initially, rescheduling is driven solely by the Maximum Task Time for the Job. Once the percentage of completed Tasks reaches the threshold for a given Strategy, the Broker also compares the elapsed time for each pending Task against the time limit corresponding to that Strategy. If one or more of the limits is exceeded, the Broker adds a redundant instance of the Task to the Waiting Task List and resets the elapsed time for that Task to zero. (The accumulation of elapsed time for the Task begins again when the Broker assigns the redundant instance to an Engine.)
  • a configuration setting determines whether the Broker places redundant Task instances at the front or the back of the Waiting Task List, that is, whether redundant Tasks are distributed before or after other waiting Tasks.
  • Each Redundant Scheduling Strategy is specified via a procedure that returns a dynamically varying time limit as a function of data maintained by the Broker, typically including Job-specific Task duration statistics.
  • the Broker tracks the mean and standard deviation of Task completion times for each active Job.
  • Important examples include the following:
  • the Percent Completed Strategy which returns the maximum integer (effectively infinite, so that there is no active limit) until the number of waiting Tasks, as percentage of the total number of Tasks within the Job, falls below a configurable threshold, after which it returns the mean completion time;
  • the Average Strategy which returns the product of the mean completion time and a configurable floating-point multiplier. That is, this strategy launches redundant Task instances when the elapsed time exceeds a configurable multiple of the mean completion time;
  • the Standard Deviation Strategy which returns the sum of the mean and a configurable multiple of the standard deviation of the completion times. That is, it launches redundant Task instances when the elapsed time exceeds the mean by a configurable multiple of the standard deviation.
  • the invention also contemplates use of alternative measures of resource consumption.
  • Several modifications are available to substitute alternatives for the basic Task count as a measure of computational resource consumption within the invention's priority-based Job scheduler.
  • the Broker may track the total aggregate processing time on the Engines that has been consumed by Tasks within the Job, and allocate service to the Job queues based on processing time, rather than the number of Tasks that have been scheduled.
  • the Broker may weight the actual processing times by some measure of the processing power of the corresponding Engines. For example, the Broker may schedule a standard benchmark performance measurement (e.g., the LINPAC benchmark, or some other representative benchmark) on each Engine at regular intervals, or each time the Engine logs in, and multiply the actual processing times by the resulting performance ratings to convert elapsed times to a more accurate measure of computation.
  • a standard benchmark performance measurement e.g., the LINPAC benchmark, or some other representative benchmark
  • some or all of the Engines may report to the Broker a measure of realized CPU consumption (e.g., as reported by the local operating system) upon Task completion and/or periodically for running Tasks, and the Broker may incorporate these measurements in the allocation of service. This is particularly useful in case the Engines are configured to run as background processes and/or to share CPU time with other processes that are running simultaneously.
  • Another aspect of the invention relates to adaptive polling.
  • Engines poll the Broker whenever they are available to perform work.
  • the polling request is either successful, and the Broker assigns a Task to the Engine, or it is not.
  • Drivers poll the Broker after they have submitted Jobs, to collect results.
  • the request is either successful, and the Broker returns one or more results (possibly indirectly, by providing a locator or locators), or it is not.
  • Successful polling requests are effectively self-limiting, because they require additional action on the part of the polling entity—either collecting the Task input and performing the Task, or collecting the results, respectively. But the frequency of unsuccessful requests may be advantageously regulated to avoid overwhelming the Broker. Therefore, in response to each unsuccessful polling request, the Broker returns a message specifying the time interval after which the polling entity may submit another request.
  • the algorithm by which the Broker determines this time interval has two important features:
  • the target values are calculated using an adaptive, dynamic algorithm; the Broker keeps track of the number of actively polling entities, and varies the target latencies so as to maintain total aggregate polling rates within an optimal operating range. When more entities are active, the Broker increases the target latencies, and when fewer are active, it decreases them.
  • HTTP is the underlying transport protocol.
  • the implementation may use the “Keep-Alive” feature of HTTP to reduce latencies for Task distribution and/or result retrieval.
  • the HTTP connection may be held open until either a Task is ready, or the connection timeout is reached, in which case the Engine may poll again immediately.
  • the Broker may track the number of open connections and stop holding connections open when the number reaches some limiting value.
  • Discriminators are essentially filters that can be attached to Tasks and/or Engines to impose selection criteria during the Broker's assignment of Tasks to Engines.
  • a Discriminator When a Discriminator is attached to a Task, it restricts the class of Engines that are eligible to process that Task based on properties associated with the Engine, possibly including but not limited to: operating system, processor speed, RAM, free memory, local disk size, free disk, host name, number of CPUs on host machine, etc., together with any collection of user-defined properties that can either be tracked by the Broker or measured or detected on the Engine at runtime.
  • Discriminator When a Discriminator is attached to an Engine, it restricts the class of Tasks that are eligible to run on that Engine based on properties associated with the Task, possibly including but not limited to: Task Id (assigned to Tasks within each Job sequentially), Job Id (a unique identifier attached to each Job by the Broker), Driver Id (a unique identifier attached to each active Driver), together with any collection of user-defined properties that can be assigned by the Broker or by the submitting application at runtime.
  • Task Id assigned to Tasks within each Job sequentially
  • Job Id a unique identifier attached to each Job by the Broker
  • Driver Id a unique identifier attached to each active Driver
  • Discriminators modify the operation of the basic scheduling algorithm as follows: Before assigning any Task to an Engine, the Broker checks all Discriminators that are attached to either the Task or the Engine. If the Task/Engine pairing fails to satisfy any of the criteria imposed by any of the Discriminators, the Broker examines the next Task (as determined by the basic scheduling algorithm). This process continues until either the Broker assigns the first suitable Task to the Engine, or it exhausts the waiting Tasks, in which case the request fails, and no Task is assigned to the Engine.
  • Scoring Discriminators provide a variant of the basic Discriminator, and assign to each pairing of Task and Engine a numerical score, rather than an all-or-nothing (binary) determination of suitability.
  • the Broker before assigning a Task to an Engine, the Broker checks some number of waiting Tasks (in the order determined by the basic scheduling algorithm) and selects the Task/Engine pairing with the highest score.
  • Scoring Discriminators may also impose a minimum-score restriction, so that no Task will be assigned to an Engine for which the score assigned to the resulting Task/Engine pairing is below the minimum threshold.
  • the algorithm may be modified so that the Broker will continue to check additional waiting Tasks, beyond the specified number, if necessary, in order to find a first Task that yields a score above the minimum threshold.
  • the Broker may maintain a queue of Engines that are available but that have not been assigned Tasks. In this case, the Broker may examine all combinations of waiting Tasks and available Engines and choose the pairing with the highest score. (This is particularly useful in connection with the HTTP Keep-Alive enhancement described above, in which case the queue of available Engines may coincide with those for which the connection is held open.) Typically, the Broker limits the size of the available Engine queue in order to limit the complexity of the assignment computation.
  • Discriminator base class is an abstract function, to be defined by the programmer, that returns either a Boolean, in the case of a basic binary Discriminator, or a numerical score, in the case of a soft Discriminator.
  • an API may be provided in Java and/or C++ to define a Discriminator to act on all or a subset of Task/Engine pairings and register it directly with the Broker.
  • administrative and/or scripting interfaces may be provided to define Discriminators and attach them to Tasks, Jobs, Engines, or Brokers.
  • Properties associated with Engines, Tasks, and Jobs may be “built-in,” that is, defined or detected automatically by the remote system components (Drivers and Engines) or assigned automatically by the Broker.
  • the list of Properties associated with each entity may be implemented as a hash table, i.e., a collection of key/value pairs.
  • Programmatic and/or administrative APIs may also be provided to attach properties to Engines, Tasks, and/or Jobs, and/or to modify existing properties dynamically. Default mechanisms may be provided by the system and/or defined by the user to address the situation in which Discriminators are defined in terms of properties that have not been assigned explicitly to all relevant components.
  • Implementations may optimize performance by caching the property values associated with remote components (Drivers and Engines) on the Broker, so that the Broker may evaluate Discriminators that reference these properties without having to exchange additional messages with the remote components in order to ascertain the associated property values.
  • This caching may be combined with an incremental update capability on the remote components so that they notify the Broker only when the values change.
  • a further general aspect of the invention relates to the use of adaptive scheduling to enhance reuse of cached data and/or minimize unnecessary network data transmissions.
  • a TaskDataSet provides a simple API and scheduling mechanism to address multi-stage sequential computations within an adaptive, demand-driven scheduling context.
  • the TaskDataSet concept is particularly useful for sequential computations on very large distributed data sets and to support caching and reuse of intermediate results on distributed processors.
  • Using TaskDataSets improves efficiency not only by maximizing reuse of distributed input data (thereby minimizing data transfer), but also by facilitating reuse of intermediate state generated locally on the distributed resources.
  • a TaskDataSet comprises a collection of persistent TaskInputs.
  • a TaskDataSet is associated with a sequence of one or more Jobs within a corresponding Tasking Session.
  • Each Job within the Tasking Session shares the same set of TaskInputs (each of which defines a Task within the corresponding Job).
  • Distinct Jobs within the session differ via their Tasklets; that is, they are equipped with distinct Tasklets, and thus may perform distinct computations and access Job-specific data. (As objects, the Tasklets may contain data as well as instructions.)
  • TaskInputs from a TaskDataSet requests work and a Job within the corresponding session is active and eligible to receive service (i.e., based on execution history and the configuration of the priority-based scheduling scheme)
  • the Server will, if possible, assign to that Engine a Task for which the Engine has already processed the corresponding TaskInput.
  • the Server assigns a TaskInput from a TaskDataSet to an Engine, it checks to see if any pending Tasks correspond to a TaskInput that the Engine has processed previously (as part of a previous Job within the session) and if so, whether the Taskinput remains in the Engine's local cache. If so, the Server will assign such a Task to the Engine. Otherwise, the Server may assign the Engine another TaskInput from the TaskDataSet.
  • the TaskDataSet is therefore, in effect, a progressively distributed database of TaskInputs, with each successive Job within the session acting as a query or procedure on that database. As more Jobs run within the session, the inputs are distributed more widely across Engines.
  • one specific aspect of the invention claimed herein relates to distributed computing systems comprising, for example, the following: a plurality of engines that perform assigned computational tasks; at least one broker that manages jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) a job priority, the task(s) associated with each job organized into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having at least (i) a task id and (ii) a task priority; the at least one broker configured to assign waiting task(s) to available engine(s); and a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
  • further aspects of the invention relate to distributed computing systems comprising, for example, the following: a plurality of engines that perform assigned computational tasks; at least one primary broker that manages jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) a job priority, the task(s) associated with each job organized into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having at least (i) a task id and (ii) a task priority; the at least one primary broker configured to assign waiting task(s) to available engine(s); and at least one failover broker that performs the functions of the primary broker in the event of a primary broker failure.
  • the at least one failover broker may operate on a different server than the primary broker.
  • the system may further include a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
  • the least one broker may include an adaptive scheduler that operates in at least two modes, including (i) a first mode that gives greater execution preference to higher priority jobs and (ii) a second mode that gives less execution preference to higher priority jobs.
  • the system may further include a batch administration tool that manages execution of batch job(s).
  • further aspects of the invention relate to distributed computing systems comprising, for example, the following: at least one client application that submits job(s) for execution, each job including (i) one or more tasks and (ii) a job priority; a plurality of engines that execute assigned tasks; at least one broker that manages jobs submitted for execution by client application(s), the task(s) associated with each job organized into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having an associated task priority, the at least one broker configured to assign waiting task(s) to available engine(s); and a messaging API that sends input data to, and receives output data from, executing task(s).
  • Each job may further include an associated job id.
  • Each task may further include an associated task id.
  • the system may further include a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
  • the system may further include at least one cache that provides a data storage area for data used by tasks, and the cache may permit data sharing among jobs.
  • the at least one broker may include ajob scheduler that implements at least two scheduling strategies, wherein a first scheduling strategy preferably allocates a larger share of available resource(s) to higher priority job(s) than a second scheduling strategy.
  • the system may further include at least one failover broker that performs the functions of the broker if the broker fails to perform, wherein the broker and the at least one failover broker preferably operate on different servers.
  • further aspects of the invention relate to methods for operating distributed computing systems by, for example: using a plurality of engines to execute assigned computational tasks; using at least one broker to manage jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) ajob priority; organizing the task(s) associated with each job into at least three categories, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine; configuring the at least one broker to assign waiting task(s) to available engine(s); and providing a graphical user interface that (i) displays status information for jobs and (ii) allows a user to modify job priorities.
  • Such methods may further include associating a task id and a task priority with each task. Such methods may further involve, if the at least one primary broker encounters a failure, automatically replacing the primary broker with at least one failover broker, preferably operating on a different server than the primary broker, to take over the functions of the primary broker. Such methods may further include associating a task id and a task priority with each task. Such methods may further involve providing a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities. Such methods may further involve providing at least two scheduling strategies, wherein, for example, a first scheduling strategy gives greater execution preference to higher priority jobs and a second scheduling strategy gives less execution preference to higher priority jobs. Such methods may further involve caching data used by tasks, and sharing cached data among jobs. And such methods may further include managing execution of batch job(s) using a batch administration tool.
  • further aspects of the invention relate to methods for operating distributed computing systems by, for example: allowing a client application to submits job(s) for execution, each job including (i) one or more tasks and (ii) a job priority; using a plurality of engines to execute assigned tasks; using at least one broker to manage execution of submitted job(s) by (1) maintaining the task(s) associated with each job in at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, and (2) using associated task priorities to assign waiting task(s) to available engine(s); and using a messaging API to send input data to, and receive output data from, executing task(s).
  • Such methods may further include associating a job id with each job and/or associating a task id with each task. Such methods may further include providing a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities. Such methods may further include using at least one cache as a data storage area for data used by tasks, and optionally using such cache to share data among jobs. Such methods may further involve using at least two scheduling strategies to assign available resource(s) to waiting task(s), whereby, for example, a first scheduling strategy allocates a larger share of available resource(s) to task(s) associated with higher priority job(s) than a second scheduling strategy. And such methods may further involve using at least one failover broker, preferably operating on a different server, to perform the functions of the broker if the broker fails to perform.
  • FIGS. 1-2 depict data flows in the preferred LiveCluster embodiment of the invention
  • FIGS. 3-12 are code samples from the preferred LiveCluster embodiment of the invention.
  • FIG. 13 depicts comparative data flows in connection with the preferred LiveCluster embodiment of the invention.
  • FIGS. 14-31 are code samples from the preferred LiveCluster embodiment of the invention.
  • FIGS. 32-53 are screen shots from the preferred LiveCluster embodiment of the invention.
  • FIGS. 33-70 are code samples from the preferred LiveCluster embodiment of the invention.
  • FIGS. 72-81 are code samples from the preferred LiveCluster embodiment of the invention.
  • FIGS. 82-87 depict various illustrative configurations of the preferred LiveCluster embodiment f the invention.
  • a subcomponent of a Server that is responsible for maintaining a “job space,” for managing Jobs and Tasks and the associated interactions with Drivers and Engines.
  • Daemon A process in Unix that runs in the background and performs specific actions or runs a server with little or no direct interaction. In Windows NT or Windows 2000, these are also called Services.
  • Director A subcomponent of a Server that is responsible for routing Drivers and Engines to Brokers, Driver The component used to maintain a connection between the LiveCluster Server and the client application.
  • Engine The component that actually handles the work of computation, accepting work from and returning results to a Broker.
  • Failover Broker A Broker configured to take on work when another Broker fails.
  • LiveCluster LiveCluster provides a flexible platform for distributing large computations to idle, underutilized and/or dedicated processors on any network.
  • the LiveCluster architecture includes a Driver, one or more Servers, and several Engines.
  • Server The component of the LiveCluster tm system that takes work from Drivers, coordinates it with Engines, and supports Web-based administrative tools.
  • a Server typically contains a Driver and a Broker.
  • Task An atomic unit of work. Jobs are broken into Tasks and then distributed to Engines for computation.
  • Standalone A Server that has been configured with a Broker, Broker but no Director; its configured primary and secondary Directors are both in other Servers.
  • Service A program in Windows NT or Windows 2000 that performs specific functions to support other programs. In Unix, these are also called daemons. How LiveCluster Works
  • LiveCluster supports a simple but powerful model for distributed parallel processing.
  • the basic configuration incorporates three major components—Drivers, Servers, and Engines.
  • the LiveCluster model works as follows:
  • Client applications (via Drivers) submit messages with work requests to a central Server.
  • the Server distributes the work to a network of Engines, or individual CPUs with LiveCluster Installed.
  • the Server collects the results and returns them to the Drivers.
  • a Job is a unit of work. Typically, this refers to one large problem that has a single solution.
  • a Job is split into a number of smaller units, each called a Task.
  • An application utilizing LiveCluster submits problems as Jobs, and LiveCluster breaks the Jobs into Tasks.
  • Other computers solve the Tasks and return their results, where they are added, combined, or collated into a solution for the Job.
  • the LiveCluster system is implemented almost entirely in Java. Except for background daemons and the installation program, each component is independent of the operating system under which it is installed. The components are designed to support interoperation across both wide and local area networks (WANs and LANs), so the design is very loosely coupled, based on asynchronous, message-driven interactions. Configurable settings govern message encryption and the underlying transport protocol.
  • WANs and LANs wide and local area networks
  • the Server is the most complex component in the system. Among other things, the Server:
  • LiveCluster is configured so that Drivers and Engines communicate to the Server only for lightweight messages.
  • the Server functionality is partitioned into two subcomponent entities: the Broker and the Director.
  • the Broker is responsible for maintaining a “job space” for managing Jobs and Tasks and the associated interactions with Drivers and Engines.
  • the primary function of the Director is to manage Brokers.
  • each Server instance imbeds a Broker/Director pair.
  • the simplest fault-tolerant configuration is obtained by deploying two Broker/Director pairs on separate processors, one as the primary, the other to support failover.
  • Brokers and Directors are isolated within separate Server instances to form a two-tiered Server network.
  • the Server is installed as a service (under Windows) or as a daemon (under Unix)—but it can also run “manually,” under a log-in shell, which is primarily useful for testing and debugging.
  • the Driver component maintains the interface between the LiveCluster Server and the client application.
  • the client application code imbeds an instance of the Driver.
  • the Driver in Java, the Driver (called JDriver) exists as a set of classes within the Java Virtual Machine (JVM).
  • JVM Java Virtual Machine
  • the Driver in C++, the Driver (called Driver++) is purely native, and exists as a set of classes within the application.
  • the client code submits work and administrative commands and retrieves computational results and status information through a simple API, which is available in both Java and C++.
  • Application code can also interact directly with the Server by exchanging XML messages over HTTP.
  • the Driver submits Jobs to the Server, and the Server returns the results of the individual component Tasks asynchronously to the Driver.
  • the Driver may exchange messages directly with the Engines within a transaction space maintained by the Server.
  • Engines report to the Server for work when they are available, accept Tasks, and return the results.
  • Engines are invoked on desktop PCs, workstations, or on dedicated servers by a native daemon. Typically, there will be one Engine invoked per participating CPU. For example, four Engines might be invoked on a four-processor SMP.
  • LiveCluster platform provides reliable computations over networks of interruptible Engines, making it possible to utilize intermittently active resources when they would otherwise remain idle.
  • the Engine launches when it is determined that the computer is idle (or that a sufficient system capacity is available in a multi-CPU setting) and relinquishes the processor immediately in case it is interrupted (for example, by keyboard input on a desktop PC).
  • Engines are typically installed on network processors, where they utilize intermittently available processing capacity that would otherwise go unused. This is accomplished by running an extremely lightweight background process on the Engine. This invocation process monitors the operating system and launches an Engine when it detects an appropriate idle condition.
  • Fault-tolerant adaptive scheduling provides a simple, elegant mechanism for obtaining reliable computations from networks varying numbers of Engines with different available CPU resources.
  • Engines report to the Server when they are “idle”—that is, when they are available to take work.
  • the Engine “logs in,” initiating a login session.
  • the Engine polls the Server for work, accepts Task definitions and inputs, and returns results. If a computer is no longer idle, the Engine halts, and the task are rescheduled to another Engine. Meanwhile, the Server tracks the status of Tasks that have been submitted to the Engines, and reschedules tasks as needed to ensure that the Job (collection of Tasks) completes.
  • this scheme is called “adaptive” because the scheduling of Tasks on the Engines is demand-driven. So long as the maximum execution time for any Task is small relative to the average “idle window,” that is, the length of the average log-in session, between logging in and dropping out, adaptive scheduling provides a robust, scalable solution for load balancing. More capable Engines, or Engines that receive lighter Tasks, simply report more frequently for Work. In case the Engine drops out because of a “clean” interruption—because it detects that the host processor is no longer “idle”—it sends a message to the Server before it exits, so that the Server can reschedule running Tasks immediately. However, the Server cannot rely on this mechanism alone. In order to maintain performance in the presence of network drop-outs, system crashes, etc., the Server monitors a heartbeat from each active Engine and reschedules promptly in case of time-outs.
  • Directory replication is a method to provide large files that change relatively infrequently. Instead of sending the files each time a Job is submitted and incurring the transfer overhead, the files are sent to each Engine once, where they are cached.
  • the Server monitors a master directory structure and maintains a synchronized replica of this directory on each Engine, by synchronizing each Engine with the files.
  • This method can be used on generic files, or platform-specific items, such as Javajar files, DLLs, or object libraries.
  • LiveCluster API Before examining the various features and options provided by LiveCluster, it is appropriate to introduce the basic features of the LiveCluster API by means of several sample programs.
  • TaskInput TaskOutput
  • Tasklet Job
  • PropertyDiscriminator EngineSession
  • StreamJob StreamTasklet
  • DataSetJob DataSetJob
  • TaskDataSet TaskInput
  • TaskOutput TaskOutput
  • Tasklet Job
  • PropertyDiscriminator EngineSession
  • StreamJob StreamTasklet
  • DataSetJob TaskDataSet
  • the basic LiveCluster API consists of the TaskInput, TaskOutput and Tasklet interfaces, and the Job class. LiveCluster is typically used to run computations on different inputs in parallel. The computation to be run is implemented in a Tasklet.
  • a Tasklet takes a TaskInput, operates on it, and produces a TaskOutput.
  • Using a Job object one's program submits TaskInputs, executes the job, and processes the TaskOutputs as they arrive.
  • the Job collaborates with the Server to distribute the Tasklet and the various TaskInputs to Engines.
  • FIG. 1 illustrates the relationships among the basic API elements. Although it is helpful to think of a task as a combination of a Tasklet and one TaskInput, there is no Task class in the API. To understand the basic API better, we will write a simple LiveCluster job. The job generates a unique number for each task, which is given to the tasklet as its TaskInput. The tasklet uses the number to return a TaskOutput consisting of a string. The job prints these strings as it receives them. This is the LiveCluster equivalent of a “Hello, World” program. This program will consist of five classes: one each for the TaskInput, TaskOutput, Tasklet and Job, and one named Test that contains the main method for the program.
  • TaskInput class The basic API is found in the com.livecluster.tasklet package, so one should import that package (see FIG. 3 ).
  • the TaskInput interface contains no methods, so one need not implement any. Its only purpose is to mark one's class as a valid TaskInput.
  • the TaskInput interface also extends the Serializable interface of the java.io package, which means that all of the class's instance variables must be serializable (or transient). Serialization is used to send the TaskInput object from the Driver to an Engine over the network.
  • the SimpleTaskInput class is quite simple: it holds a single int representing the unique identifier for a task. For convenience, one need not make the instance variable private.
  • TaskOutput like TaskInput, is an empty interface that extends Serializable, so the output class should not be surprising (see FIG. 4 ).
  • Tasklet interface which defines a single method:
  • the service method performs the computation to be parallelized. For our Hello program, this involves taking the task identifier out of the TaskInput and returning it as part of the TaskOutput string (see FIG. 5 ).
  • the service method begins by extracting its task ID from the TaskInput. It then creates a SimpleTaskOutput, sets its instance variable, and returns it.
  • One aspect of the Tasklet interface not seen here is that it, too, extends Serializable. Thus any instance variables of the tasklet must be serializable or transient.
  • LiveCluster provides a high-performance, fault-tolerant, highly parallel way to repeatedly execute the line:
  • the HelloJob class is displayed in FIG. 7 .
  • the constructor creates a single HelloTasklet and installs it into the job with the setTasklet method.
  • the createTaskInputs method creates ten instances of SimpleTaskInput, sets their taskIds to unique values, and adds each one to the job with the addTaskInput method.
  • the processTaskOutput method displays the string that is inside its argument.
  • the Test class (see FIG. 8 ) consists of a main method that runs the job.
  • the first line creates the job.
  • the second line has to do with distributing the necessary class files to the Engines.
  • the third line executes the job by submitting it to the LiveCluster Server, then waits until the job is finished. (The related execute InThread method runs the job in a separate thread, returning immediately.)
  • the second line of main deserves more comment.
  • the getOptions method returns a JobOptions object.
  • the JobOptions class allows one to configure many features of the job. For instance, one can use it to set a name for the job (useful when looking for a job in the Job List of the LiveCluster Administration tool), and to set the job's priority.
  • JobOptions method setJarFile takes the name of a jar file.
  • This jar file should contain all of the files that an Engine needs to run the tasklet. In this case, those are the class files for SimpleTaskInput, SimpleTaskOutput, and HelloTasklet.
  • SetJarFile method By calling the setJarFile method, one tells LiveCluster to distribute the jar file to all Engines that will work on this job.
  • this approach sends the jar file to the Engines each time the job is run, and so should not be used for production. Instead, one should use the file replication service or a shared network file system when in production.
  • the basic API consists of the TaskInput, TaskOutput and Tasklet interfaces and the Job class. Typically, one will write one class that implements TaskInput, one that implements TaskOutput, one that implements Tasklet, and one that extends Job.
  • a Tasklet's service method implements the computation that is to be performed in parallel.
  • the service method takes a TaskInput as argument and returns a TaskOutput.
  • a Job object manages a single Tasklet and a set of TaskInputs. It is responsible for providing the TaskInputs, starting the job and processing the TaskOutputs as they arrive.
  • Some additional code is necessary to create ajob, arrange to distribute ajar file of classes, and execute the job.
  • Each deal is represented by a unique integer identifier.
  • Deals are retrieved from a database or other data source via the DealProvider.
  • Deal's value method takes a PricingEnvironment as an argument, computes the deal's value, and returns a Valuation object, which contains the value and the deal ID.
  • ZeroCouponBond represents a type of deal that offers a single, fixed payment at a future time.
  • DateUtil contains a utility function for computing the time between two dates.
  • the Deal class is abstract, as is its value method (see FIG. 9 ).
  • the value method's argument is a PricingEnvironment, which has methods for retrieving the interest rates and the valuation date, the reference date from which the valuation is taking place.
  • the value method returns a Valuation, which is simply a pair of deal ID and value. Both Valuation and PricingEnvironment are serializable so they can be transmitted over the network between the Driver and Engines.
  • ZeroCouponBond is a subclass of Deal that computes the value of a bond with no interest, only a principal payment made at a maturity date (see FIG. 10 ).
  • the value method uses information from the PricingEnvironment to compute the present value of the bond's payment by discounting it by the appropriate interest rate.
  • the DealProvider class simulates retrieving deals from persistent storage.
  • the getDeal method accepts a deal ID and returns a Deal object.
  • Our version (see FIG. 11 ) caches deals in a map. If the deal ID is not in the map, a new ZeroCouponBond is created.
  • the first question is how to provide deals to the tasklet.
  • One choice is to load the deal on the Driver and send the Deal object in the TaskInput; the other is to send just the deal ID, and let the tasklet load the deal itself.
  • the second way is likely to be much faster, for two reasons: reduced data movement and increased parallelism.
  • FIG. 13 the left portion of which illustrates the connections among the Driver, the Engines, and your data server, on which the deal data resides.
  • the left-hand diagram illustrates the data flow that occurs when the Driver loads deals and transmits them to the Engines.
  • the deal data travels across the network twice: once from the data server to the Driver, and again from the Driver to the Engine.
  • the right-hand diagram shows what happens when only the deal IDs are sent to the Engines. The data travels over the network only once, from the data server to the Engine.
  • the third design decision for our illustrative LiveCluster portfolio valuation application concerns how many deals to include in each task. Placing a single deal in each task yields maximum parallelism, but it is unlikely to yield maximum performance. The reason is that there is some communication overhead for each task.
  • the granularity—amount of work—of a task should be large compared to the communication overhead. If it is too large, however, then two other factors come into play. First and most obviously, if one has too few tasks, one will not have much parallelism. The third row of the table illustrates this case. By placing 100 deals in each TaskInput, only ten of the 100 available Engines will be working. Second, a task may fail for a variety of reasons-the Engine may encounter hardware, software or network problems, or someone may begin using the machine on which the Engine is running, causing the Engine to stop immediately. When a task fails, it must be rescheduled, and will start from the beginning. Failed tasks waste time, and the longer the task, the more time is wasted. For these reasons, the granularity of a task should not be too large.
  • Task granularity is an important parameter to keep in mind when tuning an application's performance. We recommend that a task take between one and five minutes. To facilitate tuning, it is wise to make the task granularity a parameter of one's Job class.
  • the LiveCluster Classes We are at last ready to write the LiveCluster code for our portfolio valuation application. We will need classes for TaskInput, TaskOutput, Tasklet and Job.
  • the TaskInput will be a list of deal IDs, and the TaskOutput a list of corresponding Valuations. Since both are lists of objects, we can get away with a single class for both TaskInput and TaskOutput.
  • This general-purpose ArrayListTaskIO class contains a single ArrayList (see FIG. 14 ).
  • FIG. 15 shows the entire tasklet class.
  • the constructor accepts a PricingEnvironment, which is stored in an instance variable for use by the service method. As discussed above, this is an optimization that can reduce data movement because tasklets are cached on participating Engines.
  • the service method expects an ArrayListTaskIO containing a list of deal IDs. It loops over the deal IDs, loading and valuing each deal, just as in our stand-alone application. The resulting Valuations are placed in another ArrayListTaskIO, which is returned as the tasklet's TaskOutput.
  • ValuationJob is the largest of the three LiveCluster classes. Its constructor takes the total number of deals as well as the number of deals to allocate to each task. In a real application, the first parameter would be replaced by a list of deal IDs, but the second would remain to allow for tuning of task granularity.
  • the createTaskInputs method uses the total number of deals and number of deals per task to divide the deals among several TaskInputs. The code is subtle and is worth a careful look. In the event that the number of deals per task does not evenly divide the total number of deals, the last TaskInput will contain all the remaining deals.
  • the processTaskOutput method (see FIG. 17 ) simply adds the TaskOutput's ArrayList of Valuations to a master ArrayList. Thanks to the deal IDs stored within each Valuation, there is no risk of confusion due to TaskOutputs arriving out of order.
  • the Test class has a main method that will run the application (see FIG. 18 ).
  • the initial lines of main load the properties file for the valuation application and obtain the values for totalDeals and dealsPerTask.
  • LiveCluster is ideal for data-parallel applications, such as portfolio valuation.
  • the data server and the Driver are on different machines, let each tasklet load its own data from the data server, rather than loading the data into the Driver and distributing it in the TaskInputs. Since the Tasklet object is serialized and sent to each Engine, it can and should contain data that does not vary from task to task within a job.
  • the right granularity will amortize communication overhead while preventing the loss of too much time due to tasklet failure or interruption. Aim for tasks that run in a few minutes.
  • This section also introduces a simple but effective way of debugging tasklets by placing print statements within the service method. This output can be viewed from the Administration Tool or written to a log file.
  • Our exemplary LiveCluster application (see FIG. 19 ) will simply print out all Engine properties. Since we will not be using TaskInputs or generating TaskOutputs, we will only need to write classes for the tasklet, job and main method.
  • the EnginePropertiesTasklet class uses LiveCluster's EngineSession class to obtain the Engine's properties. It then prints them to the standard output.
  • the method begins by calling EngineSession's getProperties method to obtain a Properties object containing the Engine's properties. Note that EngineSession resides in the com.livecluster.tasklet.util package. The tasklet then prints out the list of engine properties to System.out, using the convenient list method of the Properties class.
  • the EngineSession class has two other methods, setProperty and removeProperty, with the obvious meanings. Changes made to the Engine's properties using these methods will last for the Engine's session. A session begins when an Engine first becomes available and logs on to the Server, and typically ends when the Engine's JVM terminates. (Thus, properties set by a tasklet are likely to remain even after the tasklet's job finishes.) Note that calling the set Properties method of the Properties object returned from EngineSession.getProperties will not change the Engine's properties.
  • the EnginePropertiesJob class simply adds a few TaskInputs in order to generate tasks. TaskInputs cannot be null, so empty TaskInput object is provided as a placeholder.
  • Test class is similar to the previously-described Test classes.
  • the output from each Engine should be similar to that shown in FIG. 21 .
  • the meaning of some of these properties is obvious, but others deserve comment.
  • the cpuNo property is the number of CPUs in the Engine's computer.
  • the id property is unique for each Engine's computer, while multiple Engines running on the same machine are assigned different instance properties starting from 0.
  • the log files will be placed on the Engine's machine under the directory where the Engine was installed. On Windows machines, this is c: ⁇ Program ⁇ Files ⁇ DataSynapse ⁇ Engine by default. In LiveCluster, the log file is stored under ./work/[name]-[instance]/log.
  • Engine properties describe particular features of each Engine in the LiveCluster. Some Engine properties are set automatically; but one can create and set one's own properties in the Engine Properties page of the Administration Tool.
  • the EngineSession class provides access to Engine properties from within a tasklet. Writing to System.out is a simple but effective technique for debugging tasklets.
  • the output goes to the Remote Engine Log window, which can be brought up from Engine Administration in the Administration Tool.
  • Engines can also configure Engines to save the output to a log file.
  • LiveCluster supports two kinds of discrimination:
  • Engine Discrimination This section discusses only Engine Discrimination, which selects Engines for particular jobs or tasks. Engine Discrimination has many uses. The possibilities include:
  • This discussion will focus on the class PropertyDiscriminator.
  • This class uses a Java Properties object to determine how to perform the discrimination.
  • the Properties object can be created directly in one's code, as we will exemplify below, or can be read from a properties file.
  • PropertyDiscriminator When using PropertyDiscriminator, one encodes the conditions under which an Engine can take a task by writing properties with a particular syntax. For example, setting the property cpuMFlops.gt to the value 80 specifies that the CPU speed of the candidate Engine, in megaflops, must be greater than 80 for the Engine to be eligible.
  • the discriminator property is of the form engine_property.operator. There are operators for string and numerical equality, numerical comparison, and set membership. They are documented in the Java API documentation for PropertyDiscriminator.
  • a PropertyDiscriminator can specify any number of conditions. All must be true for the Engine to be eligible to accept the task.
  • the nativeValue method is a native method invoking a Windows DLL. Recall that the DealProvider class is responsible for fetching a Deal given its integer identifier. Its getDeal method returns either an OptionDeal object or ZeroCouponBond object, depending on the deal ID it is given. For this example, we decree that deal IDs less than a certain number indicate OptionDeals, and all others are ZeroCouponBonds.
  • the ValuationJob class has changed significantly, because it must set up the discriminator and divide the TaskInputs into those with OptionDeals and those without (see FIG. 23 ).
  • the first three lines set up a PropertyDiscriminator to identify Engines that run under Windows, as described above.
  • the last two lines call the helper method createDealInputs, which aggregates deal IDs into TaskInputs, attaching a discriminator.
  • the second argument is the starting deal ID; since deal IDs below DealProvider.MIN_OPTION_ID are OptionDeals, the above two calls result in the first group of TaskInputs consisting solely of OptionDeals and the second consisting solely of ZeroCouponBonds.
  • FIG. 24 shows the code for createDealInputs. This method takes the number of deals for which to create inputs, the deal identifier of the first deal, and a discriminator. (IDiscriminator is the interface that all discriminators must implement.) It uses the same algorithm previously discussed to place Deals into TaskInputs. Then calls the two-argument version of addTaskInput, passing in the discriminator along with the TaskInput.
  • the PropertyDiscriminator we created is passed in.
  • the discriminator is null, indicating no discrimination is to be done—any Engine can accept the task. Using null is the same as calling the one-argument version of addTaskInput.
  • Discriminators may be attached to Tasks or Jobs to ensure that they are assigned to Engines that are equipped with specific resources. Common examples include: Tasks that must run under a particular operating system or subset of operating systems; Tasks that must have at least a specified minimum of memory or disk space to run; Tasks that must run on a specific subset of Engines because of administrative or security restrictions, possibly including database or file system access restrictions; etc. Discriminators may also be used to impose analogous restrictions in order to optimize performance. For example, they may restrict very long-running Tasks to run only on processors meeting minimum performance requirements or on dedicated (as opposed to interruptible) Engines.
  • Scoring Discriminators may be used in connection with distributed caching to maximize reuse of distributed resources, such as objects or data.
  • the Engines maintain a local cache, and update their associated property list whenever entries are added or removed from the cache.
  • the Scoring Discriminator associated with each Task returns a score for each Engine based on the overlap between the resources that are available in the Engine's local cache and the resources specifically required by the Task.
  • each Task requires a single object
  • each Task within a portfolio pricing application might look for a single deal or subportfolio.
  • the Scoring Discriminator might return 1 in case the relevant deal or subportfolio is present in the cache, and 0 otherwise.
  • a slightly more complex example would be one in which the Scoring Discriminator examines the Engine property list for multiple keys, corresponding to relevant deals or subportfolios, and returns the total number found.
  • a further elaboration on this example would be to apply non-uniform weights to the keys, depending on the relevance and/or computational burden of reconstructing the associated resource.
  • the Engine may associate a value with each key, this value may also be used in computing the score, for example, to indicate the number of deals within a subportfolio or to provide an indication of the cost associated with reconstructing the associated resource.
  • Engine Discriminators may be used to dedicate some number, N, of Engines to a specific Job. This is accomplished by having the first N Tasks within the Job install an Engine Discriminator that imposes two requirements: (1) The Job Id must match the Job Id for the given Task, and (2) the Task Id must be greater than N.
  • Engine Discriminators may be used to dedicate Engines as distributed resource providers.
  • the Task that constructs the resource on the Engine also installs an Engine Discriminator that imposes the requirement that subsequent Tasks that run on the Engine define an associated property to indicate that they require the corresponding resource.
  • This technique may be combined with that of the preceding example to dedicate multiple Engines as resource providers.
  • Typical examples include term-structure models, cashflow projections (e.g., for Collateralized Mortgage Obligations or other Asset Backed Securities), or more generally, any model specification to support multiple simulations with varying parameters.
  • Engine Discriminators may be used to dedicate some number, N, of Engines for “gang scheduling,” that is, to reserve N engines for the exclusive use of particular Tasks during the extent of a session that may span multiple Jobs. This is accomplished by a slight variation of the procedure described above for dedicating N engines to a Job.
  • the first Job in the session establishes a unique Session Id and runs N Tasks, each of which installs an Engine Discriminator that accepts only Tasks that have an associated Session Id property with the given value. (By arranging that the N initial Tasks do not have the property, this procedure reserves precisely N distinct Engines.)
  • a particularly important application of this technique is to accommodate multi-node computations that make use of message-passing protocols (e.g., PVM or MPI) within an adaptive scheduling framework.
  • Tasks within the gang scheduling session may also be provided with routing information for the N participating Engines (e.g., IP addresses, host names, or other network identification) so that they may establish connections among themselves (e.g., within a PVM or MPI session).
  • Discriminators allow one to control which Engines run which tasks.
  • a discriminator compares the properties of an Engine against one or more conditions to determine if the engine is eligible to accept a particular task.
  • the PropertyDiscriminator class is the easiest way to set up a discriminator. It uses a Properties object or file to specify the conditions.
  • Discriminators can segregate tasks among Engines based on operating system, CPU speed, memory, or any other property.
  • the service method of a standard LiveCluster tasklet uses Java objects for both input and output. These TaskInput and TaskOutput objects are serialized and transmitted over the network from the Driver to the Engines.
  • streams may be more efficient to use streams instead of objects for input and output.
  • applications involving large amounts of data that can process the data stream as it is being read may benefit from using streams instead of objects.
  • Streams increase concurrency by allowing the receiving machine to process data while the sending machine is still transmitting. They also avoid the memory overhead of deserializing a large object.
  • the StreamTasklet and StreamJob classes enable applications to use streams instead of objects for data transmission.
  • Our exemplary application will search a large text file for lines containing a particular string. It will be a parallel version of the Unix grep command, but for fixed strings only. Each task is given the string to search for, which we will call the target, as well as a portion of the file to search, and outputs all lines that contain the target.
  • Our SearchTasklet class extends the StreamTasklet class (see FIG. 25 ).
  • the service method for StreamTasklet takes two parameters: an InputStream from which it reads data, and an OutputStream to which it writes its results (see FIG. 26 ).
  • the method begins by wrapping those streams in a BufferedReader and a PrintWriter, for performing line-oriented I/O.
  • StreamJob Users of StreamTasklet and StreamJob are responsible for closing all streams they are given.
  • Writing a StreamJob is similar to writing an ordinary Job.
  • One difference is in the creation of task inputs: instead of creating an object and adding it to the job, it obtains a stream, writes to it, and then closes it.
  • the SearchJob class's createTaskInputs method illustrates this (see FIG. 27 ; _linesPerTask and _file are instance variables set in the constructor). The method begins by opening the file to be searched. It writes each group of lines to an OutputStream obtained with the createTaskInput method. (To generate the input for a task, one calls the createTaskInput method, write to the stream it returns, then close that stream.)
  • the loop within createTaskInputs is careful to allocate all of the file's lines to tasks while making sure that no task is given more than the number of lines specified in the constructor.
  • a StreamJob has a processTaskOutput method (see FIG. 28 ) that is called with the output of each task.
  • the method's parameter is an InputStream instead of a TaskOutput object.
  • the InputStream contains lines that match the target. We print them to the standard output. Once again, it is our responsibility to close the stream we are given.
  • Test class for this example is similar to previous ones.
  • LiveCluster ensures that calls to processTaskOutput are synchronized, so that only one call is active at a time.
  • a naive processTaskOutput implementation like the one above will read an entire InputStream to completion—a process which may involve considerable network I/O—before moving on to the next.
  • StreamTasklet and StreamJob Use StreamTasklet and StreamJob when the amount of input or output data is large, and a tasklet can process the data stream as it arrives.
  • the service method of StreamTasklet reads its input from an InputStream and writes its results to an OutputStream.
  • the processTaskOutput method of StreamJob is given an InputStream to read a task's results. It is the taskset's responsibility to close all streams.
  • the parallel string search program of the previous section will speed up searching for large files, it misses an opportunity in the case where the same file is searched, over time, for many different targets.
  • a web search company that keeps a list of all the questions all users have ever asked so that it can display related questions when a user asks a new one.
  • the previous search program will work correctly, it will redistribute the list of previously asked questions to Engines each time a search is done.
  • a more efficient solution would cache portions of the file to be searched on Engines to avoid repeatedly transmitting it. This is just what LiveCluster's data set feature does.
  • a data set is a persistent collection of task inputs (either Taskinput objects or streams) that can be used across jobs. The first time it is used, the data set distributes its inputs to Engines in the usual way. But when the data set is used subsequently, it attempts to give a task to an Engine that already has the input for that task stored locally. If all such Engines are unavailable, the task is given to some other available Engine, and the input is retransmitted. Data sets thus provide an important data movement optimization without interfering with LiveCluster's ability to work with dynamically changing resources.
  • TaskDataSet Using a TaskDataSet.
  • TaskDataSet Since a TaskDataSet is a persistent object, it must have a name for future reference. One can choose any name:
  • the data set and its inputs are now stored on the Server and can be used to provide inputs to a DataSetJob, as will be illustrated in the next section.
  • the data set outlives the program that created it.
  • a data set can be retrieved in later runs by using the static getDataSet method:
  • the main method (see FIG. 30 ) of the Test program creates a TaskDataSet and uses it to run several jobs.
  • the method begins by reading a properties file that contains a comma-separated list of target strings, as well as the data file name and number of lines per task It then creates a data set via the helper method createDataSetFromFile. Lastly, it runs several jobs using the data set.
  • createDataSetFromFile places the inputs into a TaskDataSet.
  • TaskDataSet concept proves useful in a number of applications:
  • the TaskDataSet corresponds to a portfolio of financial instruments
  • each TaskInput within the set corresponds to an instrument or subportfolio within the larger portfolio.
  • Successive Jobs within the session perform a sequence of computations referencing the same portfolio.
  • the first Job might perform a simple profit and loss computation
  • the second Job might compute first-order sensitivities (“deltas”)
  • the third might compute second-order sensitivities (“gammas”), etc.
  • the most important benefit is typically reuse of intermediate results and accumulated data-specific local state on the distributed processors.
  • instantiation of pricing engines corresponding to specific instruments is often very compute-intensive and may require large data objects, such as trees.
  • These computations and the associated data objects are typically instrument-specific, but may be reused across multiple computations for the same instrument.
  • Data sets can improve the performance of applications that reuse the same task inputs for many jobs, by reducing the amount of data transmitted over the network.
  • a data set is a distributed cache: each Engine has a local copy of a task input.
  • the Server attempts to re-assign a task input to an Engine that had it previously.
  • the TaskDataSet class allows the programmer to create, retrieve and destroy data sets.
  • the DataSetJob class extends Job to use a TaskDataSet. Data that varies from job to job should be placed in the tasklet.
  • the LiveCluster Server provides the LiveCluster Administration Tool, a set of web-based tools that allow the administrator to monitor and manage the Server, its cluster of Engines, and the associated job space.
  • the LiveCluster Administration Tool is accessed from a web-based interface, usable by authorized users from any compatible browser, anywhere on the network. Administrative user accounts provide password-protected, role-based authorization.
  • All of the administrative screens are password-protected.
  • the site administrator creates new user accounts from the New User screen. Access control is organized according to the five functional areas that appear in the navigation bar.
  • the site administrator is the only user with access to the configuration screens (under Configure), except that each user has access to a single Edit Profile screen to edit his or her own pro-file.
  • the site administrator grants or denies access separately to each of the four remaining areas (Manage, View, Install, and Develop) from the View Users screen.
  • the Server installation script creates a single user account for the site administrator, with both user name and password admin. The site administrator should log in and change the password immediately after the Server is installed.
  • the administration tools are accessed through the navigation bar located on the left side of each screen (see FIG. 32 ). Click one of the links in the navigation bar to display options for that link. Click a link to navigate to the corresponding area of the site. (Note that the navigation bar displays only those areas that are accessible from the current account. If one is not using an administrative account with all privileges enabled, some options will not be visible.) At the bottom of the screen is the shortcut bar, containing the Logout tool, and shortcut links to other areas, such as Documentation and Product Information.
  • the Administration Tool is divided into five sections. Each section contains screens and tools that are explained in more detail in the next five chapters. The following tools are available in each of the sections.
  • the Configure section contains tools to manage user accounts, profiles, Engines, Brokers, and Directors.
  • the Manage section enables one to administer Jobs or Tasks that have been submitted, administer data sets or batch jobs, submit a test Job, or retrieve log files.
  • the View section contains tools to list and examine Brokers, Engines, Jobs, and data sets. It's different from the Manage section in that tools focus on viewing information instead of modifying it, changing configuration, or killing Jobs. One can examine historical values to gauge performance, or troubleshoot one's configuration by watching the interaction between Brokers and Engines interactively.
  • Lists are similar to the listed displays found in the Manage section, which can be refreshed on demand and display more information.
  • Views are graphs implemented in a Java applet that updates in real-time.
  • the install section enables one to install Engines on one's Windows machine, or download the executable files and scripts needed to build installations distributable to Unix machines.
  • the Develop section includes downloads and information such as Driver code, API Documentation, Documentation guides, Release Notes, and the Debug Engine.
  • the Configure section contains tools to manage user accounts, profiles, Engines, Brokers, and Directors. To use any of the following tools, click Configure in the Navigation bar to display the list of tools. Then click a tool name to continue.
  • click New User Signup One will be presented with a screen similar to FIG. 34 . Enter in one's admin password and the information about the user, and click Submit. (Note that the Subject and Message fields for e-mail notification are already populated with a default message. The placeholders for username and password will be replaced with the actual username and password for the user when the message is sent.)
  • the Edit Profile tool enables you to make changes to the account with which you are currently logged in. It also enables the admin to configure the Server to email notifications of account changes to users. For accounts other than admin, one must click Edit Profile, enter one's password in the top box, and make any changes one wishes to make to one's profile. This includes one's first name, last name and email address. One can also change one's password by entering a new password twice. When one has made the changes, one clicks the Submit button. If one is logged in as admin, one can also configure the Server to generate email notifications automatically whenever user accounts are added or modified. To activate this feature, one must provide an email address and the location of the SMTP server. The LiveCluster Server will generate mail from the administrator to the affected users. To disable the email feature, one simply clears the SMTP entry.
  • the Engine Configuration tool (see FIG. 35 ) enables one to specify properties for each of the Engine types that one deploys. To configure an Engine, one must first choose the Engine type from the File list. Then, enter new values for properties in the list, and click Submit next to each property to enter these values. Click Save to commit all of the values to the Engine configuration. One can also click Revert at any time before clicking Save to return to the configuration saved in the original file. For more information on any of the properties in the Engine Configuration tool, one can click Help.
  • This tool displays properties associated with each Engine that has logged in to this Server. A list of Engine IDs is displayed, along with the corresponding Machine Names and properties that are currently assigned to that Engine. These properties are used for discrimination, either in the Broker or the Driver. Properties can be set with this tool, or when an Engine is installed with the 1-Click Install with Tracking link and a tracking profile is created, which is described below, in the Engine Tracking Editor tool.
  • Engines can be installed with optional tracking parameters, which can be used for discrimination.
  • Engines When Engines are installed with the 1-Click Install with Tracking link, one is prompted for values for these parameters.
  • This tool enables one to define what parameters are given to Engines installed in this method.
  • the parameters include MachineName, Group, Location, and Description.
  • One can add more parameters by entering the parameter name in the Property column, entering a description of the property type in the Description column, and clicking the Add button.
  • One can also remove parameters by clicking the Remove button next to the parameter one wants to remove.
  • the Broker's attributes can be configured by clicking the Broker Configuration tool. This displays a hierarchical expanding/collapsing (see FIG. 38 ) list of all of the attributes of the Broker. One may click on the + and—controls in the left pane to show or hide attributes, or click Expand All or Collapse All to expand or collapse the entire list.
  • Each discriminator includes a property, a comparator, and a value.
  • the property is the property defined in the Engine or Driver, such as a group, OS or CPU type.
  • the value can be either a number (double) or string.
  • the comparator compares the property and value. If they are true, the discriminator is matched, and the Engine or Driver can login to a Broker. If they are false, the Driver can't log in to the Broker, and must use another Broker. In the case of an Engine, it won't be sent Tasks from that Broker. Note that both property names and values are case-sensitive.
  • each discriminator is the Negate other Brokers box. When this is selected, an Engine or Driver will be considered only for this Broker, and no others. For example, if one has a property named state and sets a discriminator for when state equals NY and selects Negate other Brokers, an Engine with state set to NY will go to this Broker, because other Brokers won't accept its login.
  • Director Configuration an interface similar to the Broker Configuration tool described above is used.
  • Director Configuration a hierarchy of attributes is shown, and one can click an attribute to change it.
  • the Director attributes have a Help link available.
  • Client Diagnostics tool see FIG. 40 . This generates tables or charts of information based on client messaging times.
  • Client Diagnostics To use client diagnostics, one must first select Client Diagnostics and then click the edit diagnostic options link. Set Enabled to true, click Submit, then click Save. This will enable statistics to be logged as the system runs. (Note that this can generate large amounts of diagnostic data, and it is recommended that one enable this feature only when debugging.) Click diagnostic statistics to return to the previous screen. Next, one must specify a time range for the analysis. Select a beginning and ending time range, or click Use all available times to analyze all information.
  • To enter a subscriber click Add a Subscriber.
  • To change events for a subscriber click their name in the list.
  • For each subscriber enter a single email address in the Email box. This must be a full email address, in the form name@your.address.com.
  • the Manage section enables one to administer Jobs or Tasks that have been submitted, administer data sets or batch jobs, submit a test Job, or retrieve log files.
  • click Manage in the Navigation bar to display a list of tools at the left. Then click a tool to continue.
  • Each Broker logged on to the Director is listed, along with the number of busy and idle Engines logged onto it. Click on the Broker name in the Hostname column to display a list of the Engines currently logged in. To see the graphs depicting Broker statistics, click the Create button in the Monitor column.
  • the Engine Weight and Driver Weight boxes are used to set the ratio of Engines to Drivers that are sent to the Broker from the Director.
  • Engine Weight and Driver Weight are both 1, so the Broker will handle Engines and Drivers equally. This can also be changed so a Broker favors either Engines or Brokers. For example., changing Engine Weight to 10 and leaving Driver Weight at 1 will make the Broker handle Engines ten times more than Drivers.
  • Click the Refresh button One can also automatically update the list by selecting a value from the list next to the Refresh button.
  • This tool (see FIG. 43 ) enables one to view and control any Engines currently controlled by one's Server. To update the list and display the most current information, click the Refresh button. One can also automatically update the list by selecting a value from the list next to the Refresh button.
  • Engines are displayed by usemame, with 20 Engines per page by default. One can select a greater number of lists per page, or display all of the Engines, by clicking a number or All next to Results Per Page on the top right of the screen. One can also find a specific Engine by entering the user-name in the box and clicking Search For Engines.
  • the Status column displays if an Engine is available for work. If “Available” is displayed, the Engine is logged on and is ready for work. Engines marked as “Logged off” are no longer available. “Busy” Engines are currently working on a Task. Engines shown as “Logging in” are in the login process, and are possibly transferring files. One can also click the text in the Status column to open a window containing current server logs for that Engine.
  • Jobs are shown in rows with UserName, JobName, Submit Time, Tasks Completed, and Status.
  • To display information on a Job point to the Job Name and a popup window containing statistics on the Job appears. For more information, click the Job Name and a graph will be displayed in a new window.
  • To kill Jobs select one or more Jobs by clicking the check box in the Kill column, or click Select All to kill all Jobs, then click Submit.
  • Jobs can utilize a DataSet, which is a reusable set of TaskInputs. Repeated Jobs will result in caching TaskInputs on Engines, resulting in less transfer overhead.
  • DataSet Administration to view all of the active Data Sets.
  • Data Sets and click Submit to remove them; however, one will also need to kill the related Jobs.
  • DataSets are usually created and destroyed with the Java API.
  • Batch Jobs are items that have been registered with a Server, either by LiveDeveloper, by copying XML into a directory on the Server, or by a Driver. Unlike a Job, they don't immediately enter the queue for processing. Instead, they contain commands, and instructions to specify at what time the tools will execute. These events can remain on the Server and run more than once. Typically, a Batch Job is used to run a Job at a specific time or date, but can be used to run any command.
  • the Batch Administration tool displays all Batch Jobs on the Server, and enables one to suspend, resume, or remove them.
  • Each Batch Job is denoted with a name.
  • a Type and Time specify when the Batch Job will start. If a Batch Job is Absolute, it will enter the queue at a given time.
  • a Relative Batch Job is defined with a recurring time or a time relative to the current time, such as a Batch Job that runs every hour, or one defined in the cron format. Immediate jobs are already in the queue.
  • Batch Jobs that are submitted by a Driver will only stay resident until the Server is restarted.
  • To create a Batch Job that will always remain resident one can create a Batch Job file. To do this, click new batch file to open the editor. One can also click the name of a Batch Job that was already created on the Server. One can then enter the XML for the Batch Job, specify a filename, and click Save to save the file, Submit to enter the file, or Revert to abandon the changes.
  • the interface displayed below, enables one to select a type of log file, a date range, and how one would like to display the log file.
  • To view the current log file click Current Server Log.
  • the current log file is displayed (see FIG. 47 ), and any new log activity will be continuously added.
  • click Snaspshot to freeze the current results and open them in a new window.
  • the View section contains tools to list and examine Brokers, Engines, Jobs, and data sets. It's different from the Manage section in that tools focus on viewing information instead of modifying it, changing configuration, or killing Jobs. One can examine historical values to gauge performance, or troubleshoot the configuration by watching the interaction between Brokers and Engines interactively.
  • Lists are similar to the listed displays found in the Manage section, which can be refreshed on demand and display more information.
  • Views are graphs implemented in a Java applet that updates in real-time. The following tools are available:
  • the Broker List tool displays all Brokers currently logged in. It also gives a brief overview of the number of Engines handled by each Broker. To update the list, click the Refresh button. One can also automatically update the display by selecting an interval from the list next to the Refresh button. Click a Broker's hostname to display its list of Engines. One can also click Create to show the Broker Monitor graph, described below.
  • the Broker Monitor tool opens an interactive graph display (see FIG. 49 ) showing current statistics on a Broker.
  • the top graph is the Engine Monitor, a view of the Engines reporting to the Broker, and their statistics over time.
  • the total number of Engines is displayed in green.
  • the employed Engines (Engines currently completing work for the Broker) are displayed in blue, and Engines waiting for work are displayed in red.
  • the middle graph is the Job View, which displays what Jobs have been submitted, and the number of Tasks completed in each Job. Running Jobs are displayed as blue bars, completed Jobs are grey, and cancelled Jobs are purple.
  • the bottom graph, the Job Monitor shows the current Job's statistics. Four lines are shown, each depicting Tasks in the Job. They are submitted (green), waiting (red), running (blue), and completed (grey) Tasks. If a newer Job has been submitted since you opened the Broker Monitor, click load latest job to display the newest Job.
  • the Engine List provides the same information as the Engine Administration tool in the Manage section, such as Engines and what Jobs they are running. The only difference is the list only allows one to view the Engine list, while the Engine Administration tool also has controls that enable one to kill Jobs.
  • the Engine View tool opens an interactive graph displaying Engines on the current Broker, similar to the Engine Monitor section of the Broker Monitor graph, described above.
  • the Job List (see FIG. 50 ) provides the same information as the Job Administration tool in the Manage section. The only difference is the list only allows one to view Jobs, while the Job Administration tool also has controls that enable you to kill Jobs and change their priority.
  • the Data Set List (see FIG. 51 ) provides the same information as the Data Set Administration tool in the Manage section. The only difference is the list only allows one to view Data Sets, while the Data Set Administration tool also has controls that enable one to make Data Sets unavailable.
  • the Cluster Capacity tool displays the capabilities of Engines reporting to a Server. This includes number of CPUs, last login, CPU speed, free disk space, free memory, and total memory. All Engines, including those not currently online, are displayed. One may click Online Engines Only to view only those Engines currently reporting to the Server, or click Offline Engines Only to view Engines that are not currently available.
  • the install section contains tools used to install Engine on one or more machines.
  • the install screen (see FIG. 53 ) enables one to install Engines on a Windows machine, or download the executable files and scripts needed to build installations distributable to Unix machines.
  • the remote Engine script is a Perl script written for Unix that enables one to install or start several DataSynapse Engines from a central Server on remote nodes. To use this script, download the file at the Remote Engine Script by can holding Shift and clicking the link, or right-click the link and selecting Save File As . . . .
  • the format of the resource file is:
  • the Driver is available in Java and C++ and source code is available for developers to download from this page. One can also obtain the Live Developer suite from this link.
  • LiveCluster API One can view the LiveCluster API by selecting this tool.
  • API documents are available in HTML as generated by JavaDoc for Java and by Doxygen for C++.
  • documentation is available for the LiveCluster XML API, in HTML format.
  • This screen contains links to documentation about LiveCluster. Guides are included with the software distribution, in Adobe Acrobat format. To view a guide, click its link to open it. Note: one must have Adobe Acrobat installed to view the guides in pdf format.
  • This link opens a new browser containing notes pertaining to the current and previous releases.
  • a version of the Engine is available to provide debugging information for use with the Java Platform Debugger Architecture, or JPDA.
  • This Engine does not contain the full functionality of the regular Engine, but does provide information for remote debugging via JPDA.
  • the Broker is responsible for managing the job space: scheduling Jobs and Tasks on Engines and supervising interactions with Engines and Drivers
  • Each Job consists of one or more Tasks, which may be performed in any order.
  • the Broker maintains a first-in/first-out queue (FIFO) for Tasks within each Job.
  • FIFO first-in/first-out queue
  • the Broker creates a waiting Task list for that job, then adds this waiting list to the appropriate Job list, according to the Job's priority (see “Job-Based Prioritization,” below). Additional Tasks within the Job are appended to the end of the waiting list as they arrive.
  • the Broker Whenever an Engine reports to the Broker to request Work, the Broker first determines which Job should receive service, then assigns the Task at the front of that Job's waiting list to the Engine. (The Engine may not be eligible to take the next Task, however—this is discussed in more detail below.) Once assigned, the Task moves from the waiting list to the pending list; the pending list contains all the Tasks that have been assigned to Engines.
  • the Broker searches both the pending and waiting lists. If it finds the Task on either list, it removes it from both, and adds it to the completed list. (The Broker may also restart any Engines that are currently processing redundant instances of the same Task. If the Task is not on either list, it was a redundant Task that completed before the Engine restarted, and the Broker ignores it.)
  • Tasks migrate from the pending list back to the waiting list when the corresponding Engine is interrupted or drops out.
  • the Broker appends the Task to the front, rather than the back, of the queue, so that Tasks that have been interrupted are rescheduled at a higher priority than other waiting Tasks within the same Job.
  • the Broker can be configured to append redundant instances of Tasks on the pending list to the waiting list; “Redundant Scheduling,” below, provides a detailed discussion of this topic.
  • Discriminator API supports task discrimination based on Engine-specific attributes.
  • the application code attaches IDiscriminator objects to Tasks at runtime to restrict the class of Engines that are eligible to process them. This introduces a slight modification in the procedure described above: When an Engine is ineligible to take a Task, the Broker proceeds to the next Task, and so on, assigning the Engine the first Task it is eligible to take. Note that Discriminators establish hard limits; if the Engine doesn't meet the eligibility requirements for any of the Tasks, the Broker will send the Engine away empty-handed, even though Tasks may be waiting.
  • the Broker tracks a number of predefined properties, such as available memory or disk space, performance rating (megaflops), operating system, and so forth, that the Discriminator can use to define eligibility.
  • the site administrator can also establish additional attributes to be defined as part of the Engine installation, or attach arbitrary properties to Engines “on the fly” from the Broker.
  • Every LiveCluster Job has an associated priority. Priorities can take any integer value between zero and ten, so that there are eleven priority levels in all. 0 is the lowest priority, 10 is the highest, and 5 is the default.
  • the LiveCluster API provides methods that allow the application code to attach priorities to Jobs at runtime, and priorities can be changed while a Job is running from the LiveCluster Administration Tool.
  • Serial Priority Execution When the Driver submits a job at a priority level, it will wait in that priority queue until distributed by the Broker.
  • Two boolean configuration parameters determine the basic operating mode: Serial Priority Execution and Serial Job Execution.
  • Serial Priority Execution the Broker services the priority queues sequentially. That is, the Broker distributes higher priority Jobs, then moves to lower priority Jobs when higher priority Jobs are completed.
  • Serial Priority Execution is false, the Broker provides interleaved service, so that lower-priority queues with Jobs will receive some level of service even when higher-priority Jobs are competing for resources.
  • Serial Job Execution has similar significance for Jobs of the same priority: When Serial Job Execution is true, jobs of the same priority receive strict sequential service; the first Job to arrive is completed before the next begins. When Serial Job Execution is false, the Broker provides round-robin service to Jobs of the same priority, regardless of arrival time.
  • the Broker allocates resources among the competing priority queues based on the Priority Weights setting. Eleven integer weights determine the relative service rate for each of the eleven priority queues. For example, if the weight for priority 1 is 2, and the weight for priority 4 is 10, the Broker will distribute five priority-4 Tasks for every priority-I Task whenever Jobs of these two priorities compete. (Priorities with weights less than or equal to zero receive no service when higher priority Tasks are waiting.) The default setting for both Serial Execution flags is false, and the default setting for the Priority Weights scales linearly, ranging from priority 0 at 1, and priority 10 at 11.
  • Job Space In addition to the serial execution flags and the priority weights, there are four remaining parameters under Job Space that merit some discussion. These four parameters govern the polling frequencies for Engines and Drivers and the rate at which Drivers upload Tasks to the Server; occasionally, they may require some tuning.
  • the Broker constantly poll the Broker when they are available to take work. Likewise, Drivers poll the Broker for results after they submit Jobs. Within each such transaction, the Broker provides the polling entity with a target latency; that is, it tells the Engine or Driver approximately how long to wait before initiating the next transaction.
  • Total Engine Poll Frequency sets an approximate upper limit on the aggregate rate at which the available Engines poll the Broker for work.
  • the Broker computes a target latency for the individual Engines, based on the number of currently available Engines, so that the total number of Engine polling requests per second is approximately equal to the Total Engine Poll Frequency.
  • the integer parameter specifies the target rate in polls per second, with a default setting of 30.
  • the Result Found/Not Found Wait Time parameters limit the frequency with which Drivers poll the Server for Job results (TaskOutputs). Result Found Wait Time determines approximately how long a Driver waits, after it retrieves some results, before polling the Broker for more, and Result Not Found Wait Time determines approximately how long it waits after polling unsuccessfully.
  • Each parameter specifies a target value in milliseconds, and the default settings are 0 and 1000, respectively. That is, the default settings introduce no delay after transactions with results, and a one-second delay after transactions without results.
  • the Task submission Wait Time limits the rate at which Drivers submit TaskInputs to the Server. Drivers buffer the TaskInput data, and this parameter determines the approximate waiting time between buffers.
  • the integer value specifies the target latency in milliseconds, and the default setting is 0.
  • the default settings are an appropriate starting point for most intranet deployments, and they may ordinarily be left unchanged. However, these latencies provide the primary mechanism for throttling transaction loads on the Server.
  • the Task Rescheduler addresses the situation in which a handful of Tasks, running on less-capable processors, might significantly delay or prevent Job completion.
  • the basic idea is to launch redundant instances of long-running Tasks.
  • the Broker accepts the first TaskOutput to return and cancels the remaining instances (by terminating and restarting the associated Engines). However, it's important to prevent “runaway” Tasks from consuming unlimited resources and delaying Job completion indefinitely. Therefore, a configurable parameter, Max Attempts limits the number of times any given Task will be rescheduled. If a Task fails to complete after the maximum number of retries, the Broker cancels all instances of that Task, removes it from the pending queue, and sends a FatalTaskOutput to the Driver.
  • Three separately configurable strategies govern rescheduling.
  • the three strategies run in parallel, so that tasks are rescheduled whenever one or more of the three corresponding criteria are satisfied. However, none of the rescheduling strategies comes into play for any Job until a certain percentage of Tasks within that Job have completed; the Strategy Effective Percent parameter determines this percentage.
  • the Driver notifies the Broker when the Job has submitted all its Tasks (from Java or C++, this notification is tied to the return from the createTaskInputs method within the Job class).
  • the number of Tasks that have been submitted is equal to the total Task count for the Job, and the Broker begins monitoring the number of Tasks that have completed.
  • the ratio of completed Tasks to the total exceeds the Strategy Effective Percent, the rescheduling strategies begin operating.
  • the rescheduler scans the pending Task list for each Job at regular intervals, as determined by the Interval Millis parameter.
  • Each Job has an associated taskMaxTime, after which Tasks within that Job will be rescheduled.
  • the Broker tracks the mean and standard deviation of the (clock) times consumed by each completed Task within the Job.
  • Each of the three strategies uses one or both of these statistics to define a strategy-specific time limit for rescheduling Tasks.
  • the rescheduler Each time the rescheduler scans the pending list, it checks the elapsed computation time for each pending Task. Initially, rescheduling is driven solely by the taskMaxTime for the Job; after enough Tasks complete, and the strategies are active, the rescheduler also compares the elapsed time for each pending Task against the three strategy-specific limits. If any of the limits is exceeded, it adds a redundant instance of the Task to the waiting list. (The Broker will reset the elapsed time for that Task when it gives the redundant instance to an Engine.)
  • the Reschedule First flag determines whether the redundant Task instance is placed at the front of the back of the waiting list; that is, if Reschedule First is true, rescheduled Tasks are placed at the front of the queue to be distributed before other Tasks that are waiting.
  • the default setting is false, which results in less aggressive rescheduling.
  • ⁇ threshold: min(job.taskMaxTime, percentCompletedStrategy. limit, averageStrategy.limit, standardDevStrategy.limit)
  • the Percent Completed Strategy returns the maximum long value (effectively infinite, so there is no limit) until the number of waiting Tasks, as a fraction of the total number of Tasks, falls below the Remaining Task Percent parameter, after which it returns the mean completion time.
  • this strategy only comes into play when the Job nears completion (as determined by the Remaining Task Percent setting), after which it begins rescheduling every pending Task at regular intervals, based on the average completion time for Tasks within the Job:
  • the default setting for Remaining Task Percent is 1, which means that this strategy becomes active after the Job is 99% completed.
  • the Average Strategy returns the product of the mean completion time and the Average Limit parameter (a double). That is, this strategy reschedules Tasks when their elapsed time exceeds some multiple (as determined by the Average Limit) of the mean completion time:
  • the default setting for Average Limit is 3.0, which means that it reschedules Tasks after they take at least three times as long as average.
  • the Standard Dev Strategy returns the mean plus the product of the Standard Dev Limit parameter (a double) and the standard deviation of the completion times. That is, this strategy reschedules Tasks when their elapsed time exceeds the mean by some multiple (as determined by the Standard Dev Limit) of the standard deviation:
  • the default setting for Standard Dev Limit is 2.0, which means that it reschedules Tasks after they exceed the average by two standard deviations, or in other words, after they've taken longer than about 98% of the completed Tasks.
  • Task rescheduling addresses three basic issues:
  • the Task Data Set Manager The Task Data Set Manager.
  • TaskDataSet addresses applications in which a sequence of operations are to be performed on a common input dataset, which is distributed across the Engines.
  • a typical example would be a sequence of risk reports on a common portfolio, with each Engine responsible for processing a subset of the total portfolio.
  • a TaskDataSet corresponds to a sequence of Jobs, each of which shares the same collection of TaskInputs, but where the Tasklet varies from Job to Job.
  • the principal advantage of the TaskDataSet is that the scheduler makes a “best effort” to assign each TaskInput to the same Engine repeatedly, throughout the session. In other words, whenever possible, Engines are assigned TaskInputs that they have processed previously (as part of earlier Jobs within the session). If the TaskInputs contain data references, such as primary keys in a database table, the application developer can cache the reference data on an Engine and it will be retained.
  • the Broker minimizes data transfer by caching the TaskInputs on the Engines.
  • the Task Data Set Manager plug-in manages the distributed data.
  • Cache Type When Cache Type is set to 0, the Engines cache the TaskInputs in memory; when Cache Type is set to 1, the Engines cache the TaskInputs on the local file system.
  • Cache Max and Cache Percent set limits for the size of each Engine's cache.
  • Cache Max determines an absolute limit, in megabytes.
  • Cache Percent establishes a limit as a percentage of the Engine's free memory or disk space (respectively, depending on the setting of Cache Type).
  • the Data Transfer plug-in manages the transfer of TaskInput and Tasklet objects from the Broker to the Engines and the transfer of TaskOutput objects from the Broker to the Drivers.
  • direct data transfer is configured, and the data transfer configuration specified in this plug-in is not used. However, if direct data transfer is disabled, these settings are used.
  • the Broker saves the serialized data to disk.
  • the Broker assigns a Task to an Engine, the Engine picks up the input data at the location specified by the Base URL.
  • the Broker notifies a polling Driver that output data is available, the Driver retrieves the data from the location specified by the Output URL. Both of these URLs must point to the same directory on the Server, as specified by the Data Directory.
  • This directory is also used to transfer instructions (the Tasklet definitions) to the Engines.
  • the Broker can be configured to hold the data in memory and accomplish the transfer directly, by enclosing the data within messages.
  • Two flags, Store Input to Disk and Store Output to Disk determine which method is used to transfer input data to Engines and output data to Drivers, respectively. (The default setting is true in each case; setting the corresponding flag to false selects direct transfer from memory.) This default configuration is appropriate for most situations.
  • the incremental performance cost of the round trip to disk and slight additional messaging burden is rarely significant, and saving the serialized Task data to disk reduces memory consumption on the Server.
  • the direct-transfer mode is feasible only when there is sufficient memory on the Server to accommodate all of the data. Note that in making this determination, it is important to account for peak loads. Running in direct-transfer mode with insufficient memory can result in java.lang.OutOfMemory-Errors from the Server process, unpredictable behavior, and severely degraded performance.
  • the Job Cleaner plug-in is responsible for Job-space housekeeping, such as cleaning up files and state history for Jobs that have been completed or canceled. This plug-in deletes data files associated with Jobs on a regular basis, and cleans the Job Manage and View pages. It uses the Data Transfer plug-in to find the data files. If a Job is finished or cancelled, the files are deleted on the next sweep. The plug-in sweeps the Server at regular intervals, as specified by the integer Attempts Per Day (the default setting of 2 corresponds to a sweep interval of every 12 hours). The length of time in hours Jobs will remain on the Job Admin page after finished or cancelled is specified by the integer Expiration Hours.
  • the Driver and Engine Managers play analogous roles for Drivers and Engines, respectively. They maintain the server state for the corresponding client/server connections.
  • the Broker maintains a server-side proxy corresponding to each active session; there is one session corresponding to each Driver and Engine that is logged in.
  • the Driver Service and Employment Office Plug-Ins The Driver Service plug-in is responsible for the Driver proxies.
  • Max Number of Proxies sets an upper limit on the number of Drivers that can log in concurrently. The default value of 100,000, and is typically not modified.
  • Max Number of Proxies is set by the license, and cannot be increased be increased beyond the limit set by the license. (Although it can be set below the limit imposed by the license.)
  • Both the Driver and Engine Managers incorporate Login Managers.
  • the Login Managers maintain the HTTP connections with corresponding clients (Drivers and Engines), and monitor the heartbeats from active connections for timeouts.
  • User-configurable settings under the HTTP Connection Managers include the URL (on the Broker) for the connections, timeout periods for read and write operations, respectively, and the number times a client will retry a read or write operation that times out before giving up and logging a fatal error.
  • the Server install script configures the URL settings, and ordinarily, they should never be modified thereafter.
  • the read/write timeout parameters are in seconds; their default values are 10 and 60, respectively.
  • Read operations for large blocks of data are generally accomplished by direct downloads from file, whereas uploads may utilize the connection, so the write timeout may be substantially longer.
  • the default retry limit is 3. These default settings are generally appropriate for most operating scenarios; they may, however, require some tuning for optimal performance, particularly in the presence of unusually large datasets or suboptimal network conditions.
  • the Driver and Engine Monitors track heartbeats from each active Driver and Engine, respectively, and ends connections to Drivers and Engines which no longer respond.
  • the Checks Per Minute parameters within each plug-in determine the frequency with which the corresponding monitor sweeps its list of active clients for connection timeouts.
  • the heartbeat plug-in determines the approximate target rate at which the corresponding clients (Drivers or Engines) send heartbeats to the Broker, and set the timeout period on the Broker as a multiple of the target rate. That is, the timeout period in milliseconds (which is displayed in the browser as well) is computed as the product of the Max Millis Per Heartbeat and the Timeout Factor.
  • each maximum heartbeat period is 30,000 (30 seconds) and f6r each timeout factor, 3, so that the default timeout period for both Drivers and Engines is 90 seconds.
  • the Broker Manager checks for timeouts 10 times per minute, while the Engine Manager sweeps 4 times per minute. (Typically, there are many more Engines than Drivers, and Engine outages have a more immediate impact on application performance.)
  • the Engine File Update Server manages file updates on the Engines, including both the DataSynapse Engine code and configuration itself, and user files that are distributed via the directory replication mechanism.
  • the Native Job Adapter The Native Job Adapter.
  • the Native Job Adapter provides services to support applications that utilize the C++ or XML APIs.
  • the basic idea is that the Broker maintains a “pseudo Driver” corresponding to each C++ or XML Job, to track the connection state and perform some of the functions that would otherwise be performed by the Java Driver.
  • the Result Found and Result Not Found Wait Times have the same significance as the corresponding settings in the Job Space plug-in, except that they apply only to the pseudo Drivers.
  • the Base URL for connections with native Jobs is set by the install script, and should ordinarily never change thereafter.
  • the other settings within the Native Job Adapter plug-in govern logging for the Native Bridge Library, which is responsible for loading the native Driver on each Engine: a switch to turn logging on and off, the log level (1 for the minimum, 5 for the maximum), the name of the log file (which is placed within the Engine directory on each Engine that processes a native Task), and the maximum log size (after which the log rolls over).
  • logging for the Native Bridge is disabled.
  • the Native Job Store plug-in comes into play for native Jobs that maintain persistence of Task-Outputs on the Broker. (Currently, these include Jobs that set a positive value for hours To-KeepData or are submitted via the JobSubmitter class.)
  • the Data Directory is the directory in the Broker's local file system where the TaskOutputs are stored; this directory is set by the install script, and should ordinarily not be changed.
  • the Attempts Per Day setting determines the number of times per day that the Broker sweeps the data directory for TaskOutputs that are no longer needed; the default setting is 24 (hourly).
  • the Utilities plug-in maintains several administrative functions.
  • the Revision Information plug-in provides read-only access to the revision level and build date for each component associated with the Broker.
  • the License plug-in together with its License Viewer component, provides similar access to the license settings.
  • the Log File plug-in maintains the primary log file for the Broker itself. Settings are available to determine whether log messages are written to file or only to the standard output and error streams, the location of the log file, whether to log debug information or errors only, the log level (when debug messages are enabled), the maximum length of the log file before it rolls over, and whether or not to include stack traces with error messages.
  • the Mail Server generates mail notifications for various events on the Broker.
  • the SMTP host can be set here, or from the Edit Profile screen for the site administrator. (If this field is blank or “not set,” mail generation is disabled.)
  • the Garbage Collector monitors memory consumption on the Broker and forces garbage collection whenever the free memory falls below a threshold percentage of the total available memory on the host. Configuration settings are available to determine the threshold percentage (the default value is 20%) and the frequency of the checks (the default is once per minute).
  • the remaining utility plug-ins are responsible for cleaning up log and other temporary files on the Broker. Each specifies a directory or directories to sweep, the sweep frequency (per day), and the number of hours that each file should be maintained before it is deleted. There are also settings to determine whether or not the sweep should recurse through subdirectories and whether to clean out all pre-existing files on startup. Ordinarily, the only user modification to these settings might be to vary the sweep rate and expiration period during testing.
  • the LiveCluster system provides a simple, easy-to-use mechanism for distributing dynamic libraries (.dll or .so), Java class archives (jar), or large data files that change relatively infrequently.
  • the basic idea is to place the files to be distributed within a reserved directory on the Server.
  • the system maintains a synchronized replica of the reserved directory structure for each Engine. Updates can be automatically made, or manually triggered. Also, an Engine file update watchdog can be configured to ensure updates only happen when the Broker is idle.
  • a directory system resides on the Server in which you can put files that will be mirrored to the Engines. The location of these directories is outlined below.
  • Server-side directories are located in the Server install location (usually c: ⁇ Datasynapse ⁇ Server) plus ⁇ livecluster ⁇ public_html ⁇ updates. Within that directory are two directories: datasynapse and resources. The datasynapse directory contains the actual code for the Engine and support binaries for each platform. The resources directory contains four directories: shared, win32, solaris, and linux. This shared directory is mirrored to all Engine types, and the other three are mirrored to Engines running the corresponding operating system.
  • the structure is identical, but the location is the installation directory (usually /opt/datasynapse) plus /Server/Broker/public_html/updates/resources.
  • the directories are also shared, win32, solaris, and linux.
  • a similar directory structure resides in each Engine installation. This is where the files are mirrored. The locations are described below.
  • the corresponding Engine-side directory is located under the root directory for the Engine installation.
  • the default location on Windows is: C: ⁇ Program Files ⁇ DataSynapse ⁇ Engine.bac- kslash.resources and contains the replicated directories shared and win32.
  • the corresponding Engine-side directory on Unix is the Engine install directory (for example, /usr/local) plus /DSEngine/resources and contains the replicated directories shared and linux for Linux Engines or solaris for Solaris Engines.
  • the system can be configured to trigger updates of the replicas in one of two modes:
  • the Server continuously polls the file signatures within the designated subdirectories and triggers Engine updates whenever it detects changes; to update the Engines, the system administrator need only add or overwrite files within the directories.
  • the administrator ensures that the correct files are located in the designated subdirectories and triggers the updates manually by issuing the appropriate tools through the Administration tool.
  • Minutes Per Check determines the interval at which the Server polls the directory for changes Manually Updating files To update all files to the Engines manually, set Update Now to true, and click Submit. This triggers the actual transfer of files from the Server to the Engines, and returns the value of Update Now.to false.
  • the Broker is configured so updates to the Engine files will only happen when the Broker is idle.
  • the Engine file update watchdog provides this function when enabled, and ensures that all Engines have the same files. When enabled, the watchdog ensures that Engine files are not updated unless there are no Jobs in progress. If a file update is requested (either automatically or manually), the watchdog does not allow any new Jobs to start, and waits for currently running Jobs to complete. When no Jobs are running or waiting, the update will occur.
  • the update will not happen, and Jobs will once again be allowed to start. If this happens, one can either try to trigger an update again, specify a longer update period, or try to manually remove Jobs or stop sending new Jobs.
  • a notice will be displayed at the top of the Administration Tool. Also, an email notification is sent on update requests, completions, and timeouts if one subscribes to the FileUpdateEvent with the Event Subscription tool.
  • a shared network directory such as an NFS mounted directory.
  • Unix Engines provide the ability to tune scheduling for multi-CPU platforms. This section explains the basic theory of Engine distribution on multi-CPU machines, and how one can configure CPU scheduling to run an optimal number of Engines per machine.
  • a feature of LiveCluster is that Engines completing work on PCs can be configured to avoid conflicts with regular use of the machine.
  • Engines completing work on PCs can be configured to avoid conflicts with regular use of the machine.
  • configuring an Engine one can specify at what point other tasks take greater importance, and when a machine is considered idle and ready to take on work. This is called adaptive scheduling, and can be configured to adapt to one's computing environment, be it an office of PCs or a cluster of dedicated servers.
  • minimum and maximum CPU utilization refers to the total system CPU utilization, and not individual CPU utilization. This total CPU utilization percentage is calculated by adding the CPU utilization for each CPU and dividing by the number of CPUs. For example, if a four-CPU computer has one CPU running at 50% utilization and the other three CPUs are idle, the total utilization for the computer is 12.5%.
  • a minimum CPU and maximum CPU are configured, but they refer to the total utilization. Also, they simultaneously apply to all Engines. So if the maximum CPU threshold is set at 25% on a four-CPU machine and four Engines are running, and a non-Engine program pushes the utilization of one CPU to 100%, all four Engines will exit. Note that even if the other three CPUs are idle, their Engines will still exit. In this example, if the minimum CPU threshold was set at 5%, all four Engines would restart when total utilization was below 5%. By default, the Unix Engine uses nonincremental scheduling. Also, Windows Engines always use this method.
  • Incremental scheduling is an alternate method implemented in Unix Engines to provide better scheduling of when Engines can run on multi-CPU computers.
  • To configure incremental scheduling use the -I switch when running the configure.sh Engine installation script.
  • minimum CPU and maximum CPU utilization refers to each CPU. For example, if there is an Engine running on each CPU of a multi-CPU system, and the maximum CPU threshold is set at 80%, and a non-Engine program raises CPU utilization above 80% on that CPU, that Engine will exit, and other Engines will continue to run until their CPU reaches the maximum utilization threshold. Also, an Engine would restart on that CPU when that CPU's utilization dropped below the minimum CPU utilization threshold.
  • the CPU scheduler takes the minimum and maximum per/CPU settings specified at Engine installation and normalizes the values relative to total system utilization. When these boundaries are crossed, and Engine is started or shut down and the boundaries are recalculated to reflect the change in running processes. This algorithm is used because, for example, a 50% total CPU load on an eight processor system is typically due to four processes each using 100% of an individual CPU, rather than sixteen processes each using 25% of a CPU.
  • the normalized utilization of the computer is calculated by the following formulas.
  • the maximum normalized utilization (U nmax ) equals:.
  • the LiveCluster API The LiveCluster API.
  • the LiveCluster API is available in both C++, called Driver++, and Java, called JDriver. There is also an XML facility that can be used to configure or script Java-based Job implementations.
  • the Tasklet is analogous with the Servlet interface, part of the Enterprise Java Platform. For example, a Servlet handles web requests, and returns dynamic content to the web user. Similarly, a Tasklet handles a task request given by a Taskinput, and returns the completed task with TaskOutput.
  • the three Java interfaces (TaskInput, TaskOutput, and Tasklet) have corresponding pure abstract classes in C++. There is also one partially implemented class, with several abstract/virtual methods for the developer to define, called Job.
  • the C++ API also introduces one additional class, Serializable, to support serialization of the C++ Task objects.
  • TaskInput is a marker that represents all of the input data and context information specific to a Task.
  • TaskInput extends the java Serializable interface:
  • TaskOutput is a marker that represents all of the output data and status information produced by the Task. (See FIGS. 56-57 .)
  • TaskOutput extends the j ava.io. Serializable interface:
  • the C++ version extends the class Serializable, so it must define methods to read and write from a stream:
  • the Tasklet defines the work to be done on the remote Engines. (See FIGS. 58 and 59 A-B.) There is one command-style method, service, that must be implemented.
  • the Java Tasklet extends java.io. Serializable. This means that the Tasklet objects may contain one-time initialization data, which need only be transferred to each Engine once to support many Tasklets from the same Job. (The relationship between Tasklets and TaskInput/TaskOutput pairs is one-to-many.) In particular, for maximum efficiency, shared input data that is common to every task invocation should be placed in the Tasklet, and only data that varies across invocations should be placed in the Taskinputs.
  • the C++ version is equivalent. It extends the class Serializable, so it must define methods to read and write from a stream:
  • a Job is simply a collection of Tasks.
  • Implementations of createTaskInputs call addTaskInput to add Tasks to the queue. (See FIGS. 60-61 .)
  • Job defines static methods for instantiating Job objects based on XML configuration scripts and call-backs to notify the application code when the Job is completed or encounters a fatal error.
  • a Job also implements processTaskOutput to read output from each Task and output, process, store, add, or otherwise utilize the results.
  • Both the C++ and Java versions provide both blocking (execute) and non-blocking (executeInThread) job execution methods, and execute locally to run the job in the current process. This last function is useful for debugging prior to deployment.
  • Each Job is equipped with a JobOptions object, which contains various parameter settings.
  • the getOptions method of the Job class can be used to get or set options in the JobOptions object for that Job.
  • a complete list of all methods available for the JobOptions object is available in the API reference documentation. Some commonly used methods include setJobName, setJarFile, and setDiscriminator.
  • the name associated with a Job and displayed in the Administration Tool is a long containing a unique number.
  • the favored mechanism of code distribution involves distributing the Jar file containing the concrete class definitions to the Engines using the directory replication mechanism.
  • the C++ version supports this mechanism.
  • the dynamic library containing the implementation of the concrete classes must be distributed to the Engines using the native code distribution mechanism, and the corresponding Job implementation must define getLibraryName to specify the name of this library, for example picalc (for picalc.dll onWin32 or libpicalc.so on Unix).
  • the other method of distributing concrete implementations for the Tasklet, TaskInput, and TaskOutput is to package them in a Jar file, which is typically placed in the working directory of the Driver application.
  • the corresponding Job implementation calls setJarFile with the name of this Jar file prior to calling one of the execute methods, and the Engines pull down a serialized copy of the file when they begin work on the corresponding Task.
  • This method requires the Engine to download the classes each time a Job is run.
  • a discriminator is a method of controlling what Engines accept a Task.
  • FIG. 76 contains sample code that sets a simple property discriminator.
  • the C++ API incorporates a class Serializable, since object serialization is not a built-in feature of the C++ language.
  • This class (see FIG. 62 ) provides the mechanism by which the C++ application code and the LiveCluster middleware exchange object data. It contains two pure virtual methods that must be implemented in any class that derives from it (i.e., in TaskInput, TaskOutput, and Tasklet).
  • the LiveCluster API contains several extensions to classes, providing specialized methods of handling data. These extensions can be used in special cases to improve performance or enable access to information in a database.
  • a TaskDataSet is a collection of TaskInputs that persist on the Server as the input for any subsequent DataSetJob.
  • the TaskInputs get cached on the Engine for subsequent use for the TaskDataSet.
  • This API is therefore appropriate for doing repeated calculations or queries on large datasets. All Jobs using the same DataSetJob will all use the TaskInputs added to the TaskDataSet, even though their Tasklets may differ.
  • TaskInputs from a set are cached on Engines. Engines which request a task from a Job will first be asked to use input that already exists in its cache. If it has no input in its cache, or if other Engines have already taken input in its cache, it will download a new input, and cache it.
  • TaskDataSet An ideal use of TaskDataSet would be when running many Jobs on a very large dataset. Normally, one would create TaskInputs with a new copy of the large dataset for each Job, and then send this large TaskInputs to Engines and incur a large amount of transfer overhead each time another Job is run. Instead, the TaskDataSet can be created once, like a database of TaskInputs. Then, small Tasklets can be created that use the TaskDataSet for input, like a query on a database. As more jobs are run on this session, the inputs become cached among more Engines, increasing performance.
  • TaskDataSet To create a TaskDataSet, first construct a new TaskDataSet, then add inputs to it using the addTaskInput method. (See FIG. 63 .) If one is using a stream, one can also use the createTaskInput method. After one has finished adding inputs, call the doneSubmitting method. If a name is assigned using setName, that will be used for subsequent references to the session; otherwise, a name will be assigned. The set will remain on the Server until destroy is called, even if the Java VM that created it exits.
  • TaskDataSet After creating a TaskDataSet, implement the Job using DataSetJob, and create a TaskOutput. (See FIG. 64 .) The main difference is that to run the Job, one must use setTaskDataSet to specify the dataset one created earlier. Note that the ExecuteLocally method cannot be used with the DataSetJob.
  • a StreamJob is a Job which allows one to create input and read output via streams rather than using defined objects. (See FIG. 65 .)
  • a StreamTasklet reads data from an InputStream and writes to an OutputStream, instead of using a TaskInput and TaskOutput.
  • the StreamJob writes input to a stream, the data is written directly to the local file system, and given to Engines via a lightweight webserver.
  • the Engine also streams the data in via the StreamTasklet. In this way, the memory overhead on the Driver, Broker, and Engine is reduced, since an entire TaskInput does not need to be loaded into memory for transfer or processing.
  • the StreamTasklet must be used with a StreamJob.
  • SQL Engines can use information in an SQL database as input to complete a Task by the use of SQL.
  • An SQLDataSetJob queries the database and receives a result set.
  • Each SQLTasklet is given a subset of the result set as an input. This feature is only available from the Java Driver.
  • An SQLDataSetJob is created by implementing DataSetjob. (See FIG. 67 ) Task inputs are not created, as they will be from the SQL database. (See FIG. 68 .)
  • An SQLTasklet is implemented similar to a normal Tasklet, except the input is an SQL table. (See FIG. 69 .)
  • the Job can be run.
  • the SQLDataSet is created on the server and is prepared with setJDBCProperties, setMode, setQuery, and prepare. Then the Job is run. (See FIG. 70 .) Note that in order to use most recent information in the database, the SQLDataSet needs to be destroyed and created again. This may be important if one is using a frequently updated database.
  • a discriminator enables one to specify what Engines can be assigned to a Task, what Drivers can submit Tasks to a Broker, and what Engines can report to a Broker. These limitations are set based on properties given to Engines or Drivers.
  • Task discrimination is set in the Driver properties, and controls what Engines can be assigned to a Task.
  • Broker discrimination is set in the LiveCluster Administration Tool, and controls what Drivers and Engines use that Broker.
  • Discriminators provide a solution to this issue.
  • the large Job's Tasks will only go to Engines outside of Marketing, and smaller Jobs with no Task discriminator set will have Tasks processed by any Engine in the company, including those in Marketing.
  • An Engine has several properties set by default, with values corresponding to the configuration of the PC running the Engine. One can use these properties to set discriminators.
  • the default properties, available in all Engines, are as follows:
  • Broker discrimination can be configured to work on either Engines or Drivers.
  • For discrimination on Drivers one can add or modify properties in the driver properties file included in the top-level directory of the Driver distribution.
  • a discriminator is set in the Driver properties, and it prevents Tasks from a defined group of Drivers from being taken by this Broker.
  • a discriminator prevents the Engine from being able to log in to a Broker and take Tasks from it.
  • Each discriminator includes a property, a comparator, and a value.
  • the property is the property defined in the Engine or Driver, such as a group, OS or CPU type.
  • the value can be either a number (double) or string.
  • the comparator compares the property and value. If they are true, the discriminator is matched, and the Engine can accept a Task, or the Driver can submit a Job. If they are false, the Driver is returned the Task, or in the case of an Engine, the Broker will try to send the Task to another Engine.
  • each discriminator is the Negate other Brokers box. When this is selected, an Engine or Driver will be considered only for this Broker, and no others. For example, if one has a property named state and one sets a discriminator for when state equals NY and selects Negate other Brokers, any Engine with state set to NY will only go to this Broker and not others.
  • Task discriminators are set by the Driver, either in Java or in XML. (See FIG. 76 .)
  • Java Native Interface provides a simple mechanism for passing data and function calls between Java and the native code.
  • FIGS. 77-79 provide an example of a JNI for the previously-discussed Pi calculation program.
  • jobs can be submitted to a LiveCluster Server in any of three ways:
  • This method uses properties from the driver.properties file located in the same directory as the Driver. One can also specify command-line properties.
  • XML scripting also supports the Batch object, which enables one to submit a Job once and have it run many times on a regular schedule.
  • Properties specified on the command line are overwritten by properties specified in the driver.properties file. If one wants to set a property already defined in the driver.properties, one must first edit the driver.properties and comment out the property.
  • LiveCluster is packaged with XML-based scripting facilities one can use to create and configure Jobs. (see FIG. 80 .) Since Java Jobs are JavaBeans components, their properties can be manipulated via XML and other Bean-compatible scripting facilities.
  • Jobs can be scheduled to run on a regular basis. Using XML scripting, one can submit a Job with specific scheduling instructions. Instead of immediately entering the queue, the Job will wait until the time and date specified in the instructions given.
  • Batch Jobs can be submitted to run at a specific absolute time, or a relative time, such as every hour. Also, a Batch Job can remain active, resubmitting a Job on a regular basis.
  • the batch element contains the entire script, while the schedule element contains properties for type and startTime, defining when the Job will runjob actually runs the Job when it is time, and contains properties needed to run the Job, while command also runs at the same time, writing a message to a log.
  • the LiveCluster system provides a simple, easy-to-use mechanism for distributing linked libraries (.dll or .so), Java class archives (jar), or large data files that change relatively infrequently.
  • the basic idea is to place the files to be distributed within a reserved directory associated with the Server.
  • the system maintains a synchronized replica of the reserved directory structure for each Engine. This is called directory replication.
  • these paths are relative to one's installation directory. For example, if one installs LiveCluster at c: ⁇ DataSynapse, one should append these paths to C: ⁇ DataSynapse ⁇ Server ⁇ livecluster on your server.
  • the default installation in Windows puts the shared and win32 directories in C: ⁇ Program Files ⁇ DataSynapse ⁇ Engine ⁇ resources.
  • Auto Update Enabled When Auto Update Enabled is set to true (the default), the shared directories will automatically be mirrored to any Engine upon login to the Broker. Also, the Server will check for file changes in these directories at the time interval specified in Minutes Per Check. If changes are found, all Engines are signaled to make an update.
  • the LiveCluster Server architecture can be deployed to give varying degrees of redundancy and load sharing, depending on the computing resources available. Before installation, it's important to ascertain how LiveCluster will be used, estimate the volume and frequency of jobs, and survey what hardware and networking will be used for the installation. First, it's important to briefly review the architecture of a Server.
  • the LiveCluster Server consists of two entities: the LiveCluster Director and the LiveCluster Broker:
  • LiveCluster would consist of a single Server configured as a Primary Director, with a single Broker. Additional Servers containing more Brokers or Directors can be added to address three primary concerns: redundancy, volume, and other considerations.
  • FIG. 82 shows an exemplary implementation with two Servers.
  • a Broker can also have a backup on a second Server.
  • a Broker can be designated a Failover Broker on a second Server during installation. Directors will only route Drivers and Engines to Failover Brokers if no other regular Brokers are available. When regular Brokers then become available, nothing further is routed to the Failover Broker. When a Failover Broker has finished processing any remaining jobs, it logs off all Engines, and Engines are then no longer routed to that Failover Broker.
  • FIG. 82 shows a Failover Broker on the second Server.
  • FIG. 83 shows a two Server system with two Brokers. Drivers and Engines will be routed to these Brokers in round-robin fashion.
  • LiveCluster may influence how one may integrate LiveCluster with an existing computing environment. These include:
  • LiveCluster is a distributed computing application, successful deployment will depend on one's network configuration. LiveCluster has many configuration options to help it work with existing networks. LiveCluster Servers should be treated the same way one treats other mission-critical file and application servers: assign LiveCluster Servers static IP addresses and resolvable DNS hostnames. LiveCluster Engines and Drivers can be configured in several different ways. To receive the full benefit of peer-to-peer communication, one will need to enable communication between Engines and Drivers (the default), but LiveCluster can also be configured to work with a hub and spoke architecture by disabling Direct Data Transfer.
  • LiveCluster Servers should run on systems with static IP addresses and resolvable DNS hostnames. In a pure Windows environment, it is possible to run LiveCluster using just WINS name resolution, but this mode is not recommended for larger deployments or heterogeneous environments.
  • LiveCluster uses the Internet Protocol (IP). All Engine-Server, Driver-Server, and Engine-Driver communication is via the HTTP protocol. Server components, Engines, and Drivers can be configured to use port 80 or any other available TCP port that is convenient for one's network configuration.
  • IP Internet Protocol
  • All Director-Broker communication is via TCP.
  • the default Broker login TCP port is 2000, but another port can be specified at installation time.
  • Another pair of ephemeral ports is assigned for further communication.
  • the Broker and Director can also be configured to use static ports for post-login communication.
  • the Server can be configured to work with an NAT device between the Server and the Engines or Drivers. To do this, specify the external (translated) address of the NAT device when referring to the Server address in Driver and Engine installation.
  • Win32 LiveCluster Engines can also support an HTTP proxy for communication between the Engine and the Broker. If the default HTML browser is configured with an HTTP proxy, the Win32 Engine will detect the proxy configuration and use it. However, since all LiveCluster communication is dynamic, the HTTP proxy is effectively useless, and for this reason it is preferred not to use an HTTP proxy.
  • TCP Transmission Control Protocol
  • the Broker will log in on port 2000, and ephemeral ports will then be assigned for further communication.
  • This configuration does not permit a firewall or screening router between the Brokers and Directors. If a firewall or screening router must be supported between Brokers and Directors, then the firewall or screening must have the Broker login port (default 2000) open. Additionally, the Brokers must be configured to use static ports for post-login communication, and those ports must be open on the firewall as well.
  • LiveCluster uses Direct Data Transfer, or peer-to-peer communication, to optimize data throughput between Drivers and Engines. (See FIGS. 86-87 .) Without Direct Data Transfer, all task inputs and outputs must be sent through the Server. Sending the inputs and outputs through the Server will result in higher memory and disk use on the Server, and lower throughput overall.
  • Direct Data Transfer With Direct Data Transfer, only lightweight messages are sent though the Server, and the “heavy lifting” is done by the Driver and Engine nodes themselves. Direct data transfer requires that each peer knows the IP address that he presents to other peers. In most cases, therefore, Direct Data Transfer precludes the use of NAT between the peers. Likewise, Direct Data Transfer does not support proxies.
  • NAT For LiveCluster deployments where NAT is already in.effect, NAT between Drivers and Engines can be supported by disabling peer-to-peer communication as follows:

Abstract

A distributed computing system manages execution of jobs and their associated tasks. Multiple scheduling strategies respect job priority preferences. A graphical user interface allows viewing of job status information and on-the-fly modification of job priorities.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is a continuation of U.S. patent application Ser. No. 10/306,689 (“Adaptive Scheduling”), filed on Nov. 27, 2002 by the inventors herein.
  • FIELD OF THE INVENTION
  • The present invention relates generally to the field of high-performance computing (“HPC”); more specifically, to systems and techniques for distributed and/or parallel processing.
  • BACKGROUND OF THE INVENTION
  • HPC has long been a focus of both academic research and commercial development, and the field presents a bewildering array of standards, products, tools, and consortia. Any attempt at comparative analysis is complicated by the fact that many of these interrelate not as mutually exclusive alternatives, but as complementary component or overlapping standards.
  • Probably the most familiar, and certainly the oldest, approach is based on dedicated supercomputing hardware. The earliest supercomputers included vector-based array processors, whose defining feature was the capability to perform numerical operations on very large data arrays, and other SIMD (Single-Instruction, Multiple-Data) architectures, which essentially performed an identical sequence of instructions on multiple datasets simultaneously. More recently, multiple-instruction architectures, and especially SMPs (Symmetric Multi-Processors), have tended to predominate, although the most powerful supercomputers generally combine features of both.
  • With dramatic improvements in the processing power and storage capacity of “commodity” hardware and burgeoning network bandwidth, much of the focus has shifted toward parallel computing based on loosely-coupled clusters of general-purpose processors, including clusters of network workstations. Indeed, many of the commercially available high-performance hardware platforms are essentially networks of more or less generic processors with access to shared memory and a high-speed, low latency communications bus. Moreover, many of the available tools and standards for developing parallel code are explicitly designed to present a uniform interface to both multi-processor hardware and network clusters. Despite this blurring around the edges, however, it is convenient to draw a broad dichotomy between conventional hardware and clustering solutions, and the discussion below is structured accordingly. Conventional hardware solutions
  • Typical commercial end-users faced with performance bottlenecks consider hardware solutions ranging from mid- to high-end SMP server configurations to true “supercomputers.” In practice, they often follow a tortuous, incremental migration path, as they purchase and outgrow successively more powerful hardware solutions.
  • The most obvious shortcoming of this approach is the visible, direct hardware cost, but even more important are the indirect costs of integration, development, administration, and maintenance. For example, manufacturers and resellers generally provide support at an annual rate equal to approximately 20-30% of the initial hardware cost. Moreover, the increase in physical infrastructure requirements and the administrative burden is much more than linear to the number of CPUs.
  • But by far the most important issue is that each incremental hardware migration necessitates a major redevelopment effort. Even when the upgrade retains the same operating system (e.g., from one Sun Solaris platform to another), most applications require substantial modification to take advantage of the capabilities of the new target architecture. For migrating from one operating system to another (e.g., from NT™ or Solaris™ to Irix™), the redevelopment cost is typically comparable to that of new development, but with the additional burden of establishing and maintaining an alternative development environment, installing and testing new tools, etc. Both development and administration require specialized skill sets and dedicated personnel.
  • In sum, other indirect costs often total 7 to 9×direct hardware costs, when personnel, time-to-market, and application redevelopment costs are taken into account.
  • Clusters, Grids, and Virtual Supercomputers.
  • The basic idea of bundling together groups of general-purpose processors to attack large-scale computations has been around for a long time. Practical implementation efforts, primarily within academic computer science departments and government research laboratories, began in earnest in the early 1980s. Among the oldest and most widely recognized of these was the Linda project at Yale University, which resulted in a suite of libraries and tools for distributed parallel processing centered around a distributed, shared memory model.
  • More elaborate and at a somewhat higher level than Lnda, but similar in spirit, PVM (for Parallel Virtual Machine) provided a general mechanism-based on a standard API and messaging protocol for parallel computation over networks of general-purposes processors. More recently, MPI (the Message Passing Interface) has gained ground. Although they differ in many particulars, both are essentially standards that specify an API for developing parallel algorithms and the behavioral requirements for participating processors. By now, libraries provide access to the API from C and/or Fortran. Client implementations are available for nearly every operating system and hardware configuration.
  • Grid Computing represents a more amorphous and broad-reaching initiative—in certain respects, it is more a philosophical movement than an engineering project. The overarching objective of Grid Computing is to pool together heterogeneous resources of all types (e.g., storage, processors, instruments, displays, etc.), anywhere on the network, and make them available to all users. Key elements of this vision include decentralized control, shared data, and distributed, interactive collaboration.
  • A third stream of development within high-performance distributed computing is loosely characterized as “clustering.” Clusters provide HPC by aggregating commodity, off-the-shelf technology (COTS). By far the most prominent clustering initiative is Beowulf, a loose confederation of researchers and developers focused on clusters of Linux-based PCs. Another widely recognized project is Berkeley NOW (Network of Workstations), which has constructed a distributed supercomputer by linking together a heterogeneous collection of Unix and NT workstations over a high-speed switched network at the University of California.
  • There is considerable overlap among these approaches. For example, both Grid implementations and clusters frequently employ PVM, MPI, and/or other tools, many of which were developed initially to target dedicated parallel hardware. Nor is the terminology particularly well defined; there is no clear division between “grids” and “clusters,” and some authors draw a distinction between “clusters” or dedicated processors, as opposed to “NOWs” (Networks of Workstations), which enlist part-time or intermittently available resources.
  • Clusters and Grids as Enterprise Solutions.
  • The vast majority of clusters and Grid implementations are deployed within large universities and Government research laboratories. These implementations were specifically developed as alternatives to dedicated supercomputing hardware, to address the kinds of research problems that formed the traditional domain of supercomputing. Consequently, much of the development has focused on emulating some of the more complex features of the parallel hardware that are essential to address these research problems.
  • The earliest commercial deployments also targeted traditional supercomputing applications. Examples include: hydrodynamics and fluid-flow, optics, and manufacturing process control. In both research and commercial settings, clustering technologies provide at least a partial solution for two of the most serious shortcomings of traditional supercomputing: (1) up-front hardware cost, and (2) chronic software obsolescence (since the system software to support distributed computing over loosely coupled networks must, out of necessity, provide substantial abstraction of the underlying hardware implementation).
  • However, clusters and grid implementations share, and in many cases, exacerbate, some of the most important weaknesses of supercomputing hardware solutions, particularly within a commercial enterprise environment. Complex, low-level APIs necessitate protracted, costly development and integration efforts. Administration, especially scheduling and management of distributed resources, is burdensome and expensive. In many cases, elaborate custom development is needed to provide fault tolerance and reliability. Both developers and administrators require extensive training and special skills. And although clusters offer some advantages versus dedicated hardware with respect to scale, fragility and administrative complexity effectively impose hard limits on the number of nodes—commercial installations with as many as 50 nodes are rare, and only a handful support more than 100.
  • These weaknesses have become increasingly apparent, as commercial deployments have moved beyond traditional supercomputing applications. Many of the most important commercial applications, including the vast majority of process-intensive financial applications, are “naturally parallel.” That is, the computation is readily partitioned into a number of more or less independent sub-computations. Within financial services, the two most common sources of natural parallelism are portfolios, which are partitioned by instrument or counterparty, and simulations, which are partitioned by sample point. For these applications, complex features to support process synchronization, distributed shared memory, and inter-process communication are irrelevant—a basic “compute server” or “task farm” provides the ideal solution. The features that are essential, especially for time-sensitive, business-critical applications, are fault-tolerance, reliability, and ease-of-use. Unnecessary complexity drives up development and administration costs, undermines reliability, and limits scale.
  • HPC in the Financial Services Industry.
  • The history of HPC within financial services has been characterized by inappropriate technology. One of the earliest supercomputing applications on Wall Street was Monte Carlo valuation of mortgage-backed securities (MBS)—a prototypical example of “naturally parallel” computation. With deep pockets and an overwhelming need for computing power, the MBS trading groups adopted an obvious, well-established solution: supercomputing hardware, specifically MPPs (Massively Parallel Processors).
  • Although this approach solved the immediate problem, it was enormously inefficient. The MPP hardware that they purchased was developed for research applications with intricate inter-process synchronization and communication requirements, not for naturally parallel applications within a commercial enterprise. Consequently, it came loaded with complex features that were completely irrelevant for the Monte Carlo calculations that the MBS applications required, but failed to provide many of the turnkey administrative and reliability features that are typically associated with enterprise computing. Protracted in-house development efforts focused largely on customized middleware that had nothing to do with the specific application area and resulted in fragile implementations that imposed an enormous administrative burden. Growing portfolios and shrinking spreads continued to increase the demand for computing power, and MPP solutions wouldn't scale, so most of these development efforts have been repeated many times over.
  • As computing requirements have expanded throughout the enterprise, the same story has played out again and again—fixed-income and equity derivatives desks, global credit and market risk, treasury and Asset-Liability Management (ALM), etc., all have been locked in an accelerating cycle of hardware obsolescence and software redevelopment.
  • More recently, clustering and grid technologies have offered a partial solution, in that they reduce the upfront hardware cost and eliminate some of the redevelopment associated with incremental upgrades. But they continue to suffer from the same basic defect—as an outgrowth of traditional supercomputing, they are loaded with irrelevant features and low-level APIs that drive up cost and complexity, while failing to provide turnkey support for basic enterprise requirements like fault-tolerance and central administration.
  • The invention, as described below, provides an improved, Grid-like distributed computing system that addresses the practical needs of real-world commercial users, such as those in the financial services and energy industries.
  • BRIEF SUMMARY OF THE INVENTION
  • The invention provides an off-the-shelf product solution to target the specific needs of commercial users with naturally parallel applications. A top-level, public API provides a simple “compute server” or “task farm” model that dramatically accelerates integration and deployment. By providing built-in, turnkey support for enterprise features like fault-tolerant scheduling, fail-over, load balancing, and remote, central administration, the invention eliminates the need for customized middleware and yields enormous, on-going savings in maintenance and administrative overhead.
  • Behind the public API is a layered, peer-to-peer (P2P) messaging implementation that provides tremendous flexibility to configure data transport and overcome bottlenecks, and a powerful underlying SDK based on pluggable components and equipped with a run-time XML scripting facility that provides a robust migration path for future enhancements.
  • Utilizing the techniques described in detail below, the invention supports effectively unlimited scaling over commoditized resource pools, so that end-users can add resources as needed, with no incremental development cost. The invention seamlessly incorporates both dedicated and intermittently idle resources on multiple platforms (Windows™, Unix, Linux, etc.). And it provides true idle detection and automatic fault-tolerant rescheduling, thereby harnessing discrete pockets of idle capacity without sacrificing guaranteed service levels. (In contrast, previous efforts to harness idle capacity have run low-priority background jobs, restricted utilization to overnight idle periods, or imposed intrusive measures, such as checkpointing.) The invention provides a system that can operate on user desktops during peak business hours without degrading performance or intruding on the user experience in any way.
  • A key aspect of the present invention relates to “pull-based” (i.e., resources (Engines) poll the server (Broker) for work, and submitters (Drivers) poll the Broker for results) adaptive scheduling of tasks in a coarse-grained parallel or grid-based computing framework.
  • According to one aspect of adaptive scheduling, Drivers submit Jobs to a Broker. Each Job consists of one or more Tasks, which may be executed in any order. The Broker maintains a queue for Tasks within each active Job. When a Driver submits the first Task within a Job, the Broker creates a Waiting Task List for that Job, then adds this list to the appropriate Job List, according to the Job's priority. (Thus, each Job List is list of Task Lists.) As the Driver submits additional Tasks to the Broker, the Broker appends them to the end of the Waiting Task List.
  • Whenever an Engine becomes available, it polls the Broker to request work. The Broker determines which Job should receive service (using priorities and/or discriminators, as described below), then assigns the Task at the front of that Job's Waiting Task List to the Engine. Once it has been assigned to an Engine, the Broker moves the Task from the Waiting Task List to the Pending Task List; the Pending Task List contains all the Tasks in the Job that have been assigned to Engines.
  • When an Engine completes a Task, it notifies the Broker, and the Broker searches both the Pending and Waiting Task Lists for the corresponding Job. If the Task appears on either list, the Broker removes it from both, and adds it to the Completed Task List. (If the Task does not appear on either list, it is a redundant Task that has already completed on another Engine, and the Broker ignores it; however, the Broker may also free or restart engines that are currently processing redundant instances of the same Task.) When the submitting Driver polls for results, the Broker returns the entries from the Completed Task List and clears them from the list.
  • Each Job has an associated priority: a priority is attached to it at inception, and the priority may be changed while the Job is running. The number of priorities is fixed at some number, N, greater than or equal to 1. (In the current LiveCluster™ release, N=11.) As indicated above, the Broker maintains a Job List corresponding to each priority level.
  • A configuration setting selects between Serial and Interleaved Priority Execution. Under Serial Priority Execution, the Broker services the priority lists sequentially. That is, the Broker always services the non-empty Job list of highest priority. Under Interleaved Priority Execution, the. Broker provides interleaved service to all non-empty Job Lists, so that lower priority lists continue to receive some level of service even when higher priority Jobs are active.
  • The proportion of service that the Broker allocates to competing priority lists is based on an N-tuple of non-negative integer Priority Weights, where N is the number of distinct priorities. In particular, if the N-tuple of Priority Weights is given by (w1, w2, . . . , wN), then the Broker distributes priority-1 Tasks until either the priority-1 list is empty, or it has distributed w1 Tasks. Then it distributes priority-2 Tasks until either the priority-2 list is empty or it has distributed w2 Tasks, and so forth, until it has serviced all N priority lists, at which point the process repeats.
  • Similarly, the Broker may be configured to provide either Serial or Interleaved Job Execution for Jobs of the same priority. Under Serial Job Execution, Jobs of the same priority receive strict sequential service; the first Job submitted completes before the next begins. Under Interleaved Job Execution, the Broker provides round-robin service to all Jobs of a given priority, regardless of the order in which they were submitted.
  • Redundant scheduling strategies may be employed to provide guaranteed service levels and reliable Job throughput when resources and/or Tasks are heterogeneous. Redundant scheduling addresses a weakness of the basic scheduling algorithm, as described above, namely: A relatively small number of long-running Tasks, distributed to less capable processors, can significantly delay or prevent Job completion. The basic idea is to launch redundant instances of bottleneck or long-running Tasks. For redundant Tasks, the Broker accepts the first result returned by any Engine, and cancels the remaining instances. A configurable parameter determines the maximum number of redundant instances of a given Task that the Broker will distribute.
  • In accordance with a preferred embodiment of the invention, two mechanisms are provided for redundant scheduling of long-running Tasks. First, a Maximum Task Time may be associated with any Job. The Broker schedules redundant instances of Tasks that fail to complete within the time limit. Second, one or more Rescheduling Strategies may become active after a (possibly Job- and/or Strategy-specific) percentage of Tasks within the Job have completed.
  • The Broker scans the Pending Task Lists for each active Job at regular intervals. Initially, rescheduling is driven solely by the Maximum Task Time for the Job. Once the percentage of completed Tasks reaches the threshold for a given Strategy, the Broker also compares the elapsed time for each pending Task against the time limit corresponding to that Strategy. If one or more of the limits is exceeded, the Broker adds a redundant instance of the Task to the Waiting Task List and resets the elapsed time for that Task to zero. (The accumulation of elapsed time for the Task begins again when the Broker assigns the redundant instance to an Engine.)
  • A configuration setting determines whether the Broker places redundant Task instances at the front or the back of the Waiting Task List, that is, whether redundant Tasks are distributed before or after other waiting Tasks.
  • Each Redundant Scheduling Strategy is specified via a procedure that returns a dynamically varying time limit as a function of data maintained by the Broker, typically including Job-specific Task duration statistics. (The Broker tracks the mean and standard deviation of Task completion times for each active Job.) Important examples include the following:
  • The Percent Completed Strategy, which returns the maximum integer (effectively infinite, so that there is no active limit) until the number of waiting Tasks, as percentage of the total number of Tasks within the Job, falls below a configurable threshold, after which it returns the mean completion time;
  • The Average Strategy, which returns the product of the mean completion time and a configurable floating-point multiplier. That is, this strategy launches redundant Task instances when the elapsed time exceeds a configurable multiple of the mean completion time; and,
  • The Standard Deviation Strategy, which returns the sum of the mean and a configurable multiple of the standard deviation of the completion times. That is, it launches redundant Task instances when the elapsed time exceeds the mean by a configurable multiple of the standard deviation.
  • Because variation in Task sizes can undermine the fairness and efficiency of the basic Task-based priority scheduling scheme, the invention also contemplates use of alternative measures of resource consumption. Several modifications are available to substitute alternatives for the basic Task count as a measure of computational resource consumption within the invention's priority-based Job scheduler.
  • For each running Job, the Broker may track the total aggregate processing time on the Engines that has been consumed by Tasks within the Job, and allocate service to the Job queues based on processing time, rather than the number of Tasks that have been scheduled.
  • To account for heterogeneous processing capabilities, the Broker may weight the actual processing times by some measure of the processing power of the corresponding Engines. For example, the Broker may schedule a standard benchmark performance measurement (e.g., the LINPAC benchmark, or some other representative benchmark) on each Engine at regular intervals, or each time the Engine logs in, and multiply the actual processing times by the resulting performance ratings to convert elapsed times to a more accurate measure of computation.
  • Finally, some or all of the Engines may report to the Broker a measure of realized CPU consumption (e.g., as reported by the local operating system) upon Task completion and/or periodically for running Tasks, and the Broker may incorporate these measurements in the allocation of service. This is particularly useful in case the Engines are configured to run as background processes and/or to share CPU time with other processes that are running simultaneously.
  • Another aspect of the invention relates to adaptive polling. Engines poll the Broker whenever they are available to perform work. The polling request is either successful, and the Broker assigns a Task to the Engine, or it is not. Similarly, Drivers poll the Broker after they have submitted Jobs, to collect results. The request is either successful, and the Broker returns one or more results (possibly indirectly, by providing a locator or locators), or it is not.
  • Successful polling requests are effectively self-limiting, because they require additional action on the part of the polling entity—either collecting the Task input and performing the Task, or collecting the results, respectively. But the frequency of unsuccessful requests may be advantageously regulated to avoid overwhelming the Broker. Therefore, in response to each unsuccessful polling request, the Broker returns a message specifying the time interval after which the polling entity may submit another request.
  • The algorithm by which the Broker determines this time interval has two important features:
  • 1. It is randomized in a range around an ideal target latency, to avoid “ringing.” That is, a pseudo-random number generator is used to select values within a range of the target value, to avoid the situation in which deterministic patterns in the polling and response times result in highly synchronized message traffic, which might otherwise overwhelm the Broker and/or the communication network. 2. The target values are calculated using an adaptive, dynamic algorithm; the Broker keeps track of the number of actively polling entities, and varies the target latencies so as to maintain total aggregate polling rates within an optimal operating range. When more entities are active, the Broker increases the target latencies, and when fewer are active, it decreases them.
  • Typically, HTTP is the underlying transport protocol. In this case, the implementation may use the “Keep-Alive” feature of HTTP to reduce latencies for Task distribution and/or result retrieval. In particular, when an Engine polls for work and no Tasks are waiting, the HTTP connection may be held open until either a Task is ready, or the connection timeout is reached, in which case the Engine may poll again immediately. Exactly the same mechanism is applicable when Drivers poll for results. The Broker may track the number of open connections and stop holding connections open when the number reaches some limiting value.
  • Another aspect of the invention involves the use of Discriminators. Discriminators are essentially filters that can be attached to Tasks and/or Engines to impose selection criteria during the Broker's assignment of Tasks to Engines. When a Discriminator is attached to a Task, it restricts the class of Engines that are eligible to process that Task based on properties associated with the Engine, possibly including but not limited to: operating system, processor speed, RAM, free memory, local disk size, free disk, host name, number of CPUs on host machine, etc., together with any collection of user-defined properties that can either be tracked by the Broker or measured or detected on the Engine at runtime.
  • When a Discriminator is attached to an Engine, it restricts the class of Tasks that are eligible to run on that Engine based on properties associated with the Task, possibly including but not limited to: Task Id (assigned to Tasks within each Job sequentially), Job Id (a unique identifier attached to each Job by the Broker), Driver Id (a unique identifier attached to each active Driver), together with any collection of user-defined properties that can be assigned by the Broker or by the submitting application at runtime.
  • Discriminators modify the operation of the basic scheduling algorithm as follows: Before assigning any Task to an Engine, the Broker checks all Discriminators that are attached to either the Task or the Engine. If the Task/Engine pairing fails to satisfy any of the criteria imposed by any of the Discriminators, the Broker examines the next Task (as determined by the basic scheduling algorithm). This process continues until either the Broker assigns the first suitable Task to the Engine, or it exhausts the waiting Tasks, in which case the request fails, and no Task is assigned to the Engine.
  • Scoring Discriminators provide a variant of the basic Discriminator, and assign to each pairing of Task and Engine a numerical score, rather than an all-or-nothing (binary) determination of suitability. In this case, before assigning a Task to an Engine, the Broker checks some number of waiting Tasks (in the order determined by the basic scheduling algorithm) and selects the Task/Engine pairing with the highest score.
  • Scoring Discriminators may also impose a minimum-score restriction, so that no Task will be assigned to an Engine for which the score assigned to the resulting Task/Engine pairing is below the minimum threshold. In this case, the algorithm may be modified so that the Broker will continue to check additional waiting Tasks, beyond the specified number, if necessary, in order to find a first Task that yields a score above the minimum threshold.
  • In another modification of the basic scheduling algorithm, the Broker may maintain a queue of Engines that are available but that have not been assigned Tasks. In this case, the Broker may examine all combinations of waiting Tasks and available Engines and choose the pairing with the highest score. (This is particularly useful in connection with the HTTP Keep-Alive enhancement described above, in which case the queue of available Engines may coincide with those for which the connection is held open.) Typically, the Broker limits the size of the available Engine queue in order to limit the complexity of the assignment computation.
  • Programmatic APIs for defining Discriminators and attaching them to Tasks, Jobs, or Engines, may be provided in Java and/or C++. A primary feature of the Discriminator base class is an abstract function, to be defined by the programmer, that returns either a Boolean, in the case of a basic binary Discriminator, or a numerical score, in the case of a soft Discriminator. Alternatively, or in addition, an API may be provided in Java and/or C++ to define a Discriminator to act on all or a subset of Task/Engine pairings and register it directly with the Broker. Alternatively, or in addition to the programmatic APIs, administrative and/or scripting interfaces may be provided to define Discriminators and attach them to Tasks, Jobs, Engines, or Brokers.
  • Properties associated with Engines, Tasks, and Jobs may be “built-in,” that is, defined or detected automatically by the remote system components (Drivers and Engines) or assigned automatically by the Broker. The list of Properties associated with each entity may be implemented as a hash table, i.e., a collection of key/value pairs. Programmatic and/or administrative APIs may also be provided to attach properties to Engines, Tasks, and/or Jobs, and/or to modify existing properties dynamically. Default mechanisms may be provided by the system and/or defined by the user to address the situation in which Discriminators are defined in terms of properties that have not been assigned explicitly to all relevant components.
  • Implementations may optimize performance by caching the property values associated with remote components (Drivers and Engines) on the Broker, so that the Broker may evaluate Discriminators that reference these properties without having to exchange additional messages with the remote components in order to ascertain the associated property values. This caching may be combined with an incremental update capability on the remote components so that they notify the Broker only when the values change.
  • A further general aspect of the invention relates to the use of adaptive scheduling to enhance reuse of cached data and/or minimize unnecessary network data transmissions. In accordance with this aspect of the invention, a TaskDataSet provides a simple API and scheduling mechanism to address multi-stage sequential computations within an adaptive, demand-driven scheduling context. The TaskDataSet concept is particularly useful for sequential computations on very large distributed data sets and to support caching and reuse of intermediate results on distributed processors. Using TaskDataSets improves efficiency not only by maximizing reuse of distributed input data (thereby minimizing data transfer), but also by facilitating reuse of intermediate state generated locally on the distributed resources.
  • A TaskDataSet comprises a collection of persistent TaskInputs. Typically, a TaskDataSet is associated with a sequence of one or more Jobs within a corresponding Tasking Session. Each Job within the Tasking Session shares the same set of TaskInputs (each of which defines a Task within the corresponding Job). Distinct Jobs within the session differ via their Tasklets; that is, they are equipped with distinct Tasklets, and thus may perform distinct computations and access Job-specific data. (As objects, the Tasklets may contain data as well as instructions.)
  • Jobs within a Tasking Session are scheduled just like other Jobs, and in particular, multiple Tasking Sessions can be active simultaneously and coexist seamlessly with other Jobs that are not part of any Tasking Session. However, whenever an Engine that has processed one or more TaskInputs from a TaskDataSet requests work and a Job within the corresponding session is active and eligible to receive service (i.e., based on execution history and the configuration of the priority-based scheduling scheme), the Server will, if possible, assign to that Engine a Task for which the Engine has already processed the corresponding TaskInput. That is, whenever the Server assigns a TaskInput from a TaskDataSet to an Engine, it checks to see if any pending Tasks correspond to a TaskInput that the Engine has processed previously (as part of a previous Job within the session) and if so, whether the Taskinput remains in the Engine's local cache. If so, the Server will assign such a Task to the Engine. Otherwise, the Server may assign the Engine another TaskInput from the TaskDataSet.
  • The TaskDataSet is therefore, in effect, a progressively distributed database of TaskInputs, with each successive Job within the session acting as a query or procedure on that database. As more Jobs run within the session, the inputs are distributed more widely across Engines.
  • In light of the above, generally speaking, and without intending to be limiting, one specific aspect of the invention claimed herein relates to distributed computing systems comprising, for example, the following: a plurality of engines that perform assigned computational tasks; at least one broker that manages jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) a job priority, the task(s) associated with each job organized into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having at least (i) a task id and (ii) a task priority; the at least one broker configured to assign waiting task(s) to available engine(s); and a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
  • Again, generally speaking, and without intending to be limiting, further aspects of the invention relate to distributed computing systems comprising, for example, the following: a plurality of engines that perform assigned computational tasks; at least one primary broker that manages jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) a job priority, the task(s) associated with each job organized into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having at least (i) a task id and (ii) a task priority; the at least one primary broker configured to assign waiting task(s) to available engine(s); and at least one failover broker that performs the functions of the primary broker in the event of a primary broker failure. The at least one failover broker may operate on a different server than the primary broker. The system may further include a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities. The least one broker may include an adaptive scheduler that operates in at least two modes, including (i) a first mode that gives greater execution preference to higher priority jobs and (ii) a second mode that gives less execution preference to higher priority jobs. And the system may further include a batch administration tool that manages execution of batch job(s).
  • Again, generally speaking, and without intending to be limiting, further aspects of the invention relate to distributed computing systems comprising, for example, the following: at least one client application that submits job(s) for execution, each job including (i) one or more tasks and (ii) a job priority; a plurality of engines that execute assigned tasks; at least one broker that manages jobs submitted for execution by client application(s), the task(s) associated with each job organized into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having an associated task priority, the at least one broker configured to assign waiting task(s) to available engine(s); and a messaging API that sends input data to, and receives output data from, executing task(s). Each job may further include an associated job id. Each task may further include an associated task id. The system may further include a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities. The system may further include at least one cache that provides a data storage area for data used by tasks, and the cache may permit data sharing among jobs. The at least one broker may include ajob scheduler that implements at least two scheduling strategies, wherein a first scheduling strategy preferably allocates a larger share of available resource(s) to higher priority job(s) than a second scheduling strategy. The system may further include at least one failover broker that performs the functions of the broker if the broker fails to perform, wherein the broker and the at least one failover broker preferably operate on different servers.
  • Again, generally speaking, and without intending to be limiting, further aspects of the invention relate to methods for operating distributed computing systems by, for example: using a plurality of engines to execute assigned computational tasks; using at least one broker to manage jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) ajob priority; organizing the task(s) associated with each job into at least three categories, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine; configuring the at least one broker to assign waiting task(s) to available engine(s); and providing a graphical user interface that (i) displays status information for jobs and (ii) allows a user to modify job priorities. Such methods may further include associating a task id and a task priority with each task. Such methods may further involve, if the at least one primary broker encounters a failure, automatically replacing the primary broker with at least one failover broker, preferably operating on a different server than the primary broker, to take over the functions of the primary broker. Such methods may further include associating a task id and a task priority with each task. Such methods may further involve providing a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities. Such methods may further involve providing at least two scheduling strategies, wherein, for example, a first scheduling strategy gives greater execution preference to higher priority jobs and a second scheduling strategy gives less execution preference to higher priority jobs. Such methods may further involve caching data used by tasks, and sharing cached data among jobs. And such methods may further include managing execution of batch job(s) using a batch administration tool.
  • Again, generally speaking, and without intending to be limiting, further aspects of the invention relate to methods for operating distributed computing systems by, for example: allowing a client application to submits job(s) for execution, each job including (i) one or more tasks and (ii) a job priority; using a plurality of engines to execute assigned tasks; using at least one broker to manage execution of submitted job(s) by (1) maintaining the task(s) associated with each job in at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, and (2) using associated task priorities to assign waiting task(s) to available engine(s); and using a messaging API to send input data to, and receive output data from, executing task(s). Such methods may further include associating a job id with each job and/or associating a task id with each task. Such methods may further include providing a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities. Such methods may further include using at least one cache as a data storage area for data used by tasks, and optionally using such cache to share data among jobs. Such methods may further involve using at least two scheduling strategies to assign available resource(s) to waiting task(s), whereby, for example, a first scheduling strategy allocates a larger share of available resource(s) to task(s) associated with higher priority job(s) than a second scheduling strategy. And such methods may further involve using at least one failover broker, preferably operating on a different server, to perform the functions of the broker if the broker fails to perform.
  • While the above discussion outlines some of the important features and advantages of the invention, those skilled in the art will recognize that the invention contains numerous other novel features and advantages, as described below in connection with applicants' preferred LiveCluster embodiment.
  • Accordingly, still further aspects of the present invention relate to other system configurations, methods, software, encoded articles-of-manufacture and/or electronic data signals comprised of, or produced in accordance with, the above in combination with portions of the preferred LiveCluster embodiment, described in detail below.
  • BRIEF DESCRIPTION OF THE FIGURES
  • The present invention will be best appreciated by reference to the following set of figures (to be considered in combination with the associated detailed description) in which:
  • FIGS. 1-2 depict data flows in the preferred LiveCluster embodiment of the invention;
  • FIGS. 3-12 are code samples from the preferred LiveCluster embodiment of the invention;
  • FIG. 13 depicts comparative data flows in connection with the preferred LiveCluster embodiment of the invention;
  • FIGS. 14-31 are code samples from the preferred LiveCluster embodiment of the invention;
  • FIGS. 32-53 are screen shots from the preferred LiveCluster embodiment of the invention;
  • FIGS. 33-70 are code samples from the preferred LiveCluster embodiment of the invention;
  • FIGS. 72-81 are code samples from the preferred LiveCluster embodiment of the invention; and,
  • FIGS. 82-87 depict various illustrative configurations of the preferred LiveCluster embodiment f the invention.
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT(S)
  • What follows is a rough glossary of terms used in describing the preferred LiveCluster implementation of the invention.
  • Broker.
  • A subcomponent of a Server that is responsible for maintaining a “job space,” for managing Jobs and Tasks and the associated interactions with Drivers and Engines. Daemon A process in Unix that runs in the background and performs specific actions or runs a server with little or no direct interaction. In Windows NT or Windows 2000, these are also called Services. Director A subcomponent of a Server that is responsible for routing Drivers and Engines to Brokers, Driver The component used to maintain a connection between the LiveCluster Server and the client application. Engine The component that actually handles the work of computation, accepting work from and returning results to a Broker. Failover Broker A Broker configured to take on work when another Broker fails. The Failover Broker will continue to accept Jobs until another Broker is functioning again, and then it will wait for any remaining Jobs to finish before returning to a wait state. Job A unit of work submitted from a Driver to a Server. Servers break apart Jobs into Tasks for further computation. LiveCluster LiveCluster provides a flexible platform for distributing large computations to idle, underutilized and/or dedicated processors on any network. The LiveCluster architecture includes a Driver, one or more Servers, and several Engines. Server The component of the LiveCluster tm system that takes work from Drivers, coordinates it with Engines, and supports Web-based administrative tools. A Server typically contains a Driver and a Broker. Task An atomic unit of work. Jobs are broken into Tasks and then distributed to Engines for computation. Standalone A Server that has been configured with a Broker, Broker but no Director; its configured primary and secondary Directors are both in other Servers. Service A program in Windows NT or Windows 2000 that performs specific functions to support other programs. In Unix, these are also called daemons. How LiveCluster Works
  • LiveCluster supports a simple but powerful model for distributed parallel processing. The basic configuration incorporates three major components—Drivers, Servers, and Engines. Generally speaking, the LiveCluster model works as follows:
  • A. Client applications (via Drivers) submit messages with work requests to a central Server.
  • B. The Server distributes the work to a network of Engines, or individual CPUs with LiveCluster Installed.
  • C. The Engines return the results to the Server.
  • D. The Server collects the results and returns them to the Drivers.
  • Tasks and Jobs.
  • In LiveCluster, work is defined in two different ways: a larger, overall unit, and a smaller piece, or subdivision of that unit. These are called Jobs and Tasks. A Job is a unit of work. Typically, this refers to one large problem that has a single solution. A Job is split into a number of smaller units, each called a Task. An application utilizing LiveCluster submits problems as Jobs, and LiveCluster breaks the Jobs into Tasks. Other computers solve the Tasks and return their results, where they are added, combined, or collated into a solution for the Job.
  • Component Architecture.
  • The LiveCluster system is implemented almost entirely in Java. Except for background daemons and the installation program, each component is independent of the operating system under which it is installed. The components are designed to support interoperation across both wide and local area networks (WANs and LANs), so the design is very loosely coupled, based on asynchronous, message-driven interactions. Configurable settings govern message encryption and the underlying transport protocol.
  • In the next section, we describe each of the three major components in the LiveCluster system—Driver, Server, and Engine—in greater detail.
  • Server.
  • The Server is the most complex component in the system. Among other things, the Server:
  • Keeps track of the Engines and the ongoing computations (Jobs and Tasks);
  • Supports the web-based administration tools—in particular, it embeds a dedicated HTTP Server, which provides the primary administrative interface to the entire system.
  • Despite its complexity, however, the Server imposes relatively little processing burden. Because Engines and Drivers exchange data directly, so the Server doesn't have to consume a great deal of network bandwidth. By default, LiveCluster is configured so that Drivers and Engines communicate to the Server only for lightweight messages.
  • The Server functionality is partitioned into two subcomponent entities: the Broker and the Director. Roughly speaking, the Broker is responsible for maintaining a “job space” for managing Jobs and Tasks and the associated interactions with Drivers and Engines. The primary function of the Director is to manage Brokers. Typically, each Server instance imbeds a Broker/Director pair. The simplest fault-tolerant configuration is obtained by deploying two Broker/Director pairs on separate processors, one as the primary, the other to support failover. For very large-scale deployments, Brokers and Directors are isolated within separate Server instances to form a two-tiered Server network. Ordinarily, in production, the Server is installed as a service (under Windows) or as a daemon (under Unix)—but it can also run “manually,” under a log-in shell, which is primarily useful for testing and debugging.
  • Driver.
  • The Driver component maintains the interface between the LiveCluster Server and the client application. The client application code imbeds an instance of the Driver. In Java, the Driver (called JDriver) exists as a set of classes within the Java Virtual Machine (JVM). In C++, the Driver (called Driver++) is purely native, and exists as a set of classes within the application. The client code submits work and administrative commands and retrieves computational results and status information through a simple API, which is available in both Java and C++. Application code can also interact directly with the Server by exchanging XML messages over HTTP.
  • Conceptually, the Driver submits Jobs to the Server, and the Server returns the results of the individual component Tasks asynchronously to the Driver. In the underlying implementation, the Driver may exchange messages directly with the Engines within a transaction space maintained by the Server.
  • Engine.
  • Engines report to the Server for work when they are available, accept Tasks, and return the results. Engines are invoked on desktop PCs, workstations, or on dedicated servers by a native daemon. Typically, there will be one Engine invoked per participating CPU. For example, four Engines might be invoked on a four-processor SMP.
  • An important feature of the LiveCluster platform is that it provides reliable computations over networks of interruptible Engines, making it possible to utilize intermittently active resources when they would otherwise remain idle. The Engine launches when it is determined that the computer is idle (or that a sufficient system capacity is available in a multi-CPU setting) and relinquishes the processor immediately in case it is interrupted (for example, by keyboard input on a desktop PC).
  • It is also possible to launch one or more Engines on a given processor deterministically, so they run in competition with other processes (and with one another) as scheduled by the operating system. This mode is useful both for testing and for installing Engines on dedicated processors.
  • Principles of Operation.
  • Idle Detection: Engines are typically installed on network processors, where they utilize intermittently available processing capacity that would otherwise go unused. This is accomplished by running an extremely lightweight background process on the Engine. This invocation process monitors the operating system and launches an Engine when it detects an appropriate idle condition.
  • The definition and detection of appropriate idle conditions is inherently platform- and operating-system dependent. For desktop processors, the basic requirement is that the Engine does nothing to interfere with the normal activities of the desktop user. For multi-processor systems, the objective, roughly speaking, is to control the number of active Engines so that they consume only cycles that would otherwise remain idle. In any case, Engines must relinquish the host processor (or their share of it, on multi-processor systems) immediately when it's needed for a primary application. (For example, when the user hits a key on a workstation, or when a batch process starts up on a Server.)
  • Adaptive Scheduling.
  • Fault-tolerant adaptive scheduling provides a simple, elegant mechanism for obtaining reliable computations from networks varying numbers of Engines with different available CPU resources. Engines report to the Server when they are “idle”—that is, when they are available to take work. We say the Engine “logs in,” initiating a login session. During the login session, the Engine polls the Server for work, accepts Task definitions and inputs, and returns results. If a computer is no longer idle, the Engine halts, and the task are rescheduled to another Engine. Meanwhile, the Server tracks the status of Tasks that have been submitted to the Engines, and reschedules tasks as needed to ensure that the Job (collection of Tasks) completes.
  • As a whole, this scheme is called “adaptive” because the scheduling of Tasks on the Engines is demand-driven. So long as the maximum execution time for any Task is small relative to the average “idle window,” that is, the length of the average log-in session, between logging in and dropping out, adaptive scheduling provides a robust, scalable solution for load balancing. More capable Engines, or Engines that receive lighter Tasks, simply report more frequently for Work. In case the Engine drops out because of a “clean” interruption—because it detects that the host processor is no longer “idle”—it sends a message to the Server before it exits, so that the Server can reschedule running Tasks immediately. However, the Server cannot rely on this mechanism alone. In order to maintain performance in the presence of network drop-outs, system crashes, etc., the Server monitors a heartbeat from each active Engine and reschedules promptly in case of time-outs.
  • Directory Replication.
  • Directory replication is a method to provide large files that change relatively infrequently. Instead of sending the files each time a Job is submitted and incurring the transfer overhead, the files are sent to each Engine once, where they are cached. The Server monitors a master directory structure and maintains a synchronized replica of this directory on each Engine, by synchronizing each Engine with the files. This method can be used on generic files, or platform-specific items, such as Javajar files, DLLs, or object libraries.
  • Basic API Features.
  • Before examining the various features and options provided by LiveCluster, it is appropriate to introduce the basic features of the LiveCluster API by means of several sample programs.
  • This section discusses the following Java interfaces and classes: TaskInput; TaskOutput; Tasklet; Job; PropertyDiscriminator; EngineSession; StreamJob; StreamTasklet; DataSetJob; and TaskDataSet.
  • The basic LiveCluster API consists of the TaskInput, TaskOutput and Tasklet interfaces, and the Job class. LiveCluster is typically used to run computations on different inputs in parallel. The computation to be run is implemented in a Tasklet. A Tasklet takes a TaskInput, operates on it, and produces a TaskOutput. Using a Job object, one's program submits TaskInputs, executes the job, and processes the TaskOutputs as they arrive. The Job collaborates with the Server to distribute the Tasklet and the various TaskInputs to Engines.
  • FIG. 1 illustrates the relationships among the basic API elements. Although it is helpful to think of a task as a combination of a Tasklet and one TaskInput, there is no Task class in the API. To understand the basic API better, we will write a simple LiveCluster job. The job generates a unique number for each task, which is given to the tasklet as its TaskInput. The tasklet uses the number to return a TaskOutput consisting of a string. The job prints these strings as it receives them. This is the LiveCluster equivalent of a “Hello, World” program. This program will consist of five classes: one each for the TaskInput, TaskOutput, Tasklet and Job, and one named Test that contains the main method for the program.
  • TaskInput and TaskOutput.
  • Consider first the TaskInput class: The basic API is found in the com.livecluster.tasklet package, so one should import that package (see FIG. 3). The TaskInput interface contains no methods, so one need not implement any. Its only purpose is to mark one's class as a valid TaskInput. The TaskInput interface also extends the Serializable interface of the java.io package, which means that all of the class's instance variables must be serializable (or transient). Serialization is used to send the TaskInput object from the Driver to an Engine over the network. As its name suggests, the SimpleTaskInput class is quite simple: it holds a single int representing the unique identifier for a task. For convenience, one need not make the instance variable private. TaskOutput, like TaskInput, is an empty interface that extends Serializable, so the output class should not be surprising (see FIG. 4).
  • Writing a Tasklet. Now we turn to the Tasklet interface, which defines a single method:
      • public TaskOutput service(TaskInput);
  • The service method performs the computation to be parallelized. For our Hello program, this involves taking the task identifier out of the TaskInput and returning it as part of the TaskOutput string (see FIG. 5). The service method begins by extracting its task ID from the TaskInput. It then creates a SimpleTaskOutput, sets its instance variable, and returns it. One aspect of the Tasklet interface not seen here is that it, too, extends Serializable. Thus any instance variables of the tasklet must be serializable or transient.
  • With the help of a simple main method (see FIG. 6), one can run this code. This program creates a Tasklet, and then repeatedly creates a TaskInput and calls the Tasklet's service method on it, displaying the results. Although not something one would want to do in practice, this code does illustrate the essential functionality of LiveCluster. In essence, LiveCluster provides a high-performance, fault-tolerant, highly parallel way to repeatedly execute the line:
      • TaskOutput output=tasklet.service(input);
  • The Job Class.
  • To run this code within LiveCluster, one needs a class that extends Job. Recall that a Job is associated with a single tasklet. The needed Job class creates several TaskInputs, starts the job running, and collects the TaskOutputs that result. To write a Job class, one generally writes the following methods:
      • (likely) A constructor to accept parameters for the job. It is recommended that the constructor call the setTasklet method to set the job's tasklet.
      • (optionally) A createTaskInputs method to create all of the TaskInput objects. Call the addTaskInput method on each TaskInput one creates to add it to the job. Each TaskInput one adds results in one task.
      • (required) A processTaskOutput method. It will be called for each TaskOutput that is produced.
  • The HelloJob class is displayed in FIG. 7. The constructor creates a single HelloTasklet and installs it into the job with the setTasklet method. The createTaskInputs method creates ten instances of SimpleTaskInput, sets their taskIds to unique values, and adds each one to the job with the addTaskInput method. The processTaskOutput method displays the string that is inside its argument.
  • Putting It All Together.
  • The Test class (see FIG. 8) consists of a main method that runs the job. The first line creates the job. The second line has to do with distributing the necessary class files to the Engines. The third line executes the job by submitting it to the LiveCluster Server, then waits until the job is finished. (The related execute InThread method runs the job in a separate thread, returning immediately.) The second line of main deserves more comment. First, the getOptions method returns a JobOptions object. The JobOptions class allows one to configure many features of the job. For instance, one can use it to set a name for the job (useful when looking for a job in the Job List of the LiveCluster Administration tool), and to set the job's priority.
  • Here we use the JobOptions method setJarFile, which takes the name of a jar file. This jar file should contain all of the files that an Engine needs to run the tasklet. In this case, those are the class files for SimpleTaskInput, SimpleTaskOutput, and HelloTasklet. By calling the setJarFile method, one tells LiveCluster to distribute the jar file to all Engines that will work on this job. Although suitable for development, this approach sends the jar file to the Engines each time the job is run, and so should not be used for production. Instead, one should use the file replication service or a shared network file system when in production.
  • Running the Example.
  • Running the above-discussed code will create the following output:
    • Hello from #0
    • Hello from #5
    • Hello from #2
    • Hello from #4
    • Hello from #9
    • Hello from #1
    • Hello from #6
    • Hello from #7
    • Hello from #8
    • Hello from #3
    • DONE
  • Summary.
  • The basic API consists of the TaskInput, TaskOutput and Tasklet interfaces and the Job class. Typically, one will write one class that implements TaskInput, one that implements TaskOutput, one that implements Tasklet, and one that extends Job.
  • A Tasklet's service method implements the computation that is to be performed in parallel. The service method takes a TaskInput as argument and returns a TaskOutput.
  • A Job object manages a single Tasklet and a set of TaskInputs. It is responsible for providing the TaskInputs, starting the job and processing the TaskOutputs as they arrive.
  • Some additional code is necessary to create ajob, arrange to distribute ajar file of classes, and execute the job.
  • Data Parallelism.
  • In this section, we will look at a typical financial application: portfolio valuation. Given a portfolio of deals, our program will compute the value of each one. For those unfamiliar with the concepts, a deal here represents any financial instrument, security or contract, such as a stock, bond, option, and so on. The procedure used to calculate the value, or theoretical price, of a deal depends on the type of deal, but typically involves reference to market information like interest rates. Because each deal can be valued independently of the others, there is a natural way to parallelize this problem: compute the value of each deal concurrently. Since the activity is the same for all tasks (pricing a deal) and only the deal changes, we have an example of data parallelism. Data-parallel computations are a perfect fit for LiveCluster. A tasklet embodies the common activity, and each TaskInput contains a portion of the data.
  • The Domain Classes.
  • Before looking at the LiveCluster classes, we will first discuss the classes related to the application domain. There are six of these: Deal, ZeroCouponBond, Valuation, DealProvider, PricingEnvironment and DateUtil.
  • Each deal is represented by a unique integer identifier. Deals are retrieved from a database or other data source via the DealProvider. Deal's value method takes a PricingEnvironment as an argument, computes the deal's value, and returns a Valuation object, which contains the value and the deal ID. ZeroCouponBond represents a type of deal that offers a single, fixed payment at a future time. DateUtil contains a utility function for computing the time between two dates.
  • The Deal class is abstract, as is its value method (see FIG. 9). The value method's argument is a PricingEnvironment, which has methods for retrieving the interest rates and the valuation date, the reference date from which the valuation is taking place. The value method returns a Valuation, which is simply a pair of deal ID and value. Both Valuation and PricingEnvironment are serializable so they can be transmitted over the network between the Driver and Engines.
  • ZeroCouponBond is a subclass of Deal that computes the value of a bond with no interest, only a principal payment made at a maturity date (see FIG. 10). The value method uses information from the PricingEnvironment to compute the present value of the bond's payment by discounting it by the appropriate interest rate.
  • The DealProvider class simulates retrieving deals from persistent storage. The getDeal method accepts a deal ID and returns a Deal object. Our version (see FIG. 11) caches deals in a map. If the deal ID is not in the map, a new ZeroCouponBond is created.
  • With the classes discussed so far, one can write a simple stand-alone application to value some deals (see FIG. 12). This program loads and values 10 deals using a single pricing environment. This LiveCluster application will also take this approach, using the same pricing environment for all deals. The output of this program looks something like:
      • deal ID=0, value=3253.5620409955113
      • deal ID=1, value=750.9387692727968
      • deal ID=2, value=8525.835888008573
      • deal ID=3, value=5445.987705373893
      • deal ID=4, value=3615.2722123351246
      • deal ID=5, value=1427.1584028651682
      • deal ID=6, value=5824.137556101124
      • deal ID=7, value=2171.6068493160974
      • deal ID=8, value=5099.034037828654
      • deal ID=9, value=3652.567194863038
  • With the domain classes finished, we proceed to the LiveCluster application. The basic structure is clear enough: we will have a ValuationTasklet class to value deals and return Valuations, which will be gathered by a ValuationJob class. But there are three important questions we must answer before writing the code:
  • 1. How are Deal objects provided to the tasklet?
  • 2. How is the PricingEnvironment object provided to the tasklet?
  • 3. How many deals should a tasklet value at once?
  • We address the first two of these questions in the next section, “Understanding Data Movement,” and the third in the section following, “Understanding Granularity.”
  • Understanding Data Movement.
  • The first question is how to provide deals to the tasklet. One choice is to load the deal on the Driver and send the Deal object in the TaskInput; the other is to send just the deal ID, and let the tasklet load the deal itself. The second way is likely to be much faster, for two reasons: reduced data movement and increased parallelism.
  • To understand the first reason, consider FIG. 13, the left portion of which illustrates the connections among the Driver, the Engines, and your data server, on which the deal data resides. The left-hand diagram illustrates the data flow that occurs when the Driver loads deals and transmits them to the Engines. The deal data travels across the network twice: once from the data server to the Driver, and again from the Driver to the Engine. The right-hand diagram shows what happens when only the deal IDs are sent to the Engines. The data travels over the network only once, from the data server to the Engine.
  • The second reason why sending only deal IDs will be faster is that tasklets will try to load deals in parallel. Provided one's data server can keep up with the demand, this can increase the overall throughput of the application.
  • These arguments for sending deal IDs instead of deals themselves makes sense for the kind of architecture sketched in FIG. 13, but not for other, less typical configurations. For example, if the Driver and the data server are running on the same machine, then it may make sense, at least from a data movement standpoint, to load the deals in the Driver.
  • Let us now turn to the question of how to provide each tasklet with the PricingEnvironment. Recall that in this application, every deal will be valued with the same PricingEnvironment, so only a single object needs to be distributed across the LiveCluster. Although the obvious choice is to place the PricingEnvironment in each TaskInput, there is a better way: place the PricingEnvironment within the tasklet itself. The first time that an Engine is given a task from a particular job, it downloads the tasklet object from the Driver, as well as the Taskinput. When given subsequent tasks from the same job, it downloads only the TaskInput, reusing the cached tasklet. So placing an object in the tasklet will never be slower than putting it in a TaskInput, and will be faster if Engines get more than one task from the same job.
  • One can summarize this section by providing two rules of thumb:
  • Let each tasklet load its own data.
  • If an object does not vary across tasks, place it within the tasklet.
  • Understanding Granularity.
  • The third design decision for our illustrative LiveCluster portfolio valuation application concerns how many deals to include in each task. Placing a single deal in each task yields maximum parallelism, but it is unlikely to yield maximum performance. The reason is that there is some communication overhead for each task.
  • For example, say that one has 100 processors in a LiveCluster, and 1000 deals to price. Assume that it takes 100 ms to compute the value of one deal, and that the total communication overhead of sending a TaskInput to an Engine and receiving its TaskOutput is 500 ms. Since there are 10 times more deals than processors, each processor will receive 10 TaskInputs and produce 10 TaskOutputs during the life of the computation. So the total time for a program that allocates one deal to each TaskInput is roughly (0.1 s compute time per task+0.5 s overhead).times. 10=6 seconds. Compare that with a program that places 10 deals in each TaskInput, which requires only a single round-trip communication to each processor: (0.1 s.times. 10) compute time per task+0.5 s overhead=1.5 seconds. The second program is much faster because the communication overhead is a smaller fraction of the total computation time. The following table summarizes these calculations, and adds another data point for comparison:
    Deals per
    TaskInput Elapsed Time
    1 6
    10 1.5
    100 10.5
  • In general, the granularity—amount of work—of a task should be large compared to the communication overhead. If it is too large, however, then two other factors come into play. First and most obviously, if one has too few tasks, one will not have much parallelism. The third row of the table illustrates this case. By placing 100 deals in each TaskInput, only ten of the 100 available Engines will be working. Second, a task may fail for a variety of reasons-the Engine may encounter hardware, software or network problems, or someone may begin using the machine on which the Engine is running, causing the Engine to stop immediately. When a task fails, it must be rescheduled, and will start from the beginning. Failed tasks waste time, and the longer the task, the more time is wasted. For these reasons, the granularity of a task should not be too large.
  • Task granularity is an important parameter to keep in mind when tuning an application's performance. We recommend that a task take between one and five minutes. To facilitate tuning, it is wise to make the task granularity a parameter of one's Job class. The LiveCluster Classes We are at last ready to write the LiveCluster code for our portfolio valuation application. We will need classes for TaskInput, TaskOutput, Tasklet and Job.
  • The TaskInput will be a list of deal IDs, and the TaskOutput a list of corresponding Valuations. Since both are lists of objects, we can get away with a single class for both TaskInput and TaskOutput. This general-purpose ArrayListTaskIO class contains a single ArrayList (see FIG. 14).
  • FIG. 15 shows the entire tasklet class. The constructor accepts a PricingEnvironment, which is stored in an instance variable for use by the service method. As discussed above, this is an optimization that can reduce data movement because tasklets are cached on participating Engines.
  • The service method expects an ArrayListTaskIO containing a list of deal IDs. It loops over the deal IDs, loading and valuing each deal, just as in our stand-alone application. The resulting Valuations are placed in another ArrayListTaskIO, which is returned as the tasklet's TaskOutput.
  • ValuationJob is the largest of the three LiveCluster classes. Its constructor takes the total number of deals as well as the number of deals to allocate to each task. In a real application, the first parameter would be replaced by a list of deal IDs, but the second would remain to allow for tuning of task granularity.
  • The createTaskInputs method (see FIG. 16) uses the total number of deals and number of deals per task to divide the deals among several TaskInputs. The code is subtle and is worth a careful look. In the event that the number of deals per task does not evenly divide the total number of deals, the last TaskInput will contain all the remaining deals.
  • The processTaskOutput method (see FIG. 17) simply adds the TaskOutput's ArrayList of Valuations to a master ArrayList. Thanks to the deal IDs stored within each Valuation, there is no risk of confusion due to TaskOutputs arriving out of order.
  • The Test class has a main method that will run the application (see FIG. 18). The initial lines of main load the properties file for the valuation application and obtain the values for totalDeals and dealsPerTask.
  • In Summary:
  • LiveCluster is ideal for data-parallel applications, such as portfolio valuation. In typical configurations where the data server and the Driver are on different machines, let each tasklet load its own data from the data server, rather than loading the data into the Driver and distributing it in the TaskInputs. Since the Tasklet object is serialized and sent to each Engine, it can and should contain data that does not vary from task to task within a job.
  • Task granularity-the amount of work that each task performs-is a crucial performance parameter for LiveCluster. The right granularity will amortize communication overhead while preventing the loss of too much time due to tasklet failure or interruption. Aim for tasks that run in a few minutes.
  • Engine Properties.
  • In this brief section, we take a look at Engine properties in preparation for the next section, on Engine discrimination. Each Engine has its own set of properties. Some properties are set automatically by LiveCluster, such as the operating system that the Engine is running on and the estimated speed of the Engine's processor. Users can also create custom properties for engines by choosing Engine Properties under the Configure section of the LiveCluster Administration Tool.
  • This section also introduces a simple but effective way of debugging tasklets by placing print statements within the service method. This output can be viewed from the Administration Tool or written to a log file.
  • Application Classes.
  • Our exemplary LiveCluster application (see FIG. 19) will simply print out all Engine properties. Since we will not be using TaskInputs or generating TaskOutputs, we will only need to write classes for the tasklet, job and main method.
  • The EnginePropertiesTasklet class uses LiveCluster's EngineSession class to obtain the Engine's properties. It then prints them to the standard output. The method begins by calling EngineSession's getProperties method to obtain a Properties object containing the Engine's properties. Note that EngineSession resides in the com.livecluster.tasklet.util package. The tasklet then prints out the list of engine properties to System.out, using the convenient list method of the Properties class.
  • Where does the output of the service method go? Since Engines are designed to run in the background, the output does not go to the screen of the Engine's machine. Instead, it is transmitted to the LiveCluster Server and, optionally, saved to a log file on the Engine's machine. We will see how to view the output in “Running the Program,” below.
  • The try . . . catch is necessary in this method, because EngineSession.getProperties may throw an exception and the service method cannot propagate a checked exception.
  • The EngineSession class has two other methods, setProperty and removeProperty, with the obvious meanings. Changes made to the Engine's properties using these methods will last for the Engine's session. A session begins when an Engine first becomes available and logs on to the Server, and typically ends when the Engine's JVM terminates. (Thus, properties set by a tasklet are likely to remain even after the tasklet's job finishes.) Note that calling the set Properties method of the Properties object returned from EngineSession.getProperties will not change the Engine's properties.
  • To set an Engine's properties permanently, one should use the Engine Properties tool in the Configure section of the Administration Tool. Click on an Engine in the left column. Then enter property names and values on the resulting page.
  • The EnginePropertiesJob class (see FIG. 20) simply adds a few TaskInputs in order to generate tasks. TaskInputs cannot be null, so empty TaskInput object is provided as a placeholder.
  • The Test class is similar to the previously-described Test classes.
  • Running the Program.
  • To see what is written to an Engine's System.out (or System.err) stream, one must open a Remote Engine Log window in the LiveCluster Administration Tool, as follows:
  • 1. From the Manage section of the navigation bar, choose Engine Administration.
  • 2. One should now see a list of Engines that are logged in to one's Server. Click an Engine name in the leftmost column.
  • 3. One should now see an empty window titled Remote Engine Log. It is important to do these steps before one runs the application. By default, Engine output is not saved to a file, so the data sent to this window is transient and cannot be retrieved once the application has completed.
  • The output from each Engine should be similar to that shown in FIG. 21. The meaning of some of these properties is obvious, but others deserve comment. The cpuNo property is the number of CPUs in the Engine's computer. The id property is unique for each Engine's computer, while multiple Engines running on the same machine are assigned different instance properties starting from 0.
  • It is possible to configure an Engine to save its output to a log file as well as sending it to the Remote Engine Log window. One can do this as follows:
  • 1. Visit Engine Configuration in the Configure section of the Administration tool.
  • 2. Choose the configuration one wishes to change from the File list at the top.
  • 3. Find the DSLog argument in the list of properties and set it to true.
  • 4. Click Submit.
  • 5. When the page reloads, click Save.
  • The log files will be placed on the Engine's machine under the directory where the Engine was installed. On Windows machines, this is c:\Program\Files\DataSynapse\Engine by default. In LiveCluster, the log file is stored under ./work/[name]-[instance]/log.
  • Summary.
  • Engine properties describe particular features of each Engine in the LiveCluster. Some Engine properties are set automatically; but one can create and set one's own properties in the Engine Properties page of the Administration Tool.
  • The EngineSession class provides access to Engine properties from within a tasklet. Writing to System.out is a simple but effective technique for debugging tasklets.
  • The output goes to the Remote Engine Log window, which can be brought up from Engine Administration in the Administration Tool. One can also configure Engines to save the output to a log file.
  • Discrimination.
  • Discrimination is a powerful feature of LiveCluster that allows one to exert dynamic control over the relationships among Drivers, Brokers and Engines. LiveCluster supports two kinds of discrimination:
      • Broker Discrimination: One can specify which Engines and Drivers can log in to a particular Broker. Access this feature by choosing Broker Discrimination in the Configure section of the LiveCluster Administration Tool.
      • Engine Discrimination: One can specify which Engines can accept a task. This is done in one's code, or in an XML file used to submit the job.
  • Both kinds of discrimination work by specifying which properties an Engine or Driver must possess in order to be acceptable.
  • This section discusses only Engine Discrimination, which selects Engines for particular jobs or tasks. Engine Discrimination has many uses. The possibilities include:
      • limiting a job to run on Engines whose usemames come from a specified set, to confine the job to machines under one's jurisdiction;
      • limiting a resource-intensive task to run only on Engines whose processors are faster than a certain threshold, or that have more than a specified amount of memory or disk space;
      • directing a task that requires operating-system-specific resources to Engines that run under that operating system;
      • inventing one's own properties for Engines and discriminating based on them to achieve any match of Engines to tasks that one desires.
  • In this section, we will pursue the third of these ideas. We will elaborate our valuation example to include two different types of deals. We will assume that the analytics for one kind of deal have been compiled to a Windows DLL file, and thus can be executed only on Windows computers. The other kind of deal is written in pure Java and therefore can run on any machine. We will segregate tasks by deal type, and use a discriminator to ensure that tasks with Windows-specific deals will be sent only to Engines on Windows machines.
  • Using Discrimination.
  • This discussion will focus on the class PropertyDiscriminator. This class uses a Java Properties object to determine how to perform the discrimination. The Properties object can be created directly in one's code, as we will exemplify below, or can be read from a properties file.
  • When using PropertyDiscriminator, one encodes the conditions under which an Engine can take a task by writing properties with a particular syntax. For example, setting the property cpuMFlops.gt to the value 80 specifies that the CPU speed of the candidate Engine, in megaflops, must be greater than 80 for the Engine to be eligible.
  • In general, the discriminator property is of the form engine_property.operator. There are operators for string and numerical equality, numerical comparison, and set membership. They are documented in the Java API documentation for PropertyDiscriminator.
  • Since a single Properties object can contain any number of properties, a PropertyDiscriminator can specify any number of conditions. All must be true for the Engine to be eligible to accept the task.
  • In our example, we want to ensure that tasks that contain OptionDeals are given only to Engines that run under the Windows operating system. The Engine property denoting the operating system is os and its value for Windows is win32. So, to construct the right discriminator, one would add the line:
      • props.setProperty(“os.equals”, “win32”); to our code.
  • The Application.
  • Most of the earlier-described classes require no change, including Deal, ZeroCouponDeal, ArrayListTaskIO, Valuation, PricingEnvironment and ValuationTasklet. We will add another subclass of Deal, called OptionDeal, whose value method calls the method nativeValue to do the work (see FIG. 22).
  • We assume that the nativeValue method is a native method invoking a Windows DLL. Recall that the DealProvider class is responsible for fetching a Deal given its integer identifier. Its getDeal method returns either an OptionDeal object or ZeroCouponBond object, depending on the deal ID it is given. For this example, we decree that deal IDs less than a certain number indicate OptionDeals, and all others are ZeroCouponBonds.
  • The ValuationTasklet class is unchanged, but it is important to note that Deal's value method is now polymorphic:
      • output.add(deal.value(_pricingEnvironment));
  • In this line, the heart of ValuationTasklet, the call to value will cause a Windows DLL to run if deal is an OptionDeal.
  • The ValuationJob class has changed significantly, because it must set up the discriminator and divide the TaskInputs into those with OptionDeals and those without (see FIG. 23). The first three lines set up a PropertyDiscriminator to identify Engines that run under Windows, as described above. The last two lines call the helper method createDealInputs, which aggregates deal IDs into TaskInputs, attaching a discriminator. The second argument is the starting deal ID; since deal IDs below DealProvider.MIN_OPTION_ID are OptionDeals, the above two calls result in the first group of TaskInputs consisting solely of OptionDeals and the second consisting solely of ZeroCouponBonds.
  • FIG. 24 shows the code for createDealInputs. This method takes the number of deals for which to create inputs, the deal identifier of the first deal, and a discriminator. (IDiscriminator is the interface that all discriminators must implement.) It uses the same algorithm previously discussed to place Deals into TaskInputs. Then calls the two-argument version of addTaskInput, passing in the discriminator along with the TaskInput.
  • When createDealInputs is invoked to create OptionDeals, the PropertyDiscriminator we created is passed in. For ZeroCouponBonds, the discriminator is null, indicating no discrimination is to be done—any Engine can accept the task. Using null is the same as calling the one-argument version of addTaskInput.
  • Further Discriminator Examples.
  • The following examples illustrate the use of Discriminators to solve common scheduling problems that have typically been addressed with complex deterministic scheduling algorithms, while retaining the benefits of adaptive dynamic scheduling.
  • EXAMPLE 1
  • Discriminators may be attached to Tasks or Jobs to ensure that they are assigned to Engines that are equipped with specific resources. Common examples include: Tasks that must run under a particular operating system or subset of operating systems; Tasks that must have at least a specified minimum of memory or disk space to run; Tasks that must run on a specific subset of Engines because of administrative or security restrictions, possibly including database or file system access restrictions; etc. Discriminators may also be used to impose analogous restrictions in order to optimize performance. For example, they may restrict very long-running Tasks to run only on processors meeting minimum performance requirements or on dedicated (as opposed to interruptible) Engines.
  • EXAMPLE 2
  • Scoring Discriminators may be used in connection with distributed caching to maximize reuse of distributed resources, such as objects or data. In this case, the Engines maintain a local cache, and update their associated property list whenever entries are added or removed from the cache. The Scoring Discriminator associated with each Task returns a score for each Engine based on the overlap between the resources that are available in the Engine's local cache and the resources specifically required by the Task.
  • The simplest examples of this kind are those in which each Task requires a single object, for example, each Task within a portfolio pricing application might look for a single deal or subportfolio. In this case, the Scoring Discriminator might return 1 in case the relevant deal or subportfolio is present in the cache, and 0 otherwise. A slightly more complex example would be one in which the Scoring Discriminator examines the Engine property list for multiple keys, corresponding to relevant deals or subportfolios, and returns the total number found. A further elaboration on this example would be to apply non-uniform weights to the keys, depending on the relevance and/or computational burden of reconstructing the associated resource. Also, since the Engine may associate a value with each key, this value may also be used in computing the score, for example, to indicate the number of deals within a subportfolio or to provide an indication of the cost associated with reconstructing the associated resource.
  • EXAMPLE 3
  • Engine Discriminators may be used to dedicate some number, N, of Engines to a specific Job. This is accomplished by having the first N Tasks within the Job install an Engine Discriminator that imposes two requirements: (1) The Job Id must match the Job Id for the given Task, and (2) the Task Id must be greater than N.
  • EXAMPLE 4
  • Engine Discriminators may be used to dedicate Engines as distributed resource providers. In this case, the Task that constructs the resource on the Engine also installs an Engine Discriminator that imposes the requirement that subsequent Tasks that run on the Engine define an associated property to indicate that they require the corresponding resource.
  • This technique may be combined with that of the preceding example to dedicate multiple Engines as resource providers.
  • This technique is particularly useful for applications in which the distributed resources have large memory footprints and are expensive to construct. Typical examples include term-structure models, cashflow projections (e.g., for Collateralized Mortgage Obligations or other Asset Backed Securities), or more generally, any model specification to support multiple simulations with varying parameters.
  • EXAMPLE 5
  • Engine Discriminators may be used to dedicate some number, N, of Engines for “gang scheduling,” that is, to reserve N engines for the exclusive use of particular Tasks during the extent of a session that may span multiple Jobs. This is accomplished by a slight variation of the procedure described above for dedicating N engines to a Job. In particular, the first Job in the session establishes a unique Session Id and runs N Tasks, each of which installs an Engine Discriminator that accepts only Tasks that have an associated Session Id property with the given value. (By arranging that the N initial Tasks do not have the property, this procedure reserves precisely N distinct Engines.)
  • A particularly important application of this technique is to accommodate multi-node computations that make use of message-passing protocols (e.g., PVM or MPI) within an adaptive scheduling framework. In this case, Tasks within the gang scheduling session may also be provided with routing information for the N participating Engines (e.g., IP addresses, host names, or other network identification) so that they may establish connections among themselves (e.g., within a PVM or MPI session).
  • Summary.
  • Discriminators allow one to control which Engines run which tasks. A discriminator compares the properties of an Engine against one or more conditions to determine if the engine is eligible to accept a particular task.
  • The PropertyDiscriminator class is the easiest way to set up a discriminator. It uses a Properties object or file to specify the conditions.
  • Discriminators can segregate tasks among Engines based on operating system, CPU speed, memory, or any other property.
  • Streaming Data.
  • The service method of a standard LiveCluster tasklet uses Java objects for both input and output. These TaskInput and TaskOutput objects are serialized and transmitted over the network from the Driver to the Engines.
  • For some applications, it may be more efficient to use streams instead of objects for input and output. For example, applications involving large amounts of data that can process the data stream as it is being read may benefit from using streams instead of objects. Streams increase concurrency by allowing the receiving machine to process data while the sending machine is still transmitting. They also avoid the memory overhead of deserializing a large object.
  • The StreamTasklet and StreamJob classes enable applications to use streams instead of objects for data transmission.
  • Application Classes.
  • Our exemplary application will search a large text file for lines containing a particular string. It will be a parallel version of the Unix grep command, but for fixed strings only. Each task is given the string to search for, which we will call the target, as well as a portion of the file to search, and outputs all lines that contain the target.
  • We will look at the tasklet first. Our SearchTasklet class extends the StreamTasklet class (see FIG. 25). The service method for StreamTasklet takes two parameters: an InputStream from which it reads data, and an OutputStream to which it writes its results (see FIG. 26). The method begins by wrapping those streams in a BufferedReader and a PrintWriter, for performing line-oriented I/O.
  • It then reads its input line by line. If it finds the target string in a line of input, it copies that line to its output. The constructor is given the target, which it stores in an instance variable. Since all tasks will be searching for the same target, the target should be placed in the tasklet. The service method is careful to close both its input and output streams when it is finished.
  • Users of StreamTasklet and StreamJob are responsible for closing all streams they are given. Writing a StreamJob is similar to writing an ordinary Job. One difference is in the creation of task inputs: instead of creating an object and adding it to the job, it obtains a stream, writes to it, and then closes it. The SearchJob class's createTaskInputs method illustrates this (see FIG. 27; _linesPerTask and _file are instance variables set in the constructor). The method begins by opening the file to be searched. It writes each group of lines to an OutputStream obtained with the createTaskInput method. (To generate the input for a task, one calls the createTaskInput method, write to the stream it returns, then close that stream.)
  • The loop within createTaskInputs is careful to allocate all of the file's lines to tasks while making sure that no task is given more than the number of lines specified in the constructor.
  • Like an ordinary Job, a StreamJob has a processTaskOutput method (see FIG. 28) that is called with the output of each task. In StreamJob, the method's parameter is an InputStream instead of a TaskOutput object. In this case, the InputStream contains lines that match the target. We print them to the standard output. Once again, it is our responsibility to close the stream we are given.
  • The Test class for this example is similar to previous ones.
  • Improvements.
  • There are number of ways this basic application can be improved. Let's first consider the final output from the job, the list of matching lines. Because tasks may complete in any order, these lines may not be in their original order within the file. If this is a concern, then line number information can be sent to and returned from the tasklet, and used to sort the matching lines.
  • If many lines match the target string, then there will be a lot of traffic from the Engines back to the Driver. This traffic can be reduced by returning line numbers, instead of whole lines, from the tasklet. The line numbers can be sorted at the end, and a final pass made over the file to output the corresponding lines. As a further improvement, byte offsets instead of line numbers can be transmitted, enabling the use of random access file I/O to obtain the matching lines from the file. Whether these techniques will in fact result in increased performance will depend on a number of factors, including line length, number of matches, and so on. Experimentation will probably be necessary to find the best design.
  • Another source of improvement may come from multithreading. LiveCluster ensures that calls to processTaskOutput are synchronized, so that only one call is active at a time. Thus a naive processTaskOutput implementation like the one above will read an entire InputStream to completion—a process which may involve considerable network I/O—before moving on to the next. One may achieve better use of the Driver's processor by starting a thread to read the results on each call to processTaskOutput.
  • Summary.
  • Use StreamTasklet and StreamJob when the amount of input or output data is large, and a tasklet can process the data stream as it arrives. The service method of StreamTasklet reads its input from an InputStream and writes its results to an OutputStream.
  • When writing a StreamJob class, create an input for a task by calling the createTaskInput method to obtain an OutputStream, then writing to and closing that stream.
  • The processTaskOutput method of StreamJob is given an InputStream to read a task's results. It is the taskset's responsibility to close all streams.
  • Data Sets.
  • Although the parallel string search program of the previous section will speed up searching for large files, it misses an opportunity in the case where the same file is searched, over time, for many different targets. As an example of such a situation, consider a web search company that keeps a list of all the questions all users have ever asked so that it can display related questions when a user asks a new one. Although the previous search program will work correctly, it will redistribute the list of previously asked questions to Engines each time a search is done.
  • A more efficient solution would cache portions of the file to be searched on Engines to avoid repeatedly transmitting it. This is just what LiveCluster's data set feature does. A data set is a persistent collection of task inputs (either Taskinput objects or streams) that can be used across jobs. The first time it is used, the data set distributes its inputs to Engines in the usual way. But when the data set is used subsequently, it attempts to give a task to an Engine that already has the input for that task stored locally. If all such Engines are unavailable, the task is given to some other available Engine, and the input is retransmitted. Data sets thus provide an important data movement optimization without interfering with LiveCluster's ability to work with dynamically changing resources.
  • In this section, we will adapt the program of the previous section to use a data set. We will need to use the two classes: DataSetJob and TaskDataSet. There is no new type of tasklet that we need to consider-as data sets work with existing tasklets.
  • Using a TaskDataSet.
  • Since a TaskDataSet is a persistent object, it must have a name for future reference. One can choose any name:
      • TaskDataSet dataSet=new TaskDataSet(“search”); or can call the no-argument constructor, which will assign a name that one can access with the getName method.
  • One can now use the methods addTaskInput (for TaskInput objects) or createTaskInput (for streams) to add inputs to the data set. When finished, call the doneSubmitting method:
      • dataSet.addTaskInput(t1);
      • dataSet.addTaskInput(t2);
      • dataSet.addTaskInput(t3);
      • dataSet.doneSubmitting( );
  • The data set and its inputs are now stored on the Server and can be used to provide inputs to a DataSetJob, as will be illustrated in the next section.
  • The data set outlives the program that created it. A data set can be retrieved in later runs by using the static getDataSet method:
      • TaskDataSet dataSet=TaskDataSet.getDataSet(“search”);
  • It can be removed with the destroy method:
      • dataSet.destroy( );
  • The Application.
  • To convert the string search application to use a data set, one must provide a Job class that extends DataSetJob. To do this, one uses a DataSetJob much like an ordinary Job, except that instead of providing a createTaskInputs method, one provides a data set via the setTaskDataSet method (see FIG. 29). The constructor accepts a TaskDataSet and sets it into the Job. The processTaskOutput method of this class is the same as that previously discussed. The SearchTasklet class is also the same.
  • The main method (see FIG. 30) of the Test program creates a TaskDataSet and uses it to run several jobs. The method begins by reading a properties file that contains a comma-separated list of target strings, as well as the data file name and number of lines per task It then creates a data set via the helper method createDataSetFromFile. Lastly, it runs several jobs using the data set.
  • createDataSetFromFile (see FIG. 31) places the inputs into a TaskDataSet.
  • Let's review the data movement that occurs when this program is run. When the first job is executed, Engines will pull both the tasklet and a task input stream from the Driver machine. Each engine will cache its stream data on its local disk. When the second and subsequent jobs are executed, the Server will attempt to assign an Engine the same task input that it used for the first job. Then the Engine will only need to download the tasklet, since the Engine has a local copy of the task input.
  • Earlier, we suggested that if an object does not vary across tasks (but does vary from job to job), it should be placed within the tasklet, rather than inside a task input. Here, we see that idea's biggest payoff. By keeping the task inputs constant, we can amortize their network transmission time over many jobs. Only the relatively small amount of data that varies from job to job—the target string, or in the earlier case, the pricing environment—needs to be transmitted for each new job.
  • The TaskDataSet concept proves useful in a number of applications:
      • Distributed Table Scans: In this application, the TaskDataSet corresponds to a very large database table, and each TaskInput within the set corresponds to a segment within the table. Each Job within the Tasking Session corresponds to a query or update on the table. Note that Tasks within each Job may execute in parallel, and Jobs within the session execute sequentially. Therefore, TaskDataSet supports applications in which the construction of each database operation may reflect the results of previous operations. “Data mining” and “machine learning” applications provide particularly important examples, in which an intelligent discovery process generates a sequence of queries, each of which builds on the information obtained in previous stages.
  • Portfolio Risk and Pricing: In this application, the TaskDataSet corresponds to a portfolio of financial instruments, and each TaskInput within the set corresponds to an instrument or subportfolio within the larger portfolio. Successive Jobs within the session perform a sequence of computations referencing the same portfolio. For example, the first Job might perform a simple profit and loss computation, the second Job might compute first-order sensitivities (“deltas”), the third might compute second-order sensitivities (“gammas”), etc.
  • In this example, the most important benefit is typically reuse of intermediate results and accumulated data-specific local state on the distributed processors. For example, instantiation of pricing engines corresponding to specific instruments is often very compute-intensive and may require large data objects, such as trees. These computations and the associated data objects are typically instrument-specific, but may be reused across multiple computations for the same instrument.
      • Interactive Modeling and Data Visualization: In this case, the data set corresponds to a multi-dimensional array of model coefficients, partitioned geometrically into sub-regions. During the course of an interactive session, the user may submit multiple requests to vary the initial conditions or visualize the data along different projections. In many instances, the one-time initialization cost on each node substantially exceeds that of updating the computation for successive requests, so that preserving state throughout the session can improve performance dramatically.
      • Propagator: The Propagator API is preferably implemented using TaskDataSet. In such case, each Propagator corresponds to a Tasking Session, and each Propagator node corresponds to a TaskInput within the set.
  • Summary.
  • Data sets can improve the performance of applications that reuse the same task inputs for many jobs, by reducing the amount of data transmitted over the network.
  • A data set is a distributed cache: each Engine has a local copy of a task input. The Server attempts to re-assign a task input to an Engine that had it previously.
  • The TaskDataSet class allows the programmer to create, retrieve and destroy data sets.
  • The DataSetJob class extends Job to use a TaskDataSet. Data that varies from job to job should be placed in the tasklet.
  • LiveCluster Administration Tools.
  • The LiveCluster Server provides the LiveCluster Administration Tool, a set of web-based tools that allow the administrator to monitor and manage the Server, its cluster of Engines, and the associated job space. The LiveCluster Administration Tool is accessed from a web-based interface, usable by authorized users from any compatible browser, anywhere on the network. Administrative user accounts provide password-protected, role-based authorization.
  • With the screens in the Administration Tool, one can:
      • View and modify Server and Engine configuration;
      • Create administrative user accounts and edit user profiles;
      • Subscribe to get e-mail notification of events;
      • Monitor Engine activity and kill Engines;
      • Monitor Job and Task execution and cancel Jobs;
      • Install Engines;
      • Edit Engine Tracking properties and change values;
      • Configure Broker discrimination;
      • View the LiveCluster API, release notes, and other developer documents;
      • Download the files necessary to integrate application code and run Drivers;
      • View and extract log information;
      • View diagnostic reports; and,
      • Run test Jobs.
  • User Accounts and Administrative Access.
  • All of the administrative screens are password-protected. There is a single “super-user” account, the site administrator, whose hard-coded user name is admin. The site administrator creates new user accounts from the New User screen. Access control is organized according to the five functional areas that appear in the navigation bar. The site administrator is the only user with access to the configuration screens (under Configure), except that each user has access to a single Edit Profile screen to edit his or her own pro-file.
  • For every other user, the site administrator grants or denies access separately to each of the four remaining areas (Manage, View, Install, and Develop) from the View Users screen. The Server installation script creates a single user account for the site administrator, with both user name and password admin. The site administrator should log in and change the password immediately after the Server is installed.
  • Navigating the Administration Tool.
  • The administration tools are accessed through the navigation bar located on the left side of each screen (see FIG. 32). Click one of the links in the navigation bar to display options for that link. Click a link to navigate to the corresponding area of the site. (Note that the navigation bar displays only those areas that are accessible from the current account. If one is not using an administrative account with all privileges enabled, some options will not be visible.) At the bottom of the screen is the shortcut bar, containing the Logout tool, and shortcut links to other areas, such as Documentation and Product Information.
  • The Administration Tool is divided into five sections. Each section contains screens and tools that are explained in more detail in the next five chapters. The following tools are available in each of the sections.
  • The Configure Section.
  • The Configure section contains tools to manage user accounts, profiles, Engines, Brokers, and Directors.
  • The Manage Section.
  • The Manage section enables one to administer Jobs or Tasks that have been submitted, administer data sets or batch jobs, submit a test Job, or retrieve log files.
  • The View Section.
  • The View section contains tools to list and examine Brokers, Engines, Jobs, and data sets. It's different from the Manage section in that tools focus on viewing information instead of modifying it, changing configuration, or killing Jobs. One can examine historical values to gauge performance, or troubleshoot one's configuration by watching the interaction between Brokers and Engines interactively.
  • In general, Lists are similar to the listed displays found in the Manage section, which can be refreshed on demand and display more information. Views are graphs implemented in a Java applet that updates in real-time.
  • The Install Section.
  • The install section enables one to install Engines on one's Windows machine, or download the executable files and scripts needed to build installations distributable to Unix machines.
  • The Develop Section.
  • The Develop section includes downloads and information such as Driver code, API Documentation, Documentation guides, Release Notes, and the Debug Engine.
  • The Configure Section.
  • The Configure section contains tools to manage user accounts, profiles, Engines, Brokers, and Directors. To use any of the following tools, click Configure in the Navigation bar to display the list of tools. Then click a tool name to continue.
  • View/Edit Users.
  • As an administrator, one can change information for existing user accounts. For example, one could change the name of an account, change an account's level of access, or delete an account entirely.
  • When one clicks View/Edit Users, one is presented with a list of defined users, as shown in FIG. 33. To change an existing user account, click the name listed in the Full Name column. The display shown in FIG. 34 will open. First, one must enter one's admin password in the top box to make any changes. Then, one can change any of the information for the user displayed. There is also a Subject and Message section; if one would like to notify the user that changes have been made to his/her account, enter an e-mail message in these fields. To make the change, click Submit. One can also delete the account completely by clicking Delete. If one would like to create a new user, one must use the New User Signup tool.
  • New User Signup.
  • To add a new user, click New User Signup. One will be presented with a screen similar to FIG. 34. Enter in one's admin password and the information about the user, and click Submit. (Note that the Subject and Message fields for e-mail notification are already populated with a default message. The placeholders for username and password will be replaced with the actual username and password for the user when the message is sent.)
  • Edit Profile.
  • The Edit Profile tool enables you to make changes to the account with which you are currently logged in. It also enables the admin to configure the Server to email notifications of account changes to users. For accounts other than admin, one must click Edit Profile, enter one's password in the top box, and make any changes one wishes to make to one's profile. This includes one's first name, last name and email address. One can also change one's password by entering a new password twice. When one has made the changes, one clicks the Submit button. If one is logged in as admin, one can also configure the Server to generate email notifications automatically whenever user accounts are added or modified. To activate this feature, one must provide an email address and the location of the SMTP server. The LiveCluster Server will generate mail from the administrator to the affected users. To disable the email feature, one simply clears the SMTP entry.
  • Engine Configuration.
  • The Engine Configuration tool (see FIG. 35) enables one to specify properties for each of the Engine types that one deploys. To configure an Engine, one must first choose the Engine type from the File list. Then, enter new values for properties in the list, and click Submit next to each property to enter these values. Click Save to commit all of the values to the Engine configuration. One can also click Revert at any time before clicking Save to return to the configuration saved in the original file. For more information on any of the properties in the Engine Configuration tool, one can click Help.
  • Engine Properties.
  • This tool (see FIG. 36) displays properties associated with each Engine that has logged in to this Server. A list of Engine IDs is displayed, along with the corresponding Machine Names and properties that are currently assigned to that Engine. These properties are used for discrimination, either in the Broker or the Driver. Properties can be set with this tool, or when an Engine is installed with the 1-Click Install with Tracking link and a tracking profile is created, which is described below, in the Engine Tracking Editor tool.
  • To change the properties assigned to an Engine, one must click the displayed Engine ID in the list. An edit screen (see FIG. 37) is displayed. If there are properties already assigned, one can change their value(s) in an editable box and click Submit, or click Remove to remove a property completely. To add a new property and value, one may enter them in the editable boxes at the bottom of the list and click Add. Once one has finished changing the properties, one may click Save. The properties will be sent to the Server, and the Engine will restart. (Note that if Broker discrimination is configured, it is possible to change or add a property that will prevent an Engine from logging back on again.)
  • Engine Tracking Editor.
  • Engines can be installed with optional tracking parameters, which can be used for discrimination. When Engines are installed with the 1-Click Install with Tracking link, one is prompted for values for these parameters. This tool enables one to define what parameters are given to Engines installed in this method. By default, the parameters include MachineName, Group, Location, and Description. One can add more parameters by entering the parameter name in the Property column, entering a description of the property type in the Description column, and clicking the Add button. One can also remove parameters by clicking the Remove button next to the parameter one wants to remove.
  • Broker Configuration.
  • The Broker's attributes can be configured by clicking the Broker Configuration tool. This displays a hierarchical expanding/collapsing (see FIG. 38) list of all of the attributes of the Broker. One may click on the + and—controls in the left pane to show or hide attributes, or click Expand All or Collapse All to expand or collapse the entire list.
  • When one clicks on an attribute, its values are shown in the right pane. One can change an attribute in an editable box by entering a new value and clicking Submit. To find more information about each additional attribute, one may click Help in the lower right corner of the display. A help window will open with complete details about the attribute.
  • Broker Discrimination.
  • One can configure Brokers to do discrimination on Engines and Drivers with the Broker Discrimination tool (see FIG. 39). First, one must select the Broker one wants to configure from the list at the top of the page. If one is only running a single Broker, there will only be one entry in this list. One can configure discriminators for both Driver properties and Engine properties. For Drivers, a discriminator is set in the Driver properties, and it prevents Tasks from a defined group of Drivers from being taken by this Broker. For Engines and Drivers, discriminators prevent login sessions from being established with a Broker, which changes routing between Brokers and Engines or Drivers.
  • Each discriminator includes a property, a comparator, and a value. The property is the property defined in the Engine or Driver, such as a group, OS or CPU type. The value can be either a number (double) or string. The comparator compares the property and value. If they are true, the discriminator is matched, and the Engine or Driver can login to a Broker. If they are false, the Driver can't log in to the Broker, and must use another Broker. In the case of an Engine, it won't be sent Tasks from that Broker. Note that both property names and values are case-sensitive.
  • One further option for each discriminator is the Negate other Brokers box. When this is selected, an Engine or Driver will be considered only for this Broker, and no others. For example, if one has a property named state and sets a discriminator for when state equals NY and selects Negate other Brokers, an Engine with state set to NY will go to this Broker, because other Brokers won't accept its login.
  • Once one has entered a property, comparator, and value, click Add. One can add multiple discriminators to a Broker by defining another discriminator and clicking Add again. Click Save to save all added discriminators to the Broker. When one saves discriminators, all Engines currently logged in will log out and attempt to log back in. This enables one to set a discriminator to limit a number of Engines and immediately force them to log off.
  • By default, if an Engine or Driver does not contain the property specified in the discriminator, the discriminator is not evaluated and considered false. However, one can select Ignore Missing Properties for both the Driver and Engine. This makes an Engine or Driver missing the property specified in a discriminator ignore the discriminator and continue. For example, if one sets a discriminator for state=Arizona, and an Engine doesn't have a state property, normally the Broker won't give the Engine Jobs. But if one selects Ignore Missing Properties, the Engine without properties will still get Jobs from the Broker.
  • Director Configuration.
  • To configure the Director, an interface similar to the Broker Configuration tool described above is used. When one clicks Director Configuration, a hierarchy of attributes is shown, and one can click an attribute to change it. As with the Broker, the Director attributes have a Help link available.
  • Client Diagnostics.
  • If one is troubleshooting issues with one's LiveCluster installation, one can generate and display client statistics using the Client Diagnostics tool (see FIG. 40). This generates tables or charts of information based on client messaging times.
  • To use client diagnostics, one must first select Client Diagnostics and then click the edit diagnostic options link. Set Enabled to true, click Submit, then click Save. This will enable statistics to be logged as the system runs. (Note that this can generate large amounts of diagnostic data, and it is recommended that one enable this feature only when debugging.) Click diagnostic statistics to return to the previous screen. Next, one must specify a time range for the analysis. Select a beginning and ending time range, or click Use all available times to analyze all information.
  • After selecting a time range, one can select what data is to be shown, and how it will be shown, either in a table or chart. For the tables, one must select one or more statistic(s) and one or more client(s). For charts, select only one client and one or more statistic for client charts; statistic charts require one to select one statistic and one or more client(s). The table or chart will be displayed in a new window.
  • Event Subscription.
  • If one has enabled email notifications by entering a SMTP address in the admin profile, one can define a list of email addresses, and configure what event notifications are sent to each address with the Event Subscription tool (see FIG. 41). To enter a subscriber, click Add a Subscriber. To change events for a subscriber, click their name in the list. For each subscriber, enter a single email address in the Email box. This must be a full email address, in the form name@your.address.com. One can enter a string in the Filter box to limit notifications to events which contain the string in the event. For example, one could limit notifications to those about an Engine named Alpha by entering Alpha in the Filter box. When the box is left clear (the default), all events are considered for notification.
  • After specifying an email address and an optional filter, select which events one would like to monitor from the list below. Once one is done, click Submit. When each event occurs, the Server will send a short notification message to the specified email address. One can later edit a subscriber's events, filter, or email address by clicking the subscriber's name in the list presented when one selects the Event Subscription tool. One can also remove a name completely by clicking the Remove button next to it.
  • The Manage section enables one to administer Jobs or Tasks that have been submitted, administer data sets or batch jobs, submit a test Job, or retrieve log files. To use any of the following tools, click Manage in the Navigation bar to display a list of tools at the left. Then click a tool to continue.
  • Broker Administration.
  • One can view Engines logged on to a Broker, or change the ratio of Engines to Drivers handled by a Broker, by using the Broker Administration tool (see FIG. 42). Each Broker logged on to the Director is listed, along with the number of busy and idle Engines logged onto it. Click on the Broker name in the Hostname column to display a list of the Engines currently logged in. To see the graphs depicting Broker statistics, click the Create button in the Monitor column. One can specify the number of jobs to be displayed in the Broker Monitor by changing the number in the box to the left of the Create button. The Engine Weight and Driver Weight boxes are used to set the ratio of Engines to Drivers that are sent to the Broker from the Director. By default, Engine Weight and Driver Weight are both 1, so the Broker will handle Engines and Drivers equally. This can also be changed so a Broker favors either Engines or Brokers. For example., changing Engine Weight to 10 and leaving Driver Weight at 1 will make the Broker handle Engines ten times more than Drivers. To update the list and display the most current information, click the Refresh button. One can also automatically update the list by selecting a value from the list next to the Refresh button.
  • Engine Administration.
  • This tool (see FIG. 43) enables one to view and control any Engines currently controlled by one's Server. To update the list and display the most current information, click the Refresh button. One can also automatically update the list by selecting a value from the list next to the Refresh button.
  • Engines are displayed by usemame, with 20 Engines per page by default. One can select a greater number of lists per page, or display all of the Engines, by clicking a number or All next to Results Per Page on the top right of the screen. One can also find a specific Engine by entering the user-name in the box and clicking Search For Engines. The Status column displays if an Engine is available for work. If “Available” is displayed, the Engine is logged on and is ready for work. Engines marked as “Logged off” are no longer available. “Busy” Engines are currently working on a Task. Engines shown as “Logging in” are in the login process, and are possibly transferring files. One can also click the text in the Status column to open a window containing current server logs for that Engine.
  • To quickly find out more information about an Engine, one may move the mouse over the Engine usemame without clicking it. A popup window containing statistics will be shown (see FIG. 44). One can also click on an Engine usemame to display detailed logging on that Engine. If the Engine is currently processing a Job, it is displayed in the Job-Task column. Hover the mouse over the entry to display a popup with brief statistics on the Job currently being processed, or click on the entry for a more detailed log. Current Jobs also have their owner displayed in the Owner column.
  • Job Administration.
  • One can view and administer Jobs posted to a Broker in the Job Administration section (see FIG. 45). Here, one is presented with a list of running, completed, and cancelled Jobs on the Broker. To get the most up-to-date information, click the Refresh button. One can also automatically refresh the page by selecting an interval from the list next to the Reload button.
  • While a Job is running, one can change its priority by selecting a new value from the list in the Priority column. Possible values range from 10, the highest, to 0, the lowest. One can click Remove Finished Jobs to display only pending Jobs, vary the number of results per page by clicking on a number, or find a specific Job by searching on its name, similar to the Engine Administration.
  • Jobs are shown in rows with UserName, JobName, Submit Time, Tasks Completed, and Status. To display information on a Job, point to the Job Name and a popup window containing statistics on the Job appears. For more information, click the Job Name and a graph will be displayed in a new window. One can also click on a Job's status to view its Broker and Director log files. To kill Jobs, select one or more Jobs by clicking the check box in the Kill column, or click Select All to kill all Jobs, then click Submit.
  • Data Set Administration.
  • Jobs can utilize a DataSet, which is a reusable set of TaskInputs. Repeated Jobs will result in caching TaskInputs on Engines, resulting in less transfer overhead. One can click Data Set Administration to view all of the active Data Sets. One can also select Data Sets and click Submit to remove them; however, one will also need to kill the related Jobs. DataSets are usually created and destroyed with the Java API.
  • Batch Administration.
  • Batch Jobs are items that have been registered with a Server, either by LiveDeveloper, by copying XML into a directory on the Server, or by a Driver. Unlike a Job, they don't immediately enter the queue for processing. Instead, they contain commands, and instructions to specify at what time the tools will execute. These events can remain on the Server and run more than once. Typically, a Batch Job is used to run a Job at a specific time or date, but can be used to run any command.
  • The Batch Administration tool (see FIG. 46) displays all Batch Jobs on the Server, and enables one to suspend, resume, or remove them. Each Batch Job is denoted with a name. A Type and Time specify when the Batch Job will start. If a Batch Job is Absolute, it will enter the queue at a given time. A Relative Batch Job is defined with a recurring time or a time relative to the current time, such as a Batch Job that runs every hour, or one defined in the cron format. Immediate jobs are already in the queue.
  • To suspend a Batch Job or resume a suspended Batch Job, select it in the Suspend/Resume column, and click the Submit button below that column. Batch Jobs can be killed by selecting them in the Remove column and clicking the Submit button below that column, or clicking Select All and then Submit. Killing a Batch Job does not kill any currently running Jobs that were created by that Batch Job. To kill these, one must use the Job Administration tool. Likewise, if one kills a Job from the Job Administration tool, one won't kill the Batch Job. For example, if there exists a Batch Job that runs a Job every hour, it is after 4:00, and one kills the Job that appears in the Job Administration tool, another Job will appear at 5:00. One must kill both the Job and the Batch Job to stop the Jobs completely.
  • Batch Jobs that are submitted by a Driver will only stay resident until the Server is restarted. To create a Batch Job that will always remain resident, one can create a Batch Job file. To do this, click new batch file to open the editor. One can also click the name of a Batch Job that was already created on the Server. One can then enter the XML for the Batch Job, specify a filename, and click Save to save the file, Submit to enter the file, or Revert to abandon the changes.
  • Test Job.
  • To test a configuration, one can submit a test Job. This tool submits a Job using the standard Linpack benchmark, using an internal Driver. One can set the following parameters for a Linpack test:
      • Job Name—Name of the Job in the Job Admin.
      • User Name—Name of the User in the Job Admin.
      • Tasks—Number of Tasks in the Job.
      • Priority—Job execution priority, with 10 being the highest, and 0 the lowest.
      • Duration—Average duration for Tasks in seconds.
      • Std Dev—Standard deviation of Task duration in percent.
      • Input Data—Size of Task input data in kilobytes.
      • Output Data—Size of Task output data in kilobytes.
      • Compression—Compress input and output data.
      • Parallel Collection—Start collecting results before all Tasks are submitted.
  • After one has set the parameters, one clicks Submit to submit the Job. Once the Job is submitted, the Job Administration screen from the Manage section will be displayed. One can then view, update, or kill the Job.
  • Log Retrieval.
  • One can display current and historical log information for the Server with the Log Retrieval tool. The interface, displayed below, enables one to select a type of log file, a date range, and how one would like to display the log file. To view the current log file, click Current Server Log. The current log file is displayed (see FIG. 47), and any new log activity will be continuously added. One can use this feature to watch an ongoing Job's progress, or troubleshoot errors. At any time one is viewing the current log, click Snaspshot to freeze the current results and open them in a new window. Also, one can click Clear to clear the current results. Click Past Logs to return to the original display.
  • To view a past log file, first choose what should be included in the file. Select one or more choices: HT Access Log, HT Error Log, Broker Log, Director Log, Broker.xml, Director.xml, Config.xml, and Engine Updates List. One can also click Select All to select all of the information. Next, select a date and time that the logs will end, and select the number of hours back from the end time that will be displayed. After one has chosen your data and a range, click one of the Submit buttons to display the data. One can choose to display data in the window below, in a new window, or in a zip file. One can also view any zip files you made in the past.
  • The View Section.
  • The View section contains tools to list and examine Brokers, Engines, Jobs, and data sets. It's different from the Manage section in that tools focus on viewing information instead of modifying it, changing configuration, or killing Jobs. One can examine historical values to gauge performance, or troubleshoot the configuration by watching the interaction between Brokers and Engines interactively. In general, Lists are similar to the listed displays found in the Manage section, which can be refreshed on demand and display more information. Views are graphs implemented in a Java applet that updates in real-time. The following tools are available:
  • Broker List.
  • The Broker List tool (see FIG. 48) displays all Brokers currently logged in. It also gives a brief overview of the number of Engines handled by each Broker. To update the list, click the Refresh button. One can also automatically update the display by selecting an interval from the list next to the Refresh button. Click a Broker's hostname to display its list of Engines. One can also click Create to show the Broker Monitor graph, described below.
  • Broker Monitor.
  • The Broker Monitor tool opens an interactive graph display (see FIG. 49) showing current statistics on a Broker. The top graph is the Engine Monitor, a view of the Engines reporting to the Broker, and their statistics over time. The total number of Engines is displayed in green. The employed Engines (Engines currently completing work for the Broker) are displayed in blue, and Engines waiting for work are displayed in red.
  • The middle graph is the Job View, which displays what Jobs have been submitted, and the number of Tasks completed in each Job. Running Jobs are displayed as blue bars, completed Jobs are grey, and cancelled Jobs are purple. The bottom graph, the Job Monitor, shows the current Job's statistics. Four lines are shown, each depicting Tasks in the Job. They are submitted (green), waiting (red), running (blue), and completed (grey) Tasks. If a newer Job has been submitted since you opened the Broker Monitor, click load latest job to display the newest Job.
  • Engine List.
  • The Engine List provides the same information as the Engine Administration tool in the Manage section, such as Engines and what Jobs they are running. The only difference is the list only allows one to view the Engine list, while the Engine Administration tool also has controls that enable one to kill Jobs.
  • Engine View.
  • The Engine View tool opens an interactive graph displaying Engines on the current Broker, similar to the Engine Monitor section of the Broker Monitor graph, described above.
  • Job List.
  • The Job List (see FIG. 50) provides the same information as the Job Administration tool in the Manage section. The only difference is the list only allows one to view Jobs, while the Job Administration tool also has controls that enable you to kill Jobs and change their priority.
  • Data Set List.
  • The Data Set List (see FIG. 51) provides the same information as the Data Set Administration tool in the Manage section. The only difference is the list only allows one to view Data Sets, while the Data Set Administration tool also has controls that enable one to make Data Sets unavailable.
  • Cluster Capacity.
  • The Cluster Capacity tool (see FIG. 52) displays the capabilities of Engines reporting to a Server. This includes number of CPUs, last login, CPU speed, free disk space, free memory, and total memory. All Engines, including those not currently online, are displayed. One may click Online Engines Only to view only those Engines currently reporting to the Server, or click Offline Engines Only to view Engines that are not currently available.
  • The Install Section.
  • The install section contains tools used to install Engine on one or more machines.
  • Engine Installation.
  • The install screen (see FIG. 53) enables one to install Engines on a Windows machine, or download the executable files and scripts needed to build installations distributable to Unix machines.
  • Remote Engine Script.
  • The remote Engine script is a Perl script written for Unix that enables one to install or start several DataSynapse Engines from a central Server on remote nodes. To use this script, download the file at the Remote Engine Script by can holding Shift and clicking the link, or right-click the link and selecting Save File As . . . .
  • The usage of the script is as follows:
      • dslremoteadmin.pl [ACTION] [-f filenamel-m MACHINE_NAME -p PATH_TO_DS]-s server [-n num_engines] [-i ui_idle_wait] [-D dist_name] [-c min_cpu_busy] [-C max_cpu_busy]
        ACTION can be either install, configure, start, or stop: install installs the DSEngine tree on the remote node and configures the Engine with parameters specified on the command line listed above; configure configures the Engine with parameters specified on the command line as listed above; start starts the remote Engine; and stop stops the remote Engine.
  • One can specify resources either from a file or singularly on the command line using the -m machine and -p path options. The format of the resource file is:
      • machine_name/path/to/install/dir.
  • Driver Downloads.
  • The Driver is available in Java and C++ and source code is available for developers to download from this page. One can also obtain the Live Developer suite from this link.
  • LiveCluster API.
  • One can view the LiveCluster API by selecting this tool. API documents are available in HTML as generated by JavaDoc for Java and by Doxygen for C++. Also, documentation is available for the LiveCluster XML API, in HTML format.
  • Documentation.
  • This screen contains links to documentation about LiveCluster. Guides are included with the software distribution, in Adobe Acrobat format. To view a guide, click its link to open it. Note: one must have Adobe Acrobat installed to view the guides in pdf format.
  • Release Notes.
  • This link opens a new browser containing notes pertaining to the current and previous releases.
  • Debug Engine Installation.
  • A version of the Engine is available to provide debugging information for use with the Java Platform Debugger Architecture, or JPDA. This Engine does not contain the full functionality of the regular Engine, but does provide information for remote debugging via JPDA. One may select this tool to download an archive containing the Debug Engine.
  • Basic Scheduling.
  • The Broker is responsible for managing the job space: scheduling Jobs and Tasks on Engines and supervising interactions with Engines and Drivers
  • Overview.
  • Most of the time, the scheduling of Jobs and Tasks on Engines is completely transparent and requires no administration—the “Darwinian” scheduling scheme provides dynamic load balancing and adapts automatically as Engines come and go. However, one needs a basic understanding of how the Broker manages the job space in order to understand the configuration parameters, to tune performance, or to diagnose and resolve problems.
  • Recall that Drivers submit Jobs to the Broker. Each Job consists of one or more Tasks, which may be performed in any order. Conceptually, the Broker maintains a first-in/first-out queue (FIFO) for Tasks within each Job. When the Driver submits the first Task within a Job, the Broker creates a waiting Task list for that job, then adds this waiting list to the appropriate Job list, according to the Job's priority (see “Job-Based Prioritization,” below). Additional Tasks within the Job are appended to the end of the waiting list as they arrive.
  • Whenever an Engine reports to the Broker to request Work, the Broker first determines which Job should receive service, then assigns the Task at the front of that Job's waiting list to the Engine. (The Engine may not be eligible to take the next Task, however—this is discussed in more detail below.) Once assigned, the Task moves from the waiting list to the pending list; the pending list contains all the Tasks that have been assigned to Engines. When an Engine completes a task, the Broker searches both the pending and waiting lists. If it finds the Task on either list, it removes it from both, and adds it to the completed list. (The Broker may also restart any Engines that are currently processing redundant instances of the same Task. If the Task is not on either list, it was a redundant Task that completed before the Engine restarted, and the Broker ignores it.)
  • Tasks migrate from the pending list back to the waiting list when the corresponding Engine is interrupted or drops out. In this case, however, the Broker appends the Task to the front, rather than the back, of the queue, so that Tasks that have been interrupted are rescheduled at a higher priority than other waiting Tasks within the same Job. Also, the Broker can be configured to append redundant instances of Tasks on the pending list to the waiting list; “Redundant Scheduling,” below, provides a detailed discussion of this topic.
  • Discriminators: Task-Specific Engine Eligibility Restrictions.
  • As indicated above, not every Task is eligible to run on every Engine. The Discriminator API supports task discrimination based on Engine-specific attributes. In effect, the application code attaches IDiscriminator objects to Tasks at runtime to restrict the class of Engines that are eligible to process them. This introduces a slight modification in the procedure described above: When an Engine is ineligible to take a Task, the Broker proceeds to the next Task, and so on, assigning the Engine the first Task it is eligible to take. Note that Discriminators establish hard limits; if the Engine doesn't meet the eligibility requirements for any of the Tasks, the Broker will send the Engine away empty-handed, even though Tasks may be waiting.
  • The Broker tracks a number of predefined properties, such as available memory or disk space, performance rating (megaflops), operating system, and so forth, that the Discriminator can use to define eligibility. The site administrator can also establish additional attributes to be defined as part of the Engine installation, or attach arbitrary properties to Engines “on the fly” from the Broker.
  • Job-Based Prioritization.
  • Every LiveCluster Job has an associated priority. Priorities can take any integer value between zero and ten, so that there are eleven priority levels in all. 0 is the lowest priority, 10 is the highest, and 5 is the default. The LiveCluster API provides methods that allow the application code to attach priorities to Jobs at runtime, and priorities can be changed while a Job is running from the LiveCluster Administration Tool.
  • When the Driver submits a job at a priority level, it will wait in that priority queue until distributed by the Broker. Two boolean configuration parameters determine the basic operating mode: Serial Priority Execution and Serial Job Execution. When Serial Priority Execution is true, the Broker services the priority queues sequentially. That is, the Broker distributes higher priority Jobs, then moves to lower priority Jobs when higher priority Jobs are completed. When Serial Priority Execution is false, the Broker provides interleaved service, so that lower-priority queues with Jobs will receive some level of service even when higher-priority Jobs are competing for resources. Serial Job Execution has similar significance for Jobs of the same priority: When Serial Job Execution is true, Jobs of the same priority receive strict sequential service; the first Job to arrive is completed before the next begins. When Serial Job Execution is false, the Broker provides round-robin service to Jobs of the same priority, regardless of arrival time.
  • The Broker allocates resources among the competing priority queues based on the Priority Weights setting. Eleven integer weights determine the relative service rate for each of the eleven priority queues. For example, if the weight for priority 1 is 2, and the weight for priority 4 is 10, the Broker will distribute five priority-4 Tasks for every priority-I Task whenever Jobs of these two priorities compete. (Priorities with weights less than or equal to zero receive no service when higher priority Tasks are waiting.) The default setting for both Serial Execution flags is false, and the default setting for the Priority Weights scales linearly, ranging from priority 0 at 1, and priority 10 at 11.
  • It is generally best to leave the flags at their default settings, so that low-priority Tasks don't “starve,” and Jobs can't monopolize resources based on time of arrival. Robust solutions to most resource-contention problems require no more than two or three priority levels, but they do require some planning. In particular, the client application code needs to assign the appropriate priorities to Jobs at runtime, and the priority weights must be tuned to meet minimum service requirements under peak load conditions.
  • Polling Rates for Engines and Drivers.
  • In addition to the serial execution flags and the priority weights, there are four remaining parameters under Job Space that merit some discussion. These four parameters govern the polling frequencies for Engines and Drivers and the rate at which Drivers upload Tasks to the Server; occasionally, they may require some tuning.
  • Engines constantly poll the Broker when they are available to take work. Likewise, Drivers poll the Broker for results after they submit Jobs. Within each such transaction, the Broker provides the polling entity with a target latency; that is, it tells the Engine or Driver approximately how long to wait before initiating the next transaction.
  • Total Engine Poll Frequency sets an approximate upper limit on the aggregate rate at which the available Engines poll the Broker for work. The Broker computes a target latency for the individual Engines, based on the number of currently available Engines, so that the total number of Engine polling requests per second is approximately equal to the Total Engine Poll Frequency. The integer parameter specifies the target rate in polls per second, with a default setting of 30.
  • The Result Found/Not Found Wait Time parameters limit the frequency with which Drivers poll the Server for Job results (TaskOutputs). Result Found Wait Time determines approximately how long a Driver waits, after it retrieves some results, before polling the Broker for more, and Result Not Found Wait Time determines approximately how long it waits after polling unsuccessfully. Each parameter specifies a target value in milliseconds, and the default settings are 0 and 1000, respectively. That is, the default settings introduce no delay after transactions with results, and a one-second delay after transactions without results.
  • The Task Submission Wait Time limits the rate at which Drivers submit TaskInputs to the Server. Drivers buffer the TaskInput data, and this parameter determines the approximate waiting time between buffers. The integer value specifies the target latency in milliseconds, and the default setting is 0.
  • The default settings are an appropriate starting point for most intranet deployments, and they may ordinarily be left unchanged. However, these latencies provide the primary mechanism for throttling transaction loads on the Server.
  • The Task Rescheduler.
  • The Task Rescheduler addresses the situation in which a handful of Tasks, running on less-capable processors, might significantly delay or prevent Job completion. The basic idea is to launch redundant instances of long-running Tasks. The Broker accepts the first TaskOutput to return and cancels the remaining instances (by terminating and restarting the associated Engines). However, it's important to prevent “runaway” Tasks from consuming unlimited resources and delaying Job completion indefinitely. Therefore, a configurable parameter, Max Attempts limits the number of times any given Task will be rescheduled. If a Task fails to complete after the maximum number of retries, the Broker cancels all instances of that Task, removes it from the pending queue, and sends a FatalTaskOutput to the Driver.
  • Three separately configurable strategies govern rescheduling. The three strategies run in parallel, so that tasks are rescheduled whenever one or more of the three corresponding criteria are satisfied. However, none of the rescheduling strategies comes into play for any Job until a certain percentage of Tasks within that Job have completed; the Strategy Effective Percent parameter determines this percentage.
  • More precisely, the Driver notifies the Broker when the Job has submitted all its Tasks (from Java or C++, this notification is tied to the return from the createTaskInputs method within the Job class). At that point, the number of Tasks that have been submitted is equal to the total Task count for the Job, and the Broker begins monitoring the number of Tasks that have completed. When the ratio of completed Tasks to the total exceeds the Strategy Effective Percent, the rescheduling strategies begin operating.
  • The rescheduler scans the pending Task list for each Job at regular intervals, as determined by the Interval Millis parameter. Each Job has an associated taskMaxTime, after which Tasks within that Job will be rescheduled. When the strategies are active (based on the Strategy Effective Percent), the Broker tracks the mean and standard deviation of the (clock) times consumed by each completed Task within the Job. Each of the three strategies uses one or both of these statistics to define a strategy-specific time limit for rescheduling Tasks.
  • Each time the rescheduler scans the pending list, it checks the elapsed computation time for each pending Task. Initially, rescheduling is driven solely by the taskMaxTime for the Job; after enough Tasks complete, and the strategies are active, the rescheduler also compares the elapsed time for each pending Task against the three strategy-specific limits. If any of the limits is exceeded, it adds a redundant instance of the Task to the waiting list. (The Broker will reset the elapsed time for that Task when it gives the redundant instance to an Engine.)
  • The Reschedule First flag determines whether the redundant Task instance is placed at the front of the back of the waiting list; that is, if Reschedule First is true, rescheduled Tasks are placed at the front of the queue to be distributed before other Tasks that are waiting. The default setting is false, which results in less aggressive rescheduling. Thus, the algorithm that determines the threshold for elapsed time, after which Tasks are rescheduled, can be summarized as:
  • if (job.completedPercent>strategyEffectivePercent-) {threshold:=min(job.taskMaxTime, percentCompletedStrategy. limit, averageStrategy.limit, standardDevStrategy.limit)
  • }else threshold:=job.taskMaxTime
  • Each of the three strategies computes its corresponding limit as follows:
  • The Percent Completed Strategy returns the maximum long value (effectively infinite, so there is no limit) until the number of waiting Tasks, as a fraction of the total number of Tasks, falls below the Remaining Task Percent parameter, after which it returns the mean completion time. In other words, this strategy only comes into play when the Job nears completion (as determined by the Remaining Task Percent setting), after which it begins rescheduling every pending Task at regular intervals, based on the average completion time for Tasks within the Job:
  • if (percentCompleted<remainingTaskPercent) {percentCompletedStrategy.limit:=Long.MAX_VALUE }
  • else percentCompletedStrategy.limit:=mean
  • The default setting for Remaining Task Percent is 1, which means that this strategy becomes active after the Job is 99% completed.
  • The Average Strategy returns the product of the mean completion time and the Average Limit parameter (a double). That is, this strategy reschedules Tasks when their elapsed time exceeds some multiple (as determined by the Average Limit) of the mean completion time:
  • averagestrategy.limit:=averagelimit*mean
  • The default setting for Average Limit is 3.0, which means that it reschedules Tasks after they take at least three times as long as average.
  • The Standard Dev Strategy returns the mean plus the product of the Standard Dev Limit parameter (a double) and the standard deviation of the completion times. That is, this strategy reschedules Tasks when their elapsed time exceeds the mean by some multiple (as determined by the Standard Dev Limit) of the standard deviation:
  • standardDevStrategy. limit:=mean+(standardDevLimit* standardDeviatio- n) The default setting for Standard Dev Limit is 2.0, which means that it reschedules Tasks after they exceed the average by two standard deviations, or in other words, after they've taken longer than about 98% of the completed Tasks.
  • (Note that if Reschedule First is true, then Tasks are guaranteed to either complete or fail within MaxAttempts*MaxTaskTime.)
  • Tuning the Rescheduler.
  • Task rescheduling addresses three basic issues:
      • It prevents a small number of less capable processors from significantly degrading Job performance and provides fault tolerance and graceful failure when Engine-specific problems prevent Tasks from completing on individual Engines.
      • It prevents “runaway” Tasks from consuming unlimited resources and delaying Job completion indefinitely.
      • It provides a fail-safe system to insure that all Tasks will complete, despite unexpected problems from other systems.
  • The default settings are reasonable for many environments, but any configuration represents a compromise, and there are some pitfalls to watch out for. In general, aggressive rescheduling is appropriate when there are abundant resources, but with widely differing capabilities. Conversely, to utilize smaller pools of more nearly identical Engines most efficiently, rescheduling should only be configured to occur in exceptional situations.
  • In case this is not possible, it may be necessary to substantially curtail, or even disable, the rescheduling strategies, to prevent repeated rescheduling and ultimately, cancellation, of long-running Tasks, In many cases, it may be possible to reduce the impact of heterogeneous resources by applying discriminators to route long-running Tasks (at least, those that can be identified a priori) to more capable processors. (This is generally a good idea in any case, since it smoothes turnaround performance with no loss of efficiency.)
  • Another approach that can be effective in the presence of abundant resources is simply to increase the Max Attempts setting, to allow more rescheduling attempts before a Task is cancelled and returns a FatalTaskOutput. Jobs with very few Tasks also work best without rescheduling. For example, with a setting of 40% for Strategy Effective Percent, the strategies would become active for a Job with ten Tasks after only four of those Tasks had completed. Therefore, in cases where Jobs have very few Tasks, Strategy Effective Percent should be increased. (For example, a setting of 90% ensures that at least nine Tasks complete before launching the strategies, and a setting of 95% requires at least nineteen.)
  • Finally, note that it is seldom a good idea to disable rescheduling altogether, for example by setting Max Attempts to zero. Otherwise, a single incapacitated or compromised Engine can significantly degrade performance or prevent Tasks from completing. Nor should one completely disable the rescheduling strategies without ensuring that every Job is equipped with a reasonable taskMaxTime. Without this backstop, runaway application code can permanently remove Engines from service (that is, until an administrator cancels the offending Job manually from the management area on the Server).
  • The Task Data Set Manager.
  • TaskDataSet addresses applications in which a sequence of operations are to be performed on a common input dataset, which is distributed across the Engines. A typical example would be a sequence of risk reports on a common portfolio, with each Engine responsible for processing a subset of the total portfolio.
  • In terms of the LiveCluster API, a TaskDataSet corresponds to a sequence of Jobs, each of which shares the same collection of TaskInputs, but where the Tasklet varies from Job to Job. The principal advantage of the TaskDataSet is that the scheduler makes a “best effort” to assign each TaskInput to the same Engine repeatedly, throughout the session. In other words, whenever possible, Engines are assigned TaskInputs that they have processed previously (as part of earlier Jobs within the session). If the TaskInputs contain data references, such as primary keys in a database table, the application developer can cache the reference data on an Engine and it will be retained.
  • The Broker minimizes data transfer by caching the TaskInputs on the Engines. The Task Data Set Manager plug-in manages the distributed data. When Cache Type is set to 0, the Engines cache the TaskInputs in memory; when Cache Type is set to 1, the Engines cache the TaskInputs on the local file system. Cache Max and Cache Percent set limits for the size of each Engine's cache. Cache Max determines an absolute limit, in megabytes. Cache Percent establishes a limit as a percentage of the Engine's free memory or disk space (respectively, depending on the setting of Cache Type).
  • The Data Transfer Plug-In.
  • The Data Transfer plug-in manages the transfer of TaskInput and Tasklet objects from the Broker to the Engines and the transfer of TaskOutput objects from the Broker to the Drivers. By default, direct data transfer is configured, and the data transfer configuration specified in this plug-in is not used. However, if direct data transfer is disabled, these settings are used. Under the default configuration, the Broker saves the serialized data to disk. When the Broker assigns a Task to an Engine, the Engine picks up the input data at the location specified by the Base URL. Similarly, when the Broker notifies a polling Driver that output data is available, the Driver retrieves the data from the location specified by the Output URL. Both of these URLs must point to the same directory on the Server, as specified by the Data Directory. This directory is also used to transfer instructions (the Tasklet definitions) to the Engines. Alternatively, the Broker can be configured to hold the data in memory and accomplish the transfer directly, by enclosing the data within messages. Two flags, Store Input to Disk and Store Output to Disk, determine which method is used to transfer input data to Engines and output data to Drivers, respectively. (The default setting is true in each case; setting the corresponding flag to false selects direct transfer from memory.) This default configuration is appropriate for most situations. The incremental performance cost of the round trip to disk and slight additional messaging burden is rarely significant, and saving the serialized Task data to disk reduces memory consumption on the Server. In particular, the direct-transfer mode is feasible only when there is sufficient memory on the Server to accommodate all of the data. Note that in making this determination, it is important to account for peak loads. Running in direct-transfer mode with insufficient memory can result in java.lang.OutOfMemory-Errors from the Server process, unpredictable behavior, and severely degraded performance.
  • The Job Cleaner.
  • The Job Cleaner plug-in is responsible for Job-space housekeeping, such as cleaning up files and state history for Jobs that have been completed or canceled. This plug-in deletes data files associated with Jobs on a regular basis, and cleans the Job Manage and View pages. It uses the Data Transfer plug-in to find the data files. If a Job is finished or cancelled, the files are deleted on the next sweep. The plug-in sweeps the Server at regular intervals, as specified by the integer Attempts Per Day (the default setting of 2 corresponds to a sweep interval of every 12 hours). The length of time in hours Jobs will remain on the Job Admin page after finished or cancelled is specified by the integer Expiration Hours.
  • The Driver and Engine Managers.
  • The Driver and Engine Managers play analogous roles for Drivers and Engines, respectively. They maintain the server state for the corresponding client/server connections. The Broker maintains a server-side proxy corresponding to each active session; there is one session corresponding to each Driver and Engine that is logged in.
  • The Driver Service and Employment Office Plug-Ins. The Driver Service plug-in is responsible for the Driver proxies. Max Number of Proxies sets an upper limit on the number of Drivers that can log in concurrently. The default value of 100,000, and is typically not modified.
  • The Employment Office plug-in maintains the Engine proxies. In this case, Max Number of Proxies is set by the license, and cannot be increased be increased beyond the limit set by the license. (Although it can be set below the limit imposed by the license.)
  • The Login Managers.
  • Both the Driver and Engine Managers incorporate Login Managers. The Login Managers maintain the HTTP connections with corresponding clients (Drivers and Engines), and monitor the heartbeats from active connections for timeouts. User-configurable settings under the HTTP Connection Managers include the URL (on the Broker) for the connections, timeout periods for read and write operations, respectively, and the number times a client will retry a read or write operation that times out before giving up and logging a fatal error. The Server install script configures the URL settings, and ordinarily, they should never be modified thereafter. The read/write timeout parameters are in seconds; their default values are 10 and 60, respectively. (Read operations for large blocks of data are generally accomplished by direct downloads from file, whereas uploads may utilize the connection, so the write timeout may be substantially longer.) The default retry limit is 3. These default settings are generally appropriate for most operating scenarios; they may, however, require some tuning for optimal performance, particularly in the presence of unusually large datasets or suboptimal network conditions.
  • The Driver and Engine Monitors track heartbeats from each active Driver and Engine, respectively, and ends connections to Drivers and Engines which no longer respond. The Checks Per Minute parameters within each plug-in determine the frequency with which the corresponding monitor sweeps its list of active clients for connection timeouts. Within each monitor, the heartbeat plug-in determines the approximate target rate at which the corresponding clients (Drivers or Engines) send heartbeats to the Broker, and set the timeout period on the Broker as a multiple of the target rate. That is, the timeout period in milliseconds (which is displayed in the browser as well) is computed as the product of the Max Millis Per Heartbeat and the Timeout Factor. (It may be worth noting that the actual latencies for individual heartbeats vary randomly between the target maximum and ⅔ of this value; this randomization is essential to prevent ringing for large clusters.) The default setting for each maximum heartbeat period is 30,000 (30 seconds) and f6r each timeout factor, 3, so that the default timeout period for both Drivers and Engines is 90 seconds. By default, the Broker Manager checks for timeouts 10 times per minute, while the Engine Manager sweeps 4 times per minute. (Typically, there are many more Engines than Drivers, and Engine outages have a more immediate impact on application performance.)
  • Other Manager Components.
  • The Engine File Update Server manages file updates on the Engines, including both the DataSynapse Engine code and configuration itself, and user files that are distributed via the directory replication mechanism.
  • The Native Job Adapter.
  • The Native Job Adapter provides services to support applications that utilize the C++ or XML APIs. The basic idea is that the Broker maintains a “pseudo Driver” corresponding to each C++ or XML Job, to track the connection state and perform some of the functions that would otherwise be performed by the Java Driver.
  • The Result Found and Result Not Found Wait Times have the same significance as the corresponding settings in the Job Space plug-in, except that they apply only to the pseudo Drivers. The Base URL for connections with native Jobs is set by the install script, and should ordinarily never change thereafter.
  • The other settings within the Native Job Adapter plug-in govern logging for the Native Bridge Library, which is responsible for loading the native Driver on each Engine: a switch to turn logging on and off, the log level (1 for the minimum, 5 for the maximum), the name of the log file (which is placed within the Engine directory on each Engine that processes a native Task), and the maximum log size (after which the log rolls over). By default, logging for the Native Bridge is disabled.
  • The Native Job Store plug-in comes into play for native Jobs that maintain persistence of Task-Outputs on the Broker. (Currently, these include Jobs that set a positive value for hours To-KeepData or are submitted via the JobSubmitter class.) The Data Directory is the directory in the Broker's local file system where the TaskOutputs are stored; this directory is set by the install script, and should ordinarily not be changed. The Attempts Per Day setting determines the number of times per day that the Broker sweeps the data directory for TaskOutputs that are no longer needed; the default setting is 24 (hourly).
  • Utilities.
  • The Utilities plug-in maintains several administrative functions. The Revision Information plug-in provides read-only access to the revision level and build date for each component associated with the Broker. The License plug-in, together with its License Viewer component, provides similar access to the license settings.
  • The Log File plug-in maintains the primary log file for the Broker itself. Settings are available to determine whether log messages are written to file or only to the standard output and error streams, the location of the log file, whether to log debug information or errors only, the log level (when debug messages are enabled), the maximum length of the log file before it rolls over, and whether or not to include stack traces with error messages.
  • The Mail Server generates mail notifications for various events on the Broker. The SMTP host can be set here, or from the Edit Profile screen for the site administrator. (If this field is blank or “not set,” mail generation is disabled.) The Garbage Collector monitors memory consumption on the Broker and forces garbage collection whenever the free memory falls below a threshold percentage of the total available memory on the host. Configuration settings are available to determine the threshold percentage (the default value is 20%) and the frequency of the checks (the default is once per minute).
  • The remaining utility plug-ins are responsible for cleaning up log and other temporary files on the Broker. Each specifies a directory or directories to sweep, the sweep frequency (per day), and the number of hours that each file should be maintained before it is deleted. There are also settings to determine whether or not the sweep should recurse through subdirectories and whether to clean out all pre-existing files on startup. Ordinarily, the only user modification to these settings might be to vary the sweep rate and expiration period during testing.
  • Directory Replication and Synchronization: Mechanism Overview.
  • The LiveCluster system provides a simple, easy-to-use mechanism for distributing dynamic libraries (.dll or .so), Java class archives (jar), or large data files that change relatively infrequently. The basic idea is to place the files to be distributed within a reserved directory on the Server. The system maintains a synchronized replica of the reserved directory structure for each Engine. Updates can be automatically made, or manually triggered. Also, an Engine file update watchdog can be configured to ensure updates only happen when the Broker is idle.
  • Server-Side Directory Locations.
  • A directory system resides on the Server in which you can put files that will be mirrored to the Engines. The location of these directories is outlined below.
  • Server-Side Directories for Windows.
  • Server-side directories are located in the Server install location (usually c:\Datasynapse\Server) plus \livecluster\public_html\updates. Within that directory are two directories: datasynapse and resources. The datasynapse directory contains the actual code for the Engine and support binaries for each platform. The resources directory contains four directories: shared, win32, solaris, and linux. This shared directory is mirrored to all Engine types, and the other three are mirrored to Engines running the corresponding operating system.
  • Server-Side Directories for Unix.
  • For Servers installed under Unix, the structure is identical, but the location is the installation directory (usually /opt/datasynapse) plus /Server/Broker/public_html/updates/resources. The directories are also shared, win32, solaris, and linux.
  • Engine-Side Directory Locations.
  • A similar directory structure resides in each Engine installation. This is where the files are mirrored. The locations are described below.
  • Engine-Side Directories for Windows.
  • The corresponding Engine-side directory is located under the root directory for the Engine installation. The default location on Windows is: C:\Program Files\DataSynapse\Engine.bac- kslash.resources and contains the replicated directories shared and win32.
  • Engine-Side Directories for Unix.
  • The corresponding Engine-side directory on Unix is the Engine install directory (for example, /usr/local) plus /DSEngine/resources and contains the replicated directories shared and linux for Linux Engines or solaris for Solaris Engines.
  • Configuring Directory Replication.
  • The system can be configured to trigger updates of the replicas in one of two modes:
  • Automatic Update Mode.
  • The Server continuously polls the file signatures within the designated subdirectories and triggers Engine updates whenever it detects changes; to update the Engines, the system administrator need only add or overwrite files within the directories.
  • Manual Update Mode.
  • The administrator ensures that the correct files are located in the designated subdirectories and triggers the updates manually by issuing the appropriate tools through the Administration tool.
  • Configuring Automatic Directory Updates.
      • 1. In the Configure section of the Administration tool, select the Broker Configuration tool.
      • 2. Click Engine Manager, then select Engine File Update Server.
      • 3. Set the value of Enabled to true.
  • Once this is set, files added or overwritten within the Server resources directory hierarchy will automatically update on the Engines. The value of Minutes Per Check determines the interval at which the Server polls the directory for changes Manually Updating files To update all files to the Engines manually, set Update Now to true, and click Submit. This triggers the actual transfer of files from the Server to the Engines, and returns the value of Update Now.to false.
  • The Engine File Update Watchdog.
  • By default, the Broker is configured so updates to the Engine files will only happen when the Broker is idle. The Engine file update watchdog provides this function when enabled, and ensures that all Engines have the same files. When enabled, the watchdog ensures that Engine files are not updated unless there are no Jobs in progress. If a file update is requested (either automatically or manually), the watchdog does not allow any new Jobs to start, and waits for currently running Jobs to complete. When no Jobs are running or waiting, the update will occur.
  • If the running Jobs don't complete within the specified update period (the default is 60 minutes), the update will not happen, and Jobs will once again be allowed to start. If this happens, one can either try to trigger an update again, specify a longer update period, or try to manually remove Jobs or stop sending new Jobs. When there is a pending update, a notice will be displayed at the top of the Administration Tool. Also, an email notification is sent on update requests, completions, and timeouts if one subscribes to the FileUpdateEvent with the Event Subscription tool.
  • Using Engines with Shared Network Directories.
  • Instead of using directory replication, one can also provide Engines with common files with a shared network directory, such as an NFS mounted directory. To do this, simply provide a directory on a shared server that can be accessed from all of the Engines. Then, go to the Configure section of the Administration tool, select Engine Configuration, and change the Class directory to point to the shared directory. When one updates the files on the shared server, all of the Engines will be able to use the same files.
  • CPU Scheduling for Unix.
  • Unix Engines provide the ability to tune scheduling for multi-CPU platforms. This section explains the basic theory of Engine distribution on multi-CPU machines, and how one can configure CPU scheduling to run an optimal number of Engines per machine.
  • A feature of LiveCluster is that Engines completing work on PCs can be configured to avoid conflicts with regular use of the machine. By configuring an Engine, one can specify at what point other tasks take greater importance, and when a machine is considered idle and ready to take on work. This is called adaptive scheduling, and can be configured to adapt to one's computing environment, be it an office of PCs or a cluster of dedicated servers.
  • With a single-CPU computer; it's easy to determine when this work state takes place. For example, using the Unix Engine, one can specify a minimum and maximum CPU threshold, using the -c and -C switches when running the configure.sh Engine installation script. When non-Engine CPU utilization crosses below the minimum threshold, an Engine is allowed to run; when the maximum CPU usage on the machine is reached, the Engine exits and any Jobs it was processing are rescheduled.
  • With a multi-CPU machine, the processing power is best utilized if an Engine is run on each processor. However, determining a machine's collective available capacity isn't as straightforward as with a single-CPU system. Because of this, Unix Engines have two types of CPU scheduling available to determine how Engines behave with multiprocessor systems.
  • Nonincremental Scheduling.
  • The simple form of CPU scheduling is called absolute, or nonincremental scheduling. In this method, minimum and maximum CPU utilization refers to the total system CPU utilization, and not individual CPU utilization. This total CPU utilization percentage is calculated by adding the CPU utilization for each CPU and dividing by the number of CPUs. For example, if a four-CPU computer has one CPU running at 50% utilization and the other three CPUs are idle, the total utilization for the computer is 12.5%.
  • With nonincremental scheduling, a minimum CPU and maximum CPU are configured, but they refer to the total utilization. Also, they simultaneously apply to all Engines. So if the maximum CPU threshold is set at 25% on a four-CPU machine and four Engines are running, and a non-Engine program pushes the utilization of one CPU to 100%, all four Engines will exit. Note that even if the other three CPUs are idle, their Engines will still exit. In this example, if the minimum CPU threshold was set at 5%, all four Engines would restart when total utilization was below 5%. By default, the Unix Engine uses nonincremental scheduling. Also, Windows Engines always use this method.
  • Incremental Scheduling.
  • Incremental scheduling is an alternate method implemented in Unix Engines to provide better scheduling of when Engines can run on multi-CPU computers. To configure incremental scheduling, use the -I switch when running the configure.sh Engine installation script. With incremental scheduling, minimum CPU and maximum CPU utilization refers to each CPU. For example, if there is an Engine running on each CPU of a multi-CPU system, and the maximum CPU threshold is set at 80%, and a non-Engine program raises CPU utilization above 80% on that CPU, that Engine will exit, and other Engines will continue to run until their CPU reaches the maximum utilization threshold. Also, an Engine would restart on that CPU when that CPU's utilization dropped below the minimum CPU utilization threshold.
  • The CPU scheduler takes the minimum and maximum per/CPU settings specified at Engine installation and normalizes the values relative to total system utilization. When these boundaries are crossed, and Engine is started or shut down and the boundaries are recalculated to reflect the change in running processes. This algorithm is used because, for example, a 50% total CPU load on an eight processor system is typically due to four processes each using 100% of an individual CPU, rather than sixteen processes each using 25% of a CPU.
  • The normalized values are calculated with the following assumptions:
      • 1. System processes will be scheduled such that a single CPU is at maximum load before other CPUs are utilized.
      • 2. For computing maximum thresholds, CPUs which do not have Engines running on them are taken to run at maximum capacity before usage encroaches onto a CPU being used by an Engine.
      • 3. For computing minimum thresholds, CPUs which do not have Engines running on them are taken to be running at least the per/CPU maximum threshold.
  • The normalized utilization of the computer is calculated by the following formulas. The maximum normalized utilization (Unmax) equals:.
      • Unmax=Umax/Ct+[Utot/Ct]×[Ct−Cr]
        Where
      • Umax=Per-CPU maximum (user specified);
      • Utot=Maximum value for CPU utilization (always 100);
      • Ct=Total number of CPUs; and,
      • Cr=Number of CPUs running Engines.
  • The minimum normalized utilization (Unmin) equals:
      • Unmin=Umin/Ct+[Umax/Ct]×[Ct−Cr−1]
        The variables are the same as above, with the addition of Umin=per-CPU minimum.
  • The LiveCluster API.
  • The LiveCluster API is available in both C++, called Driver++, and Java, called JDriver. There is also an XML facility that can be used to configure or script Java-based Job implementations.
  • The Tasklet is analogous with the Servlet interface, part of the Enterprise Java Platform. For example, a Servlet handles web requests, and returns dynamic content to the web user. Similarly, a Tasklet handles a task request given by a Taskinput, and returns the completed task with TaskOutput.
  • The three Java interfaces (TaskInput, TaskOutput, and Tasklet) have corresponding pure abstract classes in C++. There is also one partially implemented class, with several abstract/virtual methods for the developer to define, called Job.
  • The C++ API also introduces one additional class, Serializable, to support serialization of the C++ Task objects.
  • How It Works. To write an application using LiveCluster, one's application should organize the computing problem into units of work, or Jobs. Each Job will be submitted from the Driver to the Server. To create a Job, the following steps take place:
      • Each Job is associated with an instance of Tasklet.
      • One TaskOutput is added to the Job to collect results.
      • The unit of work represented by the Job is divided into Tasks. For each Task, a TaskInput is added to the Job.
      • Each TaskInput is given as input to a Tasklet running on an Engine. The result is returned to a TaskOutput. Each TaskOutput is returned to the Job, where it is processed, stored, or otherwise used by the application.
  • All other handling of the Job space, Engines, and other parts of the system are handled by the Server. The only classes one's program must implement are the Job, Tasklet, TaskletInput, and TaskletOutput. This section discusses each of these interfaces, and the corresponding C++ classes.
  • TaskInput.
  • TaskInput is a marker that represents all of the input data and context information specific to a Task. In Java, TaskInput extends the java Serializable interface:
      • public interface TaskInput extends java.io.Serializable { }. In C++, TaskInput extends the class Serializable, so it must define methods to read and write from a stream (this is discussed in more detail below):
      • class TaskInput: public Serializable {public: virtual .about.TaskInput( ) { } }; The examples show a Monte Carlo approach to calculating Pi (see FIGS. 54-55).
  • TaskOutput. TaskOutput is a marker that represents all of the output data and status information produced by the Task. (See FIGS. 56-57.)
  • Like TaskInput, TaskOutput extends the j ava.io. Serializable interface:
      • public interface TaskOutput extends java.io.Serializable { }
  • Similarly, the C++ version extends the class Serializable, so it must define methods to read and write from a stream:
      • class TaskOutput: public Serializable {public: virtual .about.TaskOutput( ) { } };
  • Tasklet.
  • The Tasklet defines the work to be done on the remote Engines. (See FIGS. 58 and 59A-B.) There is one command-style method, service, that must be implemented.
  • Like TaskInput and TaskOutput, the Java Tasklet extends java.io. Serializable. This means that the Tasklet objects may contain one-time initialization data, which need only be transferred to each Engine once to support many Tasklets from the same Job. (The relationship between Tasklets and TaskInput/TaskOutput pairs is one-to-many.) In particular, for maximum efficiency, shared input data that is common to every task invocation should be placed in the Tasklet, and only data that varies across invocations should be placed in the Taskinputs.
  • As above, the Java implementation requires a default constructor, and any non-transient fields must themselves be serializable:
      • public interface Tasklet extends java.io.Serializable {public TaskOutput service(TaskInput input); }
  • The C++ version is equivalent. It extends the class Serializable, so it must define methods to read and write from a stream:
      • class Tasklet: public Serializable {public: virtual TaskOutput* service(TaskInput*input)=0; virtual .about.Tasklet( ) { } };
  • Job.
  • A Job is simply a collection of Tasks. One must implement three methods:
      • createTaskInputs
      • processTaskOutput
      • processFatalOutput
        (C++ implementations require another method, getLibraryName, which specifies the library that contains the Tasklet implementation to be shipped to the remote Engines.)
  • Implementations of createTaskInputs call addTaskInput to add Tasks to the queue. (See FIGS. 60-61.) In addition, Job defines static methods for instantiating Job objects based on XML configuration scripts and call-backs to notify the application code when the Job is completed or encounters a fatal error. A Job also implements processTaskOutput to read output from each Task and output, process, store, add, or otherwise utilize the results. Both the C++ and Java versions provide both blocking (execute) and non-blocking (executeInThread) job execution methods, and execute locally to run the job in the current process. This last function is useful for debugging prior to deployment.
  • JobOptions.
  • Each Job is equipped with a JobOptions object, which contains various parameter settings. The getOptions method of the Job class can be used to get or set options in the JobOptions object for that Job. A complete list of all methods available for the JobOptions object is available in the API reference documentation. Some commonly used methods include setJobName, setJarFile, and setDiscriminator.
  • setjobname.
  • By default, the name associated with a Job and displayed in the Administration Tool is a long containing a unique number. One can set a name that will also be displayed in the Administration Tool with the Job ID. For example, if one's Job is named job, add this code:
      • job.getoptions( ).setJobname(“Job Number 9”);
  • setJarFile.
  • A difference between the C++ and Java versions of the Driver API has to do with the mechanism for distributing code to the Engines.
  • For both APIs, the favored mechanism of code distribution involves distributing the Jar file containing the concrete class definitions to the Engines using the directory replication mechanism. The C++ version supports this mechanism. The dynamic library containing the implementation of the concrete classes must be distributed to the Engines using the native code distribution mechanism, and the corresponding Job implementation must define getLibraryName to specify the name of this library, for example picalc (for picalc.dll onWin32 or libpicalc.so on Unix).
  • With Java, a second method is also available, which can be used during development. The other method of distributing concrete implementations for the Tasklet, TaskInput, and TaskOutput is to package them in a Jar file, which is typically placed in the working directory of the Driver application. In this case, the corresponding Job implementation calls setJarFile with the name of this Jar file prior to calling one of the execute methods, and the Engines pull down a serialized copy of the file when they begin work on the corresponding Task. This method requires the Engine to download the classes each time a Job is run.
  • setDiscriminator.
  • A discriminator is a method of controlling what Engines accept a Task. FIG. 76 contains sample code that sets a simple property discriminator.
  • Additional C++ Classes: Serializable.
  • The C++ API incorporates a class Serializable, since object serialization is not a built-in feature of the C++ language. This class (see FIG. 62) provides the mechanism by which the C++ application code and the LiveCluster middleware exchange object data. It contains two pure virtual methods that must be implemented in any class that derives from it (i.e., in TaskInput, TaskOutput, and Tasklet).
  • API Extensions.
  • The LiveCluster API contains several extensions to classes, providing specialized methods of handling data. These extensions can be used in special cases to improve performance or enable access to information in a database.
  • DataSetJob and TaskDataSet.
  • A TaskDataSet is a collection of TaskInputs that persist on the Server as the input for any subsequent DataSetJob. The TaskInputs get cached on the Engine for subsequent use for the TaskDataSet. This API is therefore appropriate for doing repeated calculations or queries on large datasets. All Jobs using the same DataSetJob will all use the TaskInputs added to the TaskDataSet, even though their Tasklets may differ.
  • Also, TaskInputs from a set are cached on Engines. Engines which request a task from a Job will first be asked to use input that already exists in its cache. If it has no input in its cache, or if other Engines have already taken input in its cache, it will download a new input, and cache it.
  • An ideal use of TaskDataSet would be when running many Jobs on a very large dataset. Normally, one would create TaskInputs with a new copy of the large dataset for each Job, and then send this large TaskInputs to Engines and incur a large amount of transfer overhead each time another Job is run. Instead, the TaskDataSet can be created once, like a database of TaskInputs. Then, small Tasklets can be created that use the TaskDataSet for input, like a query on a database. As more jobs are run on this session, the inputs become cached among more Engines, increasing performance.
  • Creating a TaskDataSet.
  • To create a TaskDataSet, first construct a new TaskDataSet, then add inputs to it using the addTaskInput method. (See FIG. 63.) If one is using a stream, one can also use the createTaskInput method. After one has finished adding inputs, call the doneSubmitting method. If a name is assigned using setName, that will be used for subsequent references to the session; otherwise, a name will be assigned. The set will remain on the Server until destroy is called, even if the Java VM that created it exits.
  • Creating a DataSetJob.
  • After creating a TaskDataSet, implement the Job using DataSetJob, and create a TaskOutput. (See FIG. 64.) The main difference is that to run the Job, one must use setTaskDataSet to specify the dataset one created earlier. Note that the ExecuteLocally method cannot be used with the DataSetJob.
  • StreamJob and StreamTasklet.
  • A StreamJob is a Job which allows one to create input and read output via streams rather than using defined objects. (See FIG. 65.) A StreamTasklet reads data from an InputStream and writes to an OutputStream, instead of using a TaskInput and TaskOutput. When the StreamJob writes input to a stream, the data is written directly to the local file system, and given to Engines via a lightweight webserver. The Engine also streams the data in via the StreamTasklet. In this way, the memory overhead on the Driver, Broker, and Engine is reduced, since an entire TaskInput does not need to be loaded into memory for transfer or processing. The StreamTasklet must be used with a StreamJob.
  • SQLDataSetJob and SQLTasklet.
  • Engines can use information in an SQL database as input to complete a Task by the use of SQL. An SQLDataSetJob queries the database and receives a result set. Each SQLTasklet is given a subset of the result set as an input. This feature is only available from the Java Driver.
  • Starting the Database.
  • To use an SQL database, one must first have a running database with a JDBC interface. (See FIG. 66.) The sample code loads a properties file called sqltest.properties. It contains properties used by the database, plus the properties tasks and query, which are used in our Job. (See FIG. 67.)
  • SQLDataSetJob.
  • An SQLDataSetJob is created by implementing DataSetjob. (See FIG. 67) Task inputs are not created, as they will be from the SQL database. (See FIG. 68.)
  • SQLTasklet.
  • An SQLTasklet is implemented similar to a normal Tasklet, except the input is an SQL table. (See FIG. 69.)
  • Running the Job.
  • After defining a TaskOutput, the Job can be run. The SQLDataSet is created on the server and is prepared with setJDBCProperties, setMode, setQuery, and prepare. Then the Job is run. (See FIG. 70.) Note that in order to use most recent information in the database, the SQLDataSet needs to be destroyed and created again. This may be important if one is using a frequently updated database.
  • Discriminators.
  • This section explains how to use Engine Discriminators, a powerful method of controlling which Engines are eligible to receive specific Jobs.
  • About Discriminators.
  • In a typical business environment, not every PC will be identical. Some departments may have slower machines that are utilized less. Other groups may have faster PCs, but it may be a priority to use them to capacity during the day. And server farms of dedicated machines may be available all the time, without being interrupted by foreground tasks.
  • Depending on the Jobs one has and the general demographics of one's computing environment, the scheduling of Tasks to Engines may not be linear. And sometimes, a specific Job may require special handling to ensure the optimal resources are available for it. Also, in some LiveCluster installations, you one want to limit what Engines report to a given Broker for work. Or, one may want to limit what Driver submits work to a given Broker.
  • A discriminator enables one to specify what Engines can be assigned to a Task, what Drivers can submit Tasks to a Broker, and what Engines can report to a Broker. These limitations are set based on properties given to Engines or Drivers. Task discrimination is set in the Driver properties, and controls what Engines can be assigned to a Task. Broker discrimination is set in the LiveCluster Administration Tool, and controls what Drivers and Engines use that Broker.
  • For example: say one is implementing LiveCluster at a site that has 1000 PCs. However, 300 of the PCs are slower machines used by the Marketing department, and they are rarely idle. The Job will require a large amount of CPU time from each Engine processing tasks. Without using discriminators, the Tasks are sent to the slower machines and are regularly interrupted. This means that roughly 30% of the time, a Task will be scheduled on a machine that might not complete any work.
  • Discriminators provide a solution to this issue. First, one would deploy Engines to all of one's computers; Marketing computers would have a department property set to Marketing, and the rest of the machines in the company would have the department property set to something other than Marketing. Next, when the application sends a complex Job with the LiveCluster API, it attaches a Task discriminator specifying not to send any Tasks from the Job to any Engine with the department property set to Marketing. The large Job's Tasks will only go to Engines outside of Marketing, and smaller Jobs with no Task discriminator set will have Tasks processed by any Engine in the company, including those in Marketing.
  • Configuring Engines with Properties:
  • Default Properties. An Engine has several properties set by default, with values corresponding to the configuration of the PC running the Engine. One can use these properties to set discriminators. The default properties, available in all Engines, are as follows:
      • guid -The GUID (network card address)
      • id—The numerical ID of the Engine instance; The instance, for multi-processor machines
      • usemame—The Engine's username
      • cpuNo—The number of CPUs on the machine
      • cpuMFlops—The performance, in Megaflops
      • totalMemInKB—Total available memory, in Kilobytes
      • freeMemInKB—Free memory, in Kilobytes
      • freeDiskInMB—Free disk space, in Megabytes
      • os—Operating system (win32, solaris or linux)
  • Custom Properties.
  • To set other properties, one can add the properties to the Engine Tracker, and install the Engine using tracking. One may also add and changes properties individually after installation using the Engine Properties command.
  • In Windows:
  • To add custom properties to an Engine, in the LiveCluster Administration Tool, one must make changes using the Engine Tracking Editor. After one changes the properties in the editor, one will be prompted for values for the properties each time one installs an Engine with the 1-Click Install with Tracking option. One can also change these at any time on any Engine with the Engine Properties command.
  • To access the editor, go to the Conrigure section, and click Engine Tracking Editor.
  • By default, the following properties are defined:
      • MachineName—hostname of the machine where the Engine is being installed;
      • Group—work group to attach Engine;
      • Location—machine location;
      • Description—brief description of machine.
  • When one installs an Engine with the 1-Click Install with Tracking option, one will be prompted to enter values for all four of the properties. If one doesn't want to use all four properties, one may click the Remove button next to the properties one does not want to use. (Note that you cannot remove the MachineName property.)
  • To add another property to the above list, enter the property name in the Property column, then enter a description of the property in the Description column, and click Add.
  • Configuring Driver Properties.
  • Broker discrimination can be configured to work on either Engines or Drivers. For discrimination on Drivers, one can add or modify properties in the driver properties file included in the top-level directory of the Driver distribution.
  • Configuring Broker Discriminators.
  • One can configure a Broker to discriminate which Engines and Drivers from which it will accept login sessions. This can be done from the LiveCluster Administration Tool by selecting Broker Discrimination in the Configure section.
  • First, select the Broker to be configured from the list at the top of the page. If one is only running a single Broker, there will only be one entry in this list.
  • One can configure discriminators for both Driver properties and Engine properties. For Drivers, a discriminator is set in the Driver properties, and it prevents Tasks from a defined group of Drivers from being taken by this Broker. For Engines, a discriminator prevents the Engine from being able to log in to a Broker and take Tasks from it.
  • Each discriminator includes a property, a comparator, and a value. The property is the property defined in the Engine or Driver, such as a group, OS or CPU type. The value can be either a number (double) or string. The comparator compares the property and value. If they are true, the discriminator is matched, and the Engine can accept a Task, or the Driver can submit a Job. If they are false, the Driver is returned the Task, or in the case of an Engine, the Broker will try to send the Task to another Engine.
  • The following comparators are available:
      • equals—A string that must equal the client's value for the property.
      • not equals—A string that must not equal the client's value for the property.
      • includes—A comma-delimited string that must equal the client's value for that property. (“*” means accept all.)
      • excludes—A comma-delimited string that cannot equal the client's value for that property. (“*” means deny all.)
  • =—The value is a number (double, for any to be used) that must equal the value for that property.
      • !=T- he value is a number (double, for any to be used) that must not equal the value for that property.
      • <—The value is a number, the client's value must be less than this value.
      • ≦—The value is a number, the client's value must be less than or equal to this value.
      • >—The value is a number, the client's value must be greater than this value.
      • ≧=—The value is a number, the client's value must be greater than or equal to this value.
  • One further option for each discriminator is the Negate other Brokers box. When this is selected, an Engine or Driver will be considered only for this Broker, and no others. For example, if one has a property named state and one sets a discriminator for when state equals NY and selects Negate other Brokers, any Engine with state set to NY will only go to this Broker and not others.
  • Once you has entered a property, comparator, and value, click Add. One can add multiple discriminators to a Broker by defining another discriminator and clicking Add again. Click Save to save all added discriminators to the Broker.
  • By default, if an Engine or Driver does not contain the property specified in the discriminator, the discriminator is not evaluated and considered false. However, one can select Ignore Missing Properties for both the Driver and Engine. This makes an Engine or Driver missing the property specified in a discriminator ignore the discriminator and continue. For example, if one sets a discriminator for OS=Linux, and an Engine doesn't have an OS property, normally the Broker won't give the Engine Jobs. But if one selects Ignore Missing Properties, the Engine without properties will still get Jobs from the Broker.
  • Task discriminators are set by the Driver, either in Java or in XML. (See FIG. 76.)
  • The LiveCluster Tutorial.
  • This section provides details on how to obtain examples of using the LiveCluster API.
  • Using JNI Example.
  • Often, the application, or some portion of it, is written in another (native) programming language such as C, C++, or Fortran, but it is convenient to use Java as the glue that binds the compute server to the application layer. In these cases the Java Native Interface (JNI) provides a simple mechanism for passing data and function calls between Java and the native code. [Note: One must create a separate wrapper to access the dynamically linked library (.dll or .so) from the Engine-side and insert a call to this wrapper in the service( ) method of the Tasklet interface.]
  • FIGS. 77-79 provide an example of a JNI for the previously-discussed Pi calculation program.
  • Submitting a LiveCluster Job.
  • Using Java, jobs can be submitted to a LiveCluster Server in any of three ways:
  • From the command line, using XML scripting:
      • java -cp DSDriverjar MyApp picalc.xml
  • This method uses properties from the driver.properties file located in the same directory as the Driver. One can also specify command-line properties.
  • At runtime using one of the createJob methods (this supports partial scripting of the Job Bean).
      • PiCalcJob job=(PiCalcJob) Job.createJob(new File(picalc.xml));
      • job.execute( );
      • double pi=job.getPiValue( );
      • At runtime (entirely).
      • PiCalcjob job=new PiCalcJob( );
      • job.getOptions( ).setJarFile(new File(picalcjar));
      • job.setIterations(30000000);
      • job.setNumTasks(500);
      • job.execute( );
      • double pi=job.getpivalue( );
  • XML scripting also supports the Batch object, which enables one to submit a Job once and have it run many times on a regular schedule.
  • Using C++, jobs must be submitted to a LiveCluster Server using the run-time interface:
    job = new PiJob( );
    try {
    job->execute( ); // or executeInThread( ) or executeLocally( )
    }
    catch (JobException je) {
    cerr << “testJob caught an exception” << je << endl;
    }
    delete job;
  • Driver Properties.
  • Properties can be defined in the driver.properties file, located in the same directory as the Driver. One can edit this file and add properties, as property=value pairs. One can also specify properties on the command line using the -D switch, if they are prefixed with ds. For example:
      • java -Dds.DSPrimaryDirector=server1:80-
      • -Dds.DSSecondaryDirector=server2:80
      • -cp DSDriverjar MyApp picalc.xml
  • Properties specified on the command line are overwritten by properties specified in the driver.properties file. If one wants to set a property already defined in the driver.properties, one must first edit the driver.properties and comment out the property.
  • Using the Direct Data Transfer Property.
  • Direct data transfer is enabled by setting DSDirectDataTransfer=true, which is the default setting in the driver.properties file. If one writes a shell script to create Jobs, each with their own Driver running from its own Java VM, one's script must provide a different port number for the DSWebserverPort property normally set in the driver.properties file. If one's script instantiates multiple Drivers from the same driver.properties file with the same port number, the first Driver will open a web server listening to the defined socket. Subsequent Drivers will not open another web server as long as the first Job is running, but will be able to continue running by using the first Job's server for direct data. However when the first Job completes, its server will be terminated, causing subsequent Jobs to fail.
  • To write a shell script for the above situation, one could remove the DSWebserverPort property from the driver.properties file and set aunique port number for each Job using a command line property, as described in the previous section.
  • XML Job Scripting.
  • LiveCluster is packaged with XML-based scripting facilities one can use to create and configure Jobs. (see FIG. 80.) Since Java Jobs are JavaBeans components, their properties can be manipulated via XML and other Bean-compatible scripting facilities.
  • Batch Jobs.
  • Jobs can be scheduled to run on a regular basis. Using XML scripting, one can submit a Job with specific scheduling instructions. Instead of immediately entering the queue, the Job will wait until the time and date specified in the instructions given.
  • Batch Jobs can be submitted to run at a specific absolute time, or a relative time, such as every hour. Also, a Batch Job can remain active, resubmitting a Job on a regular basis.
  • See, for example, FIG. 81, which submits the Linpack test at 11:20 AM on Sep. 28, 2001. The batch element contains the entire script, while the schedule element contains properties for type and startTime, defining when the Job will runjob actually runs the Job when it is time, and contains properties needed to run the Job, while command also runs at the same time, writing a message to a log.
  • Distributing Libraries, Shared Data, and Native Code.
  • The LiveCluster system provides a simple, easy-to-use mechanism for distributing linked libraries (.dll or .so), Java class archives (jar), or large data files that change relatively infrequently. The basic idea is to place the files to be distributed within a reserved directory associated with the Server. The system maintains a synchronized replica of the reserved directory structure for each Engine. This is called directory replication.
  • By default, four directories are replicated to Engines: win32, solaris, and linux directories are mirrored to Engines run on the respective operating systems, and shared is mirrored to all Engines.
  • The default location for these four directories are as follows:
      • public_html/updates/resources/shared/
      • public_html/updates/resources/win32/
      • public_html/updates/resources/solaris/
      • public_html/updates/resources/linux/
  • On the Server, these paths are relative to one's installation directory. For example, if one installs LiveCluster at c:\DataSynapse, one should append these paths to C:\DataSynapse\Server\livecluster on your server. On the Engine, the default installation in Windows puts the shared and win32 directories in C:\Program Files\DataSynapse\Engine\resources.
  • To configure directory replication, in the Administration Tool, go to the Configure section, and select Broker Configuration. Select Engine Manager, then Engine File Update Server.
  • When Auto Update Enabled is set to true (the default), the shared directories will automatically be mirrored to any Engine upon login to the Broker. Also, the Server will check for file changes in these directories at the time interval specified in Minutes Per Check. If changes are found, all Engines are signaled to make an update.
  • One can force all Engines to update immediately by setting Update All Now to true. This will cause all Engines to update, and then its value will return to false. If one has installed new files and wants all Engines to use them immediately, set this option to true.
  • Verifying the Application.
  • Before deploying any application in a distributed environment, one should verify that it operates correctly in a purely local setting, on a single processor. The executeLocally( ) method in the Job class is provided for this purpose. Calling this method results in synchronous execution on the local processor; that is, the constituent Tasks execute sequentially on the local processor, without any intermediation from a Broker or distribution to remote Engines.
  • Optimizing LiveCluster Server Architecture.
  • The LiveCluster Server architecture can be deployed to give varying degrees of redundancy and load sharing, depending on the computing resources available. Before installation, it's important to ascertain how LiveCluster will be used, estimate the volume and frequency of jobs, and survey what hardware and networking will be used for the installation. First, it's important to briefly review the architecture of a Server. The LiveCluster Server consists of two entities: the LiveCluster Director and the LiveCluster Broker:
      • Director—Responsible for authenticating Engines and initiating sessions between Engines and Brokers, or Drivers and Brokers. Each LiveCluster installation must have a Primary Director. Optionally, a LiveCluster installation can have a Secondary Director, to which Engines will log in if the Primary Director fails.
      • Broker—Responsible for managing jobs by assigning tasks to Engines. Every LiveCluster installation must have at least one Broker, often located on the same system as the primary Director. If more than one Broker is installed, then a Broker may be designated as a Failover Broker; it accepts Engines and Drivers only if all other Brokers fail.
  • A minimal configuration of LiveCluster would consist of a single Server configured as a Primary Director, with a single Broker. Additional Servers containing more Brokers or Directors can be added to address three primary concerns: redundancy, volume, and other considerations.
  • Redundancy.
  • Given a minimal configuration of a single Director and single Broker, Engines and Drivers will log in to the Director, but failure of the Director (either by excessive volume, Server failure, or network failure) would mean a Driver or Engine not logged in would no longer be able to contact a Director to establish a connection.
  • To prevent this, redundancy can be built into the LiveCluster architecture. One method is to run a second Server with a Secondary Director, and configure Engines and Drivers with the address of both Directors. When the Primary Director fails, the Engine or Driver will contact the Secondary Director, which contains identical Engine configuration information and will route Engines and Drivers to Brokers in the same manner as the Primary Director. FIG. 82 shows an exemplary implementation with two Servers.
  • In addition to redundant Directors, a Broker can also have a backup on a second Server. A Broker can be designated a Failover Broker on a second Server during installation. Directors will only route Drivers and Engines to Failover Brokers if no other regular Brokers are available. When regular Brokers then become available, nothing further is routed to the Failover Broker. When a Failover Broker has finished processing any remaining jobs, it logs off all Engines, and Engines are then no longer routed to that Failover Broker. FIG. 82 shows a Failover Broker on the second Server.
  • Volume.
  • In larger clusters, the volume of Engines in the cluster may require more capability than can be offered by a single Broker. To distribute load, additional Brokers can be added to other Servers at installation. For example, FIG. 83 shows a two Server system with two Brokers. Drivers and Engines will be routed to these Brokers in round-robin fashion.
  • Other Considerations.
  • Several other factors may influence how one may integrate LiveCluster with an existing computing environment. These include:
      • Instead of using one Cluster for all types of Jobs, one may wish to segregate different subsets of jobs (for example, by size or priority) to different Directors.
      • One's network may dictate how the Server environment should be planned. For example, if one has offices in two parts of the country and a relatively slow extranet but a fast intranet in each location, one could install a Server in each location.
      • Different Servers can support data used for different job types. For example, one Server can be used for Jobs accessing a SQL database, and a different Server can be used for jobs that don't access the database.
  • With this flexibility, it's possible to architect a Server model to provide a job space that will facilitate job traffic.
  • Configuring a Network.
  • Since LiveCluster is a distributed computing application, successful deployment will depend on one's network configuration. LiveCluster has many configuration options to help it work with existing networks. LiveCluster Servers should be treated the same way one treats other mission-critical file and application servers: assign LiveCluster Servers static IP addresses and resolvable DNS hostnames. LiveCluster Engines and Drivers can be configured in several different ways. To receive the full benefit of peer-to-peer communication, one will need to enable communication between Engines and Drivers (the default), but LiveCluster can also be configured to work with a hub and spoke architecture by disabling Direct Data Transfer.
  • Name Service.
  • LiveCluster Servers should run on systems with static IP addresses and resolvable DNS hostnames. In a pure Windows environment, it is possible to run LiveCluster using just WINS name resolution, but this mode is not recommended for larger deployments or heterogeneous environments.
  • Protocols and Port Numbers.
  • LiveCluster uses the Internet Protocol (IP). All Engine-Server, Driver-Server, and Engine-Driver communication is via the HTTP protocol. Server components, Engines, and Drivers can be configured to use port 80 or any other available TCP port that is convenient for one's network configuration.
  • All Director-Broker communication is via TCP. The default Broker login TCP port is 2000, but another port can be specified at installation time. By default, after the Broker logs in, another pair of ephemeral ports is assigned for further communication. The Broker and Director can also be configured to use static ports for post-login communication.
  • Server-Engine and Driver-Server Communication.
  • All communication between Engines and Servers (Directors and Brokers) and between Drivers and Servers is via the HTTP protocol, with the Engine or Driver acting as HTTP client and the Server acting as HTTP server. (See FIG. 84.)
  • The Server can be configured to work with an NAT device between the Server and the Engines or Drivers. To do this, specify the external (translated) address of the NAT device when referring to the Server address in Driver and Engine installation.
  • Win32 LiveCluster Engines can also support an HTTP proxy for communication between the Engine and the Broker. If the default HTML browser is configured with an HTTP proxy, the Win32 Engine will detect the proxy configuration and use it. However, since all LiveCluster communication is dynamic, the HTTP proxy is effectively useless, and for this reason it is preferred not to use an HTTP proxy.
  • Broker-Director Communication.
  • Communication between Brokers and Directors is via TCP. (See FIG. 85.) By default, the Broker will log in on port 2000, and ephemeral ports will then be assigned for further communication. This configuration does not permit a firewall or screening router between the Brokers and Directors. If a firewall or screening router must be supported between Brokers and Directors, then the firewall or screening must have the Broker login port (default 2000) open. Additionally, the Brokers must be configured to use static ports for post-login communication, and those ports must be open on the firewall as well.
  • Direct Data Transfer.
  • By default, LiveCluster uses Direct Data Transfer, or peer-to-peer communication, to optimize data throughput between Drivers and Engines. (See FIGS. 86-87.) Without Direct Data Transfer, all task inputs and outputs must be sent through the Server. Sending the inputs and outputs through the Server will result in higher memory and disk use on the Server, and lower throughput overall.
  • With Direct Data Transfer, only lightweight messages are sent though the Server, and the “heavy lifting” is done by the Driver and Engine nodes themselves. Direct data transfer requires that each peer knows the IP address that he presents to other peers. In most cases, therefore, Direct Data Transfer precludes the use of NAT between the peers. Likewise, Direct Data Transfer does not support proxies.
  • For LiveCluster deployments where NAT is already in.effect, NAT between Drivers and Engines can be supported by disabling peer-to-peer communication as follows:
      • If, from the perspective of the Drivers, the Engines appear to be behind an NAT device, then the Engines cannot provide peer-to-peer communication, because they won't know their NAT address. In this case Direct Data Transfer must be disabled in the Engine configuration.
      • Likewise, if, from the perspective of the Engines, the Drivers appear to be behind an NAT device, then the Drivers cannot provide peer-to-peer communication, as they do not know their NAT address. In this case Direct Data Transfer must be disabled in the Driver properties.
  • While the foregoing has described the invention by recitation of its various aspects/features and illustrative embodiment (s) thereof, those skilled in the art will recognize that alternative elements and techniques, and/or combinations and sub-combinations of the described elements and techniques, can be substituted for, or added to, those described herein. The present invention, therefore, should not be limited to, or defined by, the specific apparatus, methods, and articles-of-manufacture described herein, but rather by the appended claims (and others that may be contained in continuing applications), which claims are intended to be construed in accordance with well-settled principles of claim construction, including, but not limited to, the following:
      • Limitations should not be read from the specification or drawings into the claims (i.e., if the claim calls for a “chair,” and the specification and drawings show a rocking chair, the claim term “chair” should not be limited to a rocking chair, but rather should be construed to cover any type of “chair”).
      • The words “comprising,” “including,” and “having” are always open-ended, irrespective of whether they appear as the primary transitional phrase of a claim, or as a transitional phrase within an element or sub-element of the claim (e.g., the claim “a widget comprising: A; B; and C” would be infringed by a device containing 2A's, B, and 3C's; also, the claim a gizmo comprising: A; B, including X, Y, and Z; and C, having P and Q” would be infringed by a device containing 3A's, 2X's, 3Y's, Z, 6P's, and Q).
      • The indefinite articles “a” or “an” mean “one or more”; where, instead, a purely singular meaning is intended, a phrase such as “one,” “only one,” or “a single,” will appear.
      • Where the phrase “means for” precedes a data processing or manipulation “function,” it is intended that the resulting means-plus-function element be construed to cover any, and all, computer implementation(s) of the recited “function” using any standard programming techniques known by, or available to, persons skilled in the computer programming arts.
      • A claim that contains more than one computer-implemented means-plus-function element should not be construed to require that each means-plus-function element must be a structurally distinct entity (such as a particular piece of hardware or block of code); rather, such claim should be construed merely to require that the overall combination of hardware/firmware/software which implements the invention must, as a whole, implement at least the function(s) called for by the claim.
  • In light of the above, and reserving all rights to seek additional claims covering any subject matter disclosed herein,

Claims (42)

1. A distributed computing system, comprising:
a plurality of engines that perform assigned computational tasks;
at least one broker that manages jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) ajob id, and (iii) ajob priority, the task(s) associated with each job organized into at least three groups including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having at least (i) a task id and (ii) a task priority;
the at least one broker configured to assign waiting task(s) to available engine(s); and,
a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
2. A distributed computing system, comprising:
a plurality of engines that perform assigned computational tasks;
at least one primary broker that manages jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) a job priority, the task(s) associated with each job organized into at least three groups including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having at least (i) a task id and (ii) a task priority;
the at least one primary broker configured to assign waiting task(s) to available engine(s); and,
at least one failover broker that performs the fimctions of the primary broker in the event of a primary broker failure.
3. A distributed computing system, as defined in claim 2, wherein the at least one failover broker operates on a different server than the primary broker.
4. A distributed computing system, as defined in claim 3, further comprising:
a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
5. A distributed computing system, as defined in claim 3, wherein said at least one broker includes a scheduler that operates in at least two modes.
6. A distributed computing system, as defined in claim 5, wherein said at least two modes include (i) a first mode that gives greater execution preference to higher priority jobs and (ii) a second mode that gives less execution preference to higher priority jobs.
7. A distributed computing system, as defined in claim 4, further comprising at least one cache that provides a data storage area for data used by tasks.
8. A distributed computing system, as defined in claim 7, wherein the cache permits data sharing among jobs.
9. A distributed computing system, as defined in claim 5, further comprising at least one cache that provides a data storage area for data used by tasks.
10. A distributed computing system, as defined in claim 5, further comprising a batch administration tool that manages execution of batch job(s).
11. A distributed computing system, comprising:
at least one client application that submits job(s) for execution, each job including (i) one or more tasks and (ii) a job priority;
a plurality of engines that execute assigned tasks;
at least one broker that manages jobs submitted for execution by client application(s), the task(s) associated with each job organized into at least three groups including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, each task having an associated task priority, the at least one broker configured to assign waiting task(s) to available engine(s); and,
a messaging API that sends input data to, and receives output data from, executing task(s).
12. A distributed computing system, as defined in claim 11, wherein each job further includes an associated job id.
13. A distributed computing system, as defined in claim 12, wherein each task further includes an associated task id.
14. A distributed computing system, as defined in claim 12, further comprising a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
15. A distributed computing system, as defined in claim 11, further comprising at least one cache that provides a data storage area for data used by tasks.
16. A distributed computing system, as defined in claim 15, wherein the cache permits data sharing among jobs.
17. A distributed computing system, as defined in claim 11, wherein said at least one broker includes a job scheduler that implements at least two scheduling strategies.
18. A distributed computing system, as defined in claim 17, wherein a first scheduling strategy allocates a larger share of available resource(s) to higher priority job(s) than a second scheduling strategy.
19. A distributed computing system, as defined in claim 11, further comprising at least one failover broker that performs the functions of the broker if the broker fails to perform.
20. A distributed computing system, as defined in claim 19, wherein the broker and the at least one failover broker operate on different servers.
21. A method for operating a distributed computing system, the method comprising:
using a plurality of engines to execute assigned computational tasks;
using at least one broker to manage jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) a job id, and (iii) a job priority;
organizing the task(s) associated with each job into at least three categories, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine;
configuring the at least one broker to assign waiting task(s) to available engine(s); and,
providing a graphical user interface that (i) displays status information for jobs and (ii) allows a user to modify job priorities.
22. A method for operating a distributed computing system, as defined in claim 21, further comprising:
associating a task id and a task priority with each task.
23. A method for operating a distributed computing system, the method comprising:
executing assigned computational tasks using a plurality of network-connected engines;
using at least one network-connected primary broker to manage jobs submitted for execution by client applications, each job including (i) one or more tasks, (ii) ajob id, and (iii) ajob priority; and,
if the at least one primary broker encounters a failure, automatically replacing the primary broker with at least one failover broker that performs the ftmctions of the primary broker.
24. A method for operating a distributed computing system, as defined in claim 23, further comprising:
organizing the task(s) associated with each job into at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine; and,
using the at least one primary broker or the at least one failover broker to assign waiting task(s) to available engine(s).
25. A method for operating a distributed computing system, as defined in claim 23, further comprising associating a task id and (ii) a task priority with each task.
26. A method for operating a distributed computing system, as defined in claim 23, wherein the at least one failover broker operates on a different server than the primary broker.
27. A method for operating a distributed computing system, as defined in claim 26, further comprising:
providing a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
28. A method for operating a distributed computing system, as defined in claim 23, further comprising providing at least two scheduling strategies.
29. A method for operating a distributed computing system, as defined in claim 28, wherein a first scheduling strategy gives greater execution preference to higher priority jobs and a second scheduling strategy gives less execution preference to higher priority jobs.
30. A method for operating a distributed computing system, as defined in claim 23, further comprising caching data used by tasks.
31. A method for operating a distributed computing system, as defined in claim 30, further comprising sharing cached data among jobs.
32. A method for operating a distributed computing system, as defined in claim 23, further comprising managing execution of batch job(s) using a batch administration tool.
33. A method for operating a distributed computing system, comprising:
allowing a client application to submits job(s) for execution, each job including (i) one or more tasks and (ii) a job priority;
using a plurality of engines to execute assigned tasks;
using at least one broker to manage execution of submitted job(s) by (1) maintaining the task(s) associated with each job in at least three groups, including (a) waiting tasks that have not yet been assigned to an engine for execution, (b) pending tasks that have been assigned to an engine for execution, but have not yet completed executing, and (c) completed tasks that have completed execution on an assigned engine, and (2) using associated task priorities to assign waiting task(s) to available engine(s); and, using a messaging API to send input data to, and receive output data from, executing task(s).
34. A method for operating a distributed computing system, as defined in claim 33, further comprising associating a job id with each job.
35. A method for operating a distributed computing system, as defined in claim 34, further comprising associating a task id with each task.
36. A method for operating a distributed computing system, as defined in claim 34, further comprising providing a graphical user interface capable of (i) displaying status information for jobs and (ii) allowing a user to modify job priorities.
37. A method for operating a distributed computing system, as defined in claim 33, further comprising using at least one cache as a data storage area for data used by tasks.
38. A method for operating a distributed computing system, as defined in claim 37, further comprising using the cache to share data among jobs.
39. A method for operating a distributed computing system, as defined in claim 34, further comprising using at least two scheduling strategies to assign available resource(s) to waiting task(s).
40. A method for operating a distributed computing system, as defined in claim 39, wherein a first scheduling strategy allocates a larger share of available resource(s) to task(s) associated with higher priority job(s) than a second scheduling strategy.
41. A method for operating a distributed computing system, as defined in claim 40, further comprising using at least one failover broker to perform the functions of the broker if the broker fails to perform.
42. A method for operating a distributed computing system, as defined in claim 41, wherein the broker and the at least one failover broker operate on different servers.
US11/248,381 2002-02-04 2005-10-11 Distributed computing Abandoned US20060195508A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US11/248,381 US20060195508A1 (en) 2002-11-27 2005-10-11 Distributed computing
US11/981,137 US8195739B2 (en) 2002-02-04 2007-10-31 Adaptive polling

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US10/306,689 US7093004B2 (en) 2002-02-04 2002-11-27 Using execution statistics to select tasks for redundant assignment in a distributed computing platform
US11/248,381 US20060195508A1 (en) 2002-11-27 2005-10-11 Distributed computing

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US10/306,689 Continuation US7093004B2 (en) 2002-02-04 2002-11-27 Using execution statistics to select tasks for redundant assignment in a distributed computing platform

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US11/981,137 Continuation US8195739B2 (en) 2002-02-04 2007-10-31 Adaptive polling

Publications (1)

Publication Number Publication Date
US20060195508A1 true US20060195508A1 (en) 2006-08-31

Family

ID=28675194

Family Applications (3)

Application Number Title Priority Date Filing Date
US10/306,689 Expired - Fee Related US7093004B2 (en) 2002-02-04 2002-11-27 Using execution statistics to select tasks for redundant assignment in a distributed computing platform
US11/248,381 Abandoned US20060195508A1 (en) 2002-02-04 2005-10-11 Distributed computing
US11/981,137 Expired - Lifetime US8195739B2 (en) 2002-02-04 2007-10-31 Adaptive polling

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US10/306,689 Expired - Fee Related US7093004B2 (en) 2002-02-04 2002-11-27 Using execution statistics to select tasks for redundant assignment in a distributed computing platform

Family Applications After (1)

Application Number Title Priority Date Filing Date
US11/981,137 Expired - Lifetime US8195739B2 (en) 2002-02-04 2007-10-31 Adaptive polling

Country Status (1)

Country Link
US (3) US7093004B2 (en)

Cited By (100)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040215973A1 (en) * 2003-04-25 2004-10-28 Spotware Technologies, Inc. System for authenticating and screening grid jobs on a computing grid
US20050235092A1 (en) * 2004-04-15 2005-10-20 Raytheon Company High performance computing system and method
US20050235055A1 (en) * 2004-04-15 2005-10-20 Raytheon Company Graphical user interface for managing HPC clusters
US20050235286A1 (en) * 2004-04-15 2005-10-20 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US20050234846A1 (en) * 2004-04-15 2005-10-20 Raytheon Company System and method for computer cluster virtualization using dynamic boot images and virtual disk
US20050246569A1 (en) * 2004-04-15 2005-11-03 Raytheon Company System and method for detecting and managing HPC node failure
US20050251567A1 (en) * 2004-04-15 2005-11-10 Raytheon Company System and method for cluster management based on HPC architecture
US20050289231A1 (en) * 2004-06-24 2005-12-29 Fujitsu Limited System analysis program, system analysis method, and system analysis apparatus
US20060106931A1 (en) * 2004-11-17 2006-05-18 Raytheon Company Scheduling in a high-performance computing (HPC) system
US20060117208A1 (en) * 2004-11-17 2006-06-01 Raytheon Company On-demand instantiation in a high-performance computing (HPC) system
US20060143498A1 (en) * 2004-12-09 2006-06-29 Keisuke Hatasaki Fail over method through disk take over and computer system having fail over function
US20060155799A1 (en) * 2004-12-28 2006-07-13 Fujitsu Limited High-speed information processing apparatus, high-speed information processing method, and high-speed information processing program
US20070028098A1 (en) * 2005-07-28 2007-02-01 International Business Machines Corporation Encrypting units of work based on a trust level
US7283935B1 (en) * 2006-10-30 2007-10-16 Bank Of America Corporation Method and apparatus for monitoring grid-based computing resources
US20080005327A1 (en) * 2006-06-28 2008-01-03 Hays Kirk I Commodity trading computing resources
US20080052490A1 (en) * 2006-08-28 2008-02-28 Tableau, Llc Computational resource array
US20080052429A1 (en) * 2006-08-28 2008-02-28 Tableau, Llc Off-board computational resources
US20080052525A1 (en) * 2006-08-28 2008-02-28 Tableau, Llc Password recovery
US20080104197A1 (en) * 2006-10-30 2008-05-01 Bank Of America Corporation Method and apparatus for distribution of data among computing resources
US20080126472A1 (en) * 2006-08-28 2008-05-29 Tableau, Llc Computer communication
US20080148219A1 (en) * 2006-10-03 2008-06-19 John Ousterhout Process automation system and method having a hierarchical architecture with multiple tiers
WO2008094907A3 (en) * 2007-01-30 2008-10-16 Alibaba Group Holding Ltd Distributed task system and distributed task management method
US20080301685A1 (en) * 2007-05-31 2008-12-04 Novell, Inc. Identity-aware scheduler service
US20090106008A1 (en) * 2007-10-18 2009-04-23 Michael John Branson Performance sampling in distributed systems
US20090112988A1 (en) * 2007-10-24 2009-04-30 Francois Colon Method and instantaneous messaging system for mobile terminals equipped with a virtual presence server allowing an instantaneous messaging session to be managed automatically
US20090177671A1 (en) * 2008-01-03 2009-07-09 Accenture Global Services Gmbh System and method for automating etl application
US7571270B1 (en) 2006-11-29 2009-08-04 Consentry Networks, Inc. Monitoring of shared-resource locks in a multi-processor system with locked-resource bits packed into registers to detect starved threads
US20090248754A1 (en) * 2008-03-27 2009-10-01 Daniel Lipton Providing resumption data in a distributed processing system
US20100023645A1 (en) * 2008-07-28 2010-01-28 Trading Technologies International, Inc. System and Method for Dynamically Managing Message Flow
US7676788B1 (en) 2003-03-25 2010-03-09 Electric Cloud, Inc. Architecture and method for executing program builds
US20100186020A1 (en) * 2009-01-20 2010-07-22 Sap Ag System and method of multithreaded processing across multiple servers
US20100218250A1 (en) * 2007-09-28 2010-08-26 Nippon Telegraph And Telephone Corp. Network monitoring apparatus, network monitoring method, and network monitoring program
US20100223204A1 (en) * 2005-09-27 2010-09-02 Mikhail Zborovskiy Hybrid multi-thread and multi-process computer simulation system and method
US20100262948A1 (en) * 2009-04-10 2010-10-14 John Eric Melski Architecture and method for versioning registry entries in a distributed program build
US20100281487A1 (en) * 2009-05-03 2010-11-04 Research In Motion Limited Systems and methods for mobility server administration
US20100306005A1 (en) * 2009-05-29 2010-12-02 Perceptive Software, Inc. Workflow Management System and Method
US20100306779A1 (en) * 2009-05-29 2010-12-02 Perceptive Software, Inc. Workflow management system and method
US7886265B2 (en) 2006-10-03 2011-02-08 Electric Cloud, Inc. Process automation system and method employing property attachment techniques
US20110066758A1 (en) * 2009-09-16 2011-03-17 Kabushiki Kaisha Toshiba Scheduling apparatus and method
US20110173637A1 (en) * 2010-01-12 2011-07-14 Eric Jason Brandwine Managing private use of program execution capacity
US20110196909A1 (en) * 2009-08-12 2011-08-11 Schlumberger Technology Corporation Node to Node Collaboration
US8042089B2 (en) 2006-10-03 2011-10-18 Electric Cloud, Inc. Process automation system and method employing multi-stage report generation
US20120005670A1 (en) * 2010-06-30 2012-01-05 Sap Ag Distributed cloud computing architecture
US8108258B1 (en) 2007-01-31 2012-01-31 Intuit Inc. Method and apparatus for return processing in a network-based system
US20120110584A1 (en) * 2010-10-29 2012-05-03 Google Inc. System and method of active risk management to reduce job de-scheduling probability in computer clusters
US20120144385A1 (en) * 2010-12-02 2012-06-07 International Business Machines Corporation System, method and program product to manage installation of programs
US8224993B1 (en) 2009-12-07 2012-07-17 Amazon Technologies, Inc. Managing power consumption in a data center
US20120185560A1 (en) * 2011-01-13 2012-07-19 Keisuke Mera Data collecting device, computer readable medium, and data collecting system
US8249904B1 (en) 2008-12-12 2012-08-21 Amazon Technologies, Inc. Managing use of program execution capacity
US20130060832A1 (en) * 2007-11-22 2013-03-07 Telefonaktiebolaget L M Ericsson (Publ) Method and device for agile computing
US20130132947A1 (en) * 2011-11-18 2013-05-23 Compuware Corporation Execution pathway for interfacing with legacy programs in a mainframe environment
US20130132961A1 (en) * 2011-11-21 2013-05-23 David Lehavi Mapping tasks to execution threads
US8488220B1 (en) 2007-10-22 2013-07-16 Data Recognition Corporation Method and apparatus for calibrating imaging equipment
US20130219224A1 (en) * 2012-02-17 2013-08-22 Nec Corporation Job continuation management apparatus, job continuation management method and job continuation management program
US20130218901A1 (en) * 2012-02-16 2013-08-22 Apple Inc. Correlation filter
US8526055B1 (en) 2007-10-22 2013-09-03 Data Recognition Corporation Standardized test and survey imaging system
CN103428272A (en) * 2013-07-16 2013-12-04 无限极(中国)有限公司 System and method for monitoring and scheduling of middleware threads
US8640137B1 (en) * 2010-08-30 2014-01-28 Adobe Systems Incorporated Methods and apparatus for resource management in cluster computing
US8649601B1 (en) 2007-10-22 2014-02-11 Data Recognition Corporation Method and apparatus for verifying answer document images
US8738659B1 (en) * 2007-10-22 2014-05-27 Data Recognition Corporation Method and apparatus for managing priority in standardized test and survey imaging
US8752075B1 (en) * 2013-02-26 2014-06-10 Xilinx, Inc. Method for data transport
US8868855B2 (en) 2011-02-28 2014-10-21 Hewlett-Packard Development Company, L.P. Request management system and method for dynamically managing prioritized requests
US8886744B1 (en) * 2003-09-11 2014-11-11 Oracle America, Inc. Load balancing in multi-grid systems using peer-to-peer protocols
US20140359182A1 (en) * 2013-05-29 2014-12-04 Ivan I. Georgiev Methods and apparatus facilitating access to storage among multiple computers
WO2014209348A1 (en) * 2013-06-28 2014-12-31 Empire Technology Development Llc Task management on computing platforms
US8954492B1 (en) * 2011-11-30 2015-02-10 F5 Networks, Inc. Methods for inlining content externally referenced in a web page prior to providing the web page to a requestor and devices thereof
US9043799B1 (en) 2010-12-30 2015-05-26 Iqnavigator, Inc. Managing access to a shared resource by tracking active requestor job requests
US9069782B2 (en) 2012-10-01 2015-06-30 The Research Foundation For The State University Of New York System and method for security and privacy aware virtual machine checkpointing
US9081620B1 (en) * 2003-09-11 2015-07-14 Oracle America, Inc. Multi-grid mechanism using peer-to-peer protocols
US20150227442A1 (en) * 2014-02-11 2015-08-13 Saudi Arabian Oil Company Circumventing Load Imbalance in Parallel Simulations Caused by Faulty Hardware Nodes
US20150379424A1 (en) * 2014-06-30 2015-12-31 Amazon Technologies, Inc. Machine learning service
US20160050294A1 (en) * 2014-08-12 2016-02-18 Microsoft Corporation Distributed workload reassignment following communication failure
US9280386B1 (en) * 2011-07-14 2016-03-08 Google Inc. Identifying task instance outliers based on metric data in a large scale parallel processing system
US9374243B1 (en) 2010-09-14 2016-06-21 Amazon Technologies, Inc. Managing operational throughput for shared resources
US9454630B1 (en) 2013-02-26 2016-09-27 Xilinx, Inc. Graphical representation of integrated circuits
US9491221B1 (en) * 2012-12-05 2016-11-08 Google Inc. System and method for brokering distributed computation
US9665432B2 (en) 2014-08-07 2017-05-30 Microsoft Technology Licensing, Llc Safe data access following storage failure
US9710397B2 (en) 2012-02-16 2017-07-18 Apple Inc. Data migration for composite non-volatile storage device
WO2017131794A1 (en) * 2016-01-31 2017-08-03 Hewlett Packard Enterprise Development Company Lp Graph analytics system
US9767284B2 (en) 2012-09-14 2017-09-19 The Research Foundation For The State University Of New York Continuous run-time validation of program execution: a practical approach
US9767271B2 (en) 2010-07-15 2017-09-19 The Research Foundation For The State University Of New York System and method for validating program execution at run-time
WO2018104799A1 (en) * 2016-12-07 2018-06-14 Tata Consultancy Services Limited Systems and methods for scheduling tasks and managing computing resource allocation for closed loop control systems
US10061577B2 (en) 2014-10-14 2018-08-28 Electric Cloud, Inc. System and method for optimizing job scheduling within program builds
US10101808B2 (en) 2004-06-21 2018-10-16 Trading Technologies International, Inc. Attention-based trading display for providing user-centric information updates
US10110503B2 (en) 2010-03-29 2018-10-23 Amazon Technologies, Inc. Managing committed processing rates for shared resources
US10176015B2 (en) 2015-09-25 2019-01-08 Microsoft Technology Licensing, Llc Progress visualization of computational job
US10182013B1 (en) 2014-12-01 2019-01-15 F5 Networks, Inc. Methods for managing progressive image delivery and devices thereof
US10460387B2 (en) 2013-12-18 2019-10-29 Trading Technologies International, Inc. Dynamic information configuration and display
US10467691B2 (en) 2012-12-31 2019-11-05 Trading Technologies International, Inc. User definable prioritization of market information
WO2018226740A3 (en) * 2017-06-05 2020-01-16 Balanced Media Technology, LLC Platform for collaborative processing of computing tasks
US10540606B2 (en) * 2014-06-30 2020-01-21 Amazon Technologies, Inc. Consistent filtering of machine learning data
US10884789B2 (en) 2018-11-16 2021-01-05 International Business Machines Corporation Process tracking
US11012371B2 (en) 2011-12-05 2021-05-18 Amazon Technologies, Inc. Queued workload service in a multi tenant environment
US11379755B2 (en) 2014-06-30 2022-07-05 Amazon Technologies, Inc. Feature processing tradeoff management
EP4155937A1 (en) * 2021-09-27 2023-03-29 FUJIFILM Business Innovation Corp. Information processing system, information processing apparatus, program, and information processing method
EP4120080A4 (en) * 2020-04-15 2023-04-12 Straitdeer Pte. Ltd. Data processing method and apparatus, electronic device, and system
US11763190B2 (en) 2018-03-26 2023-09-19 Balanced Media Technology, LLC Abstracted interface for gamification of machine learning algorithms
US11838851B1 (en) 2014-07-15 2023-12-05 F5, Inc. Methods for managing L7 traffic classification and devices thereof
US11895138B1 (en) 2015-02-02 2024-02-06 F5, Inc. Methods for improving web scanner accuracy and devices thereof
WO2024033502A1 (en) * 2022-08-11 2024-02-15 Vmi Holland B.V. Flexible tablet dispensing, inspection and packaging systems

Families Citing this family (290)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6505123B1 (en) 2000-07-24 2003-01-07 Weatherbank, Inc. Interactive weather advisory system
US7093004B2 (en) * 2002-02-04 2006-08-15 Datasynapse, Inc. Using execution statistics to select tasks for redundant assignment in a distributed computing platform
US7103628B2 (en) * 2002-06-20 2006-09-05 Jp Morgan Chase & Co. System and method for dividing computations
US7464138B2 (en) * 2002-03-29 2008-12-09 International Business Machines Corporation Mirror queue in a shared queue environment
US7571221B2 (en) * 2002-04-03 2009-08-04 Hewlett-Packard Development Company, L.P. Installation of network services in an embedded network server
US7330894B2 (en) * 2002-04-19 2008-02-12 International Business Machines Corporation System and method for preventing timeout of a client
US7171479B2 (en) * 2002-04-26 2007-01-30 International Business Machines Corporation Efficient delivery of boot code images from a network server
US8020162B2 (en) * 2002-07-19 2011-09-13 International Business Machines Corporation Employing a resource broker in managing workloads of a peer-to-peer computing environment
US7243145B1 (en) * 2002-09-30 2007-07-10 Electronic Data Systems Corporation Generation of computer resource utilization data per computer application
US7437446B2 (en) * 2002-09-30 2008-10-14 Electronic Data Systems Corporation Reporting of abnormal computer resource utilization data
US7383550B2 (en) * 2002-12-23 2008-06-03 International Business Machines Corporation Topology aware grid services scheduler architecture
US8032439B2 (en) * 2003-01-07 2011-10-04 Jpmorgan Chase Bank, N.A. System and method for process scheduling
US20040219579A1 (en) * 2003-02-19 2004-11-04 Natasha Aziz Methods of diagnosis of cancer, compositions and methods of screening for modulators of cancer
JP4077352B2 (en) * 2003-03-31 2008-04-16 株式会社日立製作所 Load balancing method, execution system thereof, and processing program thereof
US7644408B2 (en) * 2003-04-25 2010-01-05 Spotware Technologies, Inc. System for assigning and monitoring grid jobs on a computing grid
US7137019B2 (en) * 2003-04-30 2006-11-14 International Business Machines Corporation Adaptive throttling system for data processing systems
US7533389B2 (en) * 2003-06-20 2009-05-12 Sun Microsystems, Inc. Dynamic loading of remote classes
US20050033625A1 (en) * 2003-08-06 2005-02-10 International Business Machines Corporation Method, apparatus and program storage device for scheduling the performance of maintenance tasks to maintain a system environment
US7596790B2 (en) * 2003-08-29 2009-09-29 Intel Corporation Allocating computing resources in a distributed environment
US7379884B2 (en) * 2003-09-11 2008-05-27 International Business Machines Corporation Power on demand tiered response time pricing
US20050114469A1 (en) * 2003-09-16 2005-05-26 Manabu Nakamura Information processing apparatus with a network service function and method of providing network services
US7523116B2 (en) * 2003-10-30 2009-04-21 International Business Machines Corporation Selection of optimal execution environment for software applications
US7559062B2 (en) * 2003-10-30 2009-07-07 Alcatel Lucent Intelligent scheduler for multi-level exhaustive scheduling
US7313786B2 (en) * 2003-11-26 2007-12-25 International Business Machines Corporation Grid-enabled ANT compatible with both stand-alone and grid-based computing systems
US8726278B1 (en) 2004-07-21 2014-05-13 The Mathworks, Inc. Methods and system for registering callbacks and distributing tasks to technical computing works
US7693847B1 (en) * 2004-07-13 2010-04-06 Teradata Us, Inc. Administering workload groups
US7406691B2 (en) * 2004-01-13 2008-07-29 International Business Machines Corporation Minimizing complex decisions to allocate additional resources to a job submitted to a grid environment
US7562143B2 (en) * 2004-01-13 2009-07-14 International Business Machines Corporation Managing escalating resource needs within a grid environment
US7552437B2 (en) * 2004-01-14 2009-06-23 International Business Machines Corporation Maintaining application operations within a suboptimal grid environment
US20050165912A1 (en) * 2004-01-23 2005-07-28 Colbeck Scott J. GUI-based grid computing data management apparatus method and system
US7071525B2 (en) * 2004-01-27 2006-07-04 International Rectifier Corporation Merged P-i-N schottky structure
US20080235317A1 (en) * 2004-01-27 2008-09-25 Tom Burgmans System and Method For Providing an Extended Computing Capacity
WO2005098674A1 (en) * 2004-03-12 2005-10-20 Thomson Licensing System and method for scheduling downloading in a cached network environment
US8782654B2 (en) 2004-03-13 2014-07-15 Adaptive Computing Enterprises, Inc. Co-allocating a reservation spanning different compute resources types
US7856493B1 (en) * 2004-03-17 2010-12-21 Cisco Technology, Inc. Method and apparatus providing device-initiated network management
US7630862B2 (en) * 2004-03-26 2009-12-08 Microsoft Corporation Load test simulator
US20050268300A1 (en) * 2004-05-14 2005-12-01 Microsoft Corporation Distributed task scheduler for computing environments
US20060048157A1 (en) * 2004-05-18 2006-03-02 International Business Machines Corporation Dynamic grid job distribution from any resource within a grid environment
US7266547B2 (en) 2004-06-10 2007-09-04 International Business Machines Corporation Query meaning determination through a grid service
US7584274B2 (en) * 2004-06-15 2009-09-01 International Business Machines Corporation Coordinating use of independent external resources within requesting grid environments
US7756919B1 (en) 2004-06-18 2010-07-13 Google Inc. Large-scale data processing in a distributed and parallel processing enviornment
US7590620B1 (en) 2004-06-18 2009-09-15 Google Inc. System and method for analyzing data records
US20070266388A1 (en) 2004-06-18 2007-11-15 Cluster Resources, Inc. System and method for providing advanced reservations in a compute environment
US20060209695A1 (en) * 2005-03-15 2006-09-21 Archer Shafford R Jr Load balancing in a distributed telecommunications platform
US7908313B2 (en) * 2004-07-21 2011-03-15 The Mathworks, Inc. Instrument-based distributed computing systems
US8521687B2 (en) 2004-08-03 2013-08-27 International Business Machines Corporation Apparatus, system, and method for selecting optimal replica sources in a grid computing environment
US20060037021A1 (en) * 2004-08-12 2006-02-16 International Business Machines Corporation System, apparatus and method of adaptively queueing processes for execution scheduling
US8176490B1 (en) 2004-08-20 2012-05-08 Adaptive Computing Enterprises, Inc. System and method of interfacing a workload manager and scheduler with an identity manager
US20060075057A1 (en) * 2004-08-30 2006-04-06 International Business Machines Corporation Remote direct memory access system and method
US8364849B2 (en) 2004-08-30 2013-01-29 International Business Machines Corporation Snapshot interface operations
US20060048160A1 (en) * 2004-09-02 2006-03-02 International Business Machines Corporation Method, apparatus, and computer program product for providing a self-tunable parameter used for dynamically yielding an idle processor
US7712100B2 (en) * 2004-09-14 2010-05-04 International Business Machines Corporation Determining a capacity of a grid environment to handle a required workload for a virtual grid job request
US7765552B2 (en) 2004-09-17 2010-07-27 Hewlett-Packard Development Company, L.P. System and method for allocating computing resources for a grid virtual system
US7650347B2 (en) * 2004-10-01 2010-01-19 Computer Associates Think, Inc. System and method for job scheduling and distributing job scheduling
US8171474B2 (en) * 2004-10-01 2012-05-01 Serguei Mankovski System and method for managing, scheduling, controlling and monitoring execution of jobs by a job scheduler utilizing a publish/subscription interface
US20060075079A1 (en) * 2004-10-06 2006-04-06 Digipede Technologies, Llc Distributed computing system installation
CA2586763C (en) 2004-11-08 2013-12-17 Cluster Resources, Inc. System and method of providing system jobs within a compute environment
US7475274B2 (en) 2004-11-17 2009-01-06 Raytheon Company Fault tolerance and recovery in a high-performance computing (HPC) system
US20060129675A1 (en) * 2004-11-22 2006-06-15 Intel Corporation System and method to reduce platform power utilization
US20060167966A1 (en) * 2004-12-09 2006-07-27 Rajendra Kumar Grid computing system having node scheduler
US8544008B2 (en) * 2004-12-10 2013-09-24 Nxp B.V. Data processing system and method for cache replacement using task scheduler
US8533717B2 (en) * 2004-12-14 2013-09-10 Sap Ag Fast platform independent inter-process communication
US7593930B2 (en) * 2004-12-14 2009-09-22 Sap Ag Fast channel architecture
US20060168584A1 (en) * 2004-12-16 2006-07-27 International Business Machines Corporation Client controlled monitoring of a current status of a grid job passed to an external grid environment
US7552153B2 (en) * 2004-12-28 2009-06-23 Sap Ag Virtual machine monitoring using shared memory
US7694065B2 (en) 2004-12-28 2010-04-06 Sap Ag Distributed cache architecture
US7672949B2 (en) * 2004-12-28 2010-03-02 Sap Ag Connection manager having a common dispatcher for heterogeneous software suites
US20060143256A1 (en) 2004-12-28 2006-06-29 Galin Galchev Cache region concept
US8204931B2 (en) 2004-12-28 2012-06-19 Sap Ag Session management within a multi-tiered enterprise network
US7500133B2 (en) * 2004-12-28 2009-03-03 Sap Ag Connection manager for handling message oriented protocol-based requests
US7539821B2 (en) 2004-12-28 2009-05-26 Sap Ag First in first out eviction implementation
US7971001B2 (en) 2004-12-28 2011-06-28 Sap Ag Least recently used eviction implementation
US7523196B2 (en) 2004-12-28 2009-04-21 Sap Ag Session monitoring using shared memory
US7591006B2 (en) * 2004-12-29 2009-09-15 Sap Ag Security for external system management
US20060143061A1 (en) * 2004-12-29 2006-06-29 Microsoft Corporation MultiPass scheduling system
US7590623B2 (en) * 2005-01-06 2009-09-15 International Business Machines Corporation Automated management of software images for efficient resource node building within a grid environment
US7562035B2 (en) 2005-01-12 2009-07-14 International Business Machines Corporation Automating responses by grid providers to bid requests indicating criteria for a grid job
US7571120B2 (en) * 2005-01-12 2009-08-04 International Business Machines Corporation Computer implemented method for estimating future grid job costs by classifying grid jobs and storing results of processing grid job microcosms
US20060161469A1 (en) 2005-01-14 2006-07-20 Weatherbank, Inc. Interactive advisory system
US8832121B2 (en) 2005-02-02 2014-09-09 Accuweather, Inc. Location-based data communications system and method
US20060190938A1 (en) * 2005-02-22 2006-08-24 Capek Peter G System and method for predictive idle-time task initiation
US7779424B2 (en) * 2005-03-02 2010-08-17 Hewlett-Packard Development Company, L.P. System and method for attributing to a corresponding virtual machine CPU usage of an isolated driver domain in which a shared resource's device driver resides
US7797707B2 (en) * 2005-03-02 2010-09-14 Hewlett-Packard Development Company, L.P. System and method for attributing to a corresponding virtual machine CPU usage of a domain in which a shared resource's device driver resides
US9075657B2 (en) 2005-04-07 2015-07-07 Adaptive Computing Enterprises, Inc. On-demand access to compute resources
US8863143B2 (en) 2006-03-16 2014-10-14 Adaptive Computing Enterprises, Inc. System and method for managing a hybrid compute environment
US9231886B2 (en) 2005-03-16 2016-01-05 Adaptive Computing Enterprises, Inc. Simple integration of an on-demand compute environment
US8589562B2 (en) 2005-04-29 2013-11-19 Sap Ag Flexible failover configuration
US7870568B2 (en) * 2005-06-07 2011-01-11 Datasynapse, Inc. Adaptive shared computing infrastructure for application server-based deployments
US7584281B2 (en) * 2005-06-07 2009-09-01 Datasynapse, Inc. Method for allocating shared computing infrastructure for application server-based deployments
US20060282421A1 (en) * 2005-06-10 2006-12-14 International Business Machines Corporation Unilaterally throttling the creation of a result set in a federated relational database management system
US20070006070A1 (en) * 2005-06-30 2007-01-04 International Business Machines Corporation Joining units of work based on complexity metrics
US7966412B2 (en) 2005-07-19 2011-06-21 Sap Ag System and method for a pluggable protocol handler
WO2007038445A2 (en) 2005-09-26 2007-04-05 Advanced Cluster Systems, Llc Clustered computer system
US8819119B2 (en) 2005-11-10 2014-08-26 The Mathworks, Inc. Dynamic definition for concurrent computing environments
US7634530B2 (en) * 2005-11-10 2009-12-15 The Mathworks, Inc. Dynamic definition for concurrent computing environments
US9329897B2 (en) * 2005-11-10 2016-05-03 The Mathworks, Inc. Use of dynamic profiles for creating and using a distributed computing environment
US8495613B2 (en) * 2005-12-22 2013-07-23 Microsoft Corporation Program execution service windows
US9049205B2 (en) * 2005-12-22 2015-06-02 Genesys Telecommunications Laboratories, Inc. System and methods for locating and acquisitioning a service connection via request broadcasting over a data packet network
US7953816B2 (en) * 2006-01-10 2011-05-31 International Business Machines Corporation Virtual memory technique for efficiently solving connected problems in a distributed environment
US8229467B2 (en) 2006-01-19 2012-07-24 Locator IP, L.P. Interactive advisory system
US7979531B2 (en) * 2006-02-08 2011-07-12 Cisco Technology, Inc. Method and system for network management data collection
US8584122B2 (en) * 2006-03-31 2013-11-12 Ebay Inc. Batch scheduling
US7831902B2 (en) * 2006-05-31 2010-11-09 Microsoft Corporation Displaying interrelated changes in a grid
US8082289B2 (en) 2006-06-13 2011-12-20 Advanced Cluster Systems, Inc. Cluster computing support for application programs
WO2007145238A1 (en) * 2006-06-16 2007-12-21 Nec Corporation Information processing system, and load dispersing method
JP4830659B2 (en) * 2006-06-16 2011-12-07 富士ゼロックス株式会社 Droplet discharge device
US20080010642A1 (en) * 2006-06-30 2008-01-10 Maclellan Scot Method, system and computer program for scheduling execution of work units with monitoring of progress thereof
GB0613923D0 (en) * 2006-07-13 2006-08-23 Ibm A method, apparatus and software for managing processing for a plurality of processors
US8782671B2 (en) * 2006-07-26 2014-07-15 Hewlett-Packard Development Company, L. P. Systems and methods for flexibly controlling resource usage by a driver domain on behalf of a virtual machine
US7725577B2 (en) * 2006-07-31 2010-05-25 Sap Ag Method and system to adaptively manage the quality of service of interactions between smart item networks and enterprise applications
US7480827B2 (en) 2006-08-11 2009-01-20 Chicago Mercantile Exchange Fault tolerance and failover using active copy-cat
US8244718B2 (en) 2006-08-25 2012-08-14 Teradata Us, Inc. Methods and systems for hardware acceleration of database operations and queries
US8082546B2 (en) * 2006-09-29 2011-12-20 International Business Machines Corporation Job scheduling to maximize use of reusable resources and minimize resource deallocation
JP5250955B2 (en) * 2006-10-05 2013-07-31 富士通株式会社 Data processing system backup control apparatus and system
US7779453B2 (en) * 2006-10-12 2010-08-17 International Business Machines Corporation Routing method and system
US8447872B2 (en) * 2006-11-01 2013-05-21 Intel Corporation Load balancing in a storage system
KR101384902B1 (en) * 2006-12-15 2014-04-15 삼성전자주식회사 Method and apparatus for preventing omission of schedule and overlapping execution due to change in time
US9104483B2 (en) * 2007-01-18 2015-08-11 International Business Machines Corporation System and method for automating and scheduling remote data transfer and computation for high performance computing
US8634814B2 (en) 2007-02-23 2014-01-21 Locator IP, L.P. Interactive advisory system for prioritizing content
US8510741B2 (en) * 2007-03-28 2013-08-13 Massachusetts Institute Of Technology Computing the processor desires of jobs in an adaptively parallel scheduling environment
US8789052B2 (en) * 2007-03-28 2014-07-22 BlackBery Limited System and method for controlling processor usage according to user input
US20100235843A1 (en) * 2007-04-04 2010-09-16 Bae Systems Plc. Improvements relating to distributed computing
US8151271B2 (en) * 2007-06-30 2012-04-03 Abhishek Khanna Load balancing algorithm
US8862625B2 (en) 2008-04-07 2014-10-14 Teradata Us, Inc. Accessing data in a column store database based on hardware compatible indexing and replicated reordered columns
US8458129B2 (en) 2008-06-23 2013-06-04 Teradata Us, Inc. Methods and systems for real-time continuous updates
US7966343B2 (en) 2008-04-07 2011-06-21 Teradata Us, Inc. Accessing data in a column store database based on hardware compatible data structures
US9424315B2 (en) * 2007-08-27 2016-08-23 Teradata Us, Inc. Methods and systems for run-time scheduling database operations that are executed in hardware
US20090077550A1 (en) * 2007-09-13 2009-03-19 Scott Rhine Virtual machine schedular with memory access control
US8041773B2 (en) 2007-09-24 2011-10-18 The Research Foundation Of State University Of New York Automatic clustering for self-organizing grids
US8255249B1 (en) * 2007-10-19 2012-08-28 Sprint Communications Company L.P. Project equipment allocation planning tool
US8185902B2 (en) 2007-10-31 2012-05-22 International Business Machines Corporation Method, system and computer program for distributing a plurality of jobs to a plurality of computers
US11347771B2 (en) * 2007-11-28 2022-05-31 International Business Machines Corporation Content engine asynchronous upgrade framework
US20090138822A1 (en) * 2007-11-28 2009-05-28 International Business Machines Corporation Method of flexibly blocking out busy-time in calendars
US10096061B2 (en) 2008-03-20 2018-10-09 Leap Systems, Inc. Financial modeling systems and methods
US8151272B2 (en) * 2008-04-07 2012-04-03 At&T Intellectual Property I, Lp Optimized usage of collector resources for performance data collection through even task assignment
US8219582B2 (en) 2008-04-25 2012-07-10 International Business Machines Corporation System, method, and computer readable media for identifying a user-initiated log file record in a log file
US7882232B2 (en) * 2008-09-29 2011-02-01 International Business Machines Corporation Rapid resource provisioning with automated throttling
US9002721B2 (en) * 2008-10-08 2015-04-07 Appirio, Inc. System and method for project management and completion
US8671412B2 (en) * 2008-10-24 2014-03-11 International Business Machines Corporation Calculating and communicating level of carbon offsetting required to compensate for performing a computing task
US9723048B2 (en) * 2008-10-29 2017-08-01 Oracle International Corporation System and method for providing timer affinity through notifications within a session-based server deployment
US8806611B2 (en) * 2008-12-02 2014-08-12 At&T Intellectual Property I, L.P. Message administration system
US7890644B2 (en) * 2009-01-07 2011-02-15 Sony Corporation Parallel tasking application framework
US8266477B2 (en) 2009-01-09 2012-09-11 Ca, Inc. System and method for modifying execution of scripts for a job scheduler using deontic logic
US8868782B2 (en) * 2009-03-10 2014-10-21 Telefonaktiebolaget L M Ericsson (Publ) System and methods for a managed application server restart
US8510538B1 (en) 2009-04-13 2013-08-13 Google Inc. System and method for limiting the impact of stragglers in large-scale parallel data processing
US8458690B2 (en) * 2009-04-29 2013-06-04 Microsoft Corporation Automated software deployment triggered by state differences in distributed systems
US8307368B2 (en) * 2009-05-26 2012-11-06 Microsoft Corporation Locality-based scheduling in continuation-based runtimes
US8418181B1 (en) * 2009-06-02 2013-04-09 Amazon Technologies, Inc. Managing program execution based on data storage location
US8719831B2 (en) * 2009-06-18 2014-05-06 Microsoft Corporation Dynamically change allocation of resources to schedulers based on feedback and policies from the schedulers and availability of the resources
JP5393304B2 (en) * 2009-07-09 2014-01-22 富士通株式会社 Distributed processing system, information processing apparatus, and distributed processing method
US8479216B2 (en) 2009-08-18 2013-07-02 International Business Machines Corporation Method for decentralized load distribution in an event-driven system using localized migration between physically connected nodes and load exchange protocol preventing simultaneous migration of plurality of tasks to or from a same node
US8479215B2 (en) * 2009-08-18 2013-07-02 International Business Machines Corporation Decentralized load distribution to reduce power and/or cooling costs in an event-driven system
DE102009060553A1 (en) * 2009-08-24 2011-03-03 Vitaphone Gmbh Method and system for storing and evaluating data, in particular vital data
US8458324B2 (en) 2009-08-25 2013-06-04 International Business Machines Corporation Dynamically balancing resources in a server farm
US10877695B2 (en) 2009-10-30 2020-12-29 Iii Holdings 2, Llc Memcached server functionality in a cluster of data processing nodes
US11720290B2 (en) 2009-10-30 2023-08-08 Iii Holdings 2, Llc Memcached server functionality in a cluster of data processing nodes
US9697481B2 (en) * 2009-12-23 2017-07-04 Siemens Aktiengesellschaft Method for operating a hospital information system
US8898287B2 (en) * 2010-02-24 2014-11-25 Salesforce.Com, Inc. System, method and computer program product for monitoring data activity utilizing a shared data store
US8549125B2 (en) * 2010-03-11 2013-10-01 International Business Machines Corporation Environmentally sustainable computing in a distributed computer network
US11348148B2 (en) * 2010-05-26 2022-05-31 Userzoom Technologies, Inc. Systems and methods for an intelligent sourcing engine for study participants
US8683495B1 (en) * 2010-06-30 2014-03-25 Emc Corporation Sync point coordination providing high throughput job processing across distributed virtual infrastructure
US8543687B2 (en) * 2010-07-22 2013-09-24 International Business Machines Corporation Moving deployment of images between computers
US20140068625A1 (en) * 2010-10-21 2014-03-06 Paul Winser Data processing systems
CN103154978B (en) * 2010-10-27 2018-03-30 慧与发展有限责任合伙企业 For dispatching the system and method changed
TWI415427B (en) 2010-11-04 2013-11-11 Ind Tech Res Inst System and method for peer-to-peer live streaming
US8819056B2 (en) * 2010-11-19 2014-08-26 International Business Machines Corporation Facilitation of search, list, and retrieval operations on persistent data set using distributed shared memory
US8612190B2 (en) 2010-12-28 2013-12-17 Sap Ag Derived simulations for planning systems
US8635626B2 (en) * 2010-12-29 2014-01-21 Sap Ag Memory-aware scheduling for NUMA architectures
US8484649B2 (en) * 2011-01-05 2013-07-09 International Business Machines Corporation Amortizing costs of shared scans
US9164806B2 (en) * 2011-01-28 2015-10-20 Oracle International Corporation Processing pattern framework for dispatching and executing tasks in a distributed computing grid
US9262229B2 (en) 2011-01-28 2016-02-16 Oracle International Corporation System and method for supporting service level quorum in a data grid cluster
US9063852B2 (en) 2011-01-28 2015-06-23 Oracle International Corporation System and method for use with a data grid cluster to support death detection
US9201685B2 (en) 2011-01-28 2015-12-01 Oracle International Corporation Transactional cache versioning and storage in a distributed data grid
US9081839B2 (en) 2011-01-28 2015-07-14 Oracle International Corporation Push replication for use with a distributed data grid
US8863136B2 (en) * 2011-05-19 2014-10-14 International Business Machines Corporation Lock control in multiple processor systems
US8949305B1 (en) * 2011-07-15 2015-02-03 Scale Computing, Inc. Distributed dynamic system configuration
US20130042247A1 (en) * 2011-08-11 2013-02-14 Alcatel-Lucent Usa Inc. Starvationless Kernel-Aware Distributed Scheduling of Software Licenses
US9792419B2 (en) * 2011-08-11 2017-10-17 Alcatel-Lucent Usa Inc. Starvationless kernel-aware distributed scheduling of software licenses
US8918794B2 (en) * 2011-08-25 2014-12-23 Empire Technology Development Llc Quality of service aware captive aggregation with true datacenter testing
US8909696B1 (en) * 2011-11-02 2014-12-09 Google Inc. Redundant data requests with redundant response cancellation
TWI454949B (en) 2011-12-26 2014-10-01 Ind Tech Res Inst Distributed resource management systems and methods for resource management thereof
CN103246550A (en) * 2012-02-09 2013-08-14 深圳市腾讯计算机系统有限公司 Multitask dispatching method and system based on capacity
US9588994B2 (en) * 2012-03-02 2017-03-07 International Business Machines Corporation Transferring task execution in a distributed storage and task network
US9477529B2 (en) 2012-06-20 2016-10-25 International Business Machines Corporation Job distributed within a grid environment using mega-host groupings of execution hosts based on resource attributes
JP6218833B2 (en) * 2012-08-20 2017-10-25 キャメロン,ドナルド,ケヴィン Processing resource allocation
US8527645B1 (en) * 2012-10-15 2013-09-03 Limelight Networks, Inc. Distributing transcoding tasks across a dynamic set of resources using a queue responsive to restriction-inclusive queries
US9824127B2 (en) 2012-10-22 2017-11-21 Workday, Inc. Systems and methods for interest-driven data visualization systems utilized in interest-driven business intelligence systems
US9405812B2 (en) 2012-10-22 2016-08-02 Platfora, Inc. Systems and methods for providing performance metadata in interest-driven business intelligence systems
US9767173B2 (en) 2012-10-22 2017-09-19 Workday, Inc. Systems and methods for interest-driven data sharing in interest-driven business intelligence systems
US9934299B2 (en) 2012-10-22 2018-04-03 Workday, Inc. Systems and methods for interest-driven data visualization systems utilizing visualization image data and trellised visualizations
JP5949506B2 (en) * 2012-11-30 2016-07-06 富士通株式会社 Distributed processing method, information processing apparatus, and program
US9400682B2 (en) * 2012-12-06 2016-07-26 Hewlett Packard Enterprise Development Lp Ranking and scheduling of monitoring tasks
US9264751B2 (en) * 2013-02-15 2016-02-16 Time Warner Cable Enterprises Llc Method and system for device discovery and content management on a network
US9405811B2 (en) * 2013-03-08 2016-08-02 Platfora, Inc. Systems and methods for interest-driven distributed data server systems
US9448839B2 (en) 2013-03-08 2016-09-20 Oracle International Corporation Backoff job queue polling mechanism
US9292713B2 (en) * 2013-03-13 2016-03-22 Intel Corporation Tiered access to on chip features
JP6157181B2 (en) * 2013-04-02 2017-07-05 キヤノン株式会社 Server system, control method thereof, and program thereof
US9331943B2 (en) * 2013-09-10 2016-05-03 Robin Systems, Inc. Asynchronous scheduling informed by job characteristics and anticipatory provisioning of data for real-time, parallel processing
US9892178B2 (en) * 2013-09-19 2018-02-13 Workday, Inc. Systems and methods for interest-driven business intelligence systems including event-oriented data
WO2015060893A1 (en) 2013-10-22 2015-04-30 Platfora, Inc. Systems and methods for interest-driven data visualization systems utilizing visualization image data and trellised visualizations
US10372492B2 (en) * 2013-12-11 2019-08-06 Dropbox, Inc. Job-processing systems and methods with inferred dependencies between jobs
US9262192B2 (en) * 2013-12-16 2016-02-16 Vmware, Inc. Virtual machine data store queue allocation
US9465658B1 (en) * 2014-03-27 2016-10-11 Amazon Technologies, Inc. Task distribution over a heterogeneous environment through task and consumer categories
US20150293953A1 (en) * 2014-04-11 2015-10-15 Chevron U.S.A. Inc. Robust, low-overhead, application task management method
US10567221B2 (en) * 2014-05-15 2020-02-18 Hewlett Packard Enterprise Development Lp Network scheduling
WO2015174989A1 (en) 2014-05-15 2015-11-19 Hewlett-Packard Development Company, L.P. Network traffic tuning
EP3195208A4 (en) * 2014-09-17 2018-05-16 David Michonski Method and system for automating the accountability of service professionals via consumer education and rating
US10664495B2 (en) 2014-09-25 2020-05-26 Oracle International Corporation System and method for supporting data grid snapshot and federation
US9678773B1 (en) 2014-09-30 2017-06-13 Amazon Technologies, Inc. Low latency computational capacity provisioning
US10048974B1 (en) 2014-09-30 2018-08-14 Amazon Technologies, Inc. Message-based computation request scheduling
US9600312B2 (en) 2014-09-30 2017-03-21 Amazon Technologies, Inc. Threading as a service
US9323556B2 (en) 2014-09-30 2016-04-26 Amazon Technologies, Inc. Programmatic event detection and message generation for requests to execute program code
US9146764B1 (en) 2014-09-30 2015-09-29 Amazon Technologies, Inc. Processing event messages for user requests to execute program code
US9830193B1 (en) 2014-09-30 2017-11-28 Amazon Technologies, Inc. Automatic management of low latency computational capacity
US9413626B2 (en) 2014-12-05 2016-08-09 Amazon Technologies, Inc. Automatic management of resource sizing
US10185577B2 (en) * 2014-12-08 2019-01-22 Oracle International Corporation Run-time adaption of external properties controlling operation of applications
US10055703B2 (en) * 2015-01-13 2018-08-21 Accenture Global Services Limited Factory management system
US9588790B1 (en) 2015-02-04 2017-03-07 Amazon Technologies, Inc. Stateful virtual compute system
US9733967B2 (en) 2015-02-04 2017-08-15 Amazon Technologies, Inc. Security protocols for low latency execution of program code
US10585599B2 (en) 2015-07-01 2020-03-10 Oracle International Corporation System and method for distributed persistent store archival and retrieval in a distributed computing environment
US10860378B2 (en) 2015-07-01 2020-12-08 Oracle International Corporation System and method for association aware executor service in a distributed computing environment
US11163498B2 (en) 2015-07-01 2021-11-02 Oracle International Corporation System and method for rare copy-on-write in a distributed computing environment
US10798146B2 (en) 2015-07-01 2020-10-06 Oracle International Corporation System and method for universal timeout in a distributed computing environment
EP3329437A4 (en) * 2015-07-28 2018-06-06 Razer (Asia-Pacific) Pte Ltd. Servers for a reward-generating distributed digital resource farm and methods for controlling a server for a reward-generating distributed digital resource farm
US20170032300A1 (en) * 2015-07-31 2017-02-02 International Business Machines Corporation Dynamic selection of resources on which an action is performed
US9934304B2 (en) 2015-08-18 2018-04-03 Workday, Inc. Systems and methods for memory optimization interest-driven business intelligence systems
US20170118293A1 (en) * 2015-10-26 2017-04-27 Trilliant Networks, Inc. Method and system for efficient task management
US9910713B2 (en) 2015-12-21 2018-03-06 Amazon Technologies, Inc. Code execution request routing
US10067801B1 (en) 2015-12-21 2018-09-04 Amazon Technologies, Inc. Acquisition and maintenance of compute capacity
US11132213B1 (en) 2016-03-30 2021-09-28 Amazon Technologies, Inc. Dependency-based process of pre-existing data sets at an on demand code execution environment
CN107291548B (en) 2016-03-31 2021-04-13 阿里巴巴集团控股有限公司 Task resource scheduling method and device
US20170286181A1 (en) * 2016-04-01 2017-10-05 International Business Machines Corporation Deployment and execution of sensing and computational tasks in a network of computing devices
US10534655B1 (en) 2016-06-21 2020-01-14 Amazon Technologies, Inc. Job scheduling based on job execution history
US10102040B2 (en) 2016-06-29 2018-10-16 Amazon Technologies, Inc Adjusting variable limit on concurrent code executions
CN109478147B (en) 2016-07-13 2021-12-14 华为技术有限公司 Adaptive resource management in distributed computing systems
US10230945B2 (en) * 2016-10-17 2019-03-12 Accenture Global Solutions Limited Dynamic loading and deployment of test files to prevent interruption of test execution
US10592280B2 (en) 2016-11-23 2020-03-17 Amazon Technologies, Inc. Resource allocation and scheduling for batch jobs
US10509680B2 (en) * 2016-11-23 2019-12-17 Vmware, Inc. Methods, systems and apparatus to perform a workflow in a software defined data center
US10331479B2 (en) * 2017-01-13 2019-06-25 Microsoft Technology Licensing, Llc Computing on transient resources
US10318355B2 (en) * 2017-01-24 2019-06-11 Oracle International Corporation Distributed graph processing system featuring interactive remote control mechanism including task cancellation
US10565199B2 (en) * 2017-04-10 2020-02-18 Sap Se Massively parallel processing database middleware connector
EP4083800A1 (en) 2017-04-19 2022-11-02 Huawei Technologies Co., Ltd. System and method for low latency node local scheduling in distributed resource management
US11055133B2 (en) * 2017-05-26 2021-07-06 Red Hat, Inc. Node-local-unscheduler for scheduling remediation
US10445140B1 (en) * 2017-06-21 2019-10-15 Amazon Technologies, Inc. Serializing duration-limited task executions in an on demand code execution system
US10725826B1 (en) * 2017-06-21 2020-07-28 Amazon Technologies, Inc. Serializing duration-limited task executions in an on demand code execution system
US10445295B1 (en) * 2017-07-28 2019-10-15 EMC IP Holding Company LLC Task-based framework for synchronization of event handling between nodes in an active/active data storage system
US11010438B2 (en) * 2017-12-11 2021-05-18 Sos Matters, Llc Systems and methods to provide social services
US10812544B2 (en) * 2018-01-26 2020-10-20 Salesforce.Com, Inc. Transfer of data streaming services to provide continuous data flow
US10754697B2 (en) 2018-01-29 2020-08-25 Bank Of America Corporation System for allocating resources for use in data processing operations
US10831898B1 (en) 2018-02-05 2020-11-10 Amazon Technologies, Inc. Detecting privilege escalations in code including cross-service calls
US10725752B1 (en) 2018-02-13 2020-07-28 Amazon Technologies, Inc. Dependency handling in an on-demand network code execution system
US10742761B2 (en) * 2018-04-10 2020-08-11 Dell Products L.P. Inter-process communication fault detection and recovery system
US10853115B2 (en) 2018-06-25 2020-12-01 Amazon Technologies, Inc. Execution of auxiliary functions in an on-demand network code execution system
US10649749B1 (en) 2018-06-26 2020-05-12 Amazon Technologies, Inc. Cross-environment application of tracing information for improved code execution
US11146569B1 (en) 2018-06-28 2021-10-12 Amazon Technologies, Inc. Escalation-resistant secure network services using request-scoped authentication information
US10949237B2 (en) 2018-06-29 2021-03-16 Amazon Technologies, Inc. Operating system customization in an on-demand network code execution system
US10901830B2 (en) * 2018-07-05 2021-01-26 International Business Machines Corporation Electronic checklist
US11099870B1 (en) 2018-07-25 2021-08-24 Amazon Technologies, Inc. Reducing execution times in an on-demand network code execution system using saved machine states
US11243953B2 (en) 2018-09-27 2022-02-08 Amazon Technologies, Inc. Mapreduce implementation in an on-demand network code execution system and stream data processing system
US11099917B2 (en) 2018-09-27 2021-08-24 Amazon Technologies, Inc. Efficient state maintenance for execution environments in an on-demand code execution system
US11943093B1 (en) 2018-11-20 2024-03-26 Amazon Technologies, Inc. Network connection recovery after virtual machine transition in an on-demand network code execution system
CN111258744A (en) * 2018-11-30 2020-06-09 中兴通讯股份有限公司 Task processing method based on heterogeneous computation and software and hardware framework system
US10884812B2 (en) 2018-12-13 2021-01-05 Amazon Technologies, Inc. Performance-based hardware emulation in an on-demand network code execution system
US11010188B1 (en) 2019-02-05 2021-05-18 Amazon Technologies, Inc. Simulated data object storage using on-demand computation of data objects
US11194815B1 (en) 2019-02-11 2021-12-07 Amazon Technologies, Inc. Constrained query execution
US11861386B1 (en) 2019-03-22 2024-01-02 Amazon Technologies, Inc. Application gateways in an on-demand network code execution system
US11119809B1 (en) 2019-06-20 2021-09-14 Amazon Technologies, Inc. Virtualization-based transaction handling in an on-demand network code execution system
US11159528B2 (en) 2019-06-28 2021-10-26 Amazon Technologies, Inc. Authentication to network-services using hosted authentication information
US11115404B2 (en) 2019-06-28 2021-09-07 Amazon Technologies, Inc. Facilitating service connections in serverless code executions
US11190609B2 (en) 2019-06-28 2021-11-30 Amazon Technologies, Inc. Connection pooling for scalable network services
US11374779B2 (en) 2019-06-30 2022-06-28 Charter Communications Operating, Llc Wireless enabled distributed data apparatus and methods
US11108654B2 (en) 2019-07-15 2021-08-31 Bank Of America Corporation Re-deployable elastic framework
US11182222B2 (en) 2019-07-26 2021-11-23 Charter Communications Operating, Llc Methods and apparatus for multi-processor device software development and operation
US11119826B2 (en) 2019-11-27 2021-09-14 Amazon Technologies, Inc. Serverless call distribution to implement spillover while avoiding cold starts
WO2021156725A1 (en) * 2020-02-03 2021-08-12 Tata Consultancy Services Limited Method and system for model-driven distributed job execution
US11714682B1 (en) 2020-03-03 2023-08-01 Amazon Technologies, Inc. Reclaiming computing resources in an on-demand code execution system
US11188391B1 (en) 2020-03-11 2021-11-30 Amazon Technologies, Inc. Allocating resources to on-demand code executions under scarcity conditions
US11775640B1 (en) 2020-03-30 2023-10-03 Amazon Technologies, Inc. Resource utilization-based malicious task detection in an on-demand code execution system
CA3178285A1 (en) * 2020-04-07 2021-10-14 Assia Spe, Llc Systems and methods for remote collaboration
US11461130B2 (en) 2020-05-26 2022-10-04 Oracle International Corporation Methodology for fast and seamless task cancelation and error handling in distributed processing of large graph data
US11321126B2 (en) * 2020-08-27 2022-05-03 Ricardo Luis Cayssials Multiprocessor system for facilitating real-time multitasking processing
US11550713B1 (en) 2020-11-25 2023-01-10 Amazon Technologies, Inc. Garbage collection in distributed systems using life cycled storage roots
US11593270B1 (en) 2020-11-25 2023-02-28 Amazon Technologies, Inc. Fast distributed caching using erasure coded object parts
US11777863B2 (en) * 2020-12-21 2023-10-03 Landis+ Gyr Innovations Optimized route for time-critical traffic in mesh network
US20220253415A1 (en) * 2021-02-09 2022-08-11 Humana Inc. Database maintenance using parallel processing techniques with dedicated logical channels
CN113341896B (en) * 2021-06-07 2022-08-05 电子科技大学 Discrete manufacturing-oriented dynamic integrated workshop scheduling and assembly sequence planning method
US11586528B2 (en) * 2021-06-18 2023-02-21 Agora Lab, Inc. Software development kit with independent automatic crash detection
US11388210B1 (en) 2021-06-30 2022-07-12 Amazon Technologies, Inc. Streaming analytics using a serverless compute system
CN116339968A (en) * 2021-12-24 2023-06-27 华为云计算技术有限公司 Computing resource and cache resource scheduling method, device and system
CN116302450B (en) * 2023-05-18 2023-09-01 深圳前海环融联易信息科技服务有限公司 Batch processing method and device for tasks, computer equipment and storage medium

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6757730B1 (en) * 2000-05-31 2004-06-29 Datasynapse, Inc. Method, apparatus and articles-of-manufacture for network-based distributed computing
US6832263B2 (en) * 2000-04-27 2004-12-14 Hyperion Solutions Corporation Method and apparatus for implementing a dynamically updated portal page in an enterprise-wide computer system
US7032025B2 (en) * 2001-01-12 2006-04-18 Soundstarts, Inc. Method and apparatus for monitoring and transferring a client from a low priority access number to a higher priority access number during active internet and other WAN connection-sessions
US7093004B2 (en) * 2002-02-04 2006-08-15 Datasynapse, Inc. Using execution statistics to select tasks for redundant assignment in a distributed computing platform

Family Cites Families (30)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5381546A (en) * 1987-04-13 1995-01-10 Gte Laboratories Incorporated Control process for allocating services in communications systems
US4914657A (en) * 1987-04-15 1990-04-03 Allied-Signal Inc. Operations controller for a fault tolerant multiple node processing system
US5247677A (en) * 1992-05-22 1993-09-21 Apple Computer, Inc. Stochastic priority-based task scheduler
US5537542A (en) * 1994-04-04 1996-07-16 International Business Machines Corporation Apparatus and method for managing a server workload according to client performance goals in a client/server data processing system
US5963191A (en) * 1997-03-25 1999-10-05 International Business Machines Corporation Method and system for denying graphical pointer access to a widget of a data processing system graphical user interface
US6212524B1 (en) * 1998-05-06 2001-04-03 E.Piphany, Inc. Method and apparatus for creating and populating a datamart
US6529475B1 (en) * 1998-12-16 2003-03-04 Nortel Networks Limited Monitor for the control of multimedia services in networks
US6952825B1 (en) * 1999-01-14 2005-10-04 Interuniversitaire Micro-Elektronica Centrum (Imec) Concurrent timed digital system design method and environment
US6721281B1 (en) * 1999-06-18 2004-04-13 Interdigital Technology Corporation Random access channel access and backoff mechanism
US6944774B2 (en) * 1999-06-18 2005-09-13 Zoom Telephonics, Inc. Data flow control unit
JP2001086035A (en) * 1999-09-14 2001-03-30 Nec Corp Cell search method in cdma
US6671065B1 (en) * 1999-11-29 2003-12-30 Xerox Corporation Method and apparatus to optimize transition of resources from a lower priority to a higher priority job
US6782527B1 (en) * 2000-01-28 2004-08-24 Networks Associates, Inc. System and method for efficient distribution of application services to a plurality of computing appliances organized as subnets
US20030154284A1 (en) * 2000-05-31 2003-08-14 James Bernardin Distributed data propagator
US7600014B2 (en) * 2000-11-16 2009-10-06 Symantec Corporation Method and system for monitoring the performance of a distributed application
US7945688B1 (en) * 2001-06-12 2011-05-17 Netapp, Inc. Methods and apparatus for reducing streaming media data traffic bursts
US6973030B2 (en) * 2001-06-20 2005-12-06 Motorola, Inc. Method and apparatus for controlling multiple logical data flow in a variable data rate environment
US6988186B2 (en) * 2001-06-28 2006-01-17 International Business Machines Corporation Shared resource queue for simultaneous multithreading processing wherein entries allocated to different threads are capable of being interspersed among each other and a head pointer for one thread is capable of wrapping around its own tail in order to access a free entry
US7155475B2 (en) * 2002-02-15 2006-12-26 Sony Corporation System, method, and computer program product for media publishing request processing
JP2003333661A (en) * 2002-05-15 2003-11-21 Nec Corp Mobile communication system, radio base station device and random access control method to be used therefor
US7043522B2 (en) * 2002-05-30 2006-05-09 Microsoft Corporation Unbounded computing space
US7478233B2 (en) * 2002-05-30 2009-01-13 Microsoft Corporation Prevention of software tampering
US7634806B2 (en) * 2002-05-30 2009-12-15 Microsoft Corporation Peer assembly inspection
US7124414B2 (en) * 2002-10-31 2006-10-17 International Business Machines Corporation Method, system and program product for routing requests in a distributed system
US6920121B2 (en) * 2003-03-17 2005-07-19 Qprs Limited Quality packet radio service for a general packet radio system
US7107442B2 (en) * 2003-08-20 2006-09-12 Apple Computer, Inc. Method and apparatus for implementing a sleep proxy for services on a network
US20050154794A1 (en) * 2004-01-14 2005-07-14 Deshpande Sachin G. Systems and methods for providing a discovery protocol
US7197502B2 (en) * 2004-02-18 2007-03-27 Friendly Polynomials, Inc. Machine-implemented activity management system using asynchronously shared activity data objects and journal data items
US8379606B2 (en) * 2005-09-22 2013-02-19 Lg Electronics Inc. Access probe randomization for wireless communication system
CN100574276C (en) * 2006-08-22 2009-12-23 中兴通讯股份有限公司 The control method that the TDS-CDMA system enhanced uplink inserts at random

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6832263B2 (en) * 2000-04-27 2004-12-14 Hyperion Solutions Corporation Method and apparatus for implementing a dynamically updated portal page in an enterprise-wide computer system
US7266821B2 (en) * 2000-04-27 2007-09-04 Hyperion Solutions Corporation Method and apparatus for processing jobs on an enterprise-wide computer system
US6757730B1 (en) * 2000-05-31 2004-06-29 Datasynapse, Inc. Method, apparatus and articles-of-manufacture for network-based distributed computing
US7032025B2 (en) * 2001-01-12 2006-04-18 Soundstarts, Inc. Method and apparatus for monitoring and transferring a client from a low priority access number to a higher priority access number during active internet and other WAN connection-sessions
US7093004B2 (en) * 2002-02-04 2006-08-15 Datasynapse, Inc. Using execution statistics to select tasks for redundant assignment in a distributed computing platform

Cited By (212)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7676788B1 (en) 2003-03-25 2010-03-09 Electric Cloud, Inc. Architecture and method for executing program builds
US7487348B2 (en) * 2003-04-25 2009-02-03 Gateway Inc. System for authenticating and screening grid jobs on a computing grid
US20040215973A1 (en) * 2003-04-25 2004-10-28 Spotware Technologies, Inc. System for authenticating and screening grid jobs on a computing grid
US8886744B1 (en) * 2003-09-11 2014-11-11 Oracle America, Inc. Load balancing in multi-grid systems using peer-to-peer protocols
US9081620B1 (en) * 2003-09-11 2015-07-14 Oracle America, Inc. Multi-grid mechanism using peer-to-peer protocols
US8910175B2 (en) 2004-04-15 2014-12-09 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US10769088B2 (en) 2004-04-15 2020-09-08 Raytheon Company High performance computing (HPC) node having a plurality of switch coupled processors
US9928114B2 (en) 2004-04-15 2018-03-27 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US8335909B2 (en) 2004-04-15 2012-12-18 Raytheon Company Coupling processors to each other for high performance computing (HPC)
US9904583B2 (en) 2004-04-15 2018-02-27 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US8336040B2 (en) 2004-04-15 2012-12-18 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US20050235092A1 (en) * 2004-04-15 2005-10-20 Raytheon Company High performance computing system and method
US20050235055A1 (en) * 2004-04-15 2005-10-20 Raytheon Company Graphical user interface for managing HPC clusters
US10289586B2 (en) 2004-04-15 2019-05-14 Raytheon Company High performance computing (HPC) node having a plurality of switch coupled processors
US8190714B2 (en) 2004-04-15 2012-05-29 Raytheon Company System and method for computer cluster virtualization using dynamic boot images and virtual disk
US8984525B2 (en) 2004-04-15 2015-03-17 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US9037833B2 (en) 2004-04-15 2015-05-19 Raytheon Company High performance computing (HPC) node having a plurality of switch coupled processors
US20050235286A1 (en) * 2004-04-15 2005-10-20 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US9832077B2 (en) 2004-04-15 2017-11-28 Raytheon Company System and method for cluster management based on HPC architecture
US9178784B2 (en) 2004-04-15 2015-11-03 Raytheon Company System and method for cluster management based on HPC architecture
US9189275B2 (en) 2004-04-15 2015-11-17 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US9189278B2 (en) 2004-04-15 2015-11-17 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US9594600B2 (en) 2004-04-15 2017-03-14 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US11093298B2 (en) 2004-04-15 2021-08-17 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US20050251567A1 (en) * 2004-04-15 2005-11-10 Raytheon Company System and method for cluster management based on HPC architecture
US7711977B2 (en) 2004-04-15 2010-05-04 Raytheon Company System and method for detecting and managing HPC node failure
US20050246569A1 (en) * 2004-04-15 2005-11-03 Raytheon Company System and method for detecting and managing HPC node failure
US20050234846A1 (en) * 2004-04-15 2005-10-20 Raytheon Company System and method for computer cluster virtualization using dynamic boot images and virtual disk
US10621009B2 (en) 2004-04-15 2020-04-14 Raytheon Company System and method for topology-aware job scheduling and backfilling in an HPC environment
US10698480B2 (en) 2004-06-21 2020-06-30 Trading Technologies International, Inc. Attention-based trading display for providing user-centric information updates
US11256329B2 (en) 2004-06-21 2022-02-22 Trading Technologies International, Inc. Attention-based trading display for providing user-centric information updates
US11693478B2 (en) 2004-06-21 2023-07-04 Trading Technologies International, Inc. Attention-based trading display for providing user-centric information updates
US10101808B2 (en) 2004-06-21 2018-10-16 Trading Technologies International, Inc. Attention-based trading display for providing user-centric information updates
US8266097B2 (en) 2004-06-24 2012-09-11 Fujitsu Limited System analysis program, system analysis method, and system analysis apparatus
US7873594B2 (en) * 2004-06-24 2011-01-18 Fujitsu Limited System analysis program, system analysis method, and system analysis apparatus
US20050289231A1 (en) * 2004-06-24 2005-12-29 Fujitsu Limited System analysis program, system analysis method, and system analysis apparatus
US20110087630A1 (en) * 2004-06-24 2011-04-14 Fujitsu Limited System analysis program, system analysis method, and system analysis apparatus
US8495006B2 (en) 2004-06-24 2013-07-23 Fujitsu Limited System analysis program, system analysis method, and system analysis apparatus
US8209395B2 (en) 2004-11-17 2012-06-26 Raytheon Company Scheduling in a high-performance computing (HPC) system
US8244882B2 (en) 2004-11-17 2012-08-14 Raytheon Company On-demand instantiation in a high-performance computing (HPC) system
US20090031316A1 (en) * 2004-11-17 2009-01-29 Raytheon Company Scheduling in a High-Performance Computing (HPC) System
US7433931B2 (en) * 2004-11-17 2008-10-07 Raytheon Company Scheduling in a high-performance computing (HPC) system
US20060106931A1 (en) * 2004-11-17 2006-05-18 Raytheon Company Scheduling in a high-performance computing (HPC) system
US20060117208A1 (en) * 2004-11-17 2006-06-01 Raytheon Company On-demand instantiation in a high-performance computing (HPC) system
US20080235533A1 (en) * 2004-12-09 2008-09-25 Keisuke Hatasaki Fall over method through disk take over and computer system having failover function
US20060143498A1 (en) * 2004-12-09 2006-06-29 Keisuke Hatasaki Fail over method through disk take over and computer system having fail over function
US7549076B2 (en) * 2004-12-09 2009-06-16 Hitachi, Ltd. Fail over method through disk take over and computer system having fail over function
US7516353B2 (en) 2004-12-09 2009-04-07 Hitachi, Ltd. Fall over method through disk take over and computer system having failover function
US8601314B2 (en) 2004-12-09 2013-12-03 Hitachi, Ltd. Failover method through disk take over and computer system having failover function
US8069368B2 (en) 2004-12-09 2011-11-29 Hitachi, Ltd. Failover method through disk takeover and computer system having failover function
US8312319B2 (en) 2004-12-09 2012-11-13 Hitachi, Ltd. Failover method through disk takeover and computer system having failover function
US20060155799A1 (en) * 2004-12-28 2006-07-13 Fujitsu Limited High-speed information processing apparatus, high-speed information processing method, and high-speed information processing program
US7725430B2 (en) * 2004-12-28 2010-05-25 Fujitsu Limited High-speed information processing by coordination of information processing resources apparatus, including method, and computer-readable recording medium thereof
US20070028098A1 (en) * 2005-07-28 2007-02-01 International Business Machines Corporation Encrypting units of work based on a trust level
US8924275B2 (en) * 2005-09-27 2014-12-30 Morgan Stanley Hybrid multi-thread and multi-process computer simulation system and method
US20100223204A1 (en) * 2005-09-27 2010-09-02 Mikhail Zborovskiy Hybrid multi-thread and multi-process computer simulation system and method
US20080005327A1 (en) * 2006-06-28 2008-01-03 Hays Kirk I Commodity trading computing resources
US20080126472A1 (en) * 2006-08-28 2008-05-29 Tableau, Llc Computer communication
US20080052525A1 (en) * 2006-08-28 2008-02-28 Tableau, Llc Password recovery
US20080052490A1 (en) * 2006-08-28 2008-02-28 Tableau, Llc Computational resource array
US20080052429A1 (en) * 2006-08-28 2008-02-28 Tableau, Llc Off-board computational resources
US7725524B2 (en) * 2006-10-03 2010-05-25 Electric Cloud, Inc. Process automation system and method having a hierarchical architecture with multiple tiers
US20080148219A1 (en) * 2006-10-03 2008-06-19 John Ousterhout Process automation system and method having a hierarchical architecture with multiple tiers
US8042089B2 (en) 2006-10-03 2011-10-18 Electric Cloud, Inc. Process automation system and method employing multi-stage report generation
US7886265B2 (en) 2006-10-03 2011-02-08 Electric Cloud, Inc. Process automation system and method employing property attachment techniques
US7882200B2 (en) 2006-10-30 2011-02-01 Bank Of America Corporation Method and apparatus for distribution of data among computing resources
US7283935B1 (en) * 2006-10-30 2007-10-16 Bank Of America Corporation Method and apparatus for monitoring grid-based computing resources
US20080104197A1 (en) * 2006-10-30 2008-05-01 Bank Of America Corporation Method and apparatus for distribution of data among computing resources
US7571270B1 (en) 2006-11-29 2009-08-04 Consentry Networks, Inc. Monitoring of shared-resource locks in a multi-processor system with locked-resource bits packed into registers to detect starved threads
JP2010517198A (en) * 2007-01-30 2010-05-20 アリババ グループ ホールディング リミテッド Distributed task system and distributed task management method
US20100146516A1 (en) * 2007-01-30 2010-06-10 Alibaba Group Holding Limited Distributed Task System and Distributed Task Management Method
US8533729B2 (en) 2007-01-30 2013-09-10 Alibaba Group Holding Limited Distributed task system and distributed task management method
WO2008094907A3 (en) * 2007-01-30 2008-10-16 Alibaba Group Holding Ltd Distributed task system and distributed task management method
US8108258B1 (en) 2007-01-31 2012-01-31 Intuit Inc. Method and apparatus for return processing in a network-based system
US20080301685A1 (en) * 2007-05-31 2008-12-04 Novell, Inc. Identity-aware scheduler service
US20100218250A1 (en) * 2007-09-28 2010-08-26 Nippon Telegraph And Telephone Corp. Network monitoring apparatus, network monitoring method, and network monitoring program
US8347383B2 (en) * 2007-09-28 2013-01-01 Nippon Telegraph And Telephone Corporation Network monitoring apparatus, network monitoring method, and network monitoring program
US20090106008A1 (en) * 2007-10-18 2009-04-23 Michael John Branson Performance sampling in distributed systems
US8127032B2 (en) * 2007-10-18 2012-02-28 International Business Machines Corporation Performance sampling in distributed systems
US8738659B1 (en) * 2007-10-22 2014-05-27 Data Recognition Corporation Method and apparatus for managing priority in standardized test and survey imaging
US8649601B1 (en) 2007-10-22 2014-02-11 Data Recognition Corporation Method and apparatus for verifying answer document images
US8488220B1 (en) 2007-10-22 2013-07-16 Data Recognition Corporation Method and apparatus for calibrating imaging equipment
US8526055B1 (en) 2007-10-22 2013-09-03 Data Recognition Corporation Standardized test and survey imaging system
US20090112988A1 (en) * 2007-10-24 2009-04-30 Francois Colon Method and instantaneous messaging system for mobile terminals equipped with a virtual presence server allowing an instantaneous messaging session to be managed automatically
US8959210B2 (en) * 2007-11-22 2015-02-17 Telefonaktiebolaget L M Ericsson (Publ) Method and device for agile computing
US20130060832A1 (en) * 2007-11-22 2013-03-07 Telefonaktiebolaget L M Ericsson (Publ) Method and device for agile computing
US20090177671A1 (en) * 2008-01-03 2009-07-09 Accenture Global Services Gmbh System and method for automating etl application
US8024369B2 (en) * 2008-01-03 2011-09-20 Accenture Global Services Limited System and method for automating ETL application
US20090248754A1 (en) * 2008-03-27 2009-10-01 Daniel Lipton Providing resumption data in a distributed processing system
US9727373B2 (en) * 2008-03-27 2017-08-08 Apple Inc. Providing resumption data in a distributed processing system
WO2010014532A1 (en) * 2008-07-28 2010-02-04 Trading Technologies International, Inc. System and method for dynamically managing message flow
US10380688B2 (en) 2008-07-28 2019-08-13 Trading Technologies International, Inc. System and method for dynamically managing message flow
US8131868B2 (en) 2008-07-28 2012-03-06 Trading Technologies International, Inc. System and method for dynamically managing message flow
US8868776B2 (en) 2008-07-28 2014-10-21 Trading Technologies International, Inc. System and method for dynamically managing message flow
US10733670B2 (en) 2008-07-28 2020-08-04 Trading Technologies International, Inc. System and method for dynamically managing message flow
US11769203B2 (en) 2008-07-28 2023-09-26 Trading Technologies International, Inc. System and method for dynamically managing message flow
US20100023645A1 (en) * 2008-07-28 2010-01-28 Trading Technologies International, Inc. System and Method for Dynamically Managing Message Flow
US20110040890A1 (en) * 2008-07-28 2011-02-17 Trading Technologies International, Inc. System and Method for Dynamically Managing Message Flow
US11257159B2 (en) 2008-07-28 2022-02-22 Trading Technologies International, Inc. System and method for dynamically managing message flow
US7844726B2 (en) 2008-07-28 2010-11-30 Trading Technologies International, Inc. System and method for dynamically managing message flow
US9639896B2 (en) 2008-07-28 2017-05-02 Trading Technologies International, Inc. System and method for dynamically managing message flow
US9864725B1 (en) 2008-12-12 2018-01-09 Amazon Technologies, Inc. Managing use of program execution capacity
US10915491B2 (en) 2008-12-12 2021-02-09 Amazon Technologies, Inc. Managing use of program execution capacity
US8249904B1 (en) 2008-12-12 2012-08-21 Amazon Technologies, Inc. Managing use of program execution capacity
US8832173B2 (en) * 2009-01-20 2014-09-09 Sap Ag System and method of multithreaded processing across multiple servers
US20100186020A1 (en) * 2009-01-20 2010-07-22 Sap Ag System and method of multithreaded processing across multiple servers
US9069644B2 (en) 2009-04-10 2015-06-30 Electric Cloud, Inc. Architecture and method for versioning registry entries in a distributed program build
US20100262948A1 (en) * 2009-04-10 2010-10-14 John Eric Melski Architecture and method for versioning registry entries in a distributed program build
WO2010127433A1 (en) * 2009-05-03 2010-11-11 Research In Motion Limited Systems and methods for mobility server administration
US9201669B2 (en) 2009-05-03 2015-12-01 Blackberry Limited Systems and methods for mobility server administration
US20100281487A1 (en) * 2009-05-03 2010-11-04 Research In Motion Limited Systems and methods for mobility server administration
US20100306005A1 (en) * 2009-05-29 2010-12-02 Perceptive Software, Inc. Workflow Management System and Method
US9081616B2 (en) 2009-05-29 2015-07-14 Lexmark International Technology, SA System and method for adjusting a number of processing modules based on processing load
US20100306779A1 (en) * 2009-05-29 2010-12-02 Perceptive Software, Inc. Workflow management system and method
US9323582B2 (en) * 2009-08-12 2016-04-26 Schlumberger Technology Corporation Node to node collaboration
US20110196909A1 (en) * 2009-08-12 2011-08-11 Schlumberger Technology Corporation Node to Node Collaboration
US8452892B2 (en) * 2009-09-16 2013-05-28 Kabushiki Kaisha Toshiba Scheduling apparatus and method
US20110066758A1 (en) * 2009-09-16 2011-03-17 Kabushiki Kaisha Toshiba Scheduling apparatus and method
US8224993B1 (en) 2009-12-07 2012-07-17 Amazon Technologies, Inc. Managing power consumption in a data center
US9264334B1 (en) 2009-12-07 2016-02-16 Amazon Technologies, Inc. Managing power consumption in a data center
US8595379B1 (en) 2009-12-07 2013-11-26 Amazon Technologies, Inc. Managing power consumption in a data center
US20110173637A1 (en) * 2010-01-12 2011-07-14 Eric Jason Brandwine Managing private use of program execution capacity
US8924982B2 (en) * 2010-01-12 2014-12-30 Amazon Technologies, Inc. Managing private use of program execution capacity
US10114668B2 (en) 2010-01-12 2018-10-30 Amazon Technologies, Inc. Managing private use of program execution capacity
US10110503B2 (en) 2010-03-29 2018-10-23 Amazon Technologies, Inc. Managing committed processing rates for shared resources
US11777867B2 (en) 2010-03-29 2023-10-03 Amazon Technologies, Inc. Managing committed request rates for shared resources
US11374873B2 (en) 2010-03-29 2022-06-28 Amazon Technologies, Inc. Managing committed request rates for shared resources
US10855614B2 (en) 2010-03-29 2020-12-01 Amazon Technologies, Inc. Managing committed processing rates for shared resources
US8631406B2 (en) * 2010-06-30 2014-01-14 Sap Ag Distributed cloud computing architecture
US20120005670A1 (en) * 2010-06-30 2012-01-05 Sap Ag Distributed cloud computing architecture
US9767271B2 (en) 2010-07-15 2017-09-19 The Research Foundation For The State University Of New York System and method for validating program execution at run-time
US20140143787A1 (en) * 2010-08-30 2014-05-22 Adobe Systems Incorporated Methods and apparatus for resource management in cluster computing
US10067791B2 (en) 2010-08-30 2018-09-04 Adobe Systems Incorporated Methods and apparatus for resource management in cluster computing
US8640137B1 (en) * 2010-08-30 2014-01-28 Adobe Systems Incorporated Methods and apparatus for resource management in cluster computing
US9262218B2 (en) * 2010-08-30 2016-02-16 Adobe Systems Incorporated Methods and apparatus for resource management in cluster computing
US9374243B1 (en) 2010-09-14 2016-06-21 Amazon Technologies, Inc. Managing operational throughput for shared resources
AU2011320763B2 (en) * 2010-10-29 2015-06-04 Google Llc System and method of active risk management to reduce job de-scheduling probability in computer clusters
US20120110584A1 (en) * 2010-10-29 2012-05-03 Google Inc. System and method of active risk management to reduce job de-scheduling probability in computer clusters
US8627322B2 (en) * 2010-10-29 2014-01-07 Google Inc. System and method of active risk management to reduce job de-scheduling probability in computer clusters
US9280334B2 (en) * 2010-12-02 2016-03-08 International Business Machines Corporation System, method and program product to manage installation of programs
US20120144385A1 (en) * 2010-12-02 2012-06-07 International Business Machines Corporation System, method and program product to manage installation of programs
US8949822B2 (en) * 2010-12-02 2015-02-03 International Business Machines Corporation System, method and program product to manage installation of programs
US20150113522A1 (en) * 2010-12-02 2015-04-23 International Business Machines Corporation System, method and program product to manage installation of programs
US9043799B1 (en) 2010-12-30 2015-05-26 Iqnavigator, Inc. Managing access to a shared resource by tracking active requestor job requests
US20120185560A1 (en) * 2011-01-13 2012-07-19 Keisuke Mera Data collecting device, computer readable medium, and data collecting system
US8984169B2 (en) * 2011-01-13 2015-03-17 Kabushiki Kaisha Toshiba Data collecting device, computer readable medium, and data collecting system
US8868855B2 (en) 2011-02-28 2014-10-21 Hewlett-Packard Development Company, L.P. Request management system and method for dynamically managing prioritized requests
US9280386B1 (en) * 2011-07-14 2016-03-08 Google Inc. Identifying task instance outliers based on metric data in a large scale parallel processing system
US9880879B1 (en) * 2011-07-14 2018-01-30 Google Inc. Identifying task instance outliers based on metric data in a large scale parallel processing system
US20130132947A1 (en) * 2011-11-18 2013-05-23 Compuware Corporation Execution pathway for interfacing with legacy programs in a mainframe environment
US8782638B2 (en) * 2011-11-18 2014-07-15 Compuware Corporation Execution pathway for interfacing with legacy programs in a mainframe environment
US20130132961A1 (en) * 2011-11-21 2013-05-23 David Lehavi Mapping tasks to execution threads
US8887160B2 (en) * 2011-11-21 2014-11-11 Hewlett-Packard Development Company, L.P. Mapping tasks to execution threads
US8954492B1 (en) * 2011-11-30 2015-02-10 F5 Networks, Inc. Methods for inlining content externally referenced in a web page prior to providing the web page to a requestor and devices thereof
US11012371B2 (en) 2011-12-05 2021-05-18 Amazon Technologies, Inc. Queued workload service in a multi tenant environment
US20130218901A1 (en) * 2012-02-16 2013-08-22 Apple Inc. Correlation filter
US8914381B2 (en) * 2012-02-16 2014-12-16 Apple Inc. Correlation filter
US9710397B2 (en) 2012-02-16 2017-07-18 Apple Inc. Data migration for composite non-volatile storage device
US20130219224A1 (en) * 2012-02-17 2013-08-22 Nec Corporation Job continuation management apparatus, job continuation management method and job continuation management program
US9152491B2 (en) * 2012-02-17 2015-10-06 Nec Corporation Job continuation management apparatus, job continuation management method and job continuation management program
US9767284B2 (en) 2012-09-14 2017-09-19 The Research Foundation For The State University Of New York Continuous run-time validation of program execution: a practical approach
US9552495B2 (en) 2012-10-01 2017-01-24 The Research Foundation For The State University Of New York System and method for security and privacy aware virtual machine checkpointing
US9069782B2 (en) 2012-10-01 2015-06-30 The Research Foundation For The State University Of New York System and method for security and privacy aware virtual machine checkpointing
US10324795B2 (en) 2012-10-01 2019-06-18 The Research Foundation for the State University o System and method for security and privacy aware virtual machine checkpointing
US9491221B1 (en) * 2012-12-05 2016-11-08 Google Inc. System and method for brokering distributed computation
US11593880B2 (en) 2012-12-31 2023-02-28 Trading Technologies International, Inc. User definable prioritization of market information
US11138663B2 (en) 2012-12-31 2021-10-05 Trading Technologies International, Inc. User definable prioritization of market information
US10467691B2 (en) 2012-12-31 2019-11-05 Trading Technologies International, Inc. User definable prioritization of market information
US11869086B2 (en) 2012-12-31 2024-01-09 Trading Technologies International, Inc. User definable prioritization of market information
US9454630B1 (en) 2013-02-26 2016-09-27 Xilinx, Inc. Graphical representation of integrated circuits
US8752075B1 (en) * 2013-02-26 2014-06-10 Xilinx, Inc. Method for data transport
US20140359182A1 (en) * 2013-05-29 2014-12-04 Ivan I. Georgiev Methods and apparatus facilitating access to storage among multiple computers
US9665409B2 (en) * 2013-05-29 2017-05-30 Citrix Systems, Inc. Methods and apparatus facilitating access to storage among multiple computers
US20150339172A1 (en) * 2013-06-28 2015-11-26 Yang-Won Jung Task management on computing platforms
WO2014209348A1 (en) * 2013-06-28 2014-12-31 Empire Technology Development Llc Task management on computing platforms
KR101827547B1 (en) * 2013-06-28 2018-02-08 엠파이어 테크놀로지 디벨롭먼트 엘엘씨 Task management on computing platforms
US9934075B2 (en) * 2013-06-28 2018-04-03 Empire Technology Development Llc Managing associated tasks using a task manager in communication devices
CN103428272A (en) * 2013-07-16 2013-12-04 无限极(中国)有限公司 System and method for monitoring and scheduling of middleware threads
US10460387B2 (en) 2013-12-18 2019-10-29 Trading Technologies International, Inc. Dynamic information configuration and display
US11176611B2 (en) 2013-12-18 2021-11-16 Trading Technologies International, Inc. Dynamic information configuration and display
US20150227442A1 (en) * 2014-02-11 2015-08-13 Saudi Arabian Oil Company Circumventing Load Imbalance in Parallel Simulations Caused by Faulty Hardware Nodes
US9372766B2 (en) * 2014-02-11 2016-06-21 Saudi Arabian Oil Company Circumventing load imbalance in parallel simulations caused by faulty hardware nodes
US10540606B2 (en) * 2014-06-30 2020-01-21 Amazon Technologies, Inc. Consistent filtering of machine learning data
US10102480B2 (en) * 2014-06-30 2018-10-16 Amazon Technologies, Inc. Machine learning service
US11544623B2 (en) 2014-06-30 2023-01-03 Amazon Technologies, Inc. Consistent filtering of machine learning data
US20150379424A1 (en) * 2014-06-30 2015-12-31 Amazon Technologies, Inc. Machine learning service
US11386351B2 (en) * 2014-06-30 2022-07-12 Amazon Technologies, Inc. Machine learning service
US11379755B2 (en) 2014-06-30 2022-07-05 Amazon Technologies, Inc. Feature processing tradeoff management
US11838851B1 (en) 2014-07-15 2023-12-05 F5, Inc. Methods for managing L7 traffic classification and devices thereof
US10545831B2 (en) 2014-08-07 2020-01-28 Microsoft Technology Licensing, Llc Safe data access following storage failure
US9665432B2 (en) 2014-08-07 2017-05-30 Microsoft Technology Licensing, Llc Safe data access following storage failure
US9847918B2 (en) * 2014-08-12 2017-12-19 Microsoft Technology Licensing, Llc Distributed workload reassignment following communication failure
US11228510B2 (en) * 2014-08-12 2022-01-18 Microsoft Technology Licensing, Llc Distributed workload reassignment following communication failure
CN106575245A (en) * 2014-08-12 2017-04-19 微软技术许可有限责任公司 Distributed workload reassignment following communication failure
US20160050294A1 (en) * 2014-08-12 2016-02-18 Microsoft Corporation Distributed workload reassignment following communication failure
US10061577B2 (en) 2014-10-14 2018-08-28 Electric Cloud, Inc. System and method for optimizing job scheduling within program builds
US10182013B1 (en) 2014-12-01 2019-01-15 F5 Networks, Inc. Methods for managing progressive image delivery and devices thereof
US11895138B1 (en) 2015-02-02 2024-02-06 F5, Inc. Methods for improving web scanner accuracy and devices thereof
US10176015B2 (en) 2015-09-25 2019-01-08 Microsoft Technology Licensing, Llc Progress visualization of computational job
WO2017131794A1 (en) * 2016-01-31 2017-08-03 Hewlett Packard Enterprise Development Company Lp Graph analytics system
US10671444B2 (en) 2016-12-07 2020-06-02 Tata Consultancy Services Limited Systems and methods for scheduling tasks and managing computing resource allocation for closed loop control systems
CN109416647A (en) * 2016-12-07 2019-03-01 塔塔咨询服务有限公司 The system and method for scheduler task and management computational resource allocation for closed-loop control system
WO2018104799A1 (en) * 2016-12-07 2018-06-14 Tata Consultancy Services Limited Systems and methods for scheduling tasks and managing computing resource allocation for closed loop control systems
AU2017372921B2 (en) * 2016-12-07 2020-06-18 Tata Consultancy Services Limited Systems and methods for scheduling tasks and managing computing resource allocation for closed loop control systems
US11327807B2 (en) 2017-06-05 2022-05-10 Balanced Media Technology, LLC Platform for collaborative processing of computing tasks
WO2018226740A3 (en) * 2017-06-05 2020-01-16 Balanced Media Technology, LLC Platform for collaborative processing of computing tasks
US11763190B2 (en) 2018-03-26 2023-09-19 Balanced Media Technology, LLC Abstracted interface for gamification of machine learning algorithms
US10884789B2 (en) 2018-11-16 2021-01-05 International Business Machines Corporation Process tracking
EP4120080A4 (en) * 2020-04-15 2023-04-12 Straitdeer Pte. Ltd. Data processing method and apparatus, electronic device, and system
US11632482B1 (en) 2021-09-27 2023-04-18 Fujifilm Business Innovation Corp. Information processing system capable of enabling cooperation of processing when connection with external apparatus being disconnected, information processing apparatus therefor, and non-transitory computer readable medium storing program therefor
EP4155937A1 (en) * 2021-09-27 2023-03-29 FUJIFILM Business Innovation Corp. Information processing system, information processing apparatus, program, and information processing method
WO2024033502A1 (en) * 2022-08-11 2024-02-15 Vmi Holland B.V. Flexible tablet dispensing, inspection and packaging systems

Also Published As

Publication number Publication date
US20030191795A1 (en) 2003-10-09
US7093004B2 (en) 2006-08-15
US8195739B2 (en) 2012-06-05
US20080313345A1 (en) 2008-12-18

Similar Documents

Publication Publication Date Title
US8195739B2 (en) Adaptive polling
US20030154284A1 (en) Distributed data propagator
Venkataraman et al. Drizzle: Fast and adaptable stream processing at scale
Tantalaki et al. A review on big data real-time stream processing and its scheduling techniques
Li et al. A distributed service-oriented architecture for business process execution
US9176785B2 (en) System and method for providing multi-resource management support in a compute environment
Zhu et al. A survey on grid scheduling systems
Raicu et al. Middleware support for many-task computing
Baker et al. A review of commercial and research cluster management software
US20070240140A1 (en) Methods and systems for application load distribution
Memishi et al. Fault tolerance in MapReduce: A survey
WO2002063479A1 (en) Distributed computing system
Liu et al. Parallelization of scientific workflows in the cloud
Ramon-Cortes et al. A survey on the Distributed Computing stack
Morrison et al. Webcom-G: grid enabled metacomputing
Leite A user-centered and autonomic multi-cloud architecture for high performance computing applications
Richard et al. The I-Cluster Cloud: distributed management of idle resources for intense computing
Raghavan et al. DPAC: an object-oriented distributed and parallel computing framework for manufacturing applications
Wang et al. A dependable Peer-to-Peer computing platform
Carreira et al. Implementing Tuple Space with Threads.
Dharsee et al. Mobidick: a tool for distributed computing on the internet
de Oliveira et al. Background Knowledge
Machida et al. Intelligent data staging with overlapped execution of grid applications
Lopes SDD4 Streaming
Vargas et al. Grand: Toward scalability in a grid environment

Legal Events

Date Code Title Description
AS Assignment

Owner name: ORIX VENTURE FINANCE LLC, NEW YORK

Free format text: SECURITY AGREEMENT;ASSIGNOR:DATASYNAPSE, INC.;REEL/FRAME:018584/0240

Effective date: 20061114

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION