US7200720B1 - System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data - Google Patents
System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data Download PDFInfo
- Publication number
- US7200720B1 US7200720B1 US10/041,033 US4103301A US7200720B1 US 7200720 B1 US7200720 B1 US 7200720B1 US 4103301 A US4103301 A US 4103301A US 7200720 B1 US7200720 B1 US 7200720B1
- Authority
- US
- United States
- Prior art keywords
- data
- memory
- database
- changes
- update
- 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.)
- Expired - Lifetime, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/23—Updating
- G06F16/2308—Concurrency control
-
- Y—GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10—TECHNICAL SUBJECTS COVERED BY FORMER USPC
- Y10S—TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10S707/00—Data processing: database and file management or data structures
- Y10S707/99951—File or database maintenance
- Y10S707/99952—Coherency, e.g. same view to multiple users
-
- Y—GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10—TECHNICAL SUBJECTS COVERED BY FORMER USPC
- Y10S—TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y10S707/00—Data processing: database and file management or data structures
- Y10S707/99951—File or database maintenance
- Y10S707/99952—Coherency, e.g. same view to multiple users
- Y10S707/99953—Recoverability
Definitions
- the present invention relates generally to the field of computer software, and more particularly to a system and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data.
- supply chain planning exhibits such problems.
- Supply chain planning requires a large amount of information to build an enterprise plan. This information typically includes data related to production capacity, inventory balance, distribution network, bill of material (BOM), sourcing of components, etc.
- BOM bill of material
- a computation intensive mathematical algorithm should have instant access to this data in order to be able to run efficiently.
- This information (such as inventory balance, etc.) is typically stored in a database.
- problems arise when live business transactions are performed against the database, thus causing data in the database to change at the same time as a mathematical algorithm is being run on the data.
- At least two prior art attempts were made with respect to trying to overcome the problem of the continuous change of data in the database.
- a first approach was to extract the required transactional data from a database 100 and store the data in a flat file 102 .
- Computation software 104 would then read file 102 and process the data through the appropriate mathematical algorithm. The output from this computation would be written to another file 106 and exported to, or merged with, database 100 .
- a second approach was to extract and transfer a snapshot of the required transactional data from a database 200 to a dedicated database 202 .
- Computation software 204 would read the data directly from dedicated database 202 and process the data through the appropriate mathematical algorithm. The output from this computation would be written to dedicated database 202 and transferred to, or merged with, database 200 .
- all business transactions are processed through database 200 but not through dedicated database 202 .
- Dedicated database 202 acts as a medium to mitigate the constant changing nature of the data in database 200 while providing a stable view of the data to the computation algorithm.
- the present invention provides in various embodiments a system and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data.
- the system facilitates efficiently performing memory intensive applications.
- the system comprises a data cache coupled to a first set of data and a second set of data and configured to perform a scan operation on at least a portion of the first set of data and an update operation on the second set of data with changes that have occurred in the first set of data; an engine manager coupled to the data cache and configured to instruct the data cache to perform the scan and update operations; and a solver coupled to the data cache and configured to perform computations on the second set of data.
- the method facilitates efficiently performing memory intensive computations.
- the method comprises performing, using a data cache, a scan operation on at least a portion of a first set of data; performing, using the data cache, an update operation on a second set of data with changes that have occurred in the first set of data; and performing computations, using a solver, on the second set of data.
- FIG. 1 is a schematic diagram of a prior art attempt at manipulating data with the use of intermediary files.
- FIG. 2 is a schematic diagram of a prior art attempt at manipulating data with the use of an intermediary database.
- FIG. 3 is a schematic diagram of a system according to one embodiment of the present invention.
- FIG. 4 is the schematic diagram of FIG. 3 in greater detail.
- FIG. 5 is the schematic diagram of FIG. 4 in greater detail.
- FIG. 6 is a flowchart of a method according to one embodiment of the present invention.
- FIG. 7 is a flowchart showing one of the method steps of FIG. 6 in further detail.
- FIG. 8 illustrates subsystems of an exemplary computer system for use with the present invention.
- the computationally intensive processing necessitated by some modern application software requires immediate access to a substantial amount of data simultaneously. Having this data available only in a database would slow run time down enormously. Therefore, the present system allows this data to be resident in memory to facilitate efficient processing thereof.
- a user may have a particular overall problem (overall problem instance) in mind that he or she wants to solve.
- This overall problem can be modeled mathematically. Taking the business problem of supply chain planning, for example, the user may want to know the answers to various questions related to when, where, why, how, how much, and the like, in the context of questions related to materials, vendors, manufacturing, supply, etc. For example, one of the many questions a user typically wants answered relates to what vendors should be used for various materials and parts. The user might also want to know what facilities to use to manufacture various parts of a product.
- the answers to these and other questions depend on a multitude of variables.
- One example is the costs charged by the various vendors and the corresponding expected supply times.
- Another example is whether cost or service quality is of higher priority to the user.
- sales growth in a given year may increase from 10 percent to 15 percent. The user may want to know how this change in sales growth affects production capacity and manufacturing specifics.
- the present system synchronizes in a near-real-time fashion the data in the database with the data stored in memory.
- Prior attempts in the art, described herein involved copying over the entire database into memory if even only a small amount of data in the database had changed. Obviously, this could be extremely time consuming. Therefore, the present system implements in-memory storage and processing of the data.
- This implementation is referred to herein as an in-memory computation system.
- a mechanism is provided to bring changes to the data in the database by, say, business transactions, into the in-memory computation system. This is much more efficient than copying over the entire set of data in the database into memory every time there is a small change in the data in the database. It should be noted that the present system is not limited to use as a business application.
- System 300 comprises a data storage means, such as database 302 , an in-memory engine 304 , and a client computer system 306 .
- In-memory engine 304 is capable of receiving a plug-in, as will be discussed further herein.
- In-memory engine 304 and the plug-in co-reside on the same computer system, such as computer system 306 , in one embodiment.
- Database 302 comprises a first set of data. The first set of data may be related to transactional and other data related to running a business and needed for running a related business application, e.g., orders, inventory, costs of parts, etc.
- Database 302 and in-memory engine 304 may reside on different computer systems, in one embodiment.
- In-memory engine 304 is coupled to database 302 in a bidirectional fashion. It is contemplated that in-memory engine 304 can reside in computer system 306 or some other system or medium. In-memory engine 304 comprises a second set of data, which is updated as needed with changes that have been made to the first set of data. The second set of data is the data on which the desired memory intensive computations will be run.
- Database 302 comprises both metadata 400 and application data 402 . Together, metadata 400 and application data 402 comprise the first set of data. In another embodiment, application data 402 alone comprises the first set of data.
- Metadata 400 is definitional data that provides information about application data 402 and how the application data will be managed within system 300 .
- Metadata 400 describes the structure of application data 402 in database 302 and how the application data is to be synchronized with the second set of data, i.e., the in-memory data.
- Metadata 400 is typically embodied in the form of tables.
- Metadata 400 can contain information related to what information was updated and when. For example, a flag may be used within a table of metadata 400 that indicates that row seven was last updated on Mar. 3, 2001, at 2:38:04 P.M.
- application data 402 comprises conventional database tables that store the data of database 302 .
- An example of application data 402 is the number of a certain item currently available in inventory.
- in-memory engine 304 interfaces with plug-in 404 .
- in-memory engine 304 and plug-in 404 comprise an in-memory computation system.
- Plug-in 404 comprises application specific software. Plug-in 404 can be changed to suit various specific applications without modifying the rest of system 300 .
- Plug-in 404 contains the application specific knowledge and business logic to interpret the physical meaning of the in-memory data.
- Plug-in 404 plus the related content in metadata 400 is the application specific part of the application software.
- the application specific part of the application software, plug-in 404 plus the related metadata 400 is conveniently separate from the rest of the application software. Therefore, whenever the particular application changes, only plug-in 404 plus the related metadata 400 need be modified or replaced. It should be noted that plug-in 404 , in one embodiment, is excluded. In this embodiment, the application specific modules are integrated into in-memory engine 304 or elsewhere.
- Plug-in 404 puts the particular overall problem (e.g., business problem), which the user (or an application programmer) defines, into a mathematical formulation or model, which a generic algorithms module 408 (solver) then solves.
- solver refers to one or any combination of generic algorithms module 408 , solver manager 522 and other solvers.
- Plug-in 404 maps the raw application data from data cache 406 into the mathematical model (e.g., business model).
- the mathematical model e.g., business model
- one variable in the mathematical model represents the time at which manufacturing should start.
- plug-in 404 interacts with a data cache 406 and an in-memory engine manager 410 .
- data cache 406 is a component that stores the in-memory data, i.e., the second set of data.
- Data cache 406 provides an update means, such as a bidirectional synchronization mechanism (indicated by the dashed lines having arrowheads at both ends), coupling database 302 to data cache 406 .
- Data cache 406 is more than just a traditional data cache, in one embodiment. Data cache 406 has the capability to scan/read metadata 400 and application data 402 .
- Data cache 406 also has the capability to update/write to metadata 400 and application data 402 . Thus, data can flow from database 302 to data cache 406 and vice versa.
- data cache 406 comprises logic and memory. In another embodiment, data cache 406 comprises only logic and is coupled to memory.
- the bidirectional synchronization mechanism manages changes in the content of the first set of data present in database 302 , as explained further herein. Changes in the first set of data within database 302 flow from database 302 to data cache 406 and are used to update the second set of data within the data cache. In one embodiment, this update happens in a near-real-time fashion. Moreover, solutions flow from data cache 406 to database 302 , as discussed further herein. A user, through computer system 306 , then accesses solutions from database 302 via an applications server, discussed further herein.
- the data being processed (the second set of data) was stored in a dedicated database and was not readily available in memory. Moreover, if there was a change to even only a small portion of the first set of data, the second set of data would not reflect these changes unless the entire first set of data was transferred and used to replace the second set of data. This would lead to inaccuracies in the results of the computations being run on the second set of data since the data was not current. Moreover, it was a very time consuming process to make the second set of data current due to the fact that it would take a long time to copy over the entire first set of data, which was usually voluminous.
- a solution to this problem is keeping the second set of data current and readily available in memory. This is accomplished by mirroring the first set of data resident in database 302 into data cache 406 . When there is a change in data in database 302 , this change is almost immediately reflected in data cache 406 by transferring to the data cache only, in one embodiment, the changes that have occurred in the data in database 302 since a previous update. This methodology ensures that the data in data cache 406 is always current. Furthermore, the fact that only the change in the data rather than the entire data set is transferred saves a great deal of time and bandwidth.
- changes in data are transferred to data cache 406 periodically, in one embodiment.
- the changes in application data 402 are transferred to data cache 406 after a user initiates a transaction request (discussed further herein).
- Generic algorithms module 408 is a generic solver that comprises the common utilities and interface to general-purpose problem independent algorithms used in in-memory engine 304 . Examples of such algorithms involve linear programming, mixed integer programming, etc.
- In-memory engine manager 410 manages various components and communications within in-memory engine 304 . Additionally, in-memory engine manager 410 interfaces with database 302 and, as already mentioned, plug-in 404 . In one embodiment, plug-in 404 is the only application specific software and all other software is reusable. In one embodiment, in-memory engine 304 plus plug-in 404 is one executable.
- FIG. 5 illustrates one embodiment of FIG. 4 in greater detail.
- An application server 500 is provided that interfaces with computer system 306 .
- application server 500 interfaces with a web server (not shown), which in turn interfaces with computer system 306 .
- the user typically interacts with computer system 306 using a browser.
- Application server 500 includes a dispatcher 502 .
- Dispatcher 502 is an application programming interface (API) that handles the invocation of other modules in system 300 .
- the application server is coupled to database 302 and middleware 504 .
- API application programming interface
- Middleware 504 is in turn coupled to in-memory engine manager 410 .
- Middleware 504 manages communication traffic between different server processes, such as between application server 500 and in-memory engine manager 410 .
- Optional code interface 506 is a part of in-memory engine 304 in one embodiment.
- Code interface 506 is a language that gives the user the capability to customize the behavior of plug-in 404 without having to rebuild the plug-in.
- code interface 506 allows the user to customize a graphical user interface (GUI) of plug-in 404 to suit the particular application.
- GUI graphical user interface
- a data access module 508 is coupled to database 302 and facilitates communication of the in-memory engine therewith. Specifically, data access module 508 handles communication between database 302 and data cache 406 .
- a SQL Access Manager SAM is the mechanism used by data access module 508 to communicate with database 302 .
- optimization utilities 510 also included within in-memory engine 304 are various optimization utilities 510 .
- These optimization utilities include third party packages 512 , an optimization wrapper 514 , other solvers 516 and other utilities 518 .
- Third party packages 512 are other generic algorithms modules (generic solvers) that can be written or purchased from various vendors and used in place of or in conjunction with generic algorithms module 408 .
- Optimization wrapper 514 is a generic layer wrapper interface. Optimization wrapper 514 provides a generic interface so that various generic algorithms modules from various vendors (or that were self-written) can be used. This module is an interface with plug-in 404 .
- Other solvers 516 are generic algorithms modules that are self-written.
- solvers 516 can be used as alternatives to or in conjunction with third party packages 512 .
- Each third party package 512 and other solver 516 has an optimization wrapper 514 associated therewith.
- Other utilities 518 comprise utilities that are used frequently enough to include in order to avoid having to build them from scratch. An example is a program to compute a histogram.
- plug-in 404 can contain various modules as well. Some typical examples are a model representation module 520 , a solver manager 522 and a solution strategy module 524 .
- Model representation module 520 is an application specific module that contains information related to the specific application.
- the model representation module contains a mathematical model of the specific real world scenario being analyzed.
- Solver manager 522 orchestrates the flow of certain information. For example, solver manager 522 passes output from generic algorithms module 408 to plug-in 404 . Solver manager 522 also routes various requests. Solver manager 522 takes results from generic algorithms module 408 and interprets them, placing the result into data cache 406 . For example, if X 1 equals 5, the solver manager might interpret this to mean that Project 1 should be staffed with five consultants.
- Solution strategy module 524 orchestrates at a higher level how to solve the overall problem.
- Solution strategy module 524 invokes generic solvers, e.g., Solver X and subsequently Solver Y, in order to refine the solution.
- Solution strategy module 524 is basically a control mechanism for how to combine the capability of the generic solvers.
- a user desires to use system 300 to solve a particular overall business problem as discussed herein.
- the user would store the pertinent data in database 302 .
- this data includes information related to inventory, suppliers, BOMs, etc.
- the user uses computer system 306 (or some other means of data entry) and a GUI, the user also defines the overall problem to be solved, which is stored in database 302 in one embodiment.
- the user decides what criteria (e.g., cost, service quality, etc.) are of most and least importance at this time.
- the user also decides what parameters should be solved for.
- Database 302 (and now data cache 406 ) is already populated (or is manually populated) with pertinent data needed to solve the overall problem. As discussed herein, this data typically changes over time as new sales orders come in, inventory is depleted, etc.
- the user instructs that the overall problem (overall problem instance), which was previously defined and stored as data in database 302 , be initialized from database 302 into data cache 406 using computer system 306 and dispatcher 502 .
- the overall problem instance comprises the relevant information that is necessary to solve a particular business problem.
- An overall problem instance in the supply chain planning context, includes that customer XYZ requires 100 of item P001 on Jan. 20, 2002, and 3000 of item P020 on Feb. 15, 2002, etc.
- building one P001 item requires five P002 items, two P003 items, etc.
- the user may want a production plan that minimizes the total cost.
- the data representing the overall problem is loaded from database 302 into data cache 406 .
- all of the pertinent data is now readily available in data cache 406 .
- This availability of all of the pertinent data in data cache 406 facilitates rapid computations.
- all of the data from database 302 is loaded into data cache 406 .
- substantially all of the data from database 302 is loaded into data cache 406 .
- “Substantially all of the data,” as used herein, refers to a significant portion of the data but not necessarily incidental data such as data related to overhead, data dependent upon the hardware that the application is running on, etc.
- solution strategy module 524 creates a mathematical representation of the overall problem.
- the creation may include one or more mathematical representations that may be used in conjunction with one or more generic solvers.
- Plug-in 404 creates a model representation module 520 where the mathematical representation of the overall problem is located.
- Model representation module 520 is created using the data representing the overall problem that was defined by the user and other data already now resident in data cache 406 . Mathematical models now represent much of the overall problem and data.
- in-memory engine 304 and plug-in 404 solve the overall problem, as will be shown with reference to FIG. 7 .
- FIG. 7 shows sub steps of step 604 (and step 618 mentioned herein).
- in-memory engine 304 and plug-in 404 use the modules contained within each in order to derive a solution.
- engine manager 410 forwards a request to solver manager 522 .
- Solver manager 522 has information that data cache 406 is current since the problem data was just loaded into the data cache.
- Model representation module 520 has also been updated if there was any change in data.
- One exemplary method of updating model representation module 520 is a callback mechanism. This means that model representation module 520 registers with data cache 406 so that the model representation module is automatically updated whenever data cache 406 is updated. Whenever data cache 406 is updated, the data cache calls a function that informs model representation module 520 that the model representation module may need an update.
- solver manager 522 passes control to solution strategy module 524 .
- Solution strategy module 524 contains information about how to solve the overall problem using various generic solvers such as generic algorithms module 408 .
- solution strategy module 524 thus invokes the appropriate generic solver(s) and reads from and writes to model representation module 520 , accordingly, in order to produce data representing a solution to the overall problem the user is trying to solve. Then, solver manager 522 interprets this data to determine a solution that is meaningful to the user. At step 710 , solution strategy module 524 updates data cache 406 with the solution to the overall problem the user is trying to solve. Subsequently, control passes back to solver manager 522 , and then to in-memory engine manager 410 .
- step 606 if application data 402 has not changed during the solving of the overall problem, then at step 608 , the data representing the solution is loaded from data cache 406 into database 302 , via the bidirectional mechanism (through data access module 508 ), and is accessed by the user. The user accesses the solution via application server 500 and computer system 306 .
- step 610 the process returns to either step 600 or step 614 depending on the instructions of the user.
- step 606 If, at step 606 , application data 402 has changed during the solving of the overall problem, then at step 612 , the solution is discarded, the user is informed and the process proceeds to step 610 . However, the user can decide to override the discarding of the problem.
- step 606 it should be noted that some of the data in database 302 could change in various ways.
- the user can change data in database 302 .
- Other examples of the changes that typically occur in the data in database 302 include new sales orders coming in, depletion of raw materials, etc.
- the changes are reflected in data cache 406 .
- step 610 If the user instructs, at step 610 , to make a transaction request, the process proceeds to step 614 .
- the user may change or modify the overall problem to be solved, or other data may have been modified, in database 302 .
- the user may now wish to generate a production plan that maximizes customer satisfaction (e.g., shipping on time is the top priority).
- step 616 engine manager 410 instructs data cache 406 to synchronize with database 302 .
- engine manager 410 instructs data cache 406 to synchronize with database 302 .
- Performing synchronization at this point is desirable because even though data from database 302 may have recently been copied to data cache 406 , the data in database 302 can be in a continual state of flux and may have changed since the last synchronization.
- Performing a synchronization means that data cache 406 will be updated, if necessary, to mirror metadata 400 and application data 402 in database 302 . This synchronization is performed with the assistance of the bidirectional mechanism shown by the dashed lines with arrowheads at both ends.
- Data cache 406 scans through the rows of data in the metadata arrays, via data access module 508 , and determines if any rows indicate a change since the last synchronization (or, in this case, since the data from database 302 was loaded into data cache 406 ). In order to make this check, flags within metadata 400 are examined. These flags indicate the last occurrence of updates for various parts (e.g., rows) of metadata 400 tables. The update flags are compared against flags from the last update of data cache 406 . This check will be made at the initiation of a user request.
- the data that has changed, if any, is then loaded from database 302 into data cache 406 via the bidirectional mechanism (through data access module 508 ).
- only the data in database 302 that has changed is loaded from database 302 into data cache 406 .
- substantially no more than the data in database 302 that has changed is loaded from database 302 into data cache 406 .
- database 302 holds 1 gigabyte of data and only 1 kilobyte of data has changed. Only (or substantially only) the 1-kilobyte of changed data is loaded from database 302 into data cache 406 . Consequently, the current data in database 302 is resident in in-memory engine 304 and can be accessed quickly to rapidly perform memory intensive computations. This process is much more efficient than copying over an entire database periodically or each time a data update is desired. Control is then passed back to engine manager 410 .
- in-memory engine 304 and plug-in 404 refine the solution, as discussed with reference to step 604 , after the update of step 616 .
- Refining the solution refers to solving the overall problem as before, albeit using an updated set of data. Accordingly, new results, if different than the previous results, are immediately transferred from data cache 406 to computer system 306 via database 302 and application server 500 . The process then proceeds to step 606 and beyond, as described herein.
- this process of the first set of data within database 302 changing, the second set of data in data cache 406 changing, and the solution to the overall problem being updated (if different than the previous solution) when the user makes a transaction request is an ongoing process.
- the data in data cache 406 is updated in a near-real-time fashion due to the synchronization made at the onset of user requests to see if the data in database 302 has changed since the last update.
- consistency of data is maintained in two ways. First, changes in the first set of data are used to update the second set of data. Second, when the data representing the solution to the overall problem changes, data cache 406 sends this changed data to database 302 .
- a module is included in in-memory engine 304 and referred to herein as “model representation base classes.”
- This module contains a set of base classes used to create the business model inside model representation module 520 of plug-in 404 .
- a primary goal of these base classes is to provide structure to the plug-in 404 implementation without sacrificing flexibility.
- a secondary goal is to provide the plug-in 404 with an interface to data cache 406 .
- the model representation base classes allow plug-in 404 to register for data cache 406 changes, look up data in data cache 406 , and make changes to the data in data cache 406 .
- the model representation base classes provide a mechanism to pass messages between objects in model representation module 520 in order to maintain overall model integrity.
- This change notification occurs by sending a delete message from the customer order object to the plan objects that depend on it.
- This mechanism is built into the base classes so that the plug-in specific tangible classes can take advantage of it in model representation module 520 .
- a system 300 has been shown and described that exhibits an efficient mechanism to handle near-real-time bidirectional synchronization between a database and an application.
- System 300 continuously and efficiently updates data resident in memory a near-real-time fashion.
- System 300 computes a solution that changes when the data resident in memory is updated. It should be noted that, unlike in the prior art, a separate GUI does not need to be created for each specific application. There is one GUI that is a part of system 300 that is independent of the various plug-ins 404 that can be used.
- FIG. 8 illustrates subsystems found in one exemplary computer system, such as computer system 306 , that can be used in accordance with embodiments of the present invention.
- Computers can be configured with many different hardware components and can be made in many dimensions and styles (e.g., laptop, palmtop, server, workstation and mainframe). Thus, any hardware platform suitable for performing the processing described herein is suitable for use with the present invention.
- Subsystems within computer system 306 are directly interfaced to an internal bus 810 .
- the subsystems include an input/output (I/O) controller 812 , a system random access memory (RAM) 814 , a central processing unit (CPU) 816 , a display adapter 818 , a serial port 820 , a fixed disk 822 and a network interface adapter 824 .
- I/O input/output
- RAM system random access memory
- CPU central processing unit
- display adapter 818 e.g., a serial port 820
- serial port 820 e.g., a serial port 820
- fixed disk 822 e.g., a fixed disk 822
- FIG. 8 is merely illustrative of one suitable configuration for providing a system in accordance with the present invention. Subsystems, components or devices other than those shown in FIG. 8 can be added without deviating from the scope of the invention. A suitable computer system can also be achieved without using all of the subsystems shown in FIG. 8 . Other subsystems such as a CD-ROM drive, graphics accelerator, etc., can be included in the configuration without affecting the performance of computer system 306 .
- One embodiment according to the present invention is related to the use of an apparatus, such as computer system 306 , for implementing a system according to embodiments of the present invention.
- CPU 816 can execute one or more sequences of one or more instructions contained in system RAM 814 . Such instructions may be read into system RAM 814 from a computer-readable medium, such as fixed disk 822 . Execution of the sequences of instructions contained in system RAM 814 causes the processor to perform process steps, such as the process steps described herein.
- processors in a multi-processing arrangement may also be employed to execute the sequences of instructions contained in the memory.
- hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
- Non-volatile media include, for example, optical or magnetic disks, such as fixed disk 822 .
- Volatile media include dynamic memory, such as system RAM 814 .
- Transmission media include coaxial cables, copper wire and fiber optics, among others, including the wires that comprise one embodiment of bus 810 . Transmission media can also take the form of acoustic or light waves, such as those generated during radio frequency (RF) and infrared (IR) data communications.
- RF radio frequency
- IR infrared
- Computer-readable media include, for example, a floppy disk, a flexible disk, a hard disk, magnetic tape, any other magnetic medium, a CD-ROM disk, digital video disk (DVD), any other optical medium, punch cards, paper tape, any other physical medium with patterns of marks or holes, a RAM, a PROM, an EPROM, a FLASHEPROM, any other memory chip or cartridge, a carrier wave, or any other medium from which a computer can read.
- Bus 810 carries the data to system RAM 814 , from which CPU 816 retrieves and executes the instructions.
- the instructions received by system RAM 814 can optionally be stored on fixed disk 822 either before or after execution by CPU 816 .
- FIG. 8 is illustrative of but one suitable configuration. Subsystems, components or devices other than those shown in FIG. 8 can be added. A suitable computer system can be achieved without using all of the subsystems shown in FIG. 8 .
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
Description
Claims (14)
Priority Applications (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US10/041,033 US7200720B1 (en) | 2001-12-28 | 2001-12-28 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
US11/679,040 US7444477B2 (en) | 2001-12-28 | 2007-02-26 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US10/041,033 US7200720B1 (en) | 2001-12-28 | 2001-12-28 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
Related Child Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US11/679,040 Continuation US7444477B2 (en) | 2001-12-28 | 2007-02-26 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
Publications (1)
Publication Number | Publication Date |
---|---|
US7200720B1 true US7200720B1 (en) | 2007-04-03 |
Family
ID=37897708
Family Applications (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US10/041,033 Expired - Lifetime US7200720B1 (en) | 2001-12-28 | 2001-12-28 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
US11/679,040 Expired - Lifetime US7444477B2 (en) | 2001-12-28 | 2007-02-26 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
Family Applications After (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US11/679,040 Expired - Lifetime US7444477B2 (en) | 2001-12-28 | 2007-02-26 | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data |
Country Status (1)
Country | Link |
---|---|
US (2) | US7200720B1 (en) |
Cited By (13)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20050138021A1 (en) * | 2003-12-23 | 2005-06-23 | Budi Santoso | Performance improvement |
US20050182785A1 (en) * | 2004-02-12 | 2005-08-18 | Mobileframe, Llc, A California Limited Liability Company | Smart database |
US20050182787A1 (en) * | 2004-02-12 | 2005-08-18 | Mobileframe, Llc | Intelligent rendering on a mobile computing device |
US20120110428A1 (en) * | 2010-11-03 | 2012-05-03 | Microsoft Corporation | Spreadsheet model for distributed computations |
US20130166497A1 (en) * | 2011-12-23 | 2013-06-27 | Sebastian Schroetel | Dynamic recreation of multidimensional analytical data |
US20140207772A1 (en) * | 2011-10-20 | 2014-07-24 | International Business Machines Corporation | Computer-implemented information reuse |
US20150095280A1 (en) * | 2013-10-02 | 2015-04-02 | Canon Kabushiki Kaisha | Data synchronization method, data synchronization apparatus, and storage medium for synchronizing data among a plurality of databases |
CN106202365A (en) * | 2016-07-07 | 2016-12-07 | 帅斌鹏 | Method, system and the data-base cluster that database update synchronizes |
US20170061133A1 (en) * | 2015-09-02 | 2017-03-02 | Sap Se | Automated Security Vulnerability Exploit Tracking on Social Media |
US9953294B2 (en) * | 2012-10-15 | 2018-04-24 | Sap Se | Enabling an in-memory transactional application |
US10360271B2 (en) | 2014-02-25 | 2019-07-23 | Sap Se | Mining security vulnerabilities available from social media |
US11126615B2 (en) * | 2014-07-14 | 2021-09-21 | Oracle International Corporation | Message personalization over multiple internet messaging campaigns |
US11204891B2 (en) * | 2016-11-04 | 2021-12-21 | International Business Machines Corporation | Identifying partial update for tape file system |
Families Citing this family (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8959433B2 (en) * | 2007-08-19 | 2015-02-17 | Multimodal Technologies, Llc | Document editing using anchors |
US8429035B1 (en) * | 2009-08-26 | 2013-04-23 | Jda Software Group, Inc. | System and method of solving large scale supply chain planning problems with integer constraints |
Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6675178B1 (en) * | 2000-11-09 | 2004-01-06 | Accenture Llp | Method and system for enhancing a commercial transaction conducted via a communications network |
US6820085B2 (en) * | 2001-06-26 | 2004-11-16 | Hitachi, Ltd. | Web system having clustered application servers and clustered databases |
US6895471B1 (en) * | 2000-08-22 | 2005-05-17 | Informatica Corporation | Method and apparatus for synchronizing cache with target tables in a data warehousing system |
-
2001
- 2001-12-28 US US10/041,033 patent/US7200720B1/en not_active Expired - Lifetime
-
2007
- 2007-02-26 US US11/679,040 patent/US7444477B2/en not_active Expired - Lifetime
Patent Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6895471B1 (en) * | 2000-08-22 | 2005-05-17 | Informatica Corporation | Method and apparatus for synchronizing cache with target tables in a data warehousing system |
US6675178B1 (en) * | 2000-11-09 | 2004-01-06 | Accenture Llp | Method and system for enhancing a commercial transaction conducted via a communications network |
US6820085B2 (en) * | 2001-06-26 | 2004-11-16 | Hitachi, Ltd. | Web system having clustered application servers and clustered databases |
Cited By (26)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20050138021A1 (en) * | 2003-12-23 | 2005-06-23 | Budi Santoso | Performance improvement |
US8751926B2 (en) | 2004-02-12 | 2014-06-10 | Mobileframe, Llc | Intelligent rendering on a mobile computing device |
US20050182785A1 (en) * | 2004-02-12 | 2005-08-18 | Mobileframe, Llc, A California Limited Liability Company | Smart database |
US20050182787A1 (en) * | 2004-02-12 | 2005-08-18 | Mobileframe, Llc | Intelligent rendering on a mobile computing device |
US20050193028A1 (en) * | 2004-02-12 | 2005-09-01 | Mobileframe, Llc, A California Limited Liability Company | Smart synchronization |
US20050210099A1 (en) * | 2004-02-12 | 2005-09-22 | Mobileframe, Llc, A California Limited Liability Company | Integrated deployment of software projects |
US7565381B2 (en) * | 2004-02-12 | 2009-07-21 | Mobileframe, Llc | Smart synchronization using created manifest |
US7577911B2 (en) | 2004-02-12 | 2009-08-18 | Mobileframe, Llc | Integrated deployment of software projects |
US7730097B2 (en) | 2004-02-12 | 2010-06-01 | Mobileframe, Llc | Smart database |
US8225215B2 (en) | 2004-02-12 | 2012-07-17 | Mobileframe, Llc | Integrated deployment of software projects |
US9952893B2 (en) * | 2010-11-03 | 2018-04-24 | Microsoft Technology Licensing, Llc | Spreadsheet model for distributed computations |
US20120110428A1 (en) * | 2010-11-03 | 2012-05-03 | Microsoft Corporation | Spreadsheet model for distributed computations |
US20140207772A1 (en) * | 2011-10-20 | 2014-07-24 | International Business Machines Corporation | Computer-implemented information reuse |
US9342587B2 (en) * | 2011-10-20 | 2016-05-17 | International Business Machines Corporation | Computer-implemented information reuse |
US9348874B2 (en) * | 2011-12-23 | 2016-05-24 | Sap Se | Dynamic recreation of multidimensional analytical data |
US20130166497A1 (en) * | 2011-12-23 | 2013-06-27 | Sebastian Schroetel | Dynamic recreation of multidimensional analytical data |
US9953294B2 (en) * | 2012-10-15 | 2018-04-24 | Sap Se | Enabling an in-memory transactional application |
US10346427B2 (en) * | 2013-10-02 | 2019-07-09 | Canon Kabushiki Kaisha | Data synchronization method, data synchronization apparatus, and storage medium for synchronizing data among a plurality of databases |
US20150095280A1 (en) * | 2013-10-02 | 2015-04-02 | Canon Kabushiki Kaisha | Data synchronization method, data synchronization apparatus, and storage medium for synchronizing data among a plurality of databases |
US10360271B2 (en) | 2014-02-25 | 2019-07-23 | Sap Se | Mining security vulnerabilities available from social media |
US11126615B2 (en) * | 2014-07-14 | 2021-09-21 | Oracle International Corporation | Message personalization over multiple internet messaging campaigns |
US20170061133A1 (en) * | 2015-09-02 | 2017-03-02 | Sap Se | Automated Security Vulnerability Exploit Tracking on Social Media |
US10127385B2 (en) * | 2015-09-02 | 2018-11-13 | Sap Se | Automated security vulnerability exploit tracking on social media |
CN106202365B (en) * | 2016-07-07 | 2020-01-31 | 帅斌鹏 | Method and system for database update synchronization and database cluster |
CN106202365A (en) * | 2016-07-07 | 2016-12-07 | 帅斌鹏 | Method, system and the data-base cluster that database update synchronizes |
US11204891B2 (en) * | 2016-11-04 | 2021-12-21 | International Business Machines Corporation | Identifying partial update for tape file system |
Also Published As
Publication number | Publication date |
---|---|
US20070143254A1 (en) | 2007-06-21 |
US7444477B2 (en) | 2008-10-28 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US7444477B2 (en) | System and method for efficiently performing memory intensive computations including a bidirectional synchronization mechanism for maintaining consistency of data | |
US6523032B1 (en) | Servicing database requests using read-only database servers coupled to a master database server | |
EP3428811B1 (en) | Database interface agent for a tenant-based upgrade system | |
US11556518B2 (en) | System and method for providing high availability data | |
US7111001B2 (en) | Event driven transaction state management with single cache for persistent framework | |
US9361390B2 (en) | Web content management | |
US7769789B2 (en) | High performant row-level data manipulation using a data layer interface | |
US7814091B2 (en) | Multi-tiered query processing techniques for minus and intersect operators | |
CN105723363B (en) | Method for maintaining and upgrading tenant database in ERP system and server thereof | |
US9223841B2 (en) | System and method for providing high availability data | |
US8495166B2 (en) | Optimized caching for large data requests | |
US8494888B2 (en) | Offline modification of business data | |
KR20050030531A (en) | Self-maintaining real-time data aggregation | |
US10832309B2 (en) | Inventory data model for large scale flash sales | |
US20180018370A1 (en) | Query processing using primary data versioning and secondary data | |
CN110287264A (en) | Batch data update method, device and the system of distributed data base | |
JP5181183B2 (en) | CONVERSION DEVICE, SERVER SYSTEM, CONVERSION METHOD, AND PROGRAM | |
US20060277228A1 (en) | Method and apparatus for manipulating remote database through remote access | |
US7213029B2 (en) | Quiescing work bounded by application transactions consisting of multiple relational database transactions | |
US10534756B1 (en) | Systems and methods for cross-referencing electronic documents on distributed storage servers | |
JP2002506254A (en) | Method, apparatus, system, and program product for applying files and other objects to a partially replicated database | |
CN113778975A (en) | Data processing method and device based on distributed database | |
JPH0844670A (en) | File managing method, computer system using the same and operating method for computer system | |
US20240028593A1 (en) | In-memory graph query engine with persisted storage | |
US20240111746A1 (en) | Key permission distribution |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: PEOPLESOFT, INC., CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:YANG, JIN;KORUPOLU, RAO;WANG, JINLIN;AND OTHERS;REEL/FRAME:012722/0829 Effective date: 20020108 |
|
AS | Assignment |
Owner name: ORACLE INTERNATIONAL CORPORATION, CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:PEOPLESOFT, INC.;J.D. EDWARDS & COMPANY, LLC;REEL/FRAME:016950/0887 Effective date: 20051028 Owner name: ORACLE INTERNATIONAL CORPORATION,CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:PEOPLESOFT, INC.;J.D. EDWARDS & COMPANY, LLC;REEL/FRAME:016950/0887 Effective date: 20051028 |
|
AS | Assignment |
Owner name: ORACLE INTERNATIONAL CORPORATION, CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:PEOPLESOFT, INC.;J.D. EDWARDS & COMPANY, LLC;REEL/FRAME:017730/0927 Effective date: 20051028 Owner name: ORACLE INTERNATIONAL CORPORATION,CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:PEOPLESOFT, INC.;J.D. EDWARDS & COMPANY, LLC;REEL/FRAME:017730/0927 Effective date: 20051028 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
FPAY | Fee payment |
Year of fee payment: 4 |
|
FPAY | Fee payment |
Year of fee payment: 8 |
|
MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 12TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1553); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY Year of fee payment: 12 |