Re: Need help with Installation hive 0.11

2013-10-10 Thread Nitin Pawar
Baahu, from hive-0.11 , hcat is part of hive. So you basically do not need to configure your ports etc in hcat_server.sh what you need to set is hive.metastore.uris in hive-site.xml. Default port is 9083 I suppose On Thu, Oct 10, 2013 at 12:36 PM, Baahu wrote: > Thanks Nitin for your help.I

Re: Need help with Installation hive 0.11

2013-10-10 Thread Baahu
Thanks Nitin for your help.I was able to run hive and also start meta store finally !! The tar should contain required config files(instead of having templates), otherwise it turns out to be a difficult for newbies like me to go ahead and learn/use hive. Also I could not find the port number for me

Re: Need help with Installation hive 0.11

2013-10-07 Thread Nitin Pawar
So here is what I did quickly. (I did not follow the step by step guide from hive wiki) 1) I already have a running hadoop cluster 2) Downloaded the bin-tar.gz from hive.apache.org links 3) Uncompressed the binaries 4) Inside the conf folder there are few .template files (I don't know there is no h

Re: Need help with Installation hive 0.11

2013-10-05 Thread Nitin Pawar
Baahu, hive has two conf files. One is hive-site.xml and other is hive-env.sh >From hive-0.11 hcat is bundled with hive so you specially need not do anything special to setup hcat. you just need to setup few environment variables like HIVE_HOME, HIVE_CONF_DIR, HADOOP_HOME. and then if you have s

Re: Need help with Installation hive 0.11

2013-10-05 Thread Baahu
Mikhail, The hive-site.xml was missing and while googling I found some suggestion of copying hive-0.11.0-bin/hcatalog/etc/hcatalog/proto-hive-site.xml as hive-site.xml to the directory hive-0.11.0-bin/conf . Was this a right instruction, if not can you please let me know where I can find hive-conf.

Re: Need help with Installation hive 0.11

2013-10-05 Thread Mikhail Antonov
Bases on original question I decided the author does not need hcatalog specifically, but got sample hive-site.xml suggesting storage authenticator somewhere. So why use it?:) > On Oct 5, 2013, at 2:51, Lefty Leverenz wrote: > > P.S. I found StorageDelegationAuthorizationProvider mentioned in

Re: Need help with Installation hive 0.11

2013-10-05 Thread Lefty Leverenz
P.S. I found StorageDelegationAuthorizationProvider mentioned in the Known Issues section of the HCatalog authorization doc: "A different authorization provider (StorageDelegationAuthorizationProvider) needs to be used for working with HBase tables as well. But that is not well tested." -- Lefty

Re: Need help with Installation hive 0.11

2013-10-05 Thread Mikhail Antonov
There's no need to disable Hive security, what you probably may want to do is do use default (database/metastore permission-based) type of authentication as suggested above (I myself use default/my custom authentication, but not HCatalog one). DefaultHiveAuthorizationProvider - that's the auth prov

Re: Need help with Installation hive 0.11

2013-10-05 Thread Lefty Leverenz
I'm out of my depth, but based on existing documentation I'll make some suggestions you could try while waiting for replies from people who actually know about installation. Following Mikhail's lead, since this is an HCatalog security problem you should start by seeing if HCatalog is installed. T

Re: Need help with Installation hive 0.11

2013-10-05 Thread Baahu
Lefty, Can the install instructions given at https://cwiki.apache.org/confluence/display/Hive/GettingStarted be followed as is? I see instructions to build from source code just after "Installing Hive from a Stable Release" section, which is kinda confusing.I bump in to the error mentioned above wh

Re: Need help with Installation hive 0.11

2013-10-05 Thread Lefty Leverenz
Do you have any suggestions for improving the Hive wiki instructions? -- Lefty On Fri, Oct 4, 2013 at 7:30 PM, Baahu wrote: > Apache hive. > On Oct 5, 2013 1:06 AM, "Mikhail Antonov" wrote: > >> Are you using apache hive or one from cloudera/Horton works? >> >> On Oct 4, 2013, at 11:52, Baahu

Re: Need help with Installation hive 0.11

2013-10-04 Thread Baahu
Apache hive. On Oct 5, 2013 1:06 AM, "Mikhail Antonov" wrote: > Are you using apache hive or one from cloudera/Horton works? > > On Oct 4, 2013, at 11:52, Baahu wrote: > > Hi Mikhail, > I followed the steps mentioned in the Apache hive website, found the > instructions not so helpful... Is there

Re: Need help with Installation hive 0.11

2013-10-04 Thread Mikhail Antonov
Are you using apache hive or one from cloudera/Horton works? > On Oct 4, 2013, at 11:52, Baahu wrote: > > Hi Mikhail, > I followed the steps mentioned in the Apache hive website, found the > instructions not so helpful... Is there any good link which provides proper > installation steps. > >

Re: Need help with Installation hive 0.11

2013-10-04 Thread Baahu
Hi Mikhail, I followed the steps mentioned in the Apache hive website, found the instructions not so helpful... Is there any good link which provides proper installation steps. Thanks On Oct 5, 2013 12:07 AM, "Mikhail Antonov" wrote: > Looks like you have StorageDelegationAuthorizationProvider e

Re: Need help with Installation hive 0.11

2013-10-04 Thread Mikhail Antonov
Looks like you have StorageDelegationAuthorizationProvider enabled in hive-site.xml (like below), but hcatalog isn't installed somehow? hive.security.authorization.manager org.apache.hcatalog.security.StorageDelegationAuthorizationProvider the hive client authorization manager class name.