Skip to content
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

[Data] Upgrade Arrow version from 16 to 17 #47034

Merged
merged 3 commits into from
Aug 9, 2024
Merged
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
4 changes: 2 additions & 2 deletions .buildkite/core.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ steps:
commands:
- bazel run //ci/ray_ci:test_in_docker --
python/ray/util/dask/... python/ray/tests/modin/... core
--build-name data16build
--build-name data17build
--parallelism-per-worker 2
depends_on:
- data16build
- data17build
- forge

- label: ":ray: core: dashboard tests"
Expand Down
28 changes: 14 additions & 14 deletions .buildkite/data.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ steps:
- name: data6build
wanda: ci/docker/data6.build.wanda.yaml

- name: data16build
wanda: ci/docker/data16.build.wanda.yaml
- name: data17build
wanda: ci/docker/data17.build.wanda.yaml

- name: databuild-multipy
label: "wanda: databuild-py{{matrix}}"
Expand Down Expand Up @@ -42,7 +42,7 @@ steps:
--except-tags data_integration,doctest
depends_on: data6build

- label: ":database: data: arrow 16 tests"
- label: ":database: data: arrow 17 tests"
tags:
- python
- data
Expand All @@ -52,12 +52,12 @@ steps:
- bazel run //ci/ray_ci:test_in_docker -- //python/ray/data/... //python/ray/air/... data
--workers "$${BUILDKITE_PARALLEL_JOB_COUNT}"
--worker-id "$${BUILDKITE_PARALLEL_JOB}" --parallelism-per-worker 3
--build-name data16build
--build-name data17build
--except-tags data_integration,doctest
depends_on: data16build
depends_on: data17build

- label: ":database: data: arrow 16 {{matrix.python}} tests ({{matrix.worker_id}})"
key: data16_python_tests
- label: ":database: data: arrow 17 {{matrix.python}} tests ({{matrix.worker_id}})"
key: data17_python_tests
if: build.pull_request.labels includes "continuous-build" || pipeline.id == "0189e759-8c96-4302-b6b5-b4274406bf89" || pipeline.id == "018f4f1e-1b73-4906-9802-92422e3badaa"
tags:
- python
Expand Down Expand Up @@ -109,17 +109,17 @@ steps:
commands:
# doc tests
- bazel run //ci/ray_ci:test_in_docker -- python/ray/... //doc/... data
--build-name data16build
--build-name data17build
--except-tags gpu
--only-tags doctest
--parallelism-per-worker 2
# doc examples
- bazel run //ci/ray_ci:test_in_docker -- //doc/... data
--build-name data16build
--build-name data17build
--except-tags gpu,post_wheel_build,doctest
--parallelism-per-worker 2
--skip-ray-installation
depends_on: data16build
depends_on: data17build

- label: ":database: data: doc gpu tests"
tags:
Expand Down Expand Up @@ -162,9 +162,9 @@ steps:
instance_type: small
commands:
- bazel run //ci/ray_ci:test_in_docker -- python/ray/dashboard/... data
--build-name data16build
--build-name data17build
--parallelism-per-worker 3
depends_on: data16build
depends_on: data17build

- label: ":database: data: flaky tests"
key: data_flaky_tests
Expand All @@ -177,9 +177,9 @@ steps:
commands:
- bazel run //ci/ray_ci:test_in_docker -- //... data --run-flaky-tests
--parallelism-per-worker 3
--build-name data16build
--build-name data17build
--except-tags gpu_only,gpu
depends_on: data16build
depends_on: data17build

- label: ":database: data: flaky gpu tests"
key: data_flaky_gpu_tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "data16build"
name: "data17build"
froms: ["cr.ray.io/rayproject/oss-ci-base_ml"]
dockerfile: ci/docker/data.build.Dockerfile
srcs:
Expand All @@ -10,6 +10,6 @@ srcs:
- python/requirements/ml/data-requirements.txt
- python/requirements/ml/data-test-requirements.txt
build_args:
- ARROW_VERSION=16.*
- ARROW_VERSION=17.*
tags:
- cr.ray.io/rayproject/data16build
- cr.ray.io/rayproject/data17build
Loading