You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Precursor to an excellent book covering this space more broadly. There's teasers with extensive code walk-through and discussion in [this 2h45m video](https://www.youtube.com/watch?v=kgYGMVDHQHs) on [Event Driven Information Systems](https://www.youtube.com/channel/UCSoUh4ikepF3LkMchruSSaQ)
29
29
30
30
-**Your link here** - Please add materials that helped you on your journey so
@@ -270,11 +270,19 @@ Request Units | Pre-provisioned Virtual units representing used to go
270
270
Request Charge | Number of Request Units charged for a specific action, apportioned against the RU cacity of the relevant Range for that second
271
271
Stored Procedure | JavaScript code stored in a Container that (repeatedly) maps an input request to a set of actions to be transacted as a group within CosmosDB. Incurs equivalent Request Charges for work performed; can chain to a continuation internally after a read or write. Limited to 5 seconds of processing time per action.
272
272
273
+
## DynamoDB
274
+
275
+
Term | Description
276
+
-------------------------|------------
277
+
Table | Defined storage in DynamoDB, defining a schema and (optionally), a Streams configuration. (There's no notion of a Database)
278
+
Streams | Buffer used to record information about all changes with a 24h retention window
279
+
Transactions | Feature allowing up to 100 atomic updates across multiple tables and logical partitions. Doubles the RU cost of a write
280
+
273
281
## EventStore
274
282
275
283
Term | Description
276
284
--------------------------|------------
277
-
Category | Group of Streams bearing a common prefix `{category}-{streamId}`
285
+
Category | Group of Streams bearing a common prefix `{category}-{streamId}` (events are indexed into `$ec-{Category}` by system projections)
278
286
Event | json or blob payload, together with an Event Type name representing an Event
279
287
EventStore | [Open source](https://eventstore.org) Event Sourcing-optimized data store server and programming model with powerful integrated projection facilities
280
288
Rolling Snapshot | Event written to an EventStore stream in order to ensure minimal store roundtrips when there is a Cache miss
0 commit comments