Access your data in ABFS without any credential keys!

Published on 21 September 2021 in Version 4.11 / Development / Browsing - 3 minutes read

Using Shared Access Signatures (SAS) to manage files and its operations

Previously, we talked about providing S3 data access without giving out actual credentials via S3 signed URLs. This time, this feature is coming for another major cloud provider in the market, Microsoft Azure!

This main use case remains the same which is to keep things simple for the end users and walk one more step on the path towards unlocking true self-service querying.

The WHY behind this, also remains the same which has been discussed in the previous S3 access blog. The only thing which has changed is extending this to ADLS via Azure SAS tokens!

Where does Azure SAS actually fit in?

A SAS is a token to append to the URI (i.e. path) of your storage objects which grants restricted access rights to those objects (meaning you can grant users access to a resource for a specified period of time, with a specified set of permissions). The SAS tokens are ‘signed’ and safe to provide publicly to the users.

Hue does not require any ADLS credentials now and neither does it generate the SAS token. Hue just asks in this example to a RAZ Server to provide the equivalent SAS token for the ADLS call (REST APIs) a user wants to make via the File Browser.

Before: Users interacting with ADLS via Hue and a shared credential key (not very safe and not the best)
Before: Users interacting with ADLS via Hue and a shared credential key (not very safe and not the best)


After: Users getting individual temporary SAS tokens letting them access any ADLS resource (safe and fine grain access possible)
After: Users getting individual temporary SAS tokens letting them access any ADLS resource (safe and fine grain access possible)


One of the magic pieces is the RAZ server, which generates a temporary SAS for an ADLS call and sends it back to Hue. RAZ is also leveraging Apache Ranger which provides authorization and fine grain permissions (i.e. who can access this container? Who can upload a file in this directory?).

Here’s a list directory operation call via the Hue shell:

In [1]: from desktop.lib.fsmanager import get_client
......: fs = get_client('default', 'abfs', 'csso_hueuser')
......: fs.listdir('abfs://data/user/csso_hueuser/test_dir')

More such ADLS operations are documented here.

RAZ is not open source, but the underlying integration with such a server with Hue is!

Big picture: mainly on the left side we see the Hue File System lib, which is generic enough to provide File Browsing for any storage system (HDFS, S3 native, S3 via Signed URLs, ADLS native, ADLS via SAS tokens). On the right, this is about how to build clients that can interact with services that can generate SAS tokens for each call. Big picture: mainly on the left side we see the Hue File System lib, which is generic enough to provide File Browsing for any storage system (HDFS, S3 native, S3 via Signed URLs, ADLS…). On the right, this is about how to build clients that can interact with services that can generate signed URLs for each call.

The above diagram describes the internal implementation in Hue. It might look complicated at first ;) but it enables a step forward towards true Self Service Querying!



Any feedback or question is highly welcomed! Feel free to comment here or on the Forum and quick start SQL querying!

Onwards!

Harsh from the Hue Team


comments powered by Disqus

More recent stories

03 May 2023
Discover the power of Apache Ozone using the Hue File Browser
Read More
23 January 2023
Hue 4.11 and its new dialects and features are out!
Read More