-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hyper API January 2025 Release (#141)
Adapt release notes and version config. --------- Co-authored-by: Dimitri Vorona <[email protected]> Co-authored-by: Maximilian Osenberg <[email protected]> Co-authored-by: Dimitri Vorona <[email protected]> Co-authored-by: littlegrasscao <[email protected]> Co-authored-by: Adrian Vogelsgesang <[email protected]>
- Loading branch information
1 parent
a9ddb41
commit 5ccd7e2
Showing
4 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,9 @@ s3_location('amazon_s3_uri' | |
[, access_key_id => 'text', secret_access_key => 'text' [, session_token => 'text'] ] | ||
[, region => 'text'] | ||
) | ||
azure_location('azure_blob_storage_uri' | ||
[, sas_token => 'sas_token'] | ||
) | ||
ARRAY[ <source_location> [, ...] ] | ||
``` | ||
|
||
|
@@ -54,6 +57,31 @@ techniques such as concurrent requests, request hedging and | |
prefetching). For maximum performance, ensure a high network bandwidth | ||
to Amazon S3, e.g., by running HyperAPI directly on an AWS EC2 instance. | ||
|
||
## Microsoft Azure Blob Storage | ||
|
||
``` | ||
SELECT * FROM external( | ||
azure_location( | ||
'abfss://[email protected]/products.parquet', sas_token => 'secret-sas-token' | ||
) | ||
) | ||
``` | ||
|
||
To access data stored on Microsoft Azure Blob Storage, you can use the | ||
`azure_location` syntax. Hyper supports the `DFS` and `BLOB` endpoints and | ||
recognizes all of the following Azure URL formats: | ||
* `abfss://[email protected]/...` | ||
* `https://account.dfs.core.windows.net/container/...` | ||
* `https://account.blob.core.windows.net/container/...` | ||
|
||
Hyper also allows you to enter the non-SSL version of the URLs (`http://` and `abfs://`), | ||
however it will always establish SSL encrypted connections. | ||
|
||
Hyper's Azure support is highly optimized by using techniques such as concurrent | ||
requests, request hedging and prefetching. For maximum performance, ensure that you | ||
have a high network bandwidth to Azure Blob Storage, e.g. by running HyperAPI directly | ||
on Microsoft Azure compute. | ||
|
||
## Multiple files | ||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters