Skip to content

DSBulk upgrade#434

Merged
msmygit merged 6 commits into
mainfrom
bugfix/upgrade-dsbulk
Jun 11, 2026
Merged

DSBulk upgrade#434
msmygit merged 6 commits into
mainfrom
bugfix/upgrade-dsbulk

Conversation

@pravinbhat

@pravinbhat pravinbhat commented Jun 11, 2026

Copy link
Copy Markdown
Collaborator

What this PR does: Upgrade DSBulk to version 1.11.1

Which issue(s) this PR fixes:
Fixes #433

Checklist:

  • Automated Tests added/updated
  • Documentation added/updated
  • CLA Signed: DataStax CLA

@pravinbhat
pravinbhat requested a review from a team as a code owner June 11, 2026 13:27
@pravinbhat pravinbhat linked an issue Jun 11, 2026 that may be closed by this pull request
Comment thread Dockerfile Outdated
# Download all migration dependencies
RUN mkdir -p /assets/ && cd /assets && \
curl -OL https://downloads.datastax.com/dsbulk/dsbulk.tar.gz && \
curl -L -o dsbulk.tar.gz https://github.com/datastax/dsbulk/releases/download/1.11.1/dsbulk-1.11.1.tar.gz && \

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think let's do it like this, so we don't have to hard-code the version number here and pull the latest always.

Suggested change
curl -L -o dsbulk.tar.gz https://github.com/datastax/dsbulk/releases/download/1.11.1/dsbulk-1.11.1.tar.gz && \
curl -s https://api.github.com/repos/datastax/dsbulk/releases/latest \
| jq -r '.assets[] | select(.name | endswith(".tar.gz")) | .browser_download_url' \
| xargs curl -L -o dsbulk.tar.gz && \

WDYT?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, looks great. DSBulk is strictly provided as a convenience tool for end-users & CDM has no real dependency on it.

@msmygit msmygit left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍🏼

@msmygit
msmygit merged commit 7bbd3c6 into main Jun 11, 2026
9 checks passed
@msmygit
msmygit deleted the bugfix/upgrade-dsbulk branch June 11, 2026 15:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Upgrade to use dsbulk 1.11.1

2 participants