chrisjenkinson/dynamo-db-event-store 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

chrisjenkinson/dynamo-db-event-store

Composer 安装命令:

composer require chrisjenkinson/dynamo-db-event-store

包简介

Event store for Broadway using DynamoDB

README 文档

README

A PHP event store implementation for Broadway using Amazon DynamoDB as the persistence layer.

Overview

This library provides a Broadway-compatible event store backed by AWS DynamoDB, allowing you to build event-sourced applications with DynamoDB as your event storage. It handles the serialization, normalization, and querying of domain events stored in DynamoDB.

Features

  • 🏗️ Event Sourcing: Full support for Broadway's event store interface
  • 📊 DynamoDB Integration: Uses async-aws/dynamo-db for non-blocking DynamoDB operations
  • 🔄 Event Management: Create, read, and manage event streams by aggregate ID
  • 🎯 Playhead Support: Query events from a specific playhead (event version)
  • Type Safety: Strict PHP typing throughout
  • 🧪 Well Tested: Includes comprehensive unit tests with mutation testing

Requirements

  • PHP 8.1 or higher
  • Broadway 2.4.0 or later
  • Async AWS DynamoDB client (1.3.0+ or 3.0.0+)

Installation

Install the package via Composer:

composer require chrisjenkinson/dynamo-db-event-store

Quick Start

Setup

First, create and configure the DynamoDB event store:

use AsyncAws\DynamoDb\DynamoDbClient;
use chrisjenkinson\DynamoDbEventStore\DynamoDbEventStore;
use chrisjenkinson\DynamoDbEventStore\DomainMessageNormalizer;
use chrisjenkinson\DynamoDbEventStore\InputBuilder;
use chrisjenkinson\DynamoDbEventStore\JsonDecoder;
use chrisjenkinson\DynamoDbEventStore\JsonEncoder;
use Broadway\Serializer\SimpleInterfaceSerializer;

// Initialize DynamoDB client
$client = new DynamoDbClient([
    'region' => 'us-east-1',
]);

// Create the event store
$inputBuilder = new InputBuilder();
$normalizer = new DomainMessageNormalizer(
    new SimpleInterfaceSerializer(),
    new SimpleInterfaceSerializer(),
    new JsonEncoder(),
    new JsonDecoder()
);

$eventStore = new DynamoDbEventStore(
    $client,
    $inputBuilder,
    $normalizer,
    'events-table', // DynamoDB table name
    aggregateConsistentReads: false, // set true for strongly consistent aggregate reads
    replayPageSize: 1000 // batch size used internally by visitEvents()
);

// Create the table (if it doesn't exist)
$eventStore->createTable();

Table Schema

The event store automatically creates a DynamoDB table with the following structure:

  • Partition Key: Id (String) - The aggregate ID
  • Sort Key: Playhead (Number) - The event version number
  • Billing Mode: Pay-per-request

Additional attributes written to each event row:

  • Feed (String) - Always all; used as the partition key of the global replay index
  • GlobalPosition (Number) - Monotonically increasing, assigned atomically at append time

A Global Secondary Index (Feed-GlobalPosition-index) on Feed (HASH) + GlobalPosition (RANGE) enables ordered cross-aggregate replay.

Usage

Append Events

use Broadway\Domain\DomainEventStream;

$eventStream = new DomainEventStream([
    // your domain events
]);

$eventStore->append($aggregateId, $eventStream);

Load Events

// Load all events for an aggregate
$eventStream = $eventStore->load($aggregateId);

// Load events from a specific playhead onwards
$eventStream = $eventStore->loadFromPlayhead($aggregateId, $playhead);

Visit Events

use Broadway\EventStore\Management\Criteria;

$eventStore->visitEvents(new Criteria(), $eventVisitor);

Events are visited in GlobalPosition order, so cross-aggregate replay reflects the exact interleaving in which events were appended.

Load Replay Pages

use Broadway\EventStore\Management\Criteria;

$page = $eventStore->loadReplayPageAfterGlobalPosition(Criteria::create(), $checkpoint, 500);

foreach ($page->events() as $event) {
    $projector->apply($event->message());
}

$checkpoint = $page->lastProcessedGlobalPosition();
$hasMore    = $page->hasMore();

$limit bounds examined replay rows, not emitted events. lastProcessedGlobalPosition() advances across filtered rows, and hasMore() reflects DynamoDB continuation state for the bounded query.

Replay Ordering

Aggregate streams are ordered by Playhead. Cross-aggregate replay (visitEvents, loadReplayPageAfterGlobalPosition) uses GlobalPosition, assigned atomically per append batch and stored in a DynamoDB Global Secondary Index. Events are always visited in the order they were committed, regardless of aggregate ID.

Read Consistency

Aggregate stream reads (load, loadFromPlayhead) use eventually consistent reads by default. Pass aggregateConsistentReads: true to the constructor for strongly consistent aggregate reads:

$eventStore = new DynamoDbEventStore($client, $inputBuilder, $normalizer, 'table', aggregateConsistentReads: true);

Global replay reads (visitEvents, loadReplayPageAfterGlobalPosition) are always eventually consistent — DynamoDB Global Secondary Indexes do not support strongly consistent reads.

visitEvents() drains replay pages using a constructor-configurable replayPageSize, which defaults to 1000.

Core Components

  • DynamoDbEventStore: Main event store implementation
  • DomainMessageNormalizer: Handles serialization/deserialization of domain events
  • InputBuilder: Constructs DynamoDB query inputs
  • JsonEncoder/JsonDecoder: JSON serialization utilities

Testing

The project includes comprehensive tests:

# Run all tests
composer run tests

# Run specific test suites
composer run phpunit          # Unit tests
composer run phpstan          # Static analysis
composer run infection        # Mutation testing

Development

Code Quality

This project maintains high code quality standards:

  • PHPUnit: Unit testing
  • PHPStan: Static type checking
  • Easy Coding Standard: Code style enforcement
  • Infection: Mutation testing for test coverage validation

Scripts

# Run complete test suite
composer run tests

# Run individual checks
composer run phpunit
composer run phpstan
composer run infection

Architecture

The event store follows Broadway's EventStore interface and includes event management capabilities. Events are serialized to JSON and stored in DynamoDB with metadata, allowing for complete event replay and reconstruction of aggregate state.

License

This project is licensed under the GNU General Public License v3.0. See LICENSE file for details.

Author

Chris Jenkinson

Related Projects

chrisjenkinson/dynamo-db-event-store 适用场景与选型建议

chrisjenkinson/dynamo-db-event-store 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.3k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 09 月 21 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 chrisjenkinson/dynamo-db-event-store 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 chrisjenkinson/dynamo-db-event-store 我们能提供哪些服务?
定制开发 / 二次开发

基于 chrisjenkinson/dynamo-db-event-store 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4.3k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 10
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0-or-later
  • 更新时间: 2022-09-21