Hi Jingsong,

Thanks for driving the very first release of the flink-table-store!

+1 (binding) for the RC.

I verified the following:
- the signature of the artifacts
- the source jar does not contain binary files
- no accidental distribution of other projects is included in the dist jar
- went through the quick start
- compiled the code locally

There were two things that are not blockers but might worth noting:
1. Running the verification requires docker installation. It happens that I
do not have that installed on my new laptop.
2. In the quick start, after dropping the word_count table, the Flink job
that inserts data into the word_count table will keep failover. And this
job won't exit after SQL Client exits. It is not a problem of
flink-table-store, but it might be non-intuitive for some of the users.

I also left some comment in the PR of release announcement.

Thanks,

Jiangjie (Becket) Qin

On Thu, May 5, 2022 at 5:39 PM Jingsong Li <jingsongl...@gmail.com> wrote:

> Hi, Konstantin and OpenInx,
>
> I have updated https://github.com/apache/flink-web/pull/531 , you can
> take a review~
>
> Best,
> Jingsong
>
> On Thu, May 5, 2022 at 3:07 PM OpenInx <open...@gmail.com> wrote:
> >
> > +1 ( non-binding) for the release. I agree with Konstantin that we can
> add
> > more materials about the table-store for the voting.
> >
> >
> >    1. Download the source tarball, signature (.asc), and checksum
> >    (.sha512):   OK
> >    2. Import gpg keys: download KEYS and run gpg --import
> >    /path/to/downloaded/KEYS (optional if this hasn’t changed) :  OK
> >    3. Verify the signature by running: gpg --verify
> >    flink-table-store-0.1.0-src.tgz.asc:  OK
> >    4. Verify the checksum by running: shasum -a 256 -c
> >    flink-table-store-0.1.0-src.tgz.sha512
> flink-table-store-0.1.0-src.tgz :  OK
> >    5. Untar the archive and go into the source directory: tar xzf
> >    flink-table-store-0.1.0-src.tgz && cd flink-table-store-0.1.0:  OK
> >    6. Build and test the project: mvn clean package (use Java 8) :   All
> >    unit tests passed, except the e2e tests. Seems we will need to set up
> a
> >    docker environment to run those e2e tests successfully.
> >    7. Verify the apache flink access table store:
> >
> > ./bin/sql-client.sh -j
> >
> /Users/openinx/Downloads/flink-table-store-0.1.0/flink-table-store-dist/target/flink-table-store-dist-0.1.0.jar
> > embedded shell
> >
> > SET 'table-store.path' = '/Users/openinx/test/table-store' ;
> >
> > SET 'execution.runtime-mode'='batch';
> >
> > SET 'sql-client.execution.result-mode' = 'tableau';
> >
> > CREATE TABLE MyTable (
> >
> > user_id BIGINT,
> >
> > item_id BIGINT,
> >
> > behavior STRING,
> >
> > dt STRING,
> >
> > PRIMARY KEY (dt, user_id) NOT ENFORCED
> >
> > ) PARTITIONED BY (dt) WITH (
> >
> > 'bucket' = '4'
> >
> > );
> >
> > INSERT INTO MyTable VALUES
> >
> > (100, 200, 'buy', '2022-05-04'),
> >
> > (101, 201, 'save', '2022-05-04'),
> >
> > (101, 201, 'purchase', '2022-05-04');
> >
> >
> > SELECT * FROM MyTable;
> >
> > +---------+---------+----------+------------+
> >
> > | user_id | item_id | behavior | dt |
> >
> > +---------+---------+----------+------------+
> >
> > | 100 | 200 | buy | 2022-05-04 |
> >
> > | 101 | 201 | purchase | 2022-05-04 |
> >
> > +---------+---------+----------+------------+
> >
> > 2 rows in set
> >
> > On Thu, May 5, 2022 at 2:39 PM Nicholas Jiang <nicholasji...@apache.org>
> > wrote:
> >
> > > Hi everyone,
> > >
> > > +1 for the release (non-binding).
> > >
> > > - Built and compiled source codes [PASSED]
> > > - Went through quick start guide [PASSED]
> > > - Checked README.md [PASSED]
> > > - Checked that use the table store jar to build query table application
> > > [PASSED]
> > >
> > > Best regards,
> > >
> > > Nicholas Jiang
> > >
> > > On 2022/04/29 02:24:09 Jingsong Li wrote:
> > > > Hi everyone,
> > > >
> > > > Please review and vote on the release candidate #2 for the version
> 0.1.0
> > > of
> > > > Apache Flink Table Store, as follows:
> > > >
> > > > [ ] +1, Approve the release
> > > > [ ] -1, Do not approve the release (please provide specific comments)
> > > >
> > > > **Release Overview**
> > > >
> > > > As an overview, the release consists of the following:
> > > > a) Table Store canonical source distribution, to be deployed to the
> > > > release repository at dist.apache.org
> > > > b) Maven artifacts to be deployed to the Maven Central Repository
> > > >
> > > > **Staging Areas to Review**
> > > >
> > > > The staging areas containing the above mentioned artifacts are as
> > > follows,
> > > > for your review:
> > > > * All artifacts for a) and b) can be found in the corresponding dev
> > > > repository at dist.apache.org [2]
> > > > * All artifacts for c) can be found at the Apache Nexus Repository
> [3]
> > > > * Pre Bundled Binaries Jar can work fine with quick start [4][5]
> > > >
> > > > All artifacts are signed with the key
> > > > 2C2B6A653B07086B65E4369F7C76245E0A318150 [6]
> > > >
> > > > Other links for your review:
> > > > * JIRA release notes [7]
> > > > * source code tag "release-0.1.0-rc2" [8]
> > > > * PR to update the website Downloads page to include Table Store
> > > > links [9]
> > > >
> > > > **Vote Duration**
> > > >
> > > > The voting time will run for at least 72 hours.
> > > > It is adopted by majority approval, with at least 3 PMC affirmative
> > > votes.
> > > >
> > > > Best,
> > > > Jingsong Lee
> > > >
> > > > [1]
> > >
> https://cwiki.apache.org/confluence/display/FLINK/Verifying+a+Flink+Table+Store+Release
> > > > [2]
> > >
> https://dist.apache.org/repos/dist/dev/flink/flink-table-store-0.1.0-rc2/
> > > > [3]
> > >
> https://repository.apache.org/content/repositories/orgapacheflink-1502/
> > > > [4]
> > >
> https://repository.apache.org/content/repositories/orgapacheflink-1502/org/apache/flink/flink-table-store-dist/0.1.0/flink-table-store-dist-0.1.0.jar
> > > > [5]
> > >
> https://nightlies.apache.org/flink/flink-table-store-docs-release-0.1/docs/try-table-store/quick-start/
> > > > [6] https://dist.apache.org/repos/dist/release/flink/KEYS
> > > > [7]
> > >
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12351234
> > > > [8]
> https://github.com/apache/flink-table-store/tree/release-0.1.0-rc2
> > > > [9] https://github.com/apache/flink-web/pull/531
> > > >
> > >
>

Reply via email to