Hiveserver2 does not respond to connection requests

2015-11-18 Thread Sakib Shaikh
Hi I've been trying to query hive through python and I am trying to connect to hiveserver2. It is running but it never responds to any request. I tried changing the hive-site.xml settings to get hiveserver to work but now any request I send from python gives back errors. This is better than what I

Re: Building Spark to use for Hive on Spark

2015-11-18 Thread Gopal Vijayaraghavan
> I wanted to know why is it necessary to remove the Hive jars from the >Spark build as mentioned on this Because SparkSQL was originally based on Hive & still uses Hive AST to parse SQL. The org.apache.spark.sql.hive package contains the parser which has hard-references to the hive's internal

Re: Hive version with Spark

2015-11-18 Thread Udit Mehta
As per this link : https://cwiki.apache.org/confluence/display/Hive/Hive+on+Spark%3A+Getting+Started, you need to build Spark without Hive. On Wed, Nov 18, 2015 at 8:50 AM, Sofia wrote: > Hello > > After various failed tries to use my Hive (1.2.1) with my Spark (Spark > 1.4.1 built for Hadoop 2.

Building Spark to use for Hive on Spark

2015-11-18 Thread Udit Mehta
Hi, I am planning to test out the Hive on Spark functionality provided by the newer versions of Hive. I wanted to know why is it necessary to remove the Hive jars from the Spark build as mentioned on this this page.

Re: hive transaction strange behaviour

2015-11-18 Thread Eugene Koifman
can you send ls -l on the partition where you expect a base and don't see it? From: Sanjeev Verma mailto:sanjeev.verm...@gmail.com>> Reply-To: "user@hive.apache.org" mailto:user@hive.apache.org>> Date: Tuesday, November 17, 2015 at 10:27 PM To: "user@hive.apache.org<

Hive version with Spark

2015-11-18 Thread Sofia
Hello After various failed tries to use my Hive (1.2.1) with my Spark (Spark 1.4.1 built for Hadoop 2.2.0) I decided to try to build again Spark with Hive. I would like to know what is the latest Hive version that can be used to build Spark at this point. When downloading Spark 1.5 source and t

Re: Bulk load in Hive transactions backed table

2015-11-18 Thread Elliot West
Are you loading new data (inserts) or mutating existing data (update/delete) or both? And by 'transactions' are you referring to Hive ACID transactional tables? If so: For new data, I think you should be able to use: INSERT INTO transactional_table ... FROM table_over_file_to_be_loaded For upda

Bulk load in Hive transactions backed table

2015-11-18 Thread Jagat Singh
Hi, Is it possible to do bulk load using files in hive table backed by transactions instead of update statements. Thanks