NonStop SQL is a database management system designed for 24x7 availability, high scalability, and excellent performance of online transaction processing (OLTP). The availability is achieved by isolation -- the transactions affected by hardware or software failures will be recovered without affecting other transactions. As for scalability, NonStop SQL is able to scale up almost linearly. It's regarded as a base for highly parallel systems. The fast OLTP is due to the row-partition storage model and fine granularity. The lock on data can be at the individual row level. NonStop SQL is widely used in stock exchanges, banks, and telecommunications.
NonStop SQL is the first distributed SQL and the first SQL implementation with fast performance of online transaction processing (OLTP). Previously, all SQL database management systems had a slow OLTP performance, but they were still widely used due to the simplicity of SQL. To compensate, people often used a second, non-SQL database management system for OLTP-heavy applications. The company which developed NonStop SQL -- Tandem -- decided to relieve people from the double database usage. 25 developers of Tandem spent 3 years to write .5 million lines of code as the original code base of NonStop SQL.
Two-Phase Locking (Deadlock Prevention)
The users can set the lock granularity, lock protocol, and lock waits styles in the CONTROL TABLE. The deadlock prevention is based on lock timeouts.
Read Uncommitted Read Committed Repeatable Read
NonStop SQL supports read uncommitted, read committed, and repeatable reads. Users are able to select isolation levels by themselves.
Nested Loop Join Hash Join Sort-Merge Join Semi Join
NonStop SQL supports hash join, nested loop join, and sort-merge join. The developers of NonStop SQL didn't devote lots of effort on distributed join optimization, because they thought those optimization makes little sense. To the best of our knowledge, NonStop SQL supports semi-join.
Inter-Operator (Vertical) Bushy
For transactions within terabytes of data, the parallelism is mainly in transaction level. Transactions and queries involving more than terabytes of data will be divided into sub tasks and executed in independent disk servers.
N-ary Storage Model (Row/Record)
NonStop SQL uses the N-ary Storage Model, which is appropriate for heavy OLTP workloads.
NonStop SQL supports scale-out, and each unit is called a disk volume. Among the disk volumes, the distributed architecture is shared-nothing. In every disk volume, there can be multiple disk servers which are doing data managing, logging, locking, and query execution. Among the disk servers, the distributed architecture is shared-disk.
https://www.hpe.com/us/en/servers/nonstop.html
https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c02148175
Tandem
1987
HP