Skip to content

Commit

Permalink
WIP: implemented compaction, cleaning up a bit
Browse files Browse the repository at this point in the history
Compaction routine is now well-tested. Woot woot!

Operator has been updated to pass along retention policy config to
stream.

Updated deps across all components.
  • Loading branch information
thedodd committed Nov 5, 2021
1 parent ca035e0 commit 0c5f7e2
Show file tree
Hide file tree
Showing 33 changed files with 862 additions and 435 deletions.
2 changes: 1 addition & 1 deletion examples/pipeline-transactional-processing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pipeline-txp"
version = "0.1.0"
edition = "2018"
edition = "2021"
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/pipeline-transactional-processing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Dockerfile for pipeline-transactional-processing (txp) demo app.

# syntax=docker/dockerfile:1.3
ARG RUST_TAG=1.56.0
ARG RUST_TAG=1.56.1
ARG ALPINE_TAG=3.14
FROM rust:${RUST_TAG}-alpine${ALPINE_TAG} as builder

Expand Down
2 changes: 1 addition & 1 deletion examples/stream-transactional-processing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stream-txp"
version = "0.1.0"
edition = "2018"
edition = "2021"
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/stream-transactional-processing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Dockerfile for stream-transactional-processing (txp) demo app.

# syntax=docker/dockerfile:1.3
ARG RUST_TAG=1.56.0
ARG RUST_TAG=1.56.1
ARG ALPINE_TAG=3.14
FROM rust:${RUST_TAG}-alpine${ALPINE_TAG} as builder

Expand Down
2 changes: 1 addition & 1 deletion hadron-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"]
edition = "2018"
edition = "2021"
name = "hadron-cli"
version = "0.1.0-beta.0"
description = "The Hadron CLI."
Expand Down
2 changes: 1 addition & 1 deletion hadron-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## NOTE WELL: this Dockerfile assumes a context from the root of this repo.

# syntax=docker/dockerfile:1.3
ARG RUST_TAG=1.55.0
ARG RUST_TAG=1.56.1
ARG ALPINE_TAG=3.14
FROM rust:${RUST_TAG}-alpine${ALPINE_TAG} as builder

Expand Down
2 changes: 1 addition & 1 deletion hadron-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0-beta.1"
description = "The Hadron Rust client library."
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"]
categories = ["api-bindings", "concurrency", "database"]
edition = "2018"
edition = "2021"
keywords = ["hadron", "events", "CloudEvents", "stream-processing", "workflows"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
Loading

0 comments on commit 0c5f7e2

Please sign in to comment.