Release 0.186
This release has a stability issue that may cause query failures in large deployments due to HTTP requests timing out.
Fix excessive GC overhead caused by map to map cast.
Fix implicit coercions for types, allowing operations between compatible types such as
ROW(INTEGER)
andROW(BIGINT)
.Fix issue that may cause queries containing expensive functions, such as regular expressions, to continue using CPU resources even after they are killed.
Fix performance issue caused by redundant casts.
Fix leak in running query counter for failed queries. The counter would increment but never decrement for queries that failed before starting.
Reduce coordinator HTTP thread usage for queries that are queued or waiting for data.
Estimate memory usage for more precisely to avoid out of memory errors.
Add queued time and elapsed time to the client protocol.
Add
query_max_execution_time
session property andquery.max-execution-time
config property. Queries will be aborted after they execute for more than the specified duration.Add inverse_normal_cdf() function.
Add including functions for processing Bing tiles.
Add Spill to Disk for joins.
Query Queues are deprecated in favor of and will be removed in a future release.
Fail on unknown property names when loading the JSON config file.
Allow specifying an empty password.
Add
getQueuedTimeMillis()
andgetElapsedTimeMillis()
to .
Fix
FileSystem closed
errors when using Kerberos authentication.Add support for path style access to the S3 file system. This can be enabled by setting the
hive.s3.path-style-access=true
config property.
Add an
ignoreExisting
flag toConnectorMetadata::createTable()
.Remove the
getTotalBytes()
method fromRecordCursor
and .
Note