|
|
|
|
|
by CodesInChaos
539 days ago
|
|
Here "log" means "append-only stream of small records". This isn't just about traditional logs (including http request logs and error logs). You could use it to store events for an event-sourced application, and even as the Write-Ahead-Log (WAL) for a database. A distributed, but still consistent and durable log is a great building block for higher level abstractions. |
|