Re: unsubscribe

2023-02-01 Thread Alessandro Solimando
Hello, in order to unsubscribe from the list you need to send an email here: user-unsubscr...@hive.apache.org On Thu 2 Feb 2023, 04:51 , wrote: > unsubscribe >

unsubscribe

2023-02-01 Thread zhangxin0112zx
unsubscribe

Re: Test Case Failed

2023-02-01 Thread Sai Hemanth Gantasala
Hi, You can set the below configuration at the beginning of the file 'acid_nullscan.q' > --! qt:replace:/(\s+totalSize\s+)\S+(\s+)/$1#Masked#$2/ > and run the following command 'mvn test -Dtest=TestCliDriver -Dqfile=acid_nullscan.q -Dtest.output.overwrite=true' to generate the output. What the

Re: Odp: Re: hive 4.0.0-alpha2 external table locks

2023-02-01 Thread Denys Kuzmenko
DbTxnManager comes with DbLockManager implementation that doesn't support explicit lock/unlock functionality. It was designed to be used only for ACID tables, however, due to code refactor challenges is reused for external tables as well. This comes with few drawbacks like suboptimal behavior

Re: Odp: Re: hive 4.0.0-alpha2 external table locks

2023-02-01 Thread Wojtek Meler
We are using external tables on early stages of ETL. Next we switch to managed tables as we dont need to worry about partition management. With DummyTxnManager we had problems dealing with managed tables. Regards, Wojtek Dnia 1 lutego 2023 10:31 Denys Kuzmenko dkuzme...@apache.org

Test Case Failed

2023-02-01 Thread onRoad
Hello, I use hive-3.1.2 and hive-3.1.3 to run test case. The case acid_nullscan.q is failed. This is confused. Would you please give some advice. Thank you very much. The result is: --- Test set:

Re: unsubscribe

2023-02-01 Thread Stamatis Zampetakis
Hi Darren, In order to unsubscribe from the list you need to send an email here: user-unsubscr...@hive.apache.org The same holds to other mailing lists as well [1]. Best, Stamatis [1] https://hive.apache.org/community/mailinglists/ On Wed, Feb 1, 2023 at 11:34 AM Darren Beckstand wrote: >

Re: unsubscribe

2023-02-01 Thread Darren Beckstand
unsubscribe On Tue, Jan 31, 2023, 10:59 PM wrote: > unsubscribe >

Re: Odp: Re: hive 4.0.0-alpha2 external table locks

2023-02-01 Thread Denys Kuzmenko
If you are using external tables only, you could try switching to DummyTxnManager. It supports explicit lock requests.