Graefe, G. (1994). Volcano — An Extensible and Parallel Query Evaluation System. IEEE Transactions on Knowledge and Data Engineering, 6(1), 120–135. https://doi.org/10.1109/69.273032

This paper introduces the idea of Volcano, a query evaluation system. With its design, it becomes the first query execution engine that combines extensibility and parallelism. Also, the authors emphasize that Volcano is more to provide a testbed for database research rather than a production-ready system (as it is not friendly to end-users).

There are 6 objectives that Volcano tries to follow:

To achieve the above goals, Volcano adopts a major design principle from operating system research: the concept of policies. The separation of mechanism and policies will help to achieve modularity and extensibility. Volcano has been influenced and based on these previous works:

Volcano consists of two layers, the file system layer and the query processing layer.