Hi,
I've now created a "preview RC" for the upcoming 1.0.0 release. There are still some blocking issues and important pull requests to be merged but nevertheless I would like to start testing Flink for the release. In past major releases, we needed to create many release candidates, often for fixing just some small issues. I would like to speed up the release process by collecting as many issues as possible now with the RC0. Once these issues are resolved, we can start voting with the RC1. We have a Wiki page https://cwiki.apache.org/confluence/display/FLINK/Releasing containing some common release verification tasks. Also, production users are encouraged to participate in the release verification process. Here are the preview binaries located: http://people.apache.org/~rmetzger/flink-1.0.0-rc0/ This is the staging repository: https://repository.apache.org/content/repositories/orgapacheflink-1062 To use the release candidate in an existing pom project, set the Flink version to 1.0.0 and the repository URL to https://repository.apache.org/content/repositories/orgapacheflink-1062. The pom should look like this: <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <flink.version>1.0.0</flink.version> </properties> <repositories> <repository> <id>flink.release-staging</id> <name>Apache Development Snapshot Repository</name> <url>https://repository.apache.org/content/repositories/orgapacheflink-1062</url> <releases><enabled>true</enabled></releases> <snapshots><enabled>false</enabled></snapshots> </repository> </repositories> Let me start a list of issues we need to resolve: - Ensure the release is build with maven < 3.3 (the RC0 has been build with Maven 3.3, so the Guava shading is not done properly.) - flink-cep depends on Scala, but the artifact doesn't have a scala version suffix. - the flink-quickstart-java is referring to scala 2.11 by default. Please add more issues to the list .... |
Found one blocker issue during testing:
- Watermark generators accept negative watermarks (FLINK-3415) On Mon, Feb 15, 2016 at 8:47 PM, Robert Metzger <[hidden email]> wrote: > Hi, > > I've now created a "preview RC" for the upcoming 1.0.0 release. > There are still some blocking issues and important pull requests to be > merged but nevertheless I would like to start testing Flink for the release. > > In past major releases, we needed to create many release candidates, often > for fixing just some small issues. I would like to speed up the release > process by collecting as many issues as possible now with the RC0. Once > these issues are resolved, we can start voting with the RC1. > > We have a Wiki page > https://cwiki.apache.org/confluence/display/FLINK/Releasing containing > some common release verification tasks. > > Also, production users are encouraged to participate in the release > verification process. > > Here are the preview binaries located: > http://people.apache.org/~rmetzger/flink-1.0.0-rc0/ > This is the staging repository: > https://repository.apache.org/content/repositories/orgapacheflink-1062 > > > To use the release candidate in an existing pom project, set the Flink > version to 1.0.0 and the repository URL to > https://repository.apache.org/content/repositories/orgapacheflink-1062. > The pom should look like this: > > <properties> > <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> > <flink.version>1.0.0</flink.version> > </properties> > > <repositories> > <repository> > <id>flink.release-staging</id> > <name>Apache Development Snapshot Repository</name> > <url>https://repository.apache.org/content/repositories/orgapacheflink-1062</url> > <releases><enabled>true</enabled></releases> > <snapshots><enabled>false</enabled></snapshots> > </repository> > </repositories> > > > > > Let me start a list of issues we need to resolve: > - Ensure the release is build with maven < 3.3 (the RC0 has been build > with Maven 3.3, so the Guava shading is not done properly.) > - flink-cep depends on Scala, but the artifact doesn't have a scala > version suffix. > - the flink-quickstart-java is referring to scala 2.11 by default. > > Please add more issues to the list .... > > > > > |
So far, I found the following issues:
- https://issues.apache.org/jira/browse/FLINK-3400 - https://issues.apache.org/jira/browse/FLINK-3446 - https://issues.apache.org/jira/browse/FLINK-3439 - https://issues.apache.org/jira/browse/FLINK-3439 - https://issues.apache.org/jira/browse/FLINK-3418 - https://issues.apache.org/jira/browse/FLINK-3410 (Most of them are already resolved, or have at least pull requests) We have 6 blockers currently. Lets try to get rid of them so that we can start with the first voting release candidate early next week. On Tue, Feb 16, 2016 at 2:58 PM, Stephan Ewen <[hidden email]> wrote: > Found one blocker issue during testing: > > - Watermark generators accept negative watermarks (FLINK-3415) > > On Mon, Feb 15, 2016 at 8:47 PM, Robert Metzger <[hidden email]> > wrote: > >> Hi, >> >> I've now created a "preview RC" for the upcoming 1.0.0 release. >> There are still some blocking issues and important pull requests to be >> merged but nevertheless I would like to start testing Flink for the release. >> >> In past major releases, we needed to create many release candidates, >> often for fixing just some small issues. I would like to speed up the >> release process by collecting as many issues as possible now with the RC0. >> Once these issues are resolved, we can start voting with the RC1. >> >> We have a Wiki page >> https://cwiki.apache.org/confluence/display/FLINK/Releasing containing >> some common release verification tasks. >> >> Also, production users are encouraged to participate in the release >> verification process. >> >> Here are the preview binaries located: >> http://people.apache.org/~rmetzger/flink-1.0.0-rc0/ >> This is the staging repository: >> https://repository.apache.org/content/repositories/orgapacheflink-1062 >> >> >> To use the release candidate in an existing pom project, set the Flink >> version to 1.0.0 and the repository URL to >> https://repository.apache.org/content/repositories/orgapacheflink-1062. >> The pom should look like this: >> >> <properties> >> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> >> <flink.version>1.0.0</flink.version> >> </properties> >> >> <repositories> >> <repository> >> <id>flink.release-staging</id> >> <name>Apache Development Snapshot Repository</name> >> <url>https://repository.apache.org/content/repositories/orgapacheflink-1062</url> >> <releases><enabled>true</enabled></releases> >> <snapshots><enabled>false</enabled></snapshots> >> </repository> >> </repositories> >> >> >> >> >> Let me start a list of issues we need to resolve: >> - Ensure the release is build with maven < 3.3 (the RC0 has been build >> with Maven 3.3, so the Guava shading is not done properly.) >> - flink-cep depends on Scala, but the artifact doesn't have a scala >> version suffix. >> - the flink-quickstart-java is referring to scala 2.11 by default. >> >> Please add more issues to the list .... >> >> >> >> >> > |
Free forum by Nabble | Edit this page |