From dd01eb9cbd0a113239428b801284bff8a6756aa7 Mon Sep 17 00:00:00 2001 From: Brian Hulette Date: Fri, 25 Jun 2021 14:46:14 -0700 Subject: [PATCH] Minor: Announce DataFrame API leaving experimental in 2.32.0 (#15053) * Add DataFrame API announcement * Add bug link --- CHANGES.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c893dcdd4a6..9438895ff76 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -49,9 +49,27 @@ # [2.32.X] - Unreleased ## Highlights - * New highly anticipated feature X added to Python SDK ([BEAM-X](https://issues.apache.org/jira/browse/BEAM-X)). * New highly anticipated feature Y added to Java SDK ([BEAM-Y](https://issues.apache.org/jira/browse/BEAM-Y)). +* The [Beam DataFrame + API](https://beam.apache.org/documentation/dsls/dataframes/overview/) is no + longer experimental! We've spent the time since the [2.32.0 preview + announcement](https://beam.apache.org/blog/dataframe-api-preview-available/) + implementing the most frequently used pandas operations + ([BEAM-9547](https://issues.apache.org/jira/browse/BEAM-9547)), improving + [documentation](https://beam.apache.org/releases/pydoc/current/apache_beam.dataframe.html) + and [error messages](https://issues.apache.org/jira/browse/BEAM-12028), + adding + [examples](https://github.com/apache/beam/tree/master/sdks/python/apache_beam/examples/dataframe), + integrating DataFrames with [interactive + Beam](https://beam.apache.org/releases/pydoc/current/apache_beam.runners.interactive.interactive_beam.html), + and of course finding and fixing + [bugs](https://issues.apache.org/jira/issues/?jql=project%3DBEAM%20AND%20issuetype%3DBug%20AND%20status%3DResolved%20AND%20component%3Ddsl-dataframe). + Leaving experimental just means that we now have high confidence in the API + and recommend its use for production workloads. We will continue to improve + the API, guided by your + [feedback](https://beam.apache.org/community/contact-us/). + ## I/Os