-
Notifications
You must be signed in to change notification settings - Fork 0
Internals
Neil Moore edited this page Oct 8, 2015
·
3 revisions
This page will explain some internal decisions made by the architect of the system as well as describing the system's data structures and how data flows through the system.
The database will be composed of several modules that work together within the system in order to efficiently process workloads.
The list of modules as of now is:
- Work Manager
- SQL Engine
- Transaction Manager
- Disk Synchronization Service
- Connector/Library API
Tables in SQL are composed of records (rows) that can be of variable length and hold various data types. As such, making a safe structure that represents these records and tables is extremely important. So far, we have come up with a scheme:
When attempting to expand Tervel's usage please check the Using Tervel page.