Skip to content

Conversation

@littlegrasscao
Copy link
Collaborator

@littlegrasscao littlegrasscao commented Dec 2, 2025

Which Delta project/connector is this regarding?

  • Spark
  • Standalone
  • Flink
  • Kernel
  • Other (delta sharing)

Description

Upgrade delta-sharing version 1.3.7: https://github.com/delta-io/delta-sharing/releases/tag/v1.3.7
This change allows spark scala to query delta shared tables through:

// Bearer Token

val df = spark.read.format("deltaSharing")
.option("shareCredentialsVersion", "1")
.option("endpoint", "https://example.com/delta-sharing")
.option("bearerToken", "foobar")
.option("expirationTime", "2022-01-01T00:00:00Z")
.load("..")
.limit(10)

How was this patch tested?

New test case

Does this PR introduce any user-facing changes?

No

@littlegrasscao littlegrasscao changed the title impl Allow querying delta shared table through spark options Dec 2, 2025
@scottsand-db scottsand-db merged commit 0f70203 into delta-io:master Dec 8, 2025
20 checks passed
TimothyW553 pushed a commit to TimothyW553/delta that referenced this pull request Dec 10, 2025
<!--
Thanks for sending a pull request!  Here are some tips for you:
1. If this is your first time, please read our contributor guidelines:
https://github.com/delta-io/delta/blob/master/CONTRIBUTING.md
2. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP]
Your PR title ...'.
  3. Be sure to keep the PR description updated to reflect all changes.
  4. Please write your PR title to summarize what this PR proposes.
5. If possible, provide a concise example to reproduce the issue for a
faster review.
6. If applicable, include the corresponding issue number in the PR title
and link it in the body.
-->

#### Which Delta project/connector is this regarding?
<!--
Please add the component selected below to the beginning of the pull
request title
For example: [Spark] Title of my pull request
-->

- [ ] Spark
- [ ] Standalone
- [ ] Flink
- [ ] Kernel
- [x] Other (delta sharing)

## Description

Upgrade delta-sharing version 1.3.7:
https://github.com/delta-io/delta-sharing/releases/tag/v1.3.7
This change allows spark scala to query delta shared tables through:

// Bearer Token
```
val df = spark.read.format("deltaSharing")
.option("shareCredentialsVersion", "1")
.option("endpoint", "https://example.com/delta-sharing")
.option("bearerToken", "foobar")
.option("expirationTime", "2022-01-01T00:00:00Z")
.load("..")
.limit(10)
```

## How was this patch tested?

New test case

## Does this PR introduce _any_ user-facing changes?

No

---------

Co-authored-by: Sun Cao <[email protected]>
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.

3 participants