Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EventStore support to SummaryProjector #31

Merged
merged 30 commits into from
Oct 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
33d686c
Formatting
bartelink Sep 16, 2019
83aefb6
MaxPendingBatches -> MaxReadAhead
bartelink Sep 16, 2019
6a06ff3
Fix incorrect defaults in --help
bartelink Sep 16, 2019
c11e9cd
Standardize on MissingArg
bartelink Sep 16, 2019
598fdfc
Tidy Default: messages
bartelink Sep 16, 2019
e2db91a
Standardize on VerboseConsole
bartelink Sep 16, 2019
57687c3
Standardize Arg parsing alignment
bartelink Sep 16, 2019
fdb535a
Formatting
bartelink Sep 16, 2019
6faa985
Standardize naming
bartelink Sep 16, 2019
8518cb2
Layout/naming consistency
bartelink Sep 16, 2019
4811e1a
Add missing README to fsproj
bartelink Sep 16, 2019
e2180ef
Fix/polish READMEs
bartelink Sep 16, 2019
116d3bc
Align with Sync commandline sync
bartelink Sep 16, 2019
bf08d7e
Formatting tweak
bartelink Sep 17, 2019
8983552
Layout consistency
bartelink Sep 17, 2019
b764441
Add ES support
bartelink Sep 17, 2019
b726aaa
Template consistency update
bartelink Sep 17, 2019
0dc9662
Preparatory refactoring of summary-projector for ES
bartelink Sep 17, 2019
bc9df79
Merge branch 'master' into es-projector
bartelink Sep 17, 2019
189b8c9
Tidy order
bartelink Sep 17, 2019
b3aed54
Add README
bartelink Sep 17, 2019
508561f
Merge branch 'master' into es-projector
bartelink Sep 17, 2019
0b8b65d
Update master readme
bartelink Sep 17, 2019
16cc4c4
Merge remote-tracking branch 'origin/master' into es-projector
bartelink Sep 18, 2019
1db4324
Fix typos
bartelink Sep 20, 2019
7ac6b0b
Merge branch 'master' into es-projector
bartelink Oct 4, 2019
409429b
Updates based on prod usage
bartelink Oct 4, 2019
f5c1c17
Merge branch 'master' into es-projector
bartelink Oct 4, 2019
945203b
Merge branch 'master' into es-projector
bartelink Oct 5, 2019
b5438d7
ChangeLog
bartelink Oct 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ The `Unreleased` section name is replaced by the expected version of next releas
## [Unreleased]

### Added

- EventStore source support for `summaryProjector` [#31](https://github.com/jet/dotnet-templates/pull/31)

### Changed
### Removed
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This repo hosts the source for Jet's [`dotnet new`](https://docs.microsoft.com/e

## Templates combining usage of Equinox and Propulsion

- [`summaryProjector`](propulsion-summary-projector/README.md) - Boilerplate for an Azure CosmosDb ChangeFeedProcessor generating versioned [Summary Event](http://verraes.net/2019/05/patterns-for-decoupling-distsys-summary-event/) feed from an `Equinox.Cosmos` store using `Propulsion.Cosmos`.
- [`summaryProjector`](propulsion-summary-projector/README.md) - Boilerplate for an a Projector that can consume from a) Azure CosmosDb ChangeFeedProcessor b) EventStore generating versioned [Summary Event](http://verraes.net/2019/05/patterns-for-decoupling-distsys-summary-event/) feed from an `Equinox.Cosmos`/`.EventStore` store using `Propulsion.Cosmos`/`.EventStore`.

- [`summaryConsumer`](propulsion-summary-consumer/README.md) - Boilerplate for an Apache Kafka Consumer using [`Propulsion.Kafka`](https://github.com/jet/propulsion) to ingest versioned summaries produced by a `dotnet new summaryProjector`)

Expand Down Expand Up @@ -90,7 +90,7 @@ To use from the command line, the outline is:

## CONTRIBUTING

Please don't hesitate to [create a GitHub issue](https://github.com/jet/dotnet-templates/issues/new) for any questions so others can benefit from the discussion. For any significant planned changes or additions, please err on the side of [reaching out early](https://github.com/jet/dotnet-templates/issues/new) so we can align expectationss - there's nothing more frustrating than having your hard work not yielding a mutually agreeable result ;)
Please don't hesitate to [create a GitHub issue](https://github.com/jet/dotnet-templates/issues/new) for any questions so others can benefit from the discussion. For any significant planned changes or additions, please err on the side of [reaching out early](https://github.com/jet/dotnet-templates/issues/new) so we can align expectations - there's nothing more frustrating than having your hard work not yielding a mutually agreeable result ;)

### Contribution guidelines - `equinox-*` templates

Expand Down
Loading