I vote +1 (binding) having followed this process: downloaded pre-release/iotdb-0.9.0 rc3 binary release from https://dist.apache.org/repos/dist/dev/incubator/iotdb/0.9.0/rc3/apache-iotdb-0.9.0-incubating-bin.zip
I confirmed the sha512 matches: 8a01cd05addfc72b67bdb6f894c59919dc25b80bec342f733f283387749a59959c93b04c92ff4ed11e3ccc36247319516932e2d602804960bf4418a2c4a00edd apache-iotdb-0.9.0-incubating-bin.zip I reviewed the NOTICE, LICENSE and DISCLAIMER as well as the README.md and the RELEASE_NOTES.md ran start-server.sh ran start-client.sh NOTE: The client scripts should be moved to bin out of sbin as discussed with 0.8 release. Executed the following successfully. SET STORAGE GROUP TO root.ln.wf01.wt01; CREATE TIMESERIES root.ln.wf01.wt01.status WITH DATATYPE=BOOLEAN, ENCODING=PLAIN CREATE TIMESERIES root.ln.wf01.wt01.temperature WITH DATATYPE=FLOAT, ENCODING=PLAIN CREATE TIMESERIES root.ln.wf01.wt01.hardware WITH DATATYPE=INT32, ENCODING=PLAIN INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(1, 1.1, false, 11) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(2, 2.2, true, 22) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(3, 3.3, false, 33 ) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(4, 4.4, false, 44) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(5, 5.5, false, 55) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(6, 1.1, false, 11) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(7, 2.2, true, 22) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(8, 3.3, false, 33 ) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(9, 4.4, false, 44) INSERT INTO root.ln.wf01.wt01(timestamp,temperature,status, hardware) values(10, 5.5, false, 55) Select * from root; I did not do the source release as my system is not working correctly with mvn but based on others feedback, I feel confident in the binary release test. Regards, KAM On 11/20/2019 9:23 AM, Jialin Qiao wrote: > Hi all, > > > Now I open a new ticket for Apache IoTDB (incubating) 0.9.0 RC3, which fixs > some issues comparing with RC2. You can find the details at the end of this > email. > > > Apache IoTDB (incubating) 0.9.0 is a major version with many exciting > features. > You can get the release notes in [5]. > > > Apache IoTDB (Incubating) 0.9.0 has been staged under [2] and it’s time to > vote on accepting it for release. All Maven artifacts are available under > [1]. > If approved we will seek final release approval from the IPMC. > > > Voting will be open for 72hr. > > > A minimum of 3 binding +1 votes and more binding +1 than binding -1 are > required to pass. > > > Release tag: release/0.9.0 > > > Hash for the release tag: 61d7f468a3db23e86d449b4ca47e11954c36c180 > > > Per [3] "Before voting +1 PMC/PPMC members are required to download the > signed source code package, compile it as provided, and test the resulting > executable on their own platform, along with also verifying that the package > meets the requirements of the ASF policy on releases." > > > Difference with RC2: > > > Update the ./.mvn/wrapper/MavenWrapperDownloader.java to the latest version > in maven-wrapper project with its origin header. > Add maven-wrapper in LICENSE > Fix upgrade from 0.8.0 bug > Fix recover bad WAL log bug > > > > > You can achieve the above by following [4]. > > > [ ] +1 accept (indicate what you validated - e.g. performed the non-RM items > in [4]) > [ ] -1 reject (explanation required) > > > [1] https://repository.apache.org/content/repositories/orgapacheiotdb-1015 > [2] https://dist.apache.org/repos/dist/dev/incubator/iotdb/0.9.0/rc3 > [3] https://www.apache.org/dev/release.html#approving-a-release > [4] > https://cwiki.apache.org/confluence/display/IOTDB/Validating+a+staged+Release > [5] > https://dist.apache.org/repos/dist/dev/incubator/iotdb/0.9.0/rc3/RELEASE_NOTES.md > > > Thanks, > -- > Jialin Qiao > School of Software, Tsinghua University > > > 乔嘉林 > 清华大学 软件学院 -- Kevin A. McGrail [email protected] Member, Apache Software Foundation Chair Emeritus Apache SpamAssassin Project https://www.linkedin.com/in/kmcgrail - 703.798.0171
