# Overview
A sequential log of data on disk. The latest data can be determined by reading from the bottom up. This is a sequential scan operation that scales at O(N), thus many databases offer [[Indexing]] to find data more efficiently.
# Key Considerations
# Pros
# Cons
# Use Cases
# Related Topics