Read mostly instances

Information

  • Patent Grant
  • 10152500
  • Patent Number
    10,152,500
  • Date Filed
    Thursday, March 14, 2013
    11 years ago
  • Date Issued
    Tuesday, December 11, 2018
    5 years ago
Abstract
According to one aspect of the invention, a read-write instance of a multiple-instance database system receives a database statement for execution. The multiple-instance database system comprises a database shared by a plurality read-mostly instances that request only read access to a plurality of user database objects in the database and a plurality of read-write instances that request both read access and write access to the plurality of user database objects. The read-write instance selects one or more read-mostly instances, in the plurality of read-mostly instances, to perform one or more operations that require no write access to the plurality of user data objects.
Description
TECHNICAL FIELD

The present invention relates to database and, more specifically, to multiple-instance database systems.


BACKGROUND

Online transaction processing (OLTP) systems support high transaction-oriented applications. The workload of OLTP entails frequent updates that each involves modifications to relatively small amounts database data and entails execution of many queries that each access and generate relatively small amounts of data. Important capabilities of the clustered database systems supporting OLTP workloads include not only high availability but also transaction processing of database data. While these capabilities are important to supporting OLTP workloads, the capabilities exact high overhead.


The database data generated by OLTP can be exploited by decision support systems (DSS). DSS generates analytic data from raw database data, such as that generated by OLTP systems. The workload of DSS entails execution of queries requiring much computation and accessing a large volume of data.


Under database consolidation, OLTP systems and DSS may be hosted on the same clustered database system. Database consolidation not only allows for more efficient use of computer resources but also provides a DSS system better access to the raw database data generated by the OLTP system. However, the DSS work load is subjected to the overhead needed by OLTP to support high availability and transaction processing, which impairs the scalability of clustered database systems used for consolidating OLTP and DSS systems.


The approaches described in this section are approaches that could be pursued, but not necessarily approaches that have been previously conceived or pursued. Therefore, unless otherwise indicated, it should not be assumed that any of the approaches described in this section qualify as prior art merely by virtue of their inclusion in this section.





BRIEF DESCRIPTION OF THE DRAWINGS

The present invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings and in which like reference numerals refer to similar elements and in which:



FIG. 1 is a block diagram that depicts an example multiple-instance database system 100, according to an embodiment of the present invention;



FIG. 2 is an example process flow, according to an embodiment of the invention; and



FIG. 3 is a block diagram illustrating a computer system on which embodiments of the invention may be implemented.





DETAILED DESCRIPTION

In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, that the present invention may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to avoid unnecessarily obscuring the present invention.


General Overview

A multiple-instance database system (or a cluster database system) is a cluster comprising multiple database server “instances” (or “nodes”) that together manage a database. Multiple types of applications/workloads may be concurrently performed in a multiple-instance database system. Example types of applications/workloads include, but are not limited only to, OLTP that generates numerous updates/writes to various data resources (e.g., data blocks, database files, SQL tables, etc.) in a database (e.g., 108) in the system (e.g., 100), DSS or data warehouse applications that executes parallel queries against a large number of data resources in the database 108 in the system 100, etc.


In a system comprising a relatively small number of instances, it may be acceptable for the system to have a mixture of different types of applications/workloads, as contentions among the instances may be easily handled with a limited number of potential contenders for resources in the system.


In a system comprising a relatively large number (e.g., 100's, 1000's, etc.) of instances, however, it could be problematic to host a mixture of different applications/workloads, as contentions and communication overheads among the instances might be difficult to handle with a large number of potential contenders or communication parties for resources in the system. Particularly, message protocols implemented in the system may require broadcast messages of certain types to every instance in the system.


Under some approaches, each instance in the system could obtain locks to certain resources that would block lock requests of all other instances. Thus, messaging protocols used to lock resources could be frequently invoked in OLTP or other update types of applications/workloads. The resultant lock contentions and message broadcasts could lead to performance degradation when a large number of contenders for resources exist in the system.


Under some other approaches, different databases (e.g., comprising the same data in different states) can be maintained for different types of applications/workloads. For example, a first database may be used to support OLTP and a second database may be used to support DSS. Database objects from the first database can be copied to the second databases from time to time (e.g., daily, weekly, monthly, etc.) to provide relatively recent database objects—but not the same up-to-date database objects used to support OLTP—to DSS. Replication of database objects between two databases helps resolve or avoid resource contention, but introduces significant latency, complexity and costs in a system.


Under techniques as described herein, in contrast, the same (e.g., relational) database system is maintained for and shared by all types of applications/workloads in a multiple-instance database system. Different types of applications/workloads are not restricted to their isolated databases but rather are supported by a combination of read-write instances and read-only instances that share the same database.


Specifically, some instances in the system under techniques as described herein are configured as read-mostly instances on which a database server process can perform operations that only require read access to user database objects in the (shared) database. Some other instances in the system are configured as read-write instances on which a database server process can perform operations that require read access, write access and both read-and-write access, to user database objects in the (shared) database.


A combination of read-mostly instances and read-write instances in a multiple-instance database system under techniques as described herein allow the same database to be capable of handling a variety of different types of applications/workloads including but not limited to OLTP, DSS, data warehousing, etc., without sacrificing performance.


For example, a coordinator process in a read-write instance can be configured to select and assign only read-only operations to read-mostly instances in the system. While one coordinator process selects and assigns one or more read-mostly instances to run parallel queries in DSS, another coordinator process can select and assign one or more read-write instances to perform OLTP operations including but not limited to write operations in database transactions.


A coordinator process—which may be a part of, or operate in conjunction with, a parallel query engine—can be configured to (e.g., automatically) determine whether a database statement should be offloaded to read-mostly instances, determine the number of parallel database server processes to be allocated to the read-mostly instances and/or to run completely in memory in the read-mostly instances, determine how to allocate parallel database server processes among the read-mostly instances and read-write instances when the database statement is to be executed on both read-mostly instances and read-write instances.


One or more of these determinations may be based in part on several factors including but not limited to one or more of availability and configuration of read-mostly instances, availability of read-write instances, runtime conditions, types of applications/workloads the database statement represents, types of database operations involved in the database statement, types of database files or resources to be accessed, types of locks expected to be requested, a desired degree of parallelism, database statistics, response time requirements, numbers of database files and/or resources to be locked and accessed, etc. One or more of these determinations can also be based on what data is currently residing in the buffer cache of the read-mostly instance(s). If a query needs to access the data currently in one or a few read-mostly instances, the coordinator can allocate parallel processes to run on those instances.


The database statement may be a Data Definition Language (DDL) or Data Manipulation Language (DML) statement that invokes operations that write to the (relational) database. In some embodiments, to reduce the amount of writes from read-mostly instances, parallel servers in read-mostly instances are configured not to execute DML and DDL row-sources (e.g., individual steps or operations of a database statement). Rather, only parallel servers in read-write instances are configured to execute DML and DDL row-sources.


System Overview

Generally, an instance, such as a database server instance, in a multiple-instance database system is a combination of integrated software components and an allocation of computational resources, such as memory, a node, and processes on the node for executing the integrated software components, where the combination of the software and computational resources are dedicated to providing a particular type of function on behalf of clients of the database server instance. A database server instance (or an instance herein) comprises one or more database server processes that read data from and/or write data to the database located on shared storage. Instances may communicate with other instances and the shared storage through a network and/or other communication mechanisms. A database server process in an instance may comprise or represent one or more of processing modules, threads of execution, slave processes, operators in an execution plan, consumer processes, producer processes, scan operations, sort operations, etc.


Multiple-instance database systems offer many benefits not available in alternative data processing configurations. The computational power offered by a system of relatively inexpensive instances often rivals the computational power offered by a single, much more expensive, computing device. Individual instances can be added to or removed from a system according to need. Thus, a multiple-instance database system can be highly scalable. Even when one instance in a system fails, other instances in the system may continue to provide services. Thus, a multiple-instance database system can be highly available and/or fault-tolerant.


In a multiple-instance database system, instances (e.g., database server processes thereon) often compete for “shared data resources,” such as for example, blocks of data (referred to as “data blocks” or “blocks” herein) in a database. A shared data resource may be concurrently accessed by a number of instances if accesses by the instances are compatible. A shared data resource may be blocked from being accessed by an instance if the access sought by the instance is incompatible with existing accesses that have already been granted to other instances.


A data block is an atomic unit of persistent storage used by a database to store database records (e.g. rows of a table). When a row needs to be accessed from persistent storage, the entire data block containing the row is copied into a data block buffer in volatile memory (e.g., buffer cache) of a database server. A data block usually contains multiple rows, and control and formatting information (e.g., offsets to sequences of bytes representing rows or other data structures, list of transactions affecting a row, a system change number (SCN) of a recent change to the data block, etc.). A data block's size is typically fixed, e.g., 8 KB. The size of a data block may be based on the properties of the shared storage (or disk) on which data is stored and/or the mechanism that is used to read and write data to the shared storage.


An SCN is a logical number assigned to a transaction (or a part therein), a begin-transaction record, a change record in a transaction, an end-transaction record in a transaction, a data change in a data block, etc. SCNs are issued in a time order (e.g., increment over the time) and thus each SCN represents a logical time relative to other SCNs. A commit SCN associated with a transaction (or an end-transaction record therein) indicates a logical time at which the transaction was committed within the database.


A master (or resource master) can be configured to coordinate access by any of all instances (or database server processes thereon) in the multiple-instance database system to a shared data resource. A lock mechanism may be used by a master to coordinate access to data blocks or database objects, such as a row, table, or table partition. An exclusive lock may be issued to allow an instance (or a database server process thereon) to perform any read/write access, while a consistent read lock may be issued to allow a instance (or a database server process thereon) to perform read-only access. As used herein, a consistent read is designed to provide data from the database that reflects the state of the database up to a time which, for example, may be logically represented by an SCN. The term “master” as used herein may also refer to an instance on which a system process (a master) that coordinates access to a resource resides. One example of a master is described in U.S. Pat. No. 7,917,596 B2, entitled “Super Master,” and issued on Mar. 29, 2011, and is incorporated herein by reference for all purposes as if fully set forth herein. One example of a lock management system is described in U.S. Pat. No. 6,363,396, entitled “Object Hashing With Incremental Changes,” and issued on Mar. 26, 2002, and is incorporated herein by reference for all purposes as if fully set forth herein.



FIG. 1 is a block diagram that depicts an example multiple-instance database system 100, according to an embodiment of the present invention. System 100 comprises one or more read-write instances (such as 102A and 102B) and one or more read-mostly instances (such as 102C and 102D). Each of the instances has one or more processors. Each of the instances is coupled communicatively with a network 104. The network 104 may be a high speed network such as an infiniband network.


System 100 also comprises a shared storage 106, which is also coupled communicatively with the network 104. Thus, through the network 104, instances 102A-D can access each other and shared storage 106.


The shared storage 106 may be, for example, a persistent storage mechanism such as a hard disk drive. The shared storage 106 contains a database 108. The database 108 comprises one or more data blocks. These blocks collectively contain database objects such as database tables. The database objects in the database 108 may comprise a plurality of user database objects and a plurality of system database objects. A system database object is generated by the system (or system processes) and cannot be modified or deleted by a database user or a database application. A user database object may be generated, modified and/or deleted by a database user or a database application. Unless disabled (e.g., logging and statistics generation disabled on a specific instance), a system database object such as system logs and system statistics can be write-accessed by an instance (e.g., through a system process thereon) while the instance is performing an operation (e.g., through a database server process) for a database user or a database application.


Techniques as described herein do not require read-mostly instances to have direct access to database objects (or files) in the shared database. Read-mostly instances may or may not have direct access to databases (or files) in the shared database. In some embodiments, at least one read-mostly instance can be configured with direct access to the database. In some embodiments, at least one read-mostly instance can be configured with no direct access to the database. The term “direct access” means that an instance can access a data, such as a data block in the shared storage, without having to request it from another instance. In some embodiments, IO operations generated by the read-mostly instance can be configured to go through some read-write instances. This can obviate any requirements to configure all instances with direct connections to the shared data storage 106.


Each of the instances comprises one or more database server processes. Database server processes in a read-write instance can perform read operations, write operations, or combinations thereof in relation to (or on) the plurality of user database objects in the database 108. Database server processes in a read-mostly instance, on the other hand, are restricted perform read operations in relation to (or on) the plurality of user database objects in the database 108. For the purpose of illustration only, a database server process 110A is in the instance 102A, a database server process 110B is in the instance 102B, a database server process 110C is in the instance 102C, and a database server process 110D is in the instance 102D. The database server processes 110A and 110B can perform read operations, write operations and combinations of read and write operations on at least some of the plurality of user database objects, because the database server processes 110A and 110B are part of read-write instances (102A and 102B in this example). The database server processes 110C and 110D, on the other hand, can only perform read operations but not write operations on any of the plurality of user database objects, because the database server processes 110C and 110D are part of read-mostly instances (102C and 102C in this example).


Read-Mostly Instances

A read-mostly instance (e.g., 102C, 102D, etc.) can be configured with some characteristics different from a read-write instance (e.g., 102A, 102B, etc.). For example, a read-mostly instance may be configured with a slightly higher IO latency than that of a read-write instance. The read-mostly instance may spawn or run database server processes that can be assigned with (e.g., portions of) operations of a database statement execution plan that do not require write access to any user database object to which access is required to compute or otherwise execute the database statement execution plan. Available in-memory copies of data blocks or portions of a data block can be provided to a database server process in a read-mostly instance in order to avoid unnecessary read access to persistently stored versions of the data blocks or portions of the data block in the database (e.g., 108). Zero, one or more system processes in the read-mostly instance may generate very little to no updates to user data and instead only update system database objects. For example, a read-mostly instance may perform limited updating such as update workload metrics generated in response to performing read-only operations. In this way, a read-mostly instance performs relatively little locking and generation of redo and/or undo logging in comparison with a read-write instance.


Processes that are not related to types of applications/workloads configured to be handled by read-mostly instances may be removed from or may not be configured to run in the read-mostly instances. These processes include but not limited to a large number of background processes or activities used to support other types of applications/workloads not configured to be handled by the read-mostly instances. For example, background workload processes such as user job schedulers that are not related to in-memory parallel query processing may be reduced or removed from the read-mostly instances.


In some embodiments, read-write instances form the core of a multiple-instance database system, whereas read-mostly instances can be used whenever available in the system. In some embodiments, at least one of the read-write instances is started before all read-mostly instances in the system. In some embodiments, when all read-write instances are out of service, the system may be shut down or restarted. In some embodiments, database users or database applications are allowed to connect to only read-write instances. For example, the system may provision user connection listeners and/or coordinator processes accessible by the users or applications at network addresses and ports of the read-write instances only. No such listeners for user connection requests may be provided with read-mostly instances. The system can be configured to receive users or applications' connection requests and accept user jobs only at the read-write instances. These user jobs may include but are not limited only to database statements (e.g., DDL, DML, query, etc.) for execution.


The read-mostly instance can be configured to access slightly out-of-date data. Read access to a slightly out-of copy of data by a read-mostly instance can be concurrently made when the data is being updated, or made available to be updated, by read-write instances. For example, a coordinator process that coordinates the execution of a database statement can be configured to assign one or more operations for the execution of a database statement to a database server process (which may be spawned by the coordinator process or which may have been spawned but is presently available) on the read-mostly instance, and provide the database server process (e.g., a slave process, a consumer, a producer, etc.) with a committed SCN for any user database object to be (read) accessed by the database server process in the read-mostly instance, even if such a user database object is concurrently being updated, or made available to be updated, by a database server process in a read-write instance. The database server process in the read-mostly instance can be configured to receive and/or cache a copy of a user database object with a committed SCN from the database (e.g., 108), or from the coordinator process, or from another database server process, etc.


Under other approaches, an instance usually broadcasts a committed system change number of a transaction to all other instances in a system, so that all the instances can advance their own system change numbers and be able to access the committed changes made by the transaction. Under techniques as described herein, in contrast, an instance does not need to broadcast a committed system change number to read-mostly instances in a multiple-instance database system but only broadcasts to read-write instances in the system if necessary.


No Resource Mastership for Read-Mostly Instances

In some embodiments, a read-mostly instance may be configured to generate no lock request. In some embodiments, a read-mostly instance may be configured to generate (e.g., very few such as 1%, 2%, 5%, 10%, etc., of an average number of lock requests generated by a read-write instance) share-lock requests but no exclusive-lock requests.


In some embodiments, a read-mostly instance may be configured to generate (e.g., very few such as 1%, 2%, 5%, 10%, etc., of an average number of lock requests generated by a read-write instance) exclusive-lock requests. In these embodiments, the exclusive-lock requests may be made by a system process so that the system process in the read-mostly instance can delete, update and/or create system database objects such as system logs and statistics.


Thus, read-mostly instances are expected to generate no or very few lock requests on their own. Furthermore, in some embodiments, none of the read-mostly instances, including but not limited to system processes thereon, may be configured or designated or elected as a resource master. As a result, the read-mostly instances are not burdened with tasks related to servicing lock requests from other instances in the system. Conversely, performance of servicing lock requests by the read-write instances (e.g., resource masters) in the system is not affected by the presence of a potentially large number of read-mostly instances in the same system.


A failure of a read-mostly instance, which does not master resources, does not trigger a (e.g., full-blown) reconfiguration of the multiple-instance database system. No resource re-mastering (or migration of the mastership of one or more resources from one instance to another instance) is necessary, since read-mostly instances do not master any resources to begin with. In the embodiments in which the read-mostly instance owns a small number of locks, the failure of the read-mostly instance still does not cause resource re-mastering but at most only triggers a cleanup of locks owned by the failed (or disappearing) read-mostly instance at masters (or read-write instances on which the masters reside) of resources previously reserved by the locks. Costly reconfiguration operations, including but not limited to rebuilding master maps, lock replays (or replaying lock requests to new masters), etc., which may have to be incurred at a failure of a read-write instance, can be avoided following the failure of the read-mostly instance. As a result, techniques as described herein achieve a high degree of fault and performance isolation of read-write instances from failures of read-mostly instances.


Adding or re-joining a read-mostly instance to the system also does not trigger a (e.g., full-blown) major reconfiguration of the multiple-instance database system. Active instance map may be updated by the instances of the system. However, no resource mastering is expected of the read-mostly instance. A coordinator process in a read-write instance for executing database statements may be configured to assign, based on the current active instance map, new operations (e.g., from existing database statements being executed or from newly received database statements to be executed) to the newly added read-mostly instance.


The multiple-instance database system can be configured to allow a read-mostly instance to “disappear” from the system for a certain period of time (or indefinitely) with no or little interruption on-going operations of the system. If a failed read-mostly instance was a part of an execution plan of a database statement, a coordinator process (e.g., a query coordinator or QC) may adapt the execution plan dynamically and re-assign query operations that were assign to the failed read-mostly instance to a different available instance. The database statement can be continually executed by available instances in the system without interruption. In some embodiments, instead of re-assigning operations from the failed read-mostly instance to a different available instance, the coordinator process may be configured to abort the previous execution plan and restart executing the database statement from the beginning (e.g., by forming a new execution plan that excludes the failed instance). Consequently, the failure of the read-mostly instance not only does not cause reconfiguration of the system, but also does not prevent the system from carrying out user jobs to successful ends.


In some embodiments, read-mostly instances can be specialized to achieve better performance in their designated types of applications/workloads than read-write instances, even with fewer hardware requirements than the read-write instances in some aspects. For example, instead of always generating redo log files, relatively small redo log files for read-mostly instances or log files can be generated on demand if needed to. The frequency of log switch (or switch between multiple log files) can be much lower in the read-mostly instance than the read-write instances.


Read-Write Instances

A read-write instance (e.g., 102A, 102B, etc.) can be configured with a relatively low IO latency than that of a write-mostly instance. The read-write instance may comprise database server processes that can be assigned with any operations of a database statement execution plan that may require write access to one or more user database objects in the database (e.g., 108). The read-write instance may be configured to perform resource locking protocols and access an up-to-date data when the data is being updated by other read-write instances.


A read-write instance can host a coordinator process that coordinates the execution of a database statement. Such a coordinator process can be configured to assign one or more operations for the execution of a database statement to database server processes—which may be spawned by the coordinator process, or which may have been spawned and thus are presently available—on multiple instances which may include the read-write instance. Zero, one or more of these assigned operations may require a database server process in a read-write instance to acquire exclusive locks to one or more user database objects, even if such a user database object is concurrently being updated, or made available to be updated, by another database server process in another read-write instance. Zero, one or more of these assigned operations may require a database server process in a read-write instance to acquire read access to one or more user database objects. Zero, one or more of these assigned operations may require a database server process in a read-mostly instance to acquire read access to one or more user database objects.


Resource Mastership for Read-Write Instances

In some embodiments, only read-write instances in a multiple-instance database system can be assigned with resource masterships (or as resource masters). The distribution of resources masters among the read-write instances provides advantages for both load balancing and availability. By distributing resource masters among the read-write instances, lock acquisitions by each resource requesting instance have more or less the same amount of lock latency. Furthermore, a failure of a read-write instance only affects a portion of resources and only that portion of resources needs to rebuild (or locate) their masters among the remaining available read-write instances. When a new read-write instance joins the system, some resources can be re-mastered to the new instance.


With hundreds of read mostly and read write instances, there are higher chances of instances going down and coming up. The number of reconfigurations (or system reconfigurations) due to failures of instances can be reduced or avoided by locating critical system functions such as resource masterships only to read-write instances but not read-mostly instances and by triggering reconfiguration only when a read-write instance fails. In some embodiments, the system may be configured with a relatively few read-write instances and a relatively large number of read-mostly instances (e.g., 2×, 3×, 5×, 10×, etc., of the number of read-write instances). The number of read-write instances can be configured in proportion to the number of read-mostly instances.


Reconfiguration involves a relatively large number of exchanges of inter-instance messages and affects system availability when multiple instances are involved in exchanging and broadcasting messages. Under techniques as described herein, even when reconfiguration does occur, only a relatively small number of instances (e.g., read-write instances) as necessary are involved, and reconfiguration can be completed relatively quickly.


Example Process Flow


FIG. 2 is an example process flow, according to an embodiment of the invention. A coordinator instance (e.g., in a read-write instance 102A or 102B) performs the following steps.


In block 202, the coordinator instance receives a database statement for execution by a multiple-instance database system. The database statement may be any of DDLs, DMLs, database queries, etc.


In block 204, the coordinator instance identifies a plurality of operations that need to be performed for executing the database statement.


In block 206, the coordinator instance identifies any operations in the plurality of operations that can be performed by read-mostly instances. If the database statement is a database query (e.g., from DSS users or applications), most if not all of the operations to carry out the database query can be performed by read-mostly instances. If the database statement is, for example, an INSERT-SELECT statement, operations for executing the “SELECT” part of the INSERT-SELECT statement can be performed by read-mostly instances, while operations for executing the “INSERT” part of the INSERT-SELECT statement can only be performed by read-write instances.


In block 208, the coordinator instance, in response to determining that there exist (read-only) operations for read-mostly instances to perform, further identifies one or more read-mostly instances for performing these read-only operations. The coordinator instance may determine a desired degree of parallelism to perform one or more of these read-only operations. The coordinator instance may determine the number of currently available read-mostly instances. Based at least in part on these factors, the one or more read-mostly instances are identified by the coordinator instance.


In block 210, the coordinator instance sends one or more requests for performing the read-only operations to the one or more read-mostly instances. A request may comprise a runtime execution plan or one or more portions of a runtime execution plan. In some embodiments, a receiving instance of a runtime execution plan does not need to re-compile the runtime execution plan. In some embodiments, for a user database object to be read for the purpose of carrying out a read-only operation, the coordinator instance provides a committed SCN associated with the user database object. A consistent-read copy of the user database object comprising an image of the user database object at a logical time represented by the committed SCN can be provided by the system to a read-mostly instance involved in executing the database statement. In an example, the coordinator instance may fetch the consistent-read copy at the time of generating the runtime execution plan. In another example, the coordinator or the read-mostly instance may fetch the consistent-read copy on demand when executing the operation that requires read access to the user database object.


The coordinator instance may be configured to receive results of the read-only operations from the read-mostly instances. The coordinator may also be configured to receive results of other operations for executing the database statement from one or more read-write instances if the other operations for executing the database statement were assigned to the one or more read-write instances. These other operations to the read-write instances may be read-only operations or operations involving write access to user database objects in the database (108). The coordinator instance may be configured to consolidate results from all instances involved in executing the database statement, including but not necessarily limited only to the one or more read-mostly instances.


In some embodiments, a runtime execution plan of a database statement may be optimized after compilation and provided to all the participating instances on which database server processes are invoked to perform operations in relation to the database statement. One or more database server processes in the participating instances may be available at the time when the coordinator instance sends the requests for performing operations to the participating instances. One or more database server processes may be spawned or caused to be spawned by the coordinator instance at the time when the coordinator instance needs to send the requests for performing operations to the participating instances.


In some embodiments, a runtime execution plan may define the same memory space for all the participating instances to use. An instance may verify the runtime execution plan by computing and verifying a signature of the plan and compare signatures.


Techniques as described herein can be used to facilitate running large data warehouse applications/workloads on very large clusters of machines. In some embodiments, data that are accessed by multiple database statements or by multiple parts of a database statement can be placed into aggregated memory spaces and fetched by parallel servers using algorithms or operations that preserve affinity (e.g., related data resides nearby each other) across many database statements or many parts of a database statement or different instances or different database servers on the same instance.


Techniques as described herein can be used with a wide variety of other techniques and implemented in one or more different logical layers (e.g., parallel query, recovery, buffer cache, statistics collection, etc.) of a multiple-instance database systems to provide (e.g., customized) solutions for private cloud/hardware consolidation, near real time query performance, dynamic and distributed processing, etc.


Hardware Overview

According to one embodiment, the techniques described herein are implemented by one or more special-purpose computing devices. The special-purpose computing devices may be hard-wired to perform the techniques, or may include digital electronic devices such as one or more application-specific integrated circuits (ASICs) or field programmable gate arrays (FPGAs) that are persistently programmed to perform the techniques, or may include one or more general purpose hardware processors programmed to perform the techniques pursuant to program instructions in firmware, memory, other storage, or a combination. Such special-purpose computing devices may also combine custom hard-wired logic, ASICs, or FPGAs with custom programming to accomplish the techniques. The special-purpose computing devices may be desktop computer systems, portable computer systems, handheld devices, networking devices or any other device that incorporates hard-wired and/or program logic to implement the techniques.


For example, FIG. 3 is a block diagram that illustrates a computer system 300 upon which an embodiment of the invention may be implemented. Computer system 300 includes a bus 302 or other communication mechanism for communicating information, and a hardware processor 304 coupled with bus 302 for processing information. Hardware processor 304 may be, for example, a general purpose microprocessor.


Computer system 300 also includes a main memory 306, such as a random access memory (RAM) or other dynamic storage device, coupled to bus 302 for storing information and instructions to be executed by processor 304. Main memory 306 also may be used for storing temporary variables or other intermediate information during execution of instructions to be executed by processor 304. Such instructions, when stored in non-transitory storage media accessible to processor 304, render computer system 300 into a special-purpose machine that is customized to perform the operations specified in the instructions.


Computer system 300 further includes a read only memory (ROM) 308 or other static storage device coupled to bus 302 for storing static information and instructions for processor 304. A storage device 310, such as a magnetic disk, optical disk, or solid-state drive is provided and coupled to bus 302 for storing information and instructions.


Computer system 300 may be coupled via bus 302 to a display 312, such as a cathode ray tube (CRT), for displaying information to a computer user. An input device 314, including alphanumeric and other keys, is coupled to bus 302 for communicating information and command selections to processor 304. Another type of user input device is cursor control 316, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 304 and for controlling cursor movement on display 312. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.


Computer system 300 may implement the techniques described herein using customized hard-wired logic, one or more ASICs or FPGAs, firmware and/or program logic which in combination with the computer system causes or programs computer system 300 to be a special-purpose machine. According to one embodiment, the techniques herein are performed by computer system 300 in response to processor 304 executing one or more sequences of one or more instructions contained in main memory 306. Such instructions may be read into main memory 306 from another storage medium, such as storage device 310. Execution of the sequences of instructions contained in main memory 306 causes processor 304 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions.


The term “storage media” as used herein refers to any non-transitory media that store data and/or instructions that cause a machine to operate in a specific fashion. Such storage media may comprise non-volatile media and/or volatile media. Non-volatile media includes, for example, optical disks, magnetic disks, or solid-state drives, such as storage device 310. Volatile media includes dynamic memory, such as main memory 306. Common forms of storage media include, for example, a floppy disk, a flexible disk, hard disk, solid-state drive, magnetic tape, or any other magnetic data storage medium, a CD-ROM, any other optical data storage medium, any physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, NVRAM, any other memory chip or cartridge.


Storage media is distinct from but may be used in conjunction with transmission media. Transmission media participates in transferring information between storage media. For example, transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 302. Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications.


Various forms of media may be involved in carrying one or more sequences of one or more instructions to processor 304 for execution. For example, the instructions may initially be carried on a magnetic disk or solid-state drive of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 300 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal. An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 302. Bus 302 carries the data to main memory 306, from which processor 304 retrieves and executes the instructions. The instructions received by main memory 306 may optionally be stored on storage device 310 either before or after execution by processor 304.


Computer system 300 also includes a communication interface 318 coupled to bus 302. Communication interface 318 provides a two-way data communication coupling to a network link 320 that is connected to a local network 322. For example, communication interface 318 may be an integrated services digital network (ISDN) card, cable modem, satellite modem, or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 318 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.


Network link 320 typically provides data communication through a network to other data devices. For example, network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326. ISP 326 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 328. Local network 322 and Internet 328 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 320 and through communication interface 318, which carry the digital data to and from computer system 300, are example forms of transmission media.


Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318. In the Internet example, a server 330 might transmit a requested code for an application program through Internet 328, ISP 326, local network 322 and communication interface 318.


The received code may be executed by processor 304 as it is received, and/or stored in storage device 310, or other non-volatile storage for later execution.


In the foregoing specification, embodiments of the invention have been described with reference to numerous specific details that may vary from implementation to implementation. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense. The sole and exclusive indicator of the scope of the invention, and what is intended by the applicants to be the scope of the invention, is the literal and equivalent scope of the set of claims that issue from this application, in the specific form in which such claims issue, including any subsequent correction.

Claims
  • 1. A multi-instance database system comprising one or more computing devices, the multi-instance database system comprising: a database storing a plurality of user data objects;a plurality of database server instances sharing direct access to the database;wherein the plurality of database server instances comprises a plurality of read-write database server instances configured with read access and write access to the plurality of user data objects;wherein the plurality of database server instances comprises a plurality of read-mostly database server instances configured with only read access to the plurality of user data objects; anda read-write database server instance configured to: select one or more read-mostly database server instances, in the plurality of read-mostly database server instances, to perform one or more operations that require no write access to the plurality of user data objects;send, to a read-mostly database server instance of the one or more read-mostly database server instances, an execution plan for accessing the plurality of user data objects and a system change number (SCN) associated with the execution plan;the read-mostly database server instance configured to execute the execution plan, wherein executing the execution plan comprises accessing one or more user data objects of the plurality of user data objects using the SCN.
  • 2. The multi-instance database system of claim 1, wherein the one or more operations are among a plurality of operations to execute a database statement.
  • 3. The multi-instance database system of claim 2, wherein the database statement is one of a database query statement, a data manipulation language (DML) statement, or a data definition language (DDL) statement.
  • 4. The multi-instance database system of claim 1, wherein the read-write database server instance is further configured to select only one or more read-write database server instances in the plurality of read-write database server instances, to perform one or more second operations that require write access to the plurality of user data objects.
  • 5. The multi-instance database system of claim 1, wherein none of the plurality of read-mostly database server instances is configured to be resource masters of resources in the database.
  • 6. The multi-instance database system of claim 1, wherein none of the plurality of read-mostly database server instances is configured to receive a database statement from a user.
  • 7. A method comprising: a read-write database server instance of a multiple-instance database system receiving a database statement for execution, wherein the multiple-instance database system comprises a database shared by a plurality of read-mostly database server instances configured with only read access to a plurality of user database objects in the database and a plurality of read-write database server instances configured with both read access and write access to the plurality of user database objects; andthe read-write database server instance selecting one or more read-mostly database server instances, in the plurality of read-mostly database server instances, to perform one or more operations that require no write access to the plurality of user data objects;sending, to a read-mostly database server instance of the one or more read-mostly database server instances, an execution plan for accessing the plurality of user database objects and a system change number (SCN) associated with the execution plan;the read-mostly database server instance executing the execution plan, wherein executing the execution plan comprises accessing one or more user database objects of the plurality of user data objects using the SCN;wherein the method is performed by one or more computing devices.
  • 8. The method of claim 7, wherein the one or more operations are among a plurality of operations to execute a database statement.
  • 9. The method of claim 8, wherein the database statement is one of a database query statement, a data manipulation language (DML) statement, or a data definition language (DDL) statement.
  • 10. The method of claim 7, wherein the read-write database server instance is further configured to select one or more read-write database server instances in the plurality of read-write database server instances, to perform one or more second operations that require write access to the plurality of user data objects.
  • 11. The method of claim 7, wherein none of the plurality of read-mostly database server instances is configured to be resource masters to resources of the database.
  • 12. The method of claim 7, wherein none of the plurality of read-mostly database server instances is configured to receive a database statement from a user.
  • 13. The method of claim 7, wherein the plurality of read-write database server instances and the plurality of read-mostly database server instances share direct access to the database.
  • 14. One or more non-transitory computer-readable media storing instructions which, when executed by one or more processors, cause: a read-write database server instance of a multiple-instance database system receiving a database statement for execution, wherein the multiple-instance database system comprises a database shared by a plurality of read-mostly database server instances configured with only read access to a plurality of user database objects in the database and a plurality of read-write database server instances configured with both read access and write access to the plurality of user database objects; andthe read-write database server instance selecting one or more read-mostly database server instances, in the plurality of read-mostly database server instances, to perform one or more operations that require no write access to the plurality of user data objects;sending, to a read-mostly database server instance of the one or more read-mostly database server instances, an execution plan for accessing the plurality of user database objects and a system change number (SCN) associated with the execution plan;the read-mostly database server instance executing the execution plan, wherein executing the execution plan comprises accessing one or more user database objects of the plurality of user data objects using the SCN.
  • 15. The one or more media of claim 14, wherein the one or more operations are among a plurality of operations to execute a database statement.
  • 16. The one or more media of claim 14, wherein the read-write database server instance is further configured to select one or more read-write database server instances in the plurality of read-write database server instances, to perform one or more second operations that require write access to the plurality of user data objects.
  • 17. The one or more media of claim 14, wherein none of the plurality of read-mostly database server instances is configured to be resource masters of resources of the database.
  • 18. The one or more media of claim 14, wherein none of the plurality of read-mostly database server instances is configured to receive a database statement from a user.
  • 19. The one or more media of claim 14, wherein the plurality of read-write database server instances and the plurality of read-mostly database server instances share direct access to the database.
US Referenced Citations (226)
Number Name Date Kind
4507751 Gawlick et al. Mar 1985 A
4710926 Brown et al. Dec 1987 A
4782325 Jeppsson et al. Nov 1988 A
4945474 Elliott et al. Jul 1990 A
5095421 Freund Mar 1992 A
5146571 Logan Sep 1992 A
5182752 DeRoo et al. Jan 1993 A
5233618 Gilder et al. Aug 1993 A
5241675 Sheth et al. Aug 1993 A
5263156 Bowen et al. Nov 1993 A
5287496 Chen et al. Feb 1994 A
5327556 Mohan Jul 1994 A
5329628 Yomamoto et al. Jul 1994 A
5333316 Champagne et al. Jul 1994 A
5355477 Strickland et al. Oct 1994 A
5369757 Spiro et al. Nov 1994 A
5388196 Pajak et al. Feb 1995 A
5418940 Mohan May 1995 A
5487164 Kirchhofer et al. Jan 1996 A
5553279 Goldring Sep 1996 A
5559991 Kanfi Sep 1996 A
5581753 Terry et al. Dec 1996 A
5581754 Terry et al. Dec 1996 A
5588012 Oizumi Dec 1996 A
5603024 Goldring Feb 1997 A
5613113 Goldring Mar 1997 A
5696775 Nemazie et al. Dec 1997 A
5717893 Mattson Feb 1998 A
5734898 He Mar 1998 A
5742792 Yanai et al. Apr 1998 A
5778430 Ish et al. Jul 1998 A
5805799 Fredrickson et al. Sep 1998 A
5870759 Bauer et al. Feb 1999 A
5870763 Lomet Feb 1999 A
5893930 Song Apr 1999 A
5960436 Chang et al. Sep 1999 A
5983277 Heile et al. Nov 1999 A
6009432 Tarin Dec 1999 A
6009542 Koller et al. Dec 1999 A
6026406 Huang et al. Feb 2000 A
6044367 Wolff Mar 2000 A
6067550 Lomet May 2000 A
6094708 Hilla et al. Jul 2000 A
6098190 Rust et al. Aug 2000 A
6151607 Lomet Nov 2000 A
6192377 Ganesh et al. Feb 2001 B1
6226650 Mahajan May 2001 B1
6272500 Sugita Aug 2001 B1
6298319 Heile et al. Oct 2001 B1
6298425 Whitaker et al. Oct 2001 B1
6324661 Gerbault et al. Nov 2001 B1
6353835 Lieuwen Mar 2002 B1
6393485 Chao et al. May 2002 B1
6438724 Cox et al. Aug 2002 B1
6446234 Cox et al. Sep 2002 B1
6449623 Bohannon et al. Sep 2002 B1
6516327 Zondervan et al. Feb 2003 B1
6523032 Sunkara Feb 2003 B1
6535869 Housel, III Mar 2003 B1
6560743 Plants May 2003 B2
6574717 Ngai et al. Jun 2003 B1
6728879 Atkinson Apr 2004 B1
6732125 Autrey et al. May 2004 B1
6775681 Ballamkonda Aug 2004 B1
6804671 Loaiza et al. Oct 2004 B1
6839751 Dietz et al. Jan 2005 B1
6886084 Kawashima et al. Apr 2005 B2
6980988 Demers et al. Dec 2005 B1
7024656 Ahad Apr 2006 B1
7136970 Yoshiya et al. Nov 2006 B2
7149769 Lubbers et al. Dec 2006 B2
7149858 Kiselev Dec 2006 B1
7228354 Chambliss et al. Jun 2007 B2
7237027 Raccah et al. Jun 2007 B1
7246275 Therrien et al. Jul 2007 B2
7257689 Baird Aug 2007 B1
7363538 Joydip et al. Apr 2008 B1
7370068 Pham et al. May 2008 B1
7599967 Girkar et al. Oct 2009 B2
7600063 Loaiza Oct 2009 B2
7627612 Ahal et al. Dec 2009 B2
7627614 Hu et al. Dec 2009 B2
7734580 Lahiri et al. Jun 2010 B2
7761425 Erickson et al. Jul 2010 B1
7822717 Kappor et al. Oct 2010 B2
7895216 Longshaw et al. Feb 2011 B2
7966293 Owara et al. Jun 2011 B1
7996363 Girkar et al. Aug 2011 B2
8024396 Sedukhin Sep 2011 B2
8286182 Chan Oct 2012 B2
8364648 Sim-Tang Jan 2013 B1
8433684 Munoz Apr 2013 B2
8468320 Stringham Jun 2013 B1
8473953 Bourbonnais Jun 2013 B2
8478718 Ranade Jul 2013 B1
8560879 Goel Oct 2013 B1
8615578 Hu et al. Dec 2013 B2
8694733 Krishnan et al. Apr 2014 B2
8832142 Marwah et al. Sep 2014 B2
8838919 Shi et al. Sep 2014 B2
8856484 Ben-Tsion et al. Oct 2014 B2
8868492 Garin et al. Oct 2014 B2
8868504 Aranna et al. Oct 2014 B2
8930312 Rath Jan 2015 B1
9026679 Shmuylovich May 2015 B1
9077579 Chu Jul 2015 B1
9146934 Hu et al. Sep 2015 B2
9244996 Bourbonnais Jan 2016 B2
9767178 Srivastava et al. Sep 2017 B2
20020049950 Loaiza et al. Apr 2002 A1
20020091718 Bohannon et al. Jul 2002 A1
20020112022 Kazar et al. Aug 2002 A1
20020133508 LaRue et al. Sep 2002 A1
20020143755 Wynblatt et al. Oct 2002 A1
20020165724 Blankesteijn Nov 2002 A1
20030046396 Richter et al. Mar 2003 A1
20030061537 Cha et al. Mar 2003 A1
20030126114 Tedesco Jul 2003 A1
20030140288 Loaiza et al. Jul 2003 A1
20030212660 Kerwin Nov 2003 A1
20030217064 Walters Nov 2003 A1
20030217071 Kobayashi et al. Nov 2003 A1
20040003087 Chambliss et al. Jan 2004 A1
20040062106 Ramesh et al. Apr 2004 A1
20040193570 Yaegar Sep 2004 A1
20040267809 East et al. Dec 2004 A1
20050038831 Souder et al. Feb 2005 A1
20050055380 Thompson et al. Mar 2005 A1
20050120025 Rodriguez et al. Jun 2005 A1
20050165798 Cherkauer et al. Jul 2005 A1
20060004691 Sifry Jan 2006 A1
20060015542 Pommerenk Jan 2006 A1
20060047713 Gornshtein Mar 2006 A1
20060064405 Jiang et al. Mar 2006 A1
20060080646 Aman Apr 2006 A1
20060129559 Sankaran Jun 2006 A1
20060168585 Grcevski Jul 2006 A1
20060173833 Purcell et al. Aug 2006 A1
20060200497 Hu et al. Sep 2006 A1
20060212481 Stacey et al. Sep 2006 A1
20060212573 Loaiza et al. Sep 2006 A1
20060224551 Lariba-Pey Oct 2006 A1
20060242513 Loaiza et al. Oct 2006 A1
20070038689 Shinkai Feb 2007 A1
20070083505 Ferrari et al. Apr 2007 A1
20070100912 Pareek et al. May 2007 A1
20070156957 McHardy et al. Jul 2007 A1
20070226277 Holenstein et al. Sep 2007 A1
20070239680 Oztekin et al. Oct 2007 A1
20080005112 Shavit Jan 2008 A1
20080016074 Ben-dyke et al. Jan 2008 A1
20080059492 Tarin Mar 2008 A1
20080104283 Shin et al. May 2008 A1
20080126846 Vivian et al. May 2008 A1
20080147599 Young-Lai Jun 2008 A1
20080177803 Fineberg et al. Jul 2008 A1
20080222311 Lee Sep 2008 A1
20080228835 Lashley et al. Sep 2008 A1
20080244209 Seelam et al. Oct 2008 A1
20080256143 Reddy et al. Oct 2008 A1
20080256250 Wakefield et al. Oct 2008 A1
20080281784 Zane et al. Nov 2008 A1
20080281865 Price et al. Nov 2008 A1
20090024384 Kobayashi et al. Jan 2009 A1
20090034377 English et al. Feb 2009 A1
20090063591 Betten et al. Mar 2009 A1
20090119295 Chou et al. May 2009 A1
20090182746 Mittal et al. Jul 2009 A1
20090248756 Akidau Oct 2009 A1
20090268903 Bojinov et al. Oct 2009 A1
20090307290 Barsness et al. Dec 2009 A1
20100036843 MacNaughton et al. Feb 2010 A1
20100082648 Potapov Apr 2010 A1
20100122026 Umaamageswaran et al. May 2010 A1
20100145909 Ngo Jun 2010 A1
20100211577 Shimuzu et al. Aug 2010 A1
20100235335 Heman et al. Sep 2010 A1
20100250549 Muller et al. Sep 2010 A1
20100318570 Narasinghanallur et al. Dec 2010 A1
20110004586 Cherryholmes et al. Jan 2011 A1
20110029569 Ganesh et al. Feb 2011 A1
20110060724 Chan Mar 2011 A1
20110066791 Goyal et al. Mar 2011 A1
20110087633 Kreuder et al. Apr 2011 A1
20110087637 Sundaram et al. Apr 2011 A1
20110099179 Balebail Apr 2011 A1
20110138123 Aditya et al. Jun 2011 A1
20110145207 Agrawal et al. Jun 2011 A1
20110231362 Attarde et al. Sep 2011 A1
20110238655 Colrain et al. Sep 2011 A1
20110307450 Hahn et al. Dec 2011 A1
20120054158 Hu et al. Mar 2012 A1
20120054533 Shi et al. Mar 2012 A1
20120109926 Novik et al. May 2012 A1
20120173515 Jeong et al. Jul 2012 A1
20120278282 Lu Nov 2012 A1
20120284228 Ghosh Nov 2012 A1
20120323849 Garin et al. Dec 2012 A1
20120323971 Pasupuleti Dec 2012 A1
20130085742 Baker et al. Apr 2013 A1
20130117237 Thomsen et al. May 2013 A1
20130132674 Sundrani May 2013 A1
20130198133 Lee Aug 2013 A1
20130212068 Talius et al. Aug 2013 A1
20140040218 Kimura et al. Feb 2014 A1
20140059020 Hu et al. Feb 2014 A1
20140075493 Krishnan et al. Mar 2014 A1
20140095452 Lee et al. Apr 2014 A1
20140095530 Lee et al. Apr 2014 A1
20140095546 Kruglikov et al. Apr 2014 A1
20140164331 Li et al. Jun 2014 A1
20140279840 Chan et al. Sep 2014 A1
20150032694 Rajamani et al. Jan 2015 A1
20150088811 Hase et al. Mar 2015 A1
20150088822 Raja et al. Mar 2015 A1
20150088824 Kamp et al. Mar 2015 A1
20150088830 Kamp et al. Mar 2015 A1
20150088926 Chavan et al. Mar 2015 A1
20150089125 Mukherjee et al. Mar 2015 A1
20150089134 Mukherjee et al. Mar 2015 A1
20150120659 Srivastava et al. Apr 2015 A1
20150254240 Li et al. Sep 2015 A1
20160179867 Li et al. Jun 2016 A1
20170116252 Krishnaswamy Apr 2017 A1
20180121511 Li May 2018 A1
20180165324 Krishnaswamy Jun 2018 A1
Foreign Referenced Citations (10)
Number Date Country
0 503 417 Sep 1992 EP
2 608 070 Jun 2013 EP
1 332 631 Oct 1973 GB
2505 185 Feb 2014 GB
59-081940 May 1984 JP
02-189663 Jul 1990 JP
08-235032 Sep 1996 JP
10-040122 Feb 1998 JP
10-240575 Sep 1998 JP
WO 2007078444 Jul 2007 WO
Non-Patent Literature Citations (37)
Entry
Teschke, et al., “Concurrent Warehouse Maintenance Without Comprising Session Consistency”, 1998, 10 pages.
Vassilakis et al., “Implementation of Transaction and Concurrency Control Support in a Temporal DBMS” Information Systems, vol. 23, No. 5, 1998, 16 pages.
Bober et al., “On Mixing Queries and Transactions via Multiversion Locking”, IEEE, 1992, 11 pages.
Mohan et al., “Efficient and Flexible Methods for Transient Versioning of Records to Avoid Locking by Reading-Only Transactions”, XP 000393583, IBM Almaden Research Center, Dated Feb. 6, 1992, 11 pages.
Rajeev Kumar et al., Oracle DBA, A Helping Hand, Container Database and Pluggable Database (CDB & PDB), retrieved from the internet on Dec. 4, 2013, 2 pages.
Preimesberger, Chris, “Oracle Profits Up, but Revenues Slip” Oracle, dated Sep. 20, 2012, 2 pages.
Oracle Help Center , “Database 2 Day + Data Replication and Integration Guide”, 3 Accessing and Modifying Information in Multiple Databases, dated 2016, 14 pages.
Oracle Base, Multitenant: Create and Configure a Pluggable Database (PDB) in Oracle Database 12c Release 1 (12.1), dated Jan. 8, 2014, 16 pages.
Muhammad Anwar, “How to Install Oracle 12c Multitenant Pluggable Database”, Dated Feb. 24, 2012, 27 pages.
Garcia-Molina et al., “Database System Implementation”, dated Jan. 1, 2000, 84 pages.
Francisco Munoz et al., “Oracle Database 12c Backup and Recovery Survival Guide”, dated Sep. 24, 2013, 8 pages.
Dominic Betts et al., “Developing Multi-Tenant Applications for the Cloud”, 3rd Edition, Microsoft, 2012, 246 pages.
Das et al., “Albatross: Lightweight Elasticity in Shared Storage Databases for the Cloud Using Live Data Migration”, Proceedings of the VLDB Endowment, vol. 4 No. 8 Copyright, dated 2011, 12 pages.
Anonymous: “Oracle-Base—Multitenant: Overview of Container Databases (CDB) and Pluggable Databases (PDB)”, dated Mar. 3, 2014, 4 pages.
Anonymous, :An Oracle White Paper Oracle Database Appliance: Migration Strategies, dated Jun. 2012, 14 pages.
Zhe, Li, et al., “PERF join: an alternative to two-way semijoin and Bloomjoin” Proceedings of the 1995 ACM, New York. NY, US., 1995, pp. 187-144.
Shao et al., “Clotho: Decoupling Memory Page Layout from Storage Organization”, Proceedings of the 30th VLDB Conference, Toronto, Canada, 2004, 12 pages.
Schaffner et al., “A Hybrid Row-Column OLTP Database Architecture for Operational Reporting”, dated Aug. 24, 2008, 14 pages.
Ramamurthy, Ravishankar, “A Case for Fractured Mirrors” Proceedings of the 28th VLDB Conference, dated, 2002, 12 pages.
Phipps, Colin:, “Mapping Deflated Files”, Internet Article, dated Jan. 6, 2013, http://zsync.moria.org.uk/paper/ch03s02.html, 3 pages.
Oracle Database Administrator's Guide, 11g Release 2 (11.2), Chapter 26, Feb. 2010, 54 pages. http://download.oracle.com/docs/cd/E11882_01/server.112/e10595.pdf.
Oracle Database Administrator's Guide, 10g Release 2 (10.2), Chapter 24, May 2006, 34 pages. http://download.oracle.com/docs/cd/B19306_01/server.102/b14231.pdf.
O'Neil, P., et al., “Multi-table joins through bitmapped join indices”, SIGMOD Record, ACM, New York, NY, US, vol. 24, No. 3, Sep. 1, 1995, pp. 8-11, ISSN: 0163-5808.
Nirmesh, Malviya, “Recovery Algorithms for In-Memory OLTP Databases”, Master of Science Thesis, dated Jul. 1, 2012, 66 pages.
Loizos, M., et al., “Improving distributed join efficiency with extended bloom filter operations”, Advanced Networking and Applications, 2007. AINA '07., 21st international Conf. IEEE, May 1, 2007.
Mackert, F. Lothar et al., “R* optimizer validation and performance evaluation for local queries” SIGMOD Record, ACM, New York, NY, US., vol. 15, No. 2, Jun. 1, 1986, pp. 84-95, ISSN: 0163-5808.
IBM, “A Scheduling Algorithm for Processing Mutually Exclusive Workloads in a Multi-System Configuration”, dated Aug. 19, 2002, IEEE, 3 pages.
Zhang Ho et al., “In-Memory Big Data Management and Processing: A Survery”, IEEE Transactions on Knowledge and Data Engineering, vol. 27, No. 7, dated Jul. 31, 2015, 30 pages.
Vishal Sikka et al., “Efficient Transaction Processing in SAP Hana Database”, Proceedings of the 2012, International Conference on Management of Data, dated Jan. 31, 2012, 12 pages.
Farber et al., “SAP HANA Database—Data Management for Modern Business Applications”, SIGMOD Record, dated Dec. 2011, vol. 40, No. 4, 8 pages.
Khalid Sayood:, “Introduction to data Compression”, Morgan Kaufmann Publisher, dated Dec. 1996, 4 pages.
Antoni Cau, et al., “Specifying Fault Tolerance within Stark's Formalism,” 1993, IEEE, pp. 392-401.
IBM Corp., “IBM OS/2 Extended Edition Configuration,” Feb. 1990, IBM Technical Disclosure Bulletin, vol. 32, No. 9B, pp. 446-451.
Alapati, S., Backing Up Databases. In: Expert Oracle Database 11g Administration, Apress, dated 2009, pp. 1-70.
Oracle, “Oracle Data Guard”, Concepts and Administration 12c Release 1 (12.1), dated Nov. 2015, 50 pages.
Oracle, “Oracle Active Data Guard”, Real-Time Protection and Availability, Oracle White Paper, dated Oct. 2015, 22 pages.
Oracle, “Maximum Availability Architecture”, Oracle Best Practices for High Availability, dated Sep. 2011, 42 pages.
Related Publications (1)
Number Date Country
20140279840 A1 Sep 2014 US