@@ -9,16 +9,24 @@ meta: An event stream is a log of one or more events.
99
1010Event streams are a log of one or more "things that happen", which are
1111usually referred to as events. Event streams are
12- conceptually focused around things that happen rather than objects,
13- which are the typical storage unit for
14- [ relational databases] ( /databases.html ) .
12+ conceptually focused around events than "things" or objects, which are
13+ the typical storage unit of [ relational databases] ( /databases.html ) .
1514
1615Apache Kafka and Gazette are a popular open source implementations of event
1716streams. Amazon Web Services' Kinesis and
1817[ Azure Event-Hubs] ( https://azure.microsoft.com/en-us/services/event-hubs/ )
1918are proprietary hosted implementations.
2019
2120
21+ ## Why do event streams matter to developers?
22+ The way that data is stored affects how you can work with it. Constraints
23+ and guarantees like consistency make it easier to code certain applications
24+ but harder to build other types of applications that need performance in
25+ different ways. Event streams make it easier to build applications that
26+ analyze large amounts of constantly-updated data because the events are
27+ not stored relationally.
28+
29+
2230## How are event streams typically stored?
2331Some applications, such as aggregating millions of sensors, or thousands
2432of streaming cameras, constantly output large amounts of data with no breaks.
0 commit comments