Documentation for old versions of Iceberg

2021-08-04 Thread Peter Vary
Hi Team, Some users has problems with the Hive integration. I have noticed that the official site now contains the new documentation for catalog handling, but that is not yet available for the users as we are in the process of the release. Is there a way to access the old version of the document

Re: Documentation for old versions of Iceberg

2021-08-04 Thread Eduard Tudenhoefner
Hi Peter, not sure if there's a better way to access docs from previous versions, but one workaround would be to look at the markdown files in the source code for the particular version you're interested in. So for example https://github.com/apache/iceberg/blob/0.10.x/site/docs/hive.md contains th

Re: Documentation for old versions of Iceberg

2021-08-04 Thread Ryan Blue
We can add back the old documentation under a heading for 0.10.x. We do some similar things in the Spark docs where we have to account for different Spark versions and Iceberg versions. And I like Eduard's suggestion to take a look at the docs in the release tags. Nice to have those. On Wed, Aug 4

Re: [VOTE] Release Apache Iceberg 0.12.0 RC2

2021-08-04 Thread Ryan Murray
Hi all, Unfortunately I have to give -1 I had trouble w/ the keys: gpg: assuming signed data in 'apache-iceberg-0.12.0.tar.gz' gpg: Signature made Mon 02 Aug 2021 03:36:30 CEST gpg:using RSA key FAFEB6EAA60C95E2BB5E26F01FF0803CB78D539F gpg: Can't check signature: No public key A

Re: Orc deletes

2021-08-04 Thread Peter Vary
May I get review for this first step: https://github.com/apache/iceberg/pull/2935 Thanks, Peter > On Aug 2, 2021, at 12:42, Peter Vary wrote: > > Created https://github.com/apache/iceberg/issues/2914 >

Re: [VOTE] Release Apache Iceberg 0.12.0 RC2

2021-08-04 Thread Ryan Blue
Ryan, did you re-import the KEYS file? Carl's code signing key is in the linked KEYS file. On Wed, Aug 4, 2021 at 11:12 AM Ryan Murray wrote: > Hi all, > > Unfortunately I have to give -1 > > I had trouble w/ the keys: > > gpg: assuming signed data in 'apache-iceberg-0.12.0.tar.gz' > gpg: Signat

Re: [VOTE] Release Apache Iceberg 0.12.0 RC2

2021-08-04 Thread Carl Steinbach
To make this easier for everyone else, here are the commands you need to run to verify the release tarball: curl https://dist.apache.org/repos/dist/dev/iceberg/KEYS -o KEYS gpg --import KEYS gpg --verify apache-iceberg-0.12.0.tar.gz.asc apache-iceberg-0.12.0.tar.gz And here's what I see when I ru

Re: [VOTE] Release Apache Iceberg 0.12.0 RC2

2021-08-04 Thread Carl Steinbach
Hi Ryan, Can you please run the following command to see which keys in your public keyring are associated with my UID? % gpg --list-keys c...@apache.org pub rsa4096/5A5C7F6EB9542945 2021-07-01 [SC] 160F51BE45616B94103ED24D5A5C7F6EB9542945 uid [ultimate] Carl W. Steinbach

Re: [VOTE] Release Apache Iceberg 0.12.0 RC2

2021-08-04 Thread Ryan Murray
Thanks for the help Carl, got it sorted out. The gpg check now works. For those who were interested I used a canned wget command in my history and it pulled the RC0 :-) Will have a PR to fix the Nessie Catalog soon. Best, Ryan On Wed, Aug 4, 2021 at 9:21 PM Carl Steinbach wrote: > Hi Ryan, > >

Re: [VOTE] Release Apache Iceberg 0.12.0 RC2

2021-08-04 Thread Ryan Murray
After some wrestling w/ Spark I discovered that the problem was with my test. Some SparkSession apis changed. so all good here now. +1 (non-binding) On Wed, Aug 4, 2021 at 11:29 PM Ryan Murray wrote: > Thanks for the help Carl, got it sorted out. The gpg check now works. For > those who were in