Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CREATE TABLE public."dashboardMetricsTotalSnapshot" (
id TEXT PRIMARY KEY DEFAULT 'snapshot',

"activitiesTotal" BIGINT,
"activitiesLast30Days" BIGINT,
"organizationsTotal" BIGINT,
"organizationsLast30Days" BIGINT,
"membersTotal" BIGINT,
"membersLast30Days" BIGINT,
"updatedAt" TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
1 change: 1 addition & 0 deletions scripts/scaffold/kafka-connect/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ RUN yum install -y jq findutils unzip

RUN confluent-hub install snowflakeinc/snowflake-kafka-connector:2.5.0 --no-prompt
COPY tmp/kafka-connect-http/ /usr/share/confluent-hub-components/kafka-connect-http/
RUN confluent-hub install confluentinc/kafka-connect-jdbc:10.8.4 --no-prompt


VOLUME /storage
Expand Down
Loading