This is an automated email from the ASF dual-hosted git repository.
sjwiesman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink-playgrounds.git.
from a27301e [FLINK-16540] Fully specify bugfix version of Flink images in
docker-compose.yaml
add 43ec2eb [hotfix] Update gitignore
add 724dfa0 [FLINK-18194][walkthroughs] Add transactions data generator
add fb08741 [FLINK-18194][walkthroughs] Add spend report mysql
configurations
add bc804b9 [FLINK-18194][walkthroughs] Add spend report grafana dashbaord
new 19e8305 [FLINK-18194][walkthroughs] Add table api walkthrough
skeleton code
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 2 +
docker/data-generator/Dockerfile | 33 +++
docker/data-generator/docker-entrypoint.sh | 18 ++
docker/data-generator/pom.xml | 164 ++++++++++++++
.../flink/playground/datagen/DataGenerator.java} | 40 ++--
.../apache/flink/playground/datagen/Producer.java | 93 ++++++++
.../apache/flink/playground/datagen/Throttler.java | 72 ++++++
.../playground/datagen/model/Transaction.java} | 30 +--
.../datagen/model/TransactionSerializer.java} | 40 ++--
.../datagen/model/TransactionSupplier.java | 53 +++++
docker/grafana-spend-report-init/dashboard.json | 127 +++++++++++
docker/grafana-spend-report-init/grafana.ini | 22 ++
.../provisioning/dashboards/dashboards.yml} | 15 +-
.../provisioning/datasources/datasource.yml} | 20 +-
docker/mysql-spend-report-init/create-table.sql | 22 ++
table-walkthrough/Dockerfile | 45 ++++
table-walkthrough/docker-compose.yml | 91 ++++++++
table-walkthrough/pom.xml | 251 +++++++++++++++++++++
.../flink/playgrounds/spendreport/SpendReport.java | 68 ++++++
.../spendreport/UnimplementedException.java | 30 +--
.../src/main/resources/log4j.properties | 2 +-
.../playgrounds/spendreport/SpendReportTest.java | 96 ++++++++
.../src/test}/resources/log4j.properties | 4 +-
23 files changed, 1240 insertions(+), 98 deletions(-)
create mode 100644 docker/data-generator/Dockerfile
create mode 100755 docker/data-generator/docker-entrypoint.sh
create mode 100644 docker/data-generator/pom.xml
copy
docker/{ops-playground-image/java/flink-playground-clickcountjob/src/main/java/org/apache/flink/playgrounds/ops/clickcount/functions/BackpressureMap.java
=>
data-generator/src/main/java/org/apache/flink/playground/datagen/DataGenerator.java}
(51%)
create mode 100644
docker/data-generator/src/main/java/org/apache/flink/playground/datagen/Producer.java
create mode 100644
docker/data-generator/src/main/java/org/apache/flink/playground/datagen/Throttler.java
copy
docker/{ops-playground-image/java/flink-playground-clickcountjob/src/main/java/org/apache/flink/playgrounds/ops/clickcount/functions/BackpressureMap.java
=>
data-generator/src/main/java/org/apache/flink/playground/datagen/model/Transaction.java}
(51%)
copy
docker/{ops-playground-image/java/flink-playground-clickcountjob/src/main/java/org/apache/flink/playgrounds/ops/clickcount/functions/BackpressureMap.java
=>
data-generator/src/main/java/org/apache/flink/playground/datagen/model/TransactionSerializer.java}
(50%)
create mode 100644
docker/data-generator/src/main/java/org/apache/flink/playground/datagen/model/TransactionSupplier.java
create mode 100644 docker/grafana-spend-report-init/dashboard.json
create mode 100644 docker/grafana-spend-report-init/grafana.ini
copy
docker/{ops-playground-image/java/flink-playground-clickcountjob/src/main/resources/log4j.properties
=> grafana-spend-report-init/provisioning/dashboards/dashboards.yml} (80%)
copy
docker/{ops-playground-image/java/flink-playground-clickcountjob/src/main/resources/log4j.properties
=> grafana-spend-report-init/provisioning/datasources/datasource.yml} (77%)
create mode 100644 docker/mysql-spend-report-init/create-table.sql
create mode 100644 table-walkthrough/Dockerfile
create mode 100644 table-walkthrough/docker-compose.yml
create mode 100644 table-walkthrough/pom.xml
create mode 100644
table-walkthrough/src/main/java/org/apache/flink/playgrounds/spendreport/SpendReport.java
copy
docker/ops-playground-image/java/flink-playground-clickcountjob/src/main/java/org/apache/flink/playgrounds/ops/clickcount/functions/BackpressureMap.java
=>
table-walkthrough/src/main/java/org/apache/flink/playgrounds/spendreport/UnimplementedException.java
(51%)
copy {docker/ops-playground-image/java/flink-playground-clickcountjob =>
table-walkthrough}/src/main/resources/log4j.properties (97%)
create mode 100644
table-walkthrough/src/test/java/org/apache/flink/playgrounds/spendreport/SpendReportTest.java
copy {docker/ops-playground-image/java/flink-playground-clickcountjob/src/main
=> table-walkthrough/src/test}/resources/log4j.properties (85%)