@cubejs-backend/athena-driver 0.29.7 → 0.29.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/driver/AthenaDriver.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.29.20](https://github.com/cube-js/cube.js/compare/v0.29.19...v0.29.20) (2022-01-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @cubejs-backend/athena-driver
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.29.18](https://github.com/cube-js/cube.js/compare/v0.29.17...v0.29.18) (2022-01-09)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @cubejs-backend/athena-driver
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.29.15](https://github.com/cube-js/cube.js/compare/v0.29.14...v0.29.15) (2021-12-30)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* Introduce single unified CUBEJS_DB_QUERY_TIMEOUT env variable to set all various variables that control database query timeouts ([#3864](https://github.com/cube-js/cube.js/issues/3864)) ([33c6292](https://github.com/cube-js/cube.js/commit/33c6292059e65e293a7e3d61e1f1e0c1413eeece))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.29.12](https://github.com/cube-js/cube.js/compare/v0.29.11...v0.29.12) (2021-12-29)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @cubejs-backend/athena-driver
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
## [0.29.7](https://github.com/cube-js/cube.js/compare/v0.29.6...v0.29.7) (2021-12-20)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @cubejs-backend/athena-driver
|
package/driver/AthenaDriver.js
CHANGED
|
@@ -18,7 +18,7 @@ class AthenaDriver extends BaseDriver {
|
|
|
18
18
|
S3OutputLocation: process.env.CUBEJS_AWS_S3_OUTPUT_LOCATION,
|
|
19
19
|
workGroup: process.env.CUBEJS_AWS_ATHENA_WORKGROUP || 'primary',
|
|
20
20
|
...config,
|
|
21
|
-
pollTimeout: (config.pollTimeout || getEnv('dbPollTimeout')) * 1000,
|
|
21
|
+
pollTimeout: (config.pollTimeout || getEnv('dbPollTimeout') || getEnv('dbQueryTimeout')) * 1000,
|
|
22
22
|
pollMaxInterval: (config.pollMaxInterval || getEnv('dbPollMaxInterval')) * 1000,
|
|
23
23
|
};
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/athena-driver",
|
|
3
3
|
"description": "Cube.js Athena database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.29.
|
|
5
|
+
"version": "0.29.20",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"types": "driver/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-sdk/client-athena": "^3.22.0",
|
|
21
|
-
"@cubejs-backend/query-orchestrator": "^0.29.
|
|
22
|
-
"@cubejs-backend/shared": "^0.29.
|
|
21
|
+
"@cubejs-backend/query-orchestrator": "^0.29.20",
|
|
22
|
+
"@cubejs-backend/shared": "^0.29.20",
|
|
23
23
|
"sqlstring": "^2.3.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"extends": "../cubejs-linter"
|
|
30
30
|
},
|
|
31
31
|
"license": "Apache-2.0",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "d475716ed471ee4eccbd65de9cf7fbff7ea0b82d"
|
|
33
33
|
}
|