This is an automated email from the ASF dual-hosted git repository.
linxinyuan pushed a change to branch xiaozhen-sync-region-kill
in repository https://gitbox.apache.org/repos/asf/texera.git
from 4063cefa8b Merge branch 'main' into xiaozhen-sync-region-kill
add e908c60de8 chore: make service log levels configurable via
TEXERA_SERVICE_LOG_LEVEL (#4244)
add 349a1aa18b feat: add startup message to docker-compose (#4245)
add b480feb890 feat: add example datasets and workflows to Docker Compose
(#4247)
add 52c44c5ddd refactor: align docker-compose service and container names
with image names (#4249)
add 3c50566da1 fix(ci): replace removed JooqCodeGenerator with sbt
jooqGenerate task (#4252)
add dee51b0986 fix(ci): include example datasets and workflows into the
docker compose tarball when creating the release candidate (#4253)
add 465b850383 fix: update example-data-loader to reference correct
service names in docker-compose (#4255)
new 4fbb195aba Merge branch 'main' into xiaozhen-sync-region-kill
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:
.github/workflows/build-and-push-images.yml | 2 +-
.github/workflows/create-release-candidate.yml | 6 +
.../access-control-service-web-config.yaml | 7 +-
.../src/main/resources/logback.xml | 2 +-
.../texera/service/AccessControlService.scala | 14 +-
.../resources/computing-unit-master-config.yml | 8 +-
amber/src/main/resources/logback.xml | 2 +-
.../texera-compiling-service-web-config.yml | 5 +-
amber/src/main/resources/web-config.yml | 5 +-
.../apache/texera/web/ComputingUnitMaster.scala | 35 +
.../apache/texera/web/TexeraWebApplication.scala | 36 +-
.../web/service/ExecutionResultService.scala | 3 +-
bin/single-node/.env | 15 +-
bin/single-node/docker-compose.yml | 79 +-
.../examples/datasets/iris-species/Iris.csv | 151 +++
.../examples/datasets/iris-species/description.txt | 1 +
.../popular-movies-of-imdb/TMDb_updated.csv | 1002 ++++++++++++++++++++
.../popular-movies-of-imdb/description.txt | 1 +
bin/single-node/examples/load-examples.sh | 288 ++++++
...xample] Data Exploration on Movies Dataset.json | 652 +++++++++++++
...[Example] Machine Learning on Iris Dataset.json | 800 ++++++++++++++++
bin/single-node/nginx.conf | 16 +-
common/auth/build.sbt | 4 +-
.../apache/texera/auth/RequestLoggingFilter.scala | 64 ++
common/config/src/main/resources/cluster.conf | 1 +
.../computing-unit-managing-service-config.yaml | 7 +-
.../service/ComputingUnitManagingService.scala | 14 +-
.../main/resources/config-service-web-config.yaml | 7 +-
.../org/apache/texera/service/ConfigService.scala | 13 +-
.../main/resources/file-service-web-config.yaml | 7 +-
.../org/apache/texera/service/FileService.scala | 14 +-
.../workflow-compiling-service-config.yaml | 7 +-
.../texera/service/WorkflowCompilingService.scala | 32 +
33 files changed, 3235 insertions(+), 65 deletions(-)
create mode 100644 bin/single-node/examples/datasets/iris-species/Iris.csv
create mode 100644
bin/single-node/examples/datasets/iris-species/description.txt
create mode 100644
bin/single-node/examples/datasets/popular-movies-of-imdb/TMDb_updated.csv
create mode 100644
bin/single-node/examples/datasets/popular-movies-of-imdb/description.txt
create mode 100755 bin/single-node/examples/load-examples.sh
create mode 100644 bin/single-node/examples/workflows/[Example] Data
Exploration on Movies Dataset.json
create mode 100644 bin/single-node/examples/workflows/[Example] Machine
Learning on Iris Dataset.json
create mode 100644
common/auth/src/main/scala/org/apache/texera/auth/RequestLoggingFilter.scala