The document discusses the conceptual architecture of MySQL databases. It describes the three layers of MySQL architecture - application layer, logical layer, and physical layer. The logical layer contains four main components - query processor, transaction management system, recovery management system, and storage management system.
Download as PPTX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
23 views
Lecture 04 SQL Architecture
The document discusses the conceptual architecture of MySQL databases. It describes the three layers of MySQL architecture - application layer, logical layer, and physical layer. The logical layer contains four main components - query processor, transaction management system, recovery management system, and storage management system.
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 19
Database Administration
& Management
MySQL Conceptual Architecture
Introduction • The MySQL architecture was broken down into three layers: • an application layer, • a logical layer, and • A physical layer. • The logical layer, which is focused upon in detail, was broken down into four components: • A query processor, • A transaction management system, • A recovery management system, and • A storage management system. General RDBMS Architecture • It has three main components • Application Layer • Logical Layer • Physical Layer Application Layer • The application layer represents the interface for all the users of the system. • Users can be categorized into four main groups: • Sophisticated users interact with the system without using any form of application; they form their requests directly with the use of a database query language. • Specialized users are application programmers who write specialized database applications that do not fit into the traditional data-processing framework. • Naïve users are simple users who interact with the system by invoking one of the permanent application programs that have been previously written. • Database Administrators have complete control over the entire database system. Logical Layer • The core functionality of the RDBMS is represented in the logical layer of the architecture. • It is in this portion of the system that there are a wide variety of vendor specific implementations. • Four main modules are present in the RDBMS. Physical Layer • RDBMS is responsible for the storage of a variety of information, which is kept in secondary storage and accessed via the storage manager. • The main types of data kept in the system are: • Data files, which store the user data in the database • Data dictionary, which stores metadata about the structure of the database • Indices, which provide fast access to data items that hold particular values • Statistical Data, which store statistical information about the data in the database; it is used by the query processor to select efficient ways to execute a query. • Log Information, used to keep track of executed queries such that the recovery manager can use the information to successfully recover the database in the case of a system crash. MySQL Architecture Logical Layer(Query Processor) • Embedded DML Precompiler • When a request is received from a client in the application layer, it is the responsibility of the embedded DML (Data Manipulation Language) precompiler to extract the relevant SQL statements embedded in the client API commands, or to translate the client commands into the corresponding SQL statements. • DDL Compiler • Requests to access the MySQL databases received from an administrator are processed by the DDL (Data Definition Language) compiler. • The DDL compiler compiles the commands (which are SQL statements) to interact directly with the database. Logical Layer(Query Processor) • Query Parser • The objective of the query parser is to create a parse tree structure based on the query so that it can be easily understood by the other components later in the pipeline. • Query Preprocessor • The query parse tree, as obtained from the query parser, is then used by the query preprocessor to check the SQL syntax and check the semantics of the MySQL query to determine if the query is valid. Logical Layer(Query Processor) • Security/Integration Manager • Once the MySQL query is deemed to be valid, the MySQL server needs to check the access control list for the client. This is the role of the security integration manager which checks to see if the client has access to connecting to that particular MySQL database and whether he/she has table and record privileges. • Query Optimizer • After determining that the client has the proper permissions to access the specific table in the database, the query is then subjected to optimization. Query optimizer ensures executing SQL queries as fast as possible. • Query optimizer uses indexes whenever possible eliminate as many rows as possible. Logical Layer(Query Processor) • Execution Engine • Once the query optimizer has optimized the query, the query can then be executed against the database. This is performed by the query execution engine, which then proceeds to execute the SQL statements and access the physical layer of the MySQL database. • The database administrator can execute commands on the database to perform specific tasks such as repair, recovery, copying and backup, which it receives from the DDL compiler. Logical Layer(Transaction Management) • Transaction Manager • The transaction manager is responsible for making sure that the transaction is logged and executed atomically. It does so through the aid of the log manager and the concurrency-control manager. Moreover, the transaction manager is also responsible for resolving any deadlock situations that occur. • This situation can occur when two transactions cannot continue because they each have some data that the other needs to proceed. Furthermore, the transaction manager is responsible for issuing the COMMIT and the ROLLBACK SQL commands. • The COMMIT command commits to performing a transaction. Thus, a transaction is incomplete until it is committed to. • The ROLLBACK command is used when a crash occurs during the execution of a transaction. If a transaction were left incomplete, the ROLLBACK command would undo all changes made by that transaction. Logical Layer(Transaction Management) • Concurrency-Control Manager • The concurrency-control manager is responsible for making sure that transactions are executed separately and independently. • It does so by acquiring locks, from the locking table that is stored in memory, on appropriate pieces of data in the database from the resource manager. • Once the lock is acquired, only the operations in one transaction can manipulate the data. • If a different transaction tries to manipulate the same locked data, the concurrency-control manager rejects the request until the first transaction is complete. Logical Layer(Recovery Management) • Log Manager • The log manager is responsible for logging every operation executed in the database. It does so by storing the log on disk through the buffer manager. • The operations in the log are stored as MySQL commands. Thus, in the case of a system crash, executing every command in the log will bring back the database to its last stable state. • Recovery Manager • The recovery manager is responsible for restoring the database to its last stable state. It does so by using the log for the database, which is acquired from the buffer manager, and executing each operation in the log. • Since the log manager logs all operations performed on the database (from the beginning of the database’s life), executing each command in the log file would recover the database to its last stable state. Logical Layer(Storage Management) • Storage Manager • The role of the Storage Manager is to facilitate requests between the Buffer Manager and secondary storage. • The Storage Manager makes requests through the underlying disk controller (sometimes the operating system) to retrieve data from the physical disk and reports them back to the Buffer Manager. • Buffer Manager • The Buffer Manager allocates memory resources for the use of viewing and manipulating data. • The Buffer Manager takes in formatted requests and decides how much memory to allocate per buffer and how many buffers to allocate per request. • All requests are made from the Resource Manager. Logical Layer(Storage Management) • Resource Manager • The purpose of the Resource Manager is to accept requests from the execution engine, put them into table requests, and request the tables from the Buffer Manager. • The Resource Manager receives references to data within memory from the Buffer Manager and returns this data to the upper layers.