Web-based interface for running Hive on Amazon EKS and Kubernetes

2022-06-06 Thread Sungwoo Park
Hi Hive users, We created MR3 Cloud, a web-based interface for executing Hive on Amazon EKS and Kubernetes. After specifying parameters in an interactive way, the user can download YAML files for creating an EKS cluster and Kubernetes objects. The user can create all the following components at

Re: Hive on Amazon

2014-01-13 Thread Subramanian, Sanjay (HQP)
Thanks Lefty Thanks Warm Regards Sanjay From: Lefty Leverenz mailto:leftylever...@gmail.com>> Reply-To: mailto:user@hive.apache.org>> Date: Mon, 13 Jan 2014 01:50:24 -0800 To: mailto:user@hive.apache.org>> Subject: Re: Hive on Amazon Welcome back, Sanjay. -- Lefty On Su

Re: Hive on Amazon

2014-01-13 Thread Lefty Leverenz
Welcome back, Sanjay. -- Lefty On Sun, Jan 12, 2014 at 10:33 PM, Subramanian, Sanjay (HQP) < sanjay.subraman...@roberthalf.com> wrote: > Greetings Hive-ians > > > Great to be writing to this group once more. > > > After using Cloudera CDH distributions in production for almost 2 years > , I

Hive on Amazon

2014-01-12 Thread Subramanian, Sanjay (HQP)
Greetings Hive-ians Great to be writing to this group once more. After using Cloudera CDH distributions in production for almost 2 years , I am using Amazon EMR as part of my new assignment :-) Sanjay

Re: Hive on Amazon EC2 with S3

2012-08-30 Thread Joe Crobak
look into it any further since we have this workaround. > ** > > *From:* Joe Crobak [mailto:joec...@gmail.com] > *Sent:* Tuesday, August 28, 2012 10:22 PM > *To:* user@hive.apache.org > *Subject:* Re: Hive on Amazon EC2 with S3 > > ** ** > > Hi Suman, >

RE: Hive on Amazon EC2 with S3

2012-08-30 Thread Suman.Addanki
Thank you Joe. It works now. I will try to read up on the differences between CombineHiveInputFormat and HiveInputFormat. From: Joe Crobak [mailto:joec...@gmail.com] Sent: Tuesday, August 28, 2012 10:22 PM To: user@hive.apache.org Subject: Re: Hive on Amazon EC2 with S3 Hi Suman, We've

Re: Hive on Amazon EC2 with S3

2012-08-30 Thread Manish
Hi Suman, I think you need to have another directory in hive as test. Copy the data into s3://com.x/hive/test/ Thank You, Manish. On Fri, 2012-08-24 at 20:43 +, suman.adda...@sanofipasteur.com wrote: > Hi, > > I have setup a Hadoop cluster on Amazon EC2 with my data stored on S3. > I w

Re: Hive on Amazon EC2 with S3

2012-08-28 Thread Joe Crobak
Hi Suman, We've seen this happen due to a bug in Hive's CombineHiveInputFormat. Try disabling that before querying by issuing: SET hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat; HTH, Joe On Fri, Aug 24, 2012 at 4:43 PM, wrote: > Hi, > > I have setup a Hadoop cluster on A

Hive on Amazon EC2 with S3

2012-08-24 Thread Suman.Addanki
Hi, I have setup a Hadoop cluster on Amazon EC2 with my data stored on S3. I would like to use Hive to process the data on S3. I created an external table in hive using the following: CREATE EXTERNAL TABLE mytable1 ( HIT_TIME_GMTstring, SERVICE string ) ROW FORMAT