Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Single-use refresh token capability for OAuth
- Tableau Prep write support to Databricks
- Vendor information and license key in manifest
- Default TokenRenewLimit=10 to support long-running queries with automatic token refresh

### Changed
- Fixed analytic window functions to use standard SQL functions (MIN, MAX, SUM, AVG, COUNT)
Expand Down
4 changes: 4 additions & 0 deletions tableau-databricks/connection-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ limitations under the License.
// Allow driver to access UC Volumes for Prep Write to DB
params["StagingAllowedLocalPaths"] = connectionHelper.GetTempFilePath();

// Token renewal limit for long-running queries
// Allows token to be refreshed up to 10 times during query execution
params["TokenRenewLimit"] = "10";

// Load ODBC connection string extras
var odbcConnectStringExtrasMap = {};
const attributeODBCConnectStringExtras = connectionHelper.attributeODBCConnectStringExtras;
Expand Down