-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 319 release notes #1563
Add 319 release notes #1563
Conversation
* Fix a rare failure when running ``EXPLAIN ANALYZE`` on a query containing | ||
window functions. (:issue:`1401`) | ||
* Include cost estimates in output of ``EXPLAIN (TYPE IO)``. (:issue:`806`) | ||
* Improve coercion handling for correlated subqueries. (:issue:`1453`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the user-visible impact of this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if i recall, some queries would fail during planning. @kasiafi?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I verified that this causes a failure (in the local execution failure)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Fix planning failure due to coercion handling for correlated subqueries. (:issue:`1453`)
* Rename ``legacy`` and ``flat`` [scheduler policies](link to properties node scheduler section) to | ||
``uniform`` and ``topology`` respectively. These can be configured via the ``node-scheduler.policy`` | ||
property. (:issue:`10491`) | ||
* Add ``file`` [network topology provider](link to properties node scheduler section) which can be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be linked properly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added missing entries and updated a few based on comments. |
* Improve performance when reading data from GCS. (:issue:`1443`) | ||
* Allow accessing tables in Glue metastore that do not have a table type. (:issue:`1343`) | ||
* Add support for Azure Data Lake (``adl``) file system. (:issue:`1499`) | ||
* Add support for custom S3 filesystems. (:issue:`1397`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's change this to
* Allow using custom S3 file systems by relying on the default Hadoop configuration by specifying
``HADOOP_DEFAULT`` for the ``hive.s3-file-system-type`` configuration property. (:issue:`1397`)
Replaced by #1569 |
Closes #1378