@cubejs-backend/databricks-jdbc-driver 0.30.51 → 0.30.53

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.
@@ -1,490 +0,0 @@
1
- ==============================================================================
2
- Simba Spark JDBC Driver with SQL Connector Release Notes
3
- ==============================================================================
4
-
5
- The release notes provide details of enhancements, features, known issues, and
6
- workflow changes in Simba Spark JDBC Driver with SQL Connector 2.6.17.
7
-
8
- For information about upcoming support deprecations or removals, see the
9
- Workflow Changes section. Deprecated features will not receive any updates,
10
- but will continue to be usable in their current state until support is removed
11
- in a future release.
12
-
13
-
14
- 2.6.17 =======================================================================
15
-
16
- Released 2020-10-23
17
-
18
- Resolved Issues
19
- The following issues have been resolved in Simba Spark JDBC Driver 2.6.17.
20
-
21
- * [SPARKJ-328] In some cases, non-row count queries result in the driver
22
- returning an incorrect error.
23
-
24
- * [SPARKJ-336][SPARKJ-353] In some cases, the user-agent entry validation
25
- logic rejects valid user-agent entry strings.
26
-
27
- * [SPARKJ-348] The driver does not honor the values set via the
28
- Statement.setFetchSize JDBC API call.
29
-
30
- * [SPARKJ-406] The driver does not return the correct row count result when
31
- it is provided by the server.
32
-
33
-
34
- Known Issues
35
- The following are known issues that you may encounter due to limitations in
36
- the data source, the driver, or an application.
37
-
38
- * [SPARKJ-330] Issue with date and timestamp before the beginning of the
39
- Gregorian calendar when connecting to Spark 2.4.4 or later, or versions
40
- previous to 3.0, with Arrow result set serialization.
41
-
42
- When using Spark 2.4.4 or later, or versions previous to Spark 3.0, DATE
43
- and TIMESTAMP data before October 15, 1582 may be returned incorrectly if
44
- the server supports serializing query results using Apache Arrow. This
45
- issue should not impact most distributions of Apache Spark.
46
-
47
- To confirm if your distribution of Spark 2.4.4 or later has been impacted
48
- by this issue, you can execute the following query:
49
-
50
- SELECT DATE '1581-10-14'
51
-
52
- If the result returned by the driver is 1581-10-24, then you are impacted
53
- by the issue. In this case, if your data set contains date and/or timestamp
54
- data earlier than October 15, 1582, you can work around this issue by
55
- adding EnableArrow=0 in your connection URL to disable the Arrow result set
56
- serialization feature.
57
-
58
-
59
- Workflow Changes =============================================================
60
-
61
- The following changes may disrupt established workflows for the driver.
62
-
63
- In addition to changes that are already implemented in the current version of
64
- the driver, this section describes potentially disruptive changes that will be
65
- implemented in a future version of the driver, so that you can plan
66
- accordingly.
67
-
68
-
69
- Upcoming ---------------------------------------------------------------------
70
-
71
- * [SPARKJ-298] Removing support for Spark 1.6
72
-
73
- As early as December 2020, the driver will no longer support servers that
74
- run Spark version 1.6. For information about the supported Spark versions,
75
- see the Installation and Configuration Guide.
76
-
77
- * [SPARKJ-296] Removing support for Spark 2.1 and 2.2
78
-
79
- As early as July 2020, the driver will no longer support servers that run
80
- Spark version 2.1 or 2.2. For information about the supported Spark
81
- versions, see the Installation and Configuration Guide.
82
-
83
- * [SPARKJ-288] Removing support for JDBC 4.0 (Java 6)
84
-
85
- As early as April 2020, the driver will no longer support JDBC 4.0 (Java
86
- 6). For a list of supported JDBC versions, see the Installation and
87
- Configuration Guide.
88
-
89
-
90
- 2.6.11 -----------------------------------------------------------------------
91
-
92
- * [SPARKJ-301] Removed support for Spark 2.0
93
-
94
- Beginning with this release, the driver no longer supports servers that run
95
- Spark version 2.0. For information about the supported Spark versions, see
96
- the Installation and Configuration Guide.
97
-
98
- * [SPARKJ-296][SPARKJ-298] Deprecated support for Spark 1.6, 2.1, and 2.2
99
-
100
- Beginning with this release, support for Spark versions 1.6, 2.1, and 2.2
101
- has been deprecated. For information about the supported Spark versions,
102
- see the Installation and Configuration Guide.
103
-
104
- * [SPARKJ-288] Deprecated support for JDBC 4.0 (Java 6)
105
-
106
- Beginning with this release, support for JDBC 4.0 (Java 6) has been
107
- deprecated. Support will be removed in a future release. For a list of
108
- supported JDBC versions, see the Installation and Configuration Guide.
109
-
110
-
111
- 2.6.4 ------------------------------------------------------------------------
112
-
113
- * Removed support for Spark 1.5.2 and earlier
114
-
115
- Beginning with this release, the driver no longer supports servers that run
116
- Spark versions 1.5.2 or earlier. For information about the supported Spark
117
- versions, see the Installation and Configuration Guide.
118
-
119
-
120
- Version History ==============================================================
121
-
122
- 2.6.16 -----------------------------------------------------------------------
123
-
124
- Released 2020-07-31
125
-
126
- Enhancements & New Features
127
-
128
- * [SPARKJ-363] Custom HTTP headers
129
-
130
- The driver now supports custom HTTP headers in connection URLs. For more
131
- information, see the Installation and Configuration Guide.
132
-
133
- * [SPARKJ-364] Updated third-party libraries
134
-
135
- The JDBC 4.2 driver has been updated to use the following libraries:
136
- - log4j 2.13.3
137
- - slf4j 1.7.30
138
-
139
- The JDBC 4.0 and 4.1 versions of the driver continue to use the previous
140
- versions of these libraries.
141
-
142
- * [SPARKJ-397] Support for Spark 3.0
143
-
144
- The driver now supports Spark 3.0
145
-
146
-
147
- Resolved Issues
148
- The following issue has been resolved in Simba Spark JDBC Driver 2.6.16.
149
-
150
- * [SPARKJ-349] The driver does not log correct socket timeout values.
151
-
152
- * [SPARKJ-366] When fetching arrow serialized results, the driver returns
153
- an "Out of Memory" error message.
154
-
155
- * [SPARKJ-367] In some cases, the driver delivers ambiguous error messages
156
- related to OAuth authentication.
157
-
158
-
159
- 2.6.15 -----------------------------------------------------------------------
160
-
161
- Released 2020-07-15
162
-
163
- Enhancements & New Features
164
-
165
- * [SPARKJ-258] OAuth 2.0 authentication
166
-
167
- You can now authenticate your connection with OAuth 2.0. For more
168
- information, see the Installation and Configuration Guide.
169
-
170
- * [SPARKJ-242] HTTP proxy support
171
-
172
- The driver now supports connecting through an HTTP proxy server. For more
173
- information, see the Installation and Configuration Guide.
174
-
175
- Resolved Issues
176
- The following issue has been resolved in Simba Spark JDBC Driver 2.6.15.
177
-
178
- * [SPARKJ-354] On Windows, when connecting through RStudio, the driver does
179
- not recognize the license file.
180
-
181
-
182
- 2.6.14 -----------------------------------------------------------------------
183
-
184
- Released 2020-06-15
185
-
186
- Enhancements & New Features
187
-
188
- * [SPARKJ-329] Improved result set
189
-
190
- The driver now returns a result set for results in the SET key=value
191
- format.
192
-
193
-
194
- Resolved Issues
195
- The following issues have been resolved in Simba Spark JDBC Driver 2.6.14.
196
-
197
- * [SPARKJ-325][SPARKJ-326] When TransportMode is set to http and AuthMech,
198
- UID, and PWD are not specified, the driver returns a NullPointerException.
199
-
200
- This issue has been resolved. The driver now correctly defaults to
201
- No Authentication (AuthMech=3) in this case.
202
-
203
- * [SPARKJ-334] In some cases, queries starting with FROM or WITH are not
204
- executed when called using executeQuery().
205
-
206
- * [SPARKJ-338] In some cases, when using executeBatch with INSERT, queries
207
- only include the first batch of parameters.
208
-
209
- * [SPARKJ-352] The behavior of timestamps in Arrow serialized results is
210
- inconsistent.
211
-
212
- This issue has been resolved. Timestamps for Arrow serialized results are
213
- now consistent with non-Arrow serialized results.
214
-
215
-
216
- 2.6.13 -----------------------------------------------------------------------
217
-
218
- Released 2020-05-08
219
-
220
- Enhancements & New Features
221
-
222
- * [SPARKJ-243] Improved connection efficiency
223
-
224
- The driver now only opens one session per connection, as long as the server
225
- provides sufficient information during the initial OpenSession call.
226
- Previously, the driver opened two sessions per connection in order to
227
- retrieve the required server information.
228
-
229
- * [SPARKJ-261] Improved metadata operations
230
-
231
- The driver has been optimized to use improved metadata operations when
232
- connecting to a supporting server.
233
-
234
- * [SPARKJ-264] Support for Apache Arrow result set support in JDBC 4.2
235
-
236
- The JDBC 4.2 driver is now able to parse result sets that have been
237
- formatted using Apache Arrow.
238
-
239
- As part of this update, the driver now includes the following third-party
240
- libraries:
241
- - Apache Arrow
242
- - ASM
243
- - Byte Buddy
244
- - FlatBuffers
245
- - Netty
246
-
247
- * [SPARKJ-331] Removed driver name spaces in the user-agent string
248
-
249
- The driver now sends the user-agent string as
250
- "SimbaSparkJDBCDriver/<driver version>". Previously, it was sent as "Simba
251
- Spark JDBCDriver/<driver version>".
252
-
253
- * [SPARKJ-332] Support for Java 11
254
-
255
- The driver now supports Java 11.
256
-
257
-
258
- Resolved Issues
259
- The following issue has been resolved in Simba Spark JDBC Driver 2.6.13.
260
-
261
- * [SPARKJ-327] Error messages returned in the X-Thriftserver-Error-Message
262
- HTTP header are not displayed.
263
-
264
- * [SPARKJ-339] A newer, unrecognized server protocol version triggers the
265
- driver to fallback to the lowest known version.
266
-
267
- This issue has been resolved. The driver will now fallback to the highest
268
- known and supported protocol.
269
-
270
-
271
- 2.6.12 -----------------------------------------------------------------------
272
-
273
- Released 2020-03-20
274
-
275
- Enhancements & New Features
276
-
277
- * [SPARKJ-239][SPARKJ-241] Improved handling for HTTP 503 and HTTP 429
278
- responses
279
-
280
- The driver now returns more informative error messages when the server
281
- returns an HTTP 503 or HTTP 429 response.
282
-
283
- Additionally, you can now configure the driver to retry the operation that
284
- caused the response if the server returned Retry-After headers along with
285
- the response. To do this, set the following new properties:
286
- - For HTTP 503 responses: ClusterAutostartRetry and
287
- ClusterAutostartRetryTimeout
288
- - For HTTP 429 responses: RateLimitRetry and RateLimitRetryTimeout
289
-
290
- For more information, see the Installation and Configuration Guide.
291
-
292
- * [SPARKJ-240] User agent entry in HTTP request
293
-
294
- The driver now supports the use of a user agent entry in HTTP requests.
295
- You can set the new UserAgentEntry property to the user agent entry. For
296
- more information, see the Installation and Configuration Guide.
297
-
298
- * [SPARKJ-257] Improved data retrieval performance
299
-
300
- The driver now uses fewer server round-trips to query and retrieve data
301
- when connected to a server that supports the required wire protocol
302
- improvements.
303
-
304
- * [SPARKJ-312] Session tagging
305
-
306
- When connecting to certain distributions of Spark, the driver sends an
307
- additional header. This header contains a unique identifier that
308
- corresponds to the current session.
309
-
310
- * [SPARKJ-313] HTTP 4xx/5xx error messages
311
-
312
- When connecting to certain distributions of Spark, the driver now displays
313
- an error message for all HTTP 4xx and 5xx responses, if such an error
314
- message is provided by the server.
315
-
316
-
317
- Resolved Issues
318
- The following issues have been resolved in Simba Spark JDBC Driver 2.6.12.
319
-
320
- * [SPARKJ-310] When you use the driver with the Denodo application, it
321
- returns the following error: "Could not initialize Class".
322
-
323
- * [SPARKJ-318] If two queries with a different number of columns are
324
- executed in a multi-threaded environment, the driver throws an Index Out
325
- Of Bound exception.
326
-
327
- * [SPARKJ-319] SQL statements using the EXISTS predicate return an error.
328
-
329
- * [SPARKJ-322] The driver returns incorrect results for decimal columns.
330
-
331
-
332
- 2.6.11 -----------------------------------------------------------------------
333
-
334
- Released 2020-02-03
335
-
336
- Enhancements & New Features
337
-
338
- * [SPARKJ-250] Updated Apache Spark support
339
-
340
- The driver now supports the latest patches for Apache Spark version 2.4.
341
-
342
- * [SPARKJ-262] Updated Jackson library
343
-
344
- The driver now uses version 2.10.1 of the Jackson library. Previously, the
345
- driver used Jackson version 2.9.9.
346
-
347
- * [SPARKJ-294] Updated Thrift library
348
-
349
- The JDBC 4.2 version of the driver now uses version 0.13.0 of the Thrift
350
- library. Previously, this version of the driver used Thrift version 0.12.0.
351
-
352
- The JDBC 4.0 and 4.1 versions of the driver continue to use Thrift version
353
- 0.12.0.
354
-
355
-
356
- Resolved Issues
357
- The following issues have been resolved in Simba Spark JDBC Driver 2.6.11.
358
-
359
- * [SPARKJ-267] The JDBC 4.1 version of the driver fails to connect to servers
360
- that require encryption using TLS 1.2.
361
-
362
- This issue has been resolved. However, be aware that this issue still
363
- persists for the JDBC 4.0 version of the driver. For more information, see
364
- the "Known Issues" section.
365
-
366
- * [SPARKJ-271] When you use the com.simba.spark.jdbc.DataSource class to
367
- connect with the JDBC 4.1 or 4.2 version of the driver, the driver returns
368
- a class cast exception.
369
-
370
-
371
- 2.6.10 -----------------------------------------------------------------------
372
-
373
- Released 2019-10-03
374
-
375
- Resolved Issues
376
- The following issue has been resolved in Simba Spark JDBC Driver 2.6.10.
377
-
378
- * [SPARKJ-252] When running a query with an IN clause on a BOOLEAN type
379
- column, the driver fails to convert "1" or "0" values to "true" or "false",
380
- causing the query to fail.
381
-
382
-
383
- 2.6.9 ------------------------------------------------------------------------
384
-
385
- Released 2019-09-13
386
-
387
- Enhancements & New Features
388
-
389
- * [SPARKJ-246] Updated jackson-databind library
390
-
391
- The driver now uses the jackson-databind 2.9.9.3 library.
392
-
393
- * [SPARKJ-245] Updated Zookeeper library
394
-
395
- The driver now uses Zookeeper version 3.4.14.
396
-
397
-
398
- Resolved Issues
399
- The following issue has been resolved in Simba Spark JDBC Driver 2.6.9.
400
-
401
- * [SPARKJ-251] During SSL verification, the host name verification step fails
402
- because the driver resolves host names into IP addresses.
403
-
404
-
405
- 2.6.8 ------------------------------------------------------------------------
406
-
407
- Released 2019-06-19
408
-
409
- Enhancements & New Features
410
-
411
- * [SPARKJ-206] Custom socket factory and DNS resolver
412
-
413
- The driver now supports connecting to the data source using a Virtual
414
- Private Cloud. To access this feature, use the following connection
415
- properties:
416
- - SocketFactory
417
- - SocketFactoryArg
418
- - DnsResolver
419
- - DnsResolverArg
420
-
421
- For more information about these properties, see the Installation and
422
- Configuration Guide.
423
-
424
- * [SPARKJ-231] Support for JDBC 4.2
425
-
426
- The driver now supports JDBC 4.2.
427
-
428
- * [SPARKJ-233] New JDBC class names
429
-
430
- The driver now supports the following class names for Driver and
431
- DataSource that are independent of the JDBC version used:
432
- - com.simba.spark.jdbc.Driver
433
- - com.simba.spark.jdbc.DataSource
434
-
435
- The previous JDBC-version-specific class names for 4.0 and 4.1 are still
436
- supported.
437
-
438
- * [SPARKJ-236] Updated Jackson library
439
-
440
- The driver now uses version 2.9.9 of the Jackson library.
441
-
442
-
443
- Resolved Issues
444
- The following issues have been resolved in Simba Spark JDBC Driver 2.6.8.
445
-
446
- * [SPARKJ-227] The driver incorrectly treats SSL properties as server-side
447
- properties.
448
-
449
-
450
- 2.6.7 ------------------------------------------------------------------------
451
-
452
- Released 2019-03-29
453
-
454
- Enhancements & New Features
455
-
456
- * [SPARKJ-217] Updated Apache Spark support
457
-
458
- The driver now supports Apache Spark versions 1.6.0 through 2.4.0.
459
- Previously the driver supported versions 1.6.0 through 2.3.0.
460
-
461
- * [SPARKJ-198] Updated Hive Service support
462
-
463
- The driver now uses Hive Service 3.1.1 for HiverServer2 connections.
464
-
465
- * [SPARKJ-222] Updated Thrift library
466
-
467
- The driver now uses version 0.12.0 of the Thrift library.
468
-
469
- * [SPARKJ-216] Updated third-party libraries
470
-
471
- The driver has been updated to use version 2.9.8 of the jackson-core and
472
- jackson-annotation libraries. In addition, the JDBC 4.1 version of the
473
- driver has been updated to use version 2.9.8 of the jackson-databind
474
- library.
475
-
476
-
477
- Resolved Issues
478
- The following issues have been resolved in Simba Spark JDBC Driver 2.6.7.
479
-
480
- * [SPARKJ-209] The driver incorrectly returns a TIMESTAMP type when
481
- UseNativeQuery is not set to 1.
482
-
483
- * [SPARKJ-220] If a SQL query ends in a semicolon, the driver reports an
484
- error.
485
-
486
- This issue has been resolved. The driver now removes trailing semicolons
487
- from queries before sending them to the server.
488
-
489
-
490
- ==============================================================================