1.5.0
Highlights
- Added OAuth M2M support (#168, #177)
- Added named query parameters support (#162, #175)
runAsync
options is now deprecated (#176)- Added staging ingestion support (#164)
Full diff: 1.4.0...1.5.0
Databricks OAuth support
Databricks OAuth support added in v1.4.0 is now extended with M2M flow. To use OAuth instead of PAT, pass
a corresponding auth provider type and options to DBSQLClient.connect
:
// instantiate DBSQLClient as usual
client.connect({
// provide other mandatory options as usual - e.g. host, path, etc.
authType: 'databricks-oauth',
oauthClientId: '...', // optional - overwrite default OAuth client ID
azureTenantId: '...', // optional - provide custom Azure tenant ID
persistence: ..., // optional - user-provided storage for OAuth tokens, should implement OAuthPersistence interface
})
U2M flow involves user interaction - the library will open a browser tab asking user to log in. To use this flow,
no other options are required except for authType
.
M2M flow does not require any user interaction, and therefore is a good option, say, for scripting. To use this
flow, two extra options are required for DBSQLClient.connect
: oauthClientId
and oauthClientSecret
.
Also see Databricks docs
for more details about Databricks OAuth.
Named query parameters
v1.5.0 adds a support for query parameters.
Currently only named parameters are supported.
Basic usage example:
// obtain session object as usual
const operation = session.executeStatement('SELECT :p1 AS "str_param", :p2 AS "number_param"', {
namedParameters: {
p1: 'Hello, World',
p2: 3.14,
},
});
The library will infer parameter types from passed primitive objects. Supported data types include booleans, various
numeric types (including native BigInt
and Int64
from node-int64
), native Date
type, and string.
It's also possible to explicitly specify the parameter type by passing DBSQLParameter
instances instead of primitive
values. It also allows one to use values that don't have a corresponding primitive representation:
import { ..., DBSQLParameter, DBSQLParameterType } from '@databricks/sql';
// obtain session object as usual
const operation = session.executeStatement('SELECT :p1 AS "date_param", :p2 AS "interval_type"', {
namedParameters: {
p1: new DBSQLParameter({
value: new Date('2023-09-06T03:14:27.843Z'),
type: DBSQLParameterType.DATE, // by default, Date objects are inferred as TIMESTAMP, this allows to override the type
}),
p2: new DBSQLParameter({
value: 5, // INTERVAL '5' DAY
type: DBSQLParameterType.INTERVALDAY
}),
},
});
Of course, you can mix primitive values and DBSQLParameter
instances.
runAsync
deprecation
Starting with this release, the library will execute all queries asynchronously, so we have deprecated
the runAsync
option. It will be completely removed in v2. So you should not use it going forward and remove all
the usages from your code before version 2 is released. From user's perspective the library behaviour won't change.
Data ingestion support
This feature allows you to upload, retrieve, and remove unity catalog volume files using SQL PUT
, GET
and REMOVE
commands.