Building Hive on JDK11

2020-07-13 Thread David
Hello Gang, I am working on getting Hive to build on OpenJDK 11 (PR #1241) When Jenkins runs it, the build fails and I get an "Fatal error compiling: invalid target release: 11" which means that it is using an older JDK. I looked at the build logs and see that JAVA_HOME is set to, what appears t

Re: Building Hive on JDK11

2020-07-13 Thread David
OpenJDK or Oracle. Thanks. On Mon, Jul 13, 2020 at 10:44 AM Panos Garefalakis wrote: > Hey David, > > The current CI process is using a pre-populated docker image for running > the tests: https://hub.docker.com/r/kgyrtkirk/hive-dev-box/tags > The image is build based on the source

Re: Building Hive on JDK11

2020-07-15 Thread David
o prompt me for different credentials, I have tried clearing cookies and the like, but it simply won't allow me to specify the account. Any thoughts? David On Mon, Jul 13, 2020 at 11:50 AM Panos Garefalakis wrote: > Hey David, > > Yes we probably need to switch to OpenJDK -- latest PR seem

Re: Building Hive on JDK11

2020-07-15 Thread David
2020 at 9:45 AM David wrote: > Hello Panagiotis, > > Thanks for all your help on this. > > I have put together a new PR. > > https://github.com/kgyrtkirk/hive-dev-box/pull/6/files > > I am trying to test by building a new pipeline in Jenkins, but I don't > seem

Re: Time to Remove Hive-on-Spark

2020-07-21 Thread David
n 3, 2020 at 1:58 PM Alan Gates wrote: > > > >> +1. > >> > >> Alan. > >> > >> On Wed, Jun 3, 2020 at 1:40 PM Prasanth Jayachandran > >> wrote: > >> > >>> +1 > >>> > >>>> On Jun 3, 2020,

Re: Time to Remove Hive-on-Spark

2020-07-21 Thread David
There are users that will be left high > and dry by this move. > > If the community decides to desupport and eventually remove it, I think we > need to have a due process. We also need a deprecation plan if that's we > decide to do. Before that, I'm -1 on this proposa

Re: Time to Remove Hive-on-Spark

2020-07-21 Thread David
's move to Tez is that HoS adoption is very low, it's only going lower, and while I don't know the specifics of it, there must be some migration plan in place there (i.e., it must be possible to do it already). Thanks, David On Tue, Jul 21, 2020 at 12:23 PM Xuefu Zhang wrote: >

Re: Time to Remove Hive-on-Spark

2020-07-27 Thread David
t; On Wed, Jul 22, 2020 at 8:46 AM Alan Gates wrote: > > > An important point here is I don't believe David is proposing to remove > > Hive on Spark from the 2 or 3 lines, but only from trunk. Continuing to > > support it in existing 2 and 3 lines makes sense, but since no

Re: What is the latest version of JDK supported by hive 3.1.2?

2020-09-24 Thread David
https://issues.apache.org/jira/browse/HIVE-22415 On Thu, Sep 24, 2020 at 2:05 AM Zoltán Haindrich wrote: > Hello, > > For Hive3 I don't think you can go above java8 - there are changes in the > classloader area which will cause all kind of exceptions with java >=9 > > cheers, > Zoltan > > On Sep

Re: org.apache.thrift.transport.TTransportException:Invalid status -128

2020-10-29 Thread David
Simple means that a client that is connected to the HMS is misconfigured and is not doing the appropriate SASL handshake. Client must be kerberos and enabled. On Thu, Oct 29, 2020 at 11:04 AM qq <987626...@qq.com> wrote: > The following error occurred when starting Hive using: > > Additional in

Commit Message Mistake

2020-11-30 Thread David
HIVE-24423: Improve DbNotificationListener Thread (David Mollitor reviewed by Naveen Gangam, Miklos Gergely) https://github.com/apache/hive/pull/1703 What's the best course of action here? Does someone have the power to amend the message? Again, my apologies. Thanks.

Re: Commit Message Mistake

2020-11-30 Thread David
Hey Peter, Ya, yes. The list of shame. Ha. Updated. Thanks. On Mon, Nov 30, 2020 at 9:50 AM Peter Vary wrote: > Hi David, > > You are not the first and most probably not the last to do such a mistake.. > You should check the errata.txt for fixing these mistakes. > > Thanks

Hive Facebook Page

2021-02-09 Thread David
Maybe it's time to consider consolidating a bit and dropping the Facebook group. Last post was 2012. :D https://m.facebook.com/apache.hive/ Would anyone know how to do this?

Re: [EXTERNAL] Re: Any plan for new hive 3 or 4 release?

2021-02-27 Thread David
Hello, My hope has been that Hive 4.x would be built on Java 11. However, I've hit many stumbling blocks over the past year towards this goal. I've been able to make some progress, but several things are still stuck. It mostly stems from the fact that hive has many big-ticket dependencies like

Re: Does Hive support data encryption?

2021-03-02 Thread David
Not directly. It relies on the underlying storage layer. For example: https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/TransparentEncryption.html On Tue, Mar 2, 2021 at 6:34 AM qq <987626...@qq.com> wrote: > Hello: > > Does Hive support data encryption? > > Thank

Re: Hive Iceberg integration

2021-03-03 Thread David
Hello Team, I'm not sure how far out you want to scope this, but I think we have enough sub-projects as it is within the Hive core project. To build the entire project takes a considerable amount of time. Would it be possible to roll this out like Jackson or DataNucleaus? https://github.com/apa

Hive HMS RawStore-ObjectStore Design

2021-05-17 Thread David
Hello Gang, I just wanted to put out a few thoughts for anyone interested in the Metastore, and in particular, the connection handling. As I understand it, client requests from the Thrift server come into Hive via the HMSHandler class. This class lists all of the services (RPCs) that the Hive Me

Fwd: Hive HMS RawStore-ObjectStore Design

2021-05-17 Thread David
And here is a JIRA for continued discussion: https://issues.apache.org/jira/browse/HIVE-25126 -- Forwarded message - From: David Date: Mon, May 17, 2021 at 1:42 PM Subject: Hive HMS RawStore-ObjectStore Design To: dev Hello Gang, I just wanted to put out a few thoughts for

Re: Hive HMS RawStore-ObjectStore Design

2021-05-18 Thread David
use directory in HDFS), that code needs to be removed. Anything related to the transaction is reverted by the calling class with a call to RawStore#rollbackTransaction. Thanks. On Tue, May 18, 2021 at 9:17 AM Narayanan Venkateswaran wrote: > Hi, > > Thank you for the email, &g

Re: Hive HMS RawStore-ObjectStore Design

2021-05-27 Thread David
also working on decoupling the ObjectStore code from Thrift. I could use some help on reviewing PRs that I submitted that begin this process. https://issues.apache.org/jira/browse/HIVE-25126 Thanks. On Tue, May 18, 2021 at 9:54 AM David wrote: > Hello Narayanan, > > Thank you so much f

JDK 11 Support

2021-06-23 Thread David
I was wondering if someone with more knowledge can assist in fixing this regression. https://github.com/apache/hive/pull/1742 Thanks, David

Re: Move Date and Timestamp parsing from ResolverStyle.LENIENT to ResolverStyle.STRICT

2021-07-09 Thread David
Hello, I too would be in favor of this. It drastically cuts down on the test matrix for Hive if we can clamp down on timestamp formats. With that being said, I've tried this and it's a big effort. I put it down without getting consensus or buy-in or engagement on the effort. Please check out my w

Re: [EXTERNAL] Re: Move Date and Timestamp parsing from ResolverStyle.LENIENT to ResolverStyle.STRICT

2021-07-13 Thread David
s change to return "NULL" for invalid date/timestamp. In > the interest of backward compatibility, can we make all these changes under > a flag which can be enabled by default? > > > Thanks, > Sankar > -Original Message- > From: David > Sent: 10 July 2

Re: Review Request 24136: HIVE-4329: HCatalog should use getHiveRecordWriter.

2014-10-06 Thread David Chen
b93121d617673fa455df70f97eed67254425678c Diff: https://reviews.apache.org/r/24136/diff/ Testing --- Run unit tests. Thanks, David Chen

Re: Number of unit tests

2014-10-10 Thread David Schorow
Build #1188 had 6765 tests, #1189 had 4354 tests. The following packages were not run in 1189. I don't know why. Package Total

Re: Review Request 24136: HIVE-4329: HCatalog should use getHiveRecordWriter.

2014-08-28 Thread David Chen
86d23f10a66f9a33023e2153202b970c386bae20 Diff: https://reviews.apache.org/r/24136/diff/ Testing (updated) --- Run unit tests. Thanks, David Chen

Re: Review Request 24136: HIVE-4329: HCatalog should use getHiveRecordWriter.

2014-08-28 Thread David Chen
/AvroSerDe.java 69545b046db06fd56f35a0da09d3d6960832484d Diff: https://reviews.apache.org/r/24136/diff/ Testing --- Run unit tests. Thanks, David Chen

Re: Review Request 24136: HIVE-4329: HCatalog should use getHiveRecordWriter.

2014-08-28 Thread David Chen
/java/org/apache/hadoop/hive/serde2/avro/AvroSerDe.java 69545b046db06fd56f35a0da09d3d6960832484d Diff: https://reviews.apache.org/r/24136/diff/ Testing --- Run unit tests. Thanks, David Chen

Re: Review Request 25178: Add DROP TABLE PURGE

2014-09-02 Thread david seraf
. Thanks, david seraf

Re: Review Request 25178: Add DROP TABLE PURGE

2014-09-02 Thread david seraf
/25178/diff/ Testing --- added code test and added QL test. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

request to beome a contributor

2014-09-02 Thread David Serafini
JIRA user: dbsalti (david serafini) Working on HIVE-7100 thanks,

Re: Review Request 25178: Add DROP TABLE PURGE

2014-09-02 Thread david seraf
://reviews.apache.org/r/25178/diff/ Testing --- added code test and added QL test. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

Re: Review Request 25178: Add DROP TABLE PURGE

2014-09-04 Thread david seraf
t; You could add an explanation for UnsupportedOperationException but it > > seems self-explanatory (so I'm not opening an issue). Ok. I'll cleanup the various dropTable() docs with the next set of changes (when I get a code review). Thanks. - david -

Re: Review Request 25178: Add DROP TABLE PURGE

2014-09-08 Thread david seraf
7;ll > > need a new `dropPartitions()` overload that takes an ifPurge flag. This > > method should forward to the new method. I'm looking at it, but I think it may be a large enough change to justify a separate ticket. - david ----

Re: Review Request 25178: Add DROP TABLE PURGE

2014-09-09 Thread david seraf
PRE-CREATION Diff: https://reviews.apache.org/r/25178/diff/ Testing --- added code test and added QL test. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-12 Thread david seraf
/drop_table_purge.q.out PRE-CREATION Diff: https://reviews.apache.org/r/25178/diff/ Testing --- added code test and added QL test. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-12 Thread david seraf
. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-12 Thread david seraf
the different signature both up and down the call tree, and will interact with the dropPartitions implementation. So I think the better approach is to leave it for the dropPartitions ticket. - david --- This is an automatically generated

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-12 Thread david seraf
for the solution to be complete. We'll > > need a new `dropPartitions()` overload that takes an ifPurge flag. This > > method should forward to the new method. > > david seraf wrote: > I'm looking at it, but I think it may be a large enough change to justify

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-12 Thread david seraf
/drop_table_purge.q.out PRE-CREATION Diff: https://reviews.apache.org/r/25178/diff/ Testing --- added code test and added QL test. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-15 Thread david seraf
> > Also, both methods are new and private. I'm not sure if I undertand the > > complexity of the change. I misunderstood. I'm fine with changing those 2 methods. - david --- This is an automaticall

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-16 Thread david seraf
> > Also, both methods are new and private. I'm not sure if I undertand the > > complexity of the change. > > david seraf wrote: > I misunderstood. I'm fine with changing those 2 methods. I looked at this in more detail and the problem is that drop

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-16 Thread david seraf
gt; > context. The signature of the API doesn't need to change. I see it now. Sorry. Fixed in the next patch. - david --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/25178/#review5

Re: Review Request 25178: HIVE-7100 Add DROP TABLE PURGE

2014-09-16 Thread david seraf
/ Testing --- added code test and added QL test. Tests passed in CI, but other, unrelated tests failed. Thanks, david seraf

Re: Review Request 23797: HIVE-7420: Parameterize tests for HCatalog Pig interfaces for testing against all storage formats.

2014-09-18 Thread David Chen
/StorageFormats.java 19fdeb5ed3dba7a3bcba71fb285d92d3f6aabea9 Diff: https://reviews.apache.org/r/23797/diff/ Testing --- Thanks, David Chen

Re: Review Request 23797: HIVE-7420: Parameterize tests for HCatalog Pig interfaces for testing against all storage formats.

2014-09-23 Thread David Chen
s a test dependency. As a result, I do not think that packages that depend on hcatalog-pig-adapter would try to pull in hive-exec-test.jar unless the package is depending on hcatalog-pig-adapater as a test dependency. Please correct me if I'm mistaken. - David ---

[jira] [Created] (HIVE-25767) Improve Hive LLAP Documentation

2021-12-02 Thread David (Jira)
David created HIVE-25767: Summary: Improve Hive LLAP Documentation Key: HIVE-25767 URL: https://issues.apache.org/jira/browse/HIVE-25767 Project: Hive Issue Type: Improvement Components

[jira] [Created] (HIVE-26132) Schematool upgradeSchema fails with nullPointerException

2022-04-12 Thread David (Jira)
David created HIVE-26132: Summary: Schematool upgradeSchema fails with nullPointerException Key: HIVE-26132 URL: https://issues.apache.org/jira/browse/HIVE-26132 Project: Hive Issue Type: Bug

Review Request 69683: [HIVE-21071] Improve getInputSummary

2019-01-07 Thread David Mollitor
performance of method getInputSummary by changing data structures and allowing multiple threads to do calculations. Diffs - ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java d0f6451 Diff: https://reviews.apache.org/r/69683/diff/1/ Testing --- Unit Thanks, David Mollitor

Re: Review Request 69683: [HIVE-21071] Improve getInputSummary

2019-01-14 Thread David Mollitor
ities.java 2ff9ad3 Diff: https://reviews.apache.org/r/69683/diff/2/ Changes: https://reviews.apache.org/r/69683/diff/1-2/ Testing --- Unit Thanks, David Mollitor

Re: Review Request 69683: [HIVE-21071] Improve getInputSummary

2019-01-14 Thread David Mollitor
already. Do you have suggestions for additional unit tests? https://github.com/apache/hive/blob/ae008b79b5d52ed6a38875b73025a505725828eb/ql/src/test/org/apache/hadoop/hive/ql/exec/TestUtilities.java - David --- This is an automatically

Re: Review Request 69683: [HIVE-21071] Improve getInputSummary

2019-02-06 Thread David Mollitor
s (when every path is cached/only few patch is cached/no path is > > cached), so we can be sure that further changes will not break the > > functionality. > > > > What do you think? > > > > Peter > > David Mollitor wrote: > Thank you Peter for the

Re: Review Request 69683: [HIVE-21071] Improve getInputSummary

2019-02-06 Thread David Mollitor
/TestGetInputSummary.java PRE-CREATION ql/src/test/org/apache/hadoop/hive/ql/exec/TestUtilities.java 90eb45b Diff: https://reviews.apache.org/r/69683/diff/3/ Changes: https://reviews.apache.org/r/69683/diff/2-3/ Testing --- Unit Thanks, David Mollitor

Re: Review Request 69683: [HIVE-21071] Improve getInputSummary

2019-02-06 Thread David Mollitor
/TestGetInputSummary.java PRE-CREATION ql/src/test/org/apache/hadoop/hive/ql/exec/TestUtilities.java 90eb45b Diff: https://reviews.apache.org/r/69683/diff/4/ Changes: https://reviews.apache.org/r/69683/diff/3-4/ Testing --- Unit Thanks, David Mollitor

Review Request 69921: [Hive-21210] CombineHiveInputFormat Thread Pool Sizing

2019-02-07 Thread David Mollitor
/CombineHiveInputFormat.java 5f2539f ql/src/test/org/apache/hadoop/hive/ql/io/TestCombineHiveInputFormat.java 07cef93 Diff: https://reviews.apache.org/r/69921/diff/1/ Testing --- Thanks, David Mollitor

Running Hive Without Hadoop?

2019-04-05 Thread David M
let me run the binaries in the way I need to do some testing? Thanks! David McGinnis

RE: Running Hive Without Hadoop?

2019-04-08 Thread David M
me fits at the moment, but I'll try this as soon as I can. I'm sure I'm not the only contributor to Hive who has wanted to do this, so I figured I'd see if anyone else had ideas of what they do to test your changes to Hive in a manual manner. - -David -Original Message

Code Review for HIVE-14888?

2019-05-14 Thread David M
nality or other tools. Are we still following the documentation on the wiki where we do the reviews in JIRA, or is there a process change I've missed on how to formally ask for reviews? Thanks! David McGinnis

RE: Code Review for HIVE-14888?

2019-05-14 Thread David M
Awesome, thanks Mani! -Original Message- From: Mani M Sent: Tuesday, May 14, 2019 4:48 PM To: dev@hive.apache.org Subject: Re: Code Review for HIVE-14888? Hi David Currently most of the changes is being reviewed with the help of GitHub pull request. So update your personal fork repo

Review Request 70718: HIVE-14888: Fixing the check of current security mode for Spark

2019-05-24 Thread David McGinnis
://reviews.apache.org/r/70718/diff/1/ Testing --- Ran tests locally, and passed all checks. PR: https://github.com/apache/hive/pull/635 Thanks, David McGinnis

Re: Review Request 70718: HIVE-14888: Fixing the check of current security mode for Spark

2019-05-31 Thread David McGinnis
/hive/spark/client/AbstractSparkClient.java b2b5201 Diff: https://reviews.apache.org/r/70718/diff/1/ Testing --- Ran tests locally, and passed all checks. PR: https://github.com/apache/hive/pull/635 Thanks, David McGinnis

RE: Code Review for HIVE-14888?

2019-06-17 Thread David M
8/ Thanks! -Original Message----- From: David M Sent: Tuesday, May 14, 2019 8:58 PM To: dev@hive.apache.org Subject: RE: Code Review for HIVE-14888? Awesome, thanks Mani! -Original Message- From: Mani M Sent: Tuesday, May 14, 2019 4:48 PM To: dev@hive.apache.org Subject: Re: Code

HIVE-22337

2019-10-16 Thread David Mollitor
Hello Gang, Would anyone be able to assist me with reviewing my patch for HIVE-22337? I've been wanting to massage the SerDe library for a while now and to improve the re-usability of classes. I put together a new package called 'text' that contains all the text-based processors. I added a few

HIVE-21414

2019-10-16 Thread David Mollitor
Hello Gang, I've had a few folks in the field complain that the JSON SerDe obfuscates comments that are made in the table scheme definition. I believe the following patch will address that. Is anyone able to take a peek and let me know if this will do it? https://issues.apache.org/jira/browse/H

HIVE-22337

2019-10-22 Thread David Mollitor
Hello Team, Wondering if anyone could take a look at some work in the SerDe package that I would like to introduce... adding a 'text' package for building a common class hierarchy for handling text-based data. https://issues.apache.org/jira/browse/HIVE-22337 Thanks!

Submitting a Patch Against Branch 3

2019-10-28 Thread David Mollitor
Hello Gang, I have attempted a couple of times now to submit a patch for branch-3 of Hive. None of my attempts have been successful and I'm not sure why they are failing. The following JIRA is a very trivial change but YETUS won't build it. Any thoughts? https://issues.apache.org/jira/browse/H

Re: Submitting a Patch Against Branch 3

2019-10-31 Thread David Mollitor
Hello Peter, Is there a way then to build against branch-3? Directions I got are from here: https://cwiki.apache.org/confluence/display/Hive/HowToContribute#HowToContribute-CreatingaPatch Thanks! On Thu, Oct 31, 2019 at 1:03 PM Peter Vary wrote: > Hi David, > > Unfortunately Yetus

Review Request 71763: HIVE-22484: Remove Calls to printStackTrace

2019-11-13 Thread David Mollitor
://reviews.apache.org/r/71763/diff/1/ Testing --- Thanks, David Mollitor

Review Request 71766: HIVE-22402: Deprecate and Replace Hive PerfLogger

2019-11-13 Thread David Mollitor
Diff: https://reviews.apache.org/r/71766/diff/1/ Testing --- Thanks, David Mollitor

Unstable Automated Tests

2019-11-14 Thread David Mollitor
Hello Gang, The upstream automated tests seem to be failing very regularly. I'm not exactly sure what's wrong, but I logged this issue so far: HIVE-22493 Thanks.

druid-handler Shading Java 11 Class

2019-11-14 Thread David Mollitor
Hello Gang, I'm reviewing some Maven POM files in the Hive project and I came across an interesting issue. The druid-handler project is shading an artifact called 'org.roaringbitmap' 'shims' '0.7.36' https://github.com/apache/hive/blob/master/druid-handler/pom.xml#L336 Well, this 'shims' JAR fi

Re: druid-handler Shading Java 11 Class

2019-11-15 Thread David Mollitor
Just an update,... I discovered that this 'shims' artifact is not compiled with JDK11 per se. It contains the same class compiled with JDK 11 and JDK 8. I'll see if I can exclude the JDK 11 version from the shading. Thanks. On Thu, Nov 14, 2019 at 8:32 PM David Mollitor wrote

ORC: duplicate record - rowid meaning ?

2019-11-18 Thread David Morin
he new transaction during the second INSERT but that seems to generate duplicate records. Regards, David

Re: ORC: duplicate record - rowid meaning ?

2019-11-19 Thread David Morin
tid":3,"rowid":0} | *5218* | | {"transactionid":11365,"bucketid":3,"rowid":1} | *5216* | | {"transactionid":11369,"bucketid":3,"rowid":1} | *5216* | | {"transactionid":11369,"bucketid":

Error Handling and Logging

2019-11-26 Thread David Mollitor
Hello Team, I am one of many people responsible for supporting the Hadoop products out in the field. Error handling and logging are crucial to my success. I've been reading over the code and I see many of the same mistakes again and again. I just wanted to bring some of these things to your att

Fwd: Error Handling and Logging

2019-12-06 Thread David Mollitor
-- Forwarded message - From: David Mollitor Date: Fri, Dec 6, 2019 at 12:52 PM Subject: Re: Error Handling and Logging To: Hell Team, I'm not sure how to automate this, but as I scan through the log statements, another thing I am observing is the following: 1// Lo

HIVE-22066: Upgrade Apache parent POM to version 21

2019-12-09 Thread David Mollitor
Hello Gang, I have taken up the task of upgrading all of the Hive POM files to upgrade the version of the Apache parent POM from which they inherent. I have hit a snag though and I would like to ask your support. The upgraded POM files builds locally for me but I cannot get it to pass upstream.

HIVE-22611 Sub Tasks

2019-12-12 Thread David Mollitor
Hello Gang, Do anyone know what HIVE-22611 sub-tasks are not being picked up by YETUS? Thanks!

Re: HIVE-22611 Sub Tasks

2019-12-23 Thread David Mollitor
Hello Gang, Just wanted to follow up and see if anyone had any thoughts on this matter. On Thu, Dec 12, 2019 at 9:28 AM David Mollitor wrote: > Hello Gang, > > Do anyone know what HIVE-22611 sub-tasks are not being picked up by YETUS? > > Thanks! >

Re: HIVE-22611 Sub Tasks

2019-12-23 Thread David Mollitor
Scratch that. I submitted the patches again and they're flowing through the YETUS workstream now. Thanks. On Mon, Dec 23, 2019 at 11:15 AM David Mollitor wrote: > Hello Gang, > > Just wanted to follow up and see if anyone had any thoughts on this matter. > > On Thu, Dec

Re: HIVE-22066: Upgrade Apache parent POM to version 21

2020-01-17 Thread David Mollitor
Hello Team, This ticket and patch is still waiting out there. Any help would be greatly appreciated. Thanks. On Mon, Dec 9, 2019 at 2:38 PM David Mollitor wrote: > Hello Gang, > > I have taken up the task of upgrading all of the Hive POM files to upgrade > the version of the A

Re: HIVE building on ARM

2020-03-10 Thread David Lavati
pache/hbase/blob/branch-2.2/pom.xml#L1414. Kind Regards, David On Tue, Mar 10, 2020 at 1:11 PM Chinna Rao Lalam wrote: > Hi All, > > We are working on HIVE building and running on ARM architecture. As part of > this i want to add one periodic HIVE JENKINS JOB on ARM machines. Which &g

Added to Wiki

2020-03-26 Thread David Mollitor
Hello Team, Can someone please add me to the Wiki so that I may edit? Thanks! David Mollitor (dmollitor)

Re: HIVE-21508 and Hive 2.3.7 question

2020-03-31 Thread David Mollitor
Hello Team, Just to throw one more thing in there, awhile ago I put a good chunk of time into shoring up the ZK Lock Manager because I worked with a lot of folks on locking issues. HDP/CLDR moved away from ZK and is using a RDBMS and therefore never paid it much mind. Any interest in rolling it in

Re: Added to Wiki

2020-03-31 Thread David Mollitor
Hello Gang, Is anyone able to point me in the right direction on how to obtain access? Thanks! On Thu, Mar 26, 2020 at 3:15 PM David Mollitor wrote: > Hello Team, > > Can someone please add me to the Wiki so that I may edit? > > Thanks! > David Mollitor (dmollitor) >

Inconsistent Hive Object Names

2020-04-01 Thread David Mollitor
Hello Gang, I came across an interesting problem and I think the entire community should be mindful of this situation. There needs to be better consistency with handling of Object names (database, tables, column, view, function, etc.). I think it makes sense to standardize on the same rules whic

Re: Inconsistent Hive Object Names

2020-04-02 Thread David Mollitor
Hello Gang, With that said, the backend database also needs to support UTF-8: https://issues.apache.org/jira/browse/HIVE-18083 On Thu, Apr 2, 2020 at 12:20 AM David Mollitor wrote: > Hello Gang, > > I came across an interesting problem and I think the entire community > should b

Re: HIVE-21508 and Hive 2.3.7 question

2020-04-07 Thread David Mollitor
. This could potentially be of interest > for > > a 2.3.8 or 2.4.0 release if the rest of the Hive community agrees. > > > > Thanks, > > > > Adrian > > > > On Tue, 31 Mar 2020 at 13:24, David Mollitor wrote: > > > >> Hello Team, > >&

Many ANTLR Tokens

2020-04-09 Thread David Mollitor
Hello Gang, I am investigating HIVE-23172 and I am having a problem addressing this because I am getting the following error from compiling the grammar: hive-parser: Compilation failure [ERROR] /home/apache/hive/hive/parser/target/generated-sources/antlr3/org/apache/hadoop/hive/ql/parse/HiveParse

Re: Many ANTLR Tokens

2020-04-10 Thread David Mollitor
see Hive leveraging this in any meaningful way. This would be the path of least resistance. Thoughts? Thanks. On Thu, Apr 9, 2020 at 6:36 PM David Mollitor wrote: > Hello Gang, > > I am investigating HIVE-23172 and I am having a problem addressing this > because I am getting the fo

Remove REGEX Column Specification

2020-04-13 Thread David Mollitor
move Hive in a direction of fully supporting UTF-8. I have put a patch up to remove it: https://issues.apache.org/jira/browse/HIVE-23183 References: https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Select#LanguageManualSelect-REGEXColumnSpecification https://dev.mysql.com/doc/refman/8.0/en/identifiers.html Thanks, David

Re: Remove REGEX Column Specification

2020-04-14 Thread David Mollitor
sort of regex, they can query the information_schema (if/when Hive gets that). Also, I just re-read my previous email and I do apologize, I provided the wrong jira. The correct one for removal is: https://issues.apache.org/jira/browse/HIVE-23176 Thanks. David On Tue, Apr 14, 2020 at 12:16 PM

Re: Remove REGEX Column Specification

2020-04-15 Thread David Mollitor
I've got all tests passing on this. Are there other questions? Is anyone willing to +1 ? Thanks. On Tue, Apr 14, 2020, 12:28 PM David Mollitor wrote: > Hey Zoltan, > > Thanks for the feedback and for sharing HIVE-16496. > > I think HIVE-16496 is a better approach becau

Hive Grammar Parser Visualization

2020-04-16 Thread David Mollitor
Hello Gang, https://issues.apache.org/jira/browse/HIVE-23171 I just wanted to share with you a tool that I put into the master branch of Hive. It is a small command-line tool for building visualizations of the output of the Hive ANTLR parser. I hope you find it useful. Thanks.

Re: HIVE-22066: Upgrade Apache parent POM to version 21

2020-05-22 Thread David Mollitor
Hello Gang, I just pushed this change to the master. Please be kind and patient and let's try to correct any artifacts that may pop up as a result. Thanks. On Fri, Jan 17, 2020 at 9:31 AM David Mollitor wrote: > Hello Team, > > This ticket and patch is still waiting out th

Re: Open old PRs

2020-06-01 Thread David Mollitor
Thanks so much for the work on this. Just cleaned up mine. On Sat, May 30, 2020 at 10:16 AM Zoltan Haindrich wrote: > Hey All, > > The new test executor will pick up any PR which doesn't yet have a test > result - now that the patch is on the master; every PR which is mergeable > with the maste

Re: Open old PRs

2020-06-01 Thread David Mollitor
un 1, 2020 at 2:33 PM David Mollitor wrote: > > > Thanks so much for the work on this. > > > > Just cleaned up mine. > > > > On Sat, May 30, 2020 at 10:16 AM Zoltan Haindrich wrote: > > > > > Hey All, > > > > > > The new test executor

Re: Open old PRs

2020-06-02 Thread David Mollitor
t; https://github.com/apache/hive/pull/1049 > > cheers, > Zoltan > > > On 6/2/20 5:00 AM, Ashutosh Chauhan wrote: > > How about using stalebot : https://github.com/probot/stale ? > > > > On Mon, Jun 1, 2020 at 12:20 PM Zoltán Haindrich wrote: > > > &g

Re: Open old PRs

2020-06-02 Thread David Mollitor
/pull/1045 Thanks! On Tue, Jun 2, 2020 at 10:21 AM Zoltan Haindrich wrote: > > > On 6/2/20 3:10 PM, David Mollitor wrote: > > I think we might want to take one manual pass across the board. It will > > most likely take more than 7 days to get through them all, so it may be &

Re: Open old PRs

2020-06-03 Thread David Mollitor
ty is not lost. > > Best, > Stamatis > > [1] https://github.com/isaacs/github/issues/1303 > > > > On Tue, Jun 2, 2020 at 9:26 PM Zoltan Haindrich wrote: > > > > > > > On 6/2/20 9:15 PM, David Mollitor wrote: > > > I use a personal

  1   2   3   4   5   6   7   8   >