Skip to content

Commit ee2797e

Browse files
committed
overhaul plugin registry; add scheduler
1 parent 3ffdbc8 commit ee2797e

69 files changed

Lines changed: 10699 additions & 892 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/docs.go

Lines changed: 806 additions & 4 deletions
Large diffs are not rendered by default.

docs/swagger.json

Lines changed: 806 additions & 4 deletions
Large diffs are not rendered by default.

docs/swagger.yaml

Lines changed: 529 additions & 4 deletions
Large diffs are not rendered by default.

examples/quickstart/create-assets.sh

Lines changed: 0 additions & 418 deletions
This file was deleted.

examples/quickstart/docker-compose.yaml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
retries: 5
1818

1919
marmot:
20-
image: ghcr.io/marmotdata/marmot:0.3
20+
image: ghcr.io/marmotdata/marmot:0.4
2121
container_name: marmot-service
2222
depends_on:
2323
postgres:
@@ -35,16 +35,3 @@ services:
3535
timeout: 5s
3636
retries: 5
3737
start_period: 15s
38-
39-
# Comment this is out avoid creating test data
40-
asset-creator:
41-
image: alpine:3.18
42-
container_name: marmot-asset-creator
43-
depends_on:
44-
marmot:
45-
condition: service_healthy
46-
volumes:
47-
- ./create-assets.sh:/create-assets.sh:ro
48-
command: ["/bin/sh", "/create-assets.sh"]
49-
environment:
50-
- MARMOT_API_URL=http://marmot:8080/api/v1

go.mod

Lines changed: 35 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/charlie-haley/asyncapi-go v0.0.0-20250325193139-cba51bace9fe
1717
github.com/confluentinc/confluent-kafka-go/v2 v2.8.0
1818
github.com/coreos/go-oidc/v3 v3.12.0
19-
github.com/go-playground/validator/v10 v10.22.1
19+
github.com/go-playground/validator/v10 v10.28.0
2020
github.com/go-sql-driver/mysql v1.5.0
2121
github.com/golang-jwt/jwt/v5 v5.2.2
2222
github.com/golang-migrate/migrate/v4 v4.18.3
@@ -25,18 +25,18 @@ require (
2525
github.com/jackc/pgx/v5 v5.5.5
2626
github.com/lib/pq v1.10.9
2727
github.com/pb33f/libopenapi v0.25.3
28-
github.com/prometheus/client_golang v1.17.0
28+
github.com/prometheus/client_golang v1.23.2
2929
github.com/rs/zerolog v1.33.0
3030
github.com/spf13/cobra v1.8.1
3131
github.com/spf13/viper v1.19.0
32-
github.com/stretchr/testify v1.10.0
32+
github.com/stretchr/testify v1.11.1
3333
github.com/swaggo/http-swagger v1.3.4
3434
github.com/swaggo/swag v1.16.4
3535
github.com/twmb/franz-go v1.18.1
3636
github.com/twmb/franz-go/pkg/kadm v1.15.0
3737
github.com/twmb/franz-go/pkg/kmsg v1.9.0
3838
go.mongodb.org/mongo-driver v1.7.6
39-
golang.org/x/crypto v0.38.0
39+
golang.org/x/crypto v0.42.0
4040
golang.org/x/oauth2 v0.30.0
4141
google.golang.org/api v0.232.0
4242
gopkg.in/yaml.v3 v3.0.1
@@ -49,6 +49,7 @@ require (
4949
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
5050
cloud.google.com/go/compute/metadata v0.6.0 // indirect
5151
cloud.google.com/go/iam v1.5.2 // indirect
52+
github.com/FZambia/eagle v0.2.0 // indirect
5253
github.com/KyleBanks/depth v1.2.1 // indirect
5354
github.com/apache/arrow/go/v15 v15.0.2 // indirect
5455
github.com/asyncapi/spec-json-schemas/v6 v6.8.1 // indirect
@@ -68,11 +69,16 @@ require (
6869
github.com/bahlo/generic-list-go v0.2.0 // indirect
6970
github.com/beorn7/perks v1.0.1 // indirect
7071
github.com/buger/jsonparser v1.1.1 // indirect
72+
github.com/centrifugal/centrifuge v0.38.0 // indirect
73+
github.com/centrifugal/protocol v0.17.0 // indirect
7174
github.com/cespare/xxhash/v2 v2.3.0 // indirect
7275
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
76+
github.com/dolthub/maphash v0.1.0 // indirect
7377
github.com/felixge/httpsnoop v1.0.4 // indirect
7478
github.com/fsnotify/fsnotify v1.7.0 // indirect
75-
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
79+
github.com/gabriel-vasile/mimetype v1.4.10 // indirect
80+
github.com/gammazero/deque v0.2.1 // indirect
81+
github.com/go-co-op/gocron/v2 v2.18.2 // indirect
7682
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
7783
github.com/go-logr/logr v1.4.2 // indirect
7884
github.com/go-logr/stdr v1.2.2 // indirect
@@ -90,6 +96,7 @@ require (
9096
github.com/google/s2a-go v0.1.9 // indirect
9197
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
9298
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
99+
github.com/gorilla/websocket v1.5.3 // indirect
93100
github.com/hashicorp/errwrap v1.1.0 // indirect
94101
github.com/hashicorp/go-multierror v1.1.1 // indirect
95102
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -98,8 +105,9 @@ require (
98105
github.com/jackc/pgpassfile v1.0.0 // indirect
99106
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
100107
github.com/jackc/puddle/v2 v2.2.2 // indirect
108+
github.com/jonboulle/clockwork v0.5.0 // indirect
101109
github.com/josharian/intern v1.0.0 // indirect
102-
github.com/klauspost/compress v1.17.11 // indirect
110+
github.com/klauspost/compress v1.18.0 // indirect
103111
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
104112
github.com/leodido/go-urn v1.4.0 // indirect
105113
github.com/lucasjones/reggen v0.0.0-20200904144131-37ba4fa293bb // indirect
@@ -108,24 +116,34 @@ require (
108116
github.com/mattn/go-colorable v0.1.14 // indirect
109117
github.com/mattn/go-isatty v0.0.20 // indirect
110118
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
119+
github.com/maypok86/otter v1.2.4 // indirect
111120
github.com/mitchellh/mapstructure v1.5.0 // indirect
121+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
112122
github.com/pb33f/ordered-map/v2 v2.2.0 // indirect
113123
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
114124
github.com/pierrec/lz4/v4 v4.1.22 // indirect
115125
github.com/pkg/errors v0.9.1 // indirect
126+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
116127
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
117-
github.com/prometheus/client_model v0.5.0 // indirect
118-
github.com/prometheus/common v0.44.0 // indirect
119-
github.com/prometheus/procfs v0.12.0 // indirect
128+
github.com/prometheus/client_model v0.6.2 // indirect
129+
github.com/prometheus/common v0.66.1 // indirect
130+
github.com/prometheus/procfs v0.16.1 // indirect
131+
github.com/quagmt/udecimal v1.9.0 // indirect
132+
github.com/redis/rueidis v1.0.68 // indirect
133+
github.com/robfig/cron/v3 v3.0.1 // indirect
120134
github.com/sagikazarmark/locafero v0.4.0 // indirect
121135
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
136+
github.com/segmentio/asm v1.2.0 // indirect
137+
github.com/segmentio/encoding v0.5.3 // indirect
138+
github.com/shadowspore/fossil-delta v0.0.0-20241213113458-1d797d70cbe3 // indirect
122139
github.com/sourcegraph/conc v0.3.0 // indirect
123140
github.com/speakeasy-api/jsonpath v0.6.2 // indirect
124141
github.com/spf13/afero v1.11.0 // indirect
125142
github.com/spf13/cast v1.6.0 // indirect
126143
github.com/spf13/pflag v1.0.6 // indirect
127144
github.com/subosito/gotenv v1.6.0 // indirect
128145
github.com/swaggo/files v1.0.1 // indirect
146+
github.com/valyala/bytebufferpool v1.0.0 // indirect
129147
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
130148
github.com/xdg-go/scram v1.1.2 // indirect
131149
github.com/xdg-go/stringprep v1.0.4 // indirect
@@ -142,19 +160,20 @@ require (
142160
go.opentelemetry.io/otel/trace v1.35.0 // indirect
143161
go.uber.org/atomic v1.11.0 // indirect
144162
go.uber.org/multierr v1.11.0 // indirect
163+
go.yaml.in/yaml/v2 v2.4.2 // indirect
145164
golang.org/x/exp v0.0.0-20250531010427-b6e5de432a8b // indirect
146-
golang.org/x/mod v0.24.0 // indirect
147-
golang.org/x/net v0.40.0 // indirect
148-
golang.org/x/sync v0.14.0 // indirect
149-
golang.org/x/sys v0.33.0 // indirect
150-
golang.org/x/text v0.25.0 // indirect
165+
golang.org/x/mod v0.27.0 // indirect
166+
golang.org/x/net v0.43.0 // indirect
167+
golang.org/x/sync v0.18.0 // indirect
168+
golang.org/x/sys v0.36.0 // indirect
169+
golang.org/x/text v0.29.0 // indirect
151170
golang.org/x/time v0.11.0 // indirect
152-
golang.org/x/tools v0.33.0 // indirect
171+
golang.org/x/tools v0.36.0 // indirect
153172
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
154173
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
155174
google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2 // indirect
156175
google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2 // indirect
157176
google.golang.org/grpc v1.72.0 // indirect
158-
google.golang.org/protobuf v1.36.6 // indirect
177+
google.golang.org/protobuf v1.36.10 // indirect
159178
gopkg.in/ini.v1 v1.67.0 // indirect
160179
)

0 commit comments

Comments
 (0)