Re: Re: [ANNOUNCE] New Committer: Simhadri Govindappa

2024-04-20 Thread Akshat m
Congratulations Simhadri!, very well deserved

On Fri, Apr 19, 2024 at 3:37 PM Simhadri G  wrote:

> Thanks again everyone :)
>
> On Fri, Apr 19, 2024, 2:15 AM Rajesh Balamohan 
> wrote:
>
>> Congratulations Simhadri. :)
>>
>> ~Rajesh.B
>>
>> On Fri, Apr 19, 2024 at 2:02 AM Aman Sinha  wrote:
>>
>>> Congrats Simhadri !
>>>
>>> On Thu, Apr 18, 2024 at 12:25 PM Naveen Gangam
>>>  wrote:
>>>
 Congrats Simhadri. Looking forward to many more contributions in the
 future.

 On Thu, Apr 18, 2024 at 12:25 PM Sai Hemanth Gantasala
  wrote:

> Congratulations Simhadri  well deserved
>
> On Thu, Apr 18, 2024 at 8:41 AM Pau Tallada  wrote:
>
>> Congratulations
>>
>> Missatge de Alessandro Solimando 
>> del dia dj., 18 d’abr. 2024 a les 17:40:
>>
>>> Great news, Simhadri, very well deserved!
>>>
>>> On Thu, 18 Apr 2024 at 15:07, Simhadri G 
>>> wrote:
>>>
 Thanks everyone!
 I really appreciate it, it means a lot to me :)
 The Apache Hive project and its community have truly inspired me .
 I'm grateful for the chance to contribute to such a remarkable project.

 Thanks!
 Simhadri Govindappa

 On Thu, Apr 18, 2024 at 6:18 PM Sankar Hariappan
  wrote:

> Congrats Simhadri!
>
>
>
> -Sankar
>
>
>
> *From:* Butao Zhang 
> *Sent:* Thursday, April 18, 2024 5:39 PM
> *To:* u...@hive.apache.org; dev 
> *Subject:* [EXTERNAL] Re: [ANNOUNCE] New Committer: Simhadri
> Govindappa
>
>
>
> You don't often get email from butaozha...@163.com. Learn why
> this is important 
>
> Congratulations Simhadri !!!
>
>
>
> Thanks.
>
>
> --
>
> *发件人**:* user-return-28075-butaozhang1=163@hive.apache.org <
> user-return-28075-butaozhang1=163@hive.apache.org> 代表 Ayush
> Saxena 
> *发送时间**:* 星期四, 四月 18, 2024 7:50 下午
> *收件人**:* dev ; u...@hive.apache.org <
> u...@hive.apache.org>
> *主题**:* [ANNOUNCE] New Committer: Simhadri Govindappa
>
>
>
> Hi All,
>
> Apache Hive's Project Management Committee (PMC) has invited
> Simhadri Govindappa to become a committer, and we are pleased to 
> announce
> that he has accepted.
>
>
>
> Please join me in congratulating him, Congratulations Simhadri,
> Welcome aboard!!!
>
>
>
> -Ayush Saxena
>
> (On behalf of Apache Hive PMC)
>

>>
>> --
>> --
>> Pau Tallada Crespí
>> Departament de Serveis
>> Port d'Informació Científica (PIC)
>> Tel: +34 93 170 2729
>> --
>>
>>


Re: Force coding style in hive precommit

2024-01-07 Thread Akshat m
+1, We do have a documentation round it as well:
https://cwiki.apache.org/confluence/display/Hive/HowToContribute#HowToContribute-CodingConventions
so it makes sense to enforce it as well.

Right now we have a small section around this in documentation, We can also
expand this to a new page and add more Java practices to it as well which
are followed in the project while we are at this, Will be a great addition
to Hive 4 documentation, I can pick it up.

I suggest we add this style check as a pre-commit git hook as well, so it
is enforced when the author is committing locally as well, this can save
the wait time for pre-commit failure in the PR for the author to realise
the styling issues, ideally this should be taken care of with the ide style
configuration but in case we miss it this would error out while
committing the changes.

Regards,
Akshat

On Sat, Jan 6, 2024 at 10:17 AM László Bodor 
wrote:

> Hi All!
>
> What do you think about forcing coding style in Hive precommit?
>
> I remember, back in the old days, precommit printed some warnings in case
> some coding style (formatting, indentation, naming convention, etc.)
> problems were found in the patch, now it's simply not used, I guess since
> we're using GitHub PRs.
>
> For example: I remember I simply approved a PR a few months ago which
> LGTM, and later just realized it's full of 4-spaces indentation, which is
> wrong if we assume that code should be formatted according to the style
> definition here:
> https://github.com/apache/hive/blob/master/dev-support/eclipse-styles.xml
>
> I have just attached an example of Tez PR to open minds and start a
> conversation.
>
> Regards,
> Laszlo Bodor
>
>


Re: Help with Docker Apache/Hive metastore using mysql remote database

2023-12-20 Thread Akshat m
Hi,

You can download it from here:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.29/mysql-connector-java-8.0.29.jar

Regards,
Akshat

On Thu, Dec 21, 2023 at 1:40 AM Sanjay Gupta  wrote:

> There is no mysql driver file in following repo
> https://repo1.maven.org/maven2/org
>
> On Mon, Dec 18, 2023 at 3:10 AM Simhadri G  wrote:
> >
> > We can modify the Dockerfile to wget the necessary driver and copy it to
> /opt/hive/lib/ .  This should make it work. The diff is attached below:
> >
> >
> > diff --git a/packaging/src/docker/Dockerfile
> b/packaging/src/docker/Dockerfile
> > --- a/packaging/src/docker/Dockerfile (revision
> dceaf810b32fc266e3e657fdaefcd4507f2191b5)
> > +++ b/packaging/src/docker/Dockerfile (date 1702897518609)
> > @@ -80,6 +80,9 @@
> >
> >  ENV PATH=$HIVE_HOME/bin:$HADOOP_HOME/bin:$PATH
> >
> > +RUN wget
> https://repo1.maven.org/maven2/org/postgresql/postgresql/42.5.1/postgresql-42.5.1.jar
> > +RUN cp /postgresql-42.5.1.jar /opt/hive/lib/
> > +
> >  COPY entrypoint.sh /
> >  COPY conf $HIVE_HOME/conf
> >  RUN chmod +x /entrypoint.sh
> >
> > On Mon, Dec 18, 2023, 12:59 PM Ayush Saxena  wrote:
> >>
> >> I think the similar problem is being chased as part of
> >> https://github.com/apache/hive/pull/4948
> >>
> >> On Mon, 18 Dec 2023 at 09:48, Sanjay Gupta  wrote:
> >> >
> >> >
> >> >
> >> >
> >> > Issue with Docker container using mysql RDBMS ( Failed to load driver)
> >> >
> >> > https://hub.docker.com/r/apache/hive
> >> >
> >> > According to readme
> >> >
> >> > Launch Standalone Metastore With External RDBMS
> (Postgres/Oracle/MySql/MsSql)
> >> >
> >> > I want to use MySQL
> >> >
> >> > I tried com.mysql.jdbc.Driver or com.mysql.cj.jdbc.Driver
> >> >
> >> > docker run -it -d -p 9083:9083 --env SERVICE_NAME=metastore
> --add-host=host.docker.internal:host-gateway \
> >> >  --env DB_DRIVER=mysql \
> >> >  --env
> SERVICE_OPTS="-Djavax.jdo.option.ConnectionDriverName=com.mysql.jdbc.Driver
> -Djavax.jdo.option.ConnectionURL=jdbc:mysql://host.docker.internal:3306/hive?createDatabaseIfNotExist=true
> -Djavax.jdo.option.ConnectionUserName=hive
> -Djavax.jdo.option.ConnectionPassword=password" \
> >> >  --mount source=warehouse,target=/opt/hive/data/warehouse \
> >> >  --name metastore-standalone apache/hive:${HIVE_VERSION}
> >> >
> >> >
> >> > docker run -it -d -p 9083:9083 --env SERVICE_NAME=metastore
> --add-host=host.docker.internal:host-gateway \
> >> >  --env DB_DRIVER=mysql \
> >> >  --env
> SERVICE_OPTS="-Djavax.jdo.option.ConnectionDriverName=com.mysql.cj.jdbc.Driver
> -Djavax.jdo.option.ConnectionURL=jdbc:mysql://host.docker.internal:3306/hive?createDatabaseIfNotExist=true
> -Djavax.jdo.option.ConnectionUserName=hive
> -Djavax.jdo.option.ConnectionPassword=password" \
> >> >  --mount source=warehouse,target=/opt/hive/data/warehouse \
> >> >  --name metastore-standalone apache/hive:${HIVE_VERSION}
> >> >
> >> > Docker logs shows this for both drivers ( same error )
> >> >
> >> > docker logs f3
> >> > + : mysql
> >> > + SKIP_SCHEMA_INIT=false
> >> > + export HIVE_CONF_DIR=/opt/hive/conf
> >> > + HIVE_CONF_DIR=/opt/hive/conf
> >> > + '[' -d '' ']'
> >> > + export 'HADOOP_CLIENT_OPTS= -Xmx1G
> -Djavax.jdo.option.ConnectionDriverName=com.mysql.cj.jdbc.Driver
> -Djavax.jdo.option.ConnectionURL=jdbc:mysql://host.docker.internal:3306/hive?createDatabaseIfNotExist=true
> -Djavax.jdo.option.ConnectionUserName=hive
> -Djavax.jdo.option.ConnectionPassword=hive'
> >> > + HADOOP_CLIENT_OPTS=' -Xmx1G
> -Djavax.jdo.option.ConnectionDriverName=com.mysql.cj.jdbc.Driver
> -Djavax.jdo.option.ConnectionURL=jdbc:mysql://host.docker.internal:3306/hive?createDatabaseIfNotExist=true
> -Djavax.jdo.option.ConnectionUserName=hive
> -Djavax.jdo.option.ConnectionPassword=hive'
> >> > + [[ false == \f\a\l\s\e ]]
> >> > + initialize_hive
> >> > + /opt/hive/bin/schematool -dbType mysql -initSchema
> >> > SLF4J: Class path contains multiple SLF4J bindings.
> >> > SLF4J: Found binding in
> [jar:file:/opt/hive/lib/log4j-slf4j-impl-2.17.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
> >> > SLF4J: Found binding in
> [jar:file:/opt/hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
> >> > SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an
> explanation.
> >> > SLF4J: Actual binding is of type
> [org.apache.logging.slf4j.Log4jLoggerFactory]
> >> > Metastore connection URL:
> jdbc:mysql://host.docker.internal:3306/hive?createDatabaseIfNotExist=true
> >> > Metastore Connection Driver : com.mysql.cj.jdbc.Driver
> >> > Metastore connection User: hive
> >> > org.apache.hadoop.hive.metastore.HiveMetaException: Failed to load
> driver
> >> > Underlying cause: java.lang.ClassNotFoundException :
> com.mysql.cj.jdbc.Driver
> >> > Use --verbose for detailed stacktrace.
> >> > *** schemaTool failed ***
> >> > + '[' 1 -eq 0 ']'
> >> > + echo 'Schema initialization failed!'
> >> > Schema initialization failed!
> >> > + exit 1

Re: ci execute too long, 13h..., branch2

2023-12-18 Thread Akshat m
Hi,

We do have a timeout mechanism in place, for branch-2 it is set to 24hrs:
https://github.com/apache/hive/blob/659aa5d94ffc15696c4729694ba68a77a58c2074/Jenkinsfile#L70

I couldn't find any recent PRs with test passed label for branch-2 to
compare an appropriate time for this job completion, you can update/reduce
the value here based on your PR if the tests passes,
You can also play around with the number of split here:
https://github.com/apache/hive/blob/659aa5d94ffc15696c4729694ba68a77a58c2074/Jenkinsfile#L25
to get a get to a more appropriate timeout, for master we have it at 12hr
with 22 splits.

Thanks
Akshat

On Tue, Dec 19, 2023 at 9:23 AM 高雄  wrote:

> hi,
> http://ci.hive.apache.org/blue/organizations/jenkins/hive-precommit/detail/PR-4955/1/pipeline/623/
> split-16 is running more than 13h, but no test fail on this split. Is it
> have timeout mechanism or other mechanism to stop it.


Re: [help] Jira account for first contribute

2023-12-17 Thread Akshat m
Hi,

Apache has initiated a serve service process, where you can request for a
jira account.
Please submit your details via this portal:
https://selfserve.apache.org/jira-account.html

Thanks

On Mon, Dec 18, 2023 at 1:18 PM 高雄  wrote:

> Hi,i fixed a bug about udaf used over window, like this, select
> row_number2() over(), local. so i need a Jira account. please help.


[Twitter] Blog on Hive's Data Federation Capabilities

2023-07-11 Thread Akshat m
Delve into the world of data federation with Apache Hive in this blog. Explore
the essence of data federation, uncover Hive's capabilities, and learn
about its supported integrations. Don't miss out on the insights:
https://akshatmat.medium.com/data-federation-with-apache-hive-74b3bc5fb72
#DataFederation #ApacheHive #DataAnalytics

Regards,
Akshat Mathur


Query regarding Accumulo Support

2023-06-27 Thread Akshat m
Hi everyone

I am writing to inquire about the current state of support for Accumulo in
Hive, particularly with regard to its testing and stability. Furthermore, I
would like to discuss the possibility of deprecating Accumulo in an
upcoming release(4.x) unless there are specific plans or use cases that
warrant its continued support.

Few questions I have are: Has it been actively maintained and tested to
ensure compatibility with recent changes in Hive and Accumulo? Are there
any known issues or limitations that users should be aware of? It would be
helpful to understand the level of support and reliability we can expect
when working with Hive and Accumulo integration.

Considering the rapid development on both Hive and accumulo side and the
need to focus development efforts on widely adopted and actively used
components, I believe it is essential to periodically reassess the
inclusion of such features. In this context, I would like to discuss the
potential deprecation of Accumulo in a future Hive release.

If Accumulo lacks widespread adoption or if its integration with Hive is
not sufficiently tested and stable, deprecating it could streamline
development efforts and allow for increased focus on other critical areas
and stable Hive release. However, I understand that there might be specific
use cases or plans that necessitate its continued support. If this is the
case, I would appreciate a brief understanding of such scenarios.

Please share your insights, recommendations, and any pertinent information
regarding the same.

I look forward to hearing views on this.
Regards,
Akshat Mathur


Re: [ANNOUNCE] New committer for Apache Hive: Alessandro Solimando

2023-02-08 Thread Akshat m
Congratulations Alessandro :)

Regards,
Akshat Mathur

On Thu, Feb 9, 2023 at 12:11 PM Mahesh Raju Somalaraju <
maheshra...@cloudera.com> wrote:

> Congratulations Alessandro !!
>
> -Mahesh Raju S
>
> On Thu, Feb 9, 2023 at 1:31 AM Naveen Gangam  wrote:
>
>> The Project Management Committee (PMC) for Apache Hive has invited
>> Alessandro Solimando (asolimando) to become a committer and is pleased
>> to announce that he has accepted.
>>
>> Contributions from Alessandro:
>> He has authored 30 patches for Hive, 18 for Apache Calcite and has
>> done many code reviews for other contributors. Vast experience and
>> knowledge in SQL Compiler and Optimization. His most recent work was
>> added support for histogram-based column stats in Hive.
>>
>> https://issues.apache.org/jira/issues/?filter=12352498
>>
>> Being a committer enables easier contribution to the project since
>> there is no need to go via the patch submission process. This should
>> enable better productivity.A PMC member helps manage and guide the
>> direction of the project.
>>
>> Congratulations
>> Hive PMC
>>
>


Re: [ANNOUNCE] New committer for Apache Hive: Laszlo Vegh

2023-02-08 Thread Akshat m
Congratulations Laszlo, Very well deserved :)

Regards,
Akshat Mathur

On Tue, Feb 7, 2023 at 9:08 PM Sai Hemanth Gantasala
 wrote:

> Congratulations Laszlo Vegh, Great work on the compaction stuff!!
>
> Thanks,
> Sai.
>
> On Tue, Feb 7, 2023 at 4:24 AM Naveen Gangam  wrote:
>
> > The Project Management Committee (PMC) for Apache Hive has invited Laszlo
> > Vegh (veghlaci05) to become a committer and we are pleased
> > to announce that he has accepted.
> >
> > Contributions from Laszlo:
> >
> > He has authored 25 patches. Significant contributions to stabilization of
> > ACID compaction. Helped review other patches as well.
> >
> >
> >
> https://github.com/apache/hive/pulls?q=is%3Amerged+is%3Apr+author%3Aveghlaci05
> >
> > Being a committer enables easier contribution to the project since there
> > is no need to go via the patch submission process. This should enable
> > better productivity.A PMC member helps manage and guide the direction of
> > the project.
> >
> > Congratulations
> > Hive PMC
> >
>


Re: [ANNOUNCE] New PMC Member: Krisztian Kasa

2023-01-30 Thread Akshat m
Congratulations Krisztian :)

Regards,
Akshat

On Mon, Jan 30, 2023 at 10:23 PM Alessandro Solimando <
alessandro.solima...@gmail.com> wrote:

> Congratulations Krisztian, very well deserved! :)
>
> On Mon, 30 Jan 2023 at 17:34, László Bodor 
> wrote:
>
>> Yay! Very well deserved. Krisztian has a broad knowledge of Hive and an
>> extremely deep level of experience with the compiler itself (which is a
>> huge beast we all know), looking forward to seeing further contributions!
>>
>> Naveen Gangam  ezt írta (időpont: 2023.
>> jan. 30., H, 17:23):
>>
>>> Hello Hive Community,
>>> Apache Hive PMC is pleased to announce that Krisztian Kasa (username:
>>> krisztiankasa) has accepted the Apache Hive PMC's invitation to become
>>> PMC
>>> Member, and is now our newest PMC member. Please join me in
>>> congratulating
>>> Krisztian !!!
>>>
>>> He has been an active member in the hive community across many aspects of
>>> the project. Many thanks to Krisztian for all the contributions he has
>>> made
>>> and looking forward to many more future contributions in the expanded
>>> role.
>>>
>>> https://github.com/apache/hive/commits?author=kasakrisz
>>>
>>> * 162 commits in master
>>> * 124 reviews in master
>>> * Reported 159 JIRAS
>>>
>>> Cheers,
>>> Naveen (on behalf of Hive PMC)
>>>
>>


Re: [ANNOUNCE] New PMC Member: Laszlo Bodor

2023-01-28 Thread Akshat m
Congratulations Laszlo

Regards,
Akshat

On Sat, Jan 28, 2023 at 3:03 AM Naveen Gangam 
wrote:

> Hello Hive Community,
> Apache Hive PMC is pleased to announce that Laszlo Bodor
> (username:abstractdog) has accepted the Apache Hive PMC's invitation to
> become PMC Member, and is now our newest PMC member. Please join me in
> congratulating Laszlo !!!
>
> He has been an active member in the hive community across many aspects of
> the project. Many thanks to Laszlo for all the contributions he has made
> and looking forward to many more future contributions in the expanded role.
>
> https://github.com/apache/hive/commits?author=abstractdog
>
> * 96 commits in master [2]
> * 66 reviews in master [3]
> * Reported 163 JIRAS [6]
>
> Cheers,
> Naveen (on behalf of Hive PMC)
>


Re: [EXTERNAL] [ANNOUNCE] New PMC Member: Stamatis Zampetakis

2023-01-14 Thread Akshat m
Congratulations Stamatis :)

On Sun, 15 Jan 2023 at 12:51 AM, Sai Hemanth Gantasala
 wrote:

> Congratulations Stamatis, Very well deserved!!!
>
> On Fri, Jan 13, 2023 at 10:57 AM Chris Nauroth 
> wrote:
>
> > Congratulations, Stamatis!
> >
> > Chris Nauroth
> >
> >
> > On Fri, Jan 13, 2023 at 10:46 AM Simhadri G 
> wrote:
> >
> > > Congratulations Stamatis!
> > >
> > > On Sat, 14 Jan 2023, 00:12 Sankar Hariappan via user, <
> > > u...@hive.apache.org>
> > > wrote:
> > >
> > > > Congrats Stamatis! Well deserved one 
> > > >
> > > >
> > > >
> > > > Thanks,
> > > >
> > > > Sankar
> > > >
> > > >
> > > >
> > > > *From:* Naveen Gangam 
> > > > *Sent:* Saturday, January 14, 2023 12:03 AM
> > > > *To:* dev ; u...@hive.apache.org
> > > > *Cc:* zabe...@apache.org
> > > > *Subject:* [EXTERNAL] [ANNOUNCE] New PMC Member: Stamatis Zampetakis
> > > >
> > > >
> > > >
> > > > Hello Hive Community,
> > > >
> > > > Apache Hive PMC is pleased to announce that Stamatis Zampetakis has
> > > > accepted the Apache Hive PMC's invitation to become PMC Member, and
> is
> > > now
> > > > our newest PMC member. Please join me in congratulating Stamatis !!!
> > > >
> > > >
> > > >
> > > > He has been an active member in the hive community across many
> aspects
> > of
> > > > the project. Many thanks to Stamatis for all the contributions he has
> > > made
> > > > and looking forward to many more future contributions in the expanded
> > > role.
> > > >
> > > >
> > > >
> > > > Cheers,
> > > >
> > > > Naveen (on behalf of Hive PMC)
> > > >
> > >
> >
>