Skip to content

[DE-757] content encoding #535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
CI: updates for ArangoDB 3.12
  • Loading branch information
rashtao committed Feb 27, 2024
commit e92047a76beffc9e25108be7a4cc3f9820b81f1e
3 changes: 3 additions & 0 deletions .github/workflows/resilience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:

jobs:
test:
if: '! github.event.pull_request.draft'
timeout-minutes: 20
runs-on: ubuntu-latest

Expand All @@ -37,6 +38,8 @@ jobs:
run: ./docker/start_db.sh
env:
STARTER_MODE: cluster
DOCKER_IMAGE: docker.io/arangodb-preview:devel-nightly
COMPRESSION: true
- name: Info
run: mvn -version
- name: Start Toxiproxy
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:
- single
- cluster
- activefailover
db-ext-names:
- false
java-version:
- 21
user-language:
Expand Down Expand Up @@ -135,8 +133,6 @@ jobs:
- single
- cluster
- activefailover
db-ext-names:
- false
java-version:
- 21
user-language:
Expand Down Expand Up @@ -188,8 +184,6 @@ jobs:
- docker.io/arangodb/arangodb:3.11.7
topology:
- single
db-ext-names:
- false
java-version:
- 21
user-language:
Expand Down Expand Up @@ -272,8 +266,6 @@ jobs:
- docker.io/arangodb/enterprise:3.11.7
topology:
- cluster
db-ext-names:
- false
java-version:
- 17

Expand Down
7 changes: 6 additions & 1 deletion docker/start_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
STARTER_MODE=${STARTER_MODE:=single}
DOCKER_IMAGE=${DOCKER_IMAGE:=docker.io/arangodb/arangodb:latest}
SSL=${SSL:=false}
COMPRESSION=${COMPRESSION:=false}

STARTER_DOCKER_IMAGE=docker.io/arangodb/arangodb-starter:latest
GW=172.28.0.1
Expand Down Expand Up @@ -44,6 +45,10 @@ if [ "$SSL" == "true" ]; then
ARANGOSH_SCHEME=http+ssl
fi

if [ "$COMPRESSION" == "true" ]; then
STARTER_ARGS="${STARTER_ARGS} --all.http.compress-response-threshold=1"
fi

if [ "$USE_MOUNTED_DATA" == "true" ]; then
STARTER_ARGS="${STARTER_ARGS} --starter.data-dir=/data"
MOUNT_DATA="-v $LOCATION/data:/data"
Expand All @@ -65,7 +70,7 @@ docker run -d \
--starter.address="${GW}" \
--docker.image="${DOCKER_IMAGE}" \
--starter.local --starter.mode=${STARTER_MODE} --all.log.level=debug --all.log.output=+ --log.verbose \
--all.server.descriptors-minimum=1024 --all.javascript.allow-admin-execute=true --all.http.compress-response-threshold=1
--all.server.descriptors-minimum=1024 --all.javascript.allow-admin-execute=true


wait_server() {
Expand Down