unsubscribe

2013-06-21 Thread Haidar Hadi



Re: Hive built-in functions not working

2013-06-21 Thread Ramki Palle
Try to add the jar explicitly from hive prompt and see if that works.

Regards,
Ramki.


On Fri, Jun 21, 2013 at 7:32 AM, fab wol darkwoll...@gmail.com wrote:

 I'm using Hadoop 0.20.2 with Hive 0.11. I have succesfully inserted into
 hive/hdfs some csv-files in seperate tables. selects and joins work
 flawlessly. When trying to analyse some data, i needed to make use of the
 built in functions of hive like:

  - substr
  - to_date
  - rand
  - etc.

 for example:

 select sid, request_id, to_date(times), to_unix_timestamp(times) from
 contents where sid = '500032066010373';

 sid and request id are strings here, times is a timestamp column
 Unfortanetely i only get errors (always the same error stack) when using
 these functions:

 java.lang.RuntimeException: Error in configuring object
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:93)
 at
 org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:64)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:117)
 at
 org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:354)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 at org.apache.hadoop.mapred.Child.main(Child.java:170)
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:601)
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:88)
 ... 5 more
 Caused by: java.lang.RuntimeException: Error in configuring object
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:93)
 at
 org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:64)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:117)
 at
 org.apache.hadoop.mapred.MapRunner.configure(MapRunner.java:34)
 ... 10 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:601)
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:88)
 ... 13 more
 Caused by: java.lang.RuntimeException: Map operator initialization
 failed
 at
 org.apache.hadoop.hive.ql.exec.ExecMapper.configure(ExecMapper.java:121)
 ... 18 more
 Caused by: java.lang.NoClassDefFoundError:
 org/codehaus/jackson/JsonFactory
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDTFJSONTuple.clinit(GenericUDTFJSONTuple.java:56)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at
 java.lang.reflect.Constructor.newInstance(Constructor.java:525)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:113)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.registerGenericUDTF(FunctionRegistry.java:526)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.registerGenericUDTF(FunctionRegistry.java:520)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.clinit(FunctionRegistry.java:423)
 at
 org.apache.hadoop.hive.ql.exec.DefaultUDFMethodResolver.getEvalMethod(DefaultUDFMethodResolver.java:59)
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDFBridge.initialize(GenericUDFBridge.java:154)
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDF.initializeAndFoldConstants(GenericUDF.java:111)
 at
 org.apache.hadoop.hive.ql.exec.ExprNodeGenericFuncEvaluator.initialize(ExprNodeGenericFuncEvaluator.java:141)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initEvaluators(Operator.java:970)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initEvaluatorsAndReturnStruct(Operator.java:996)
 at
 org.apache.hadoop.hive.ql.exec.SelectOperator.initializeOp(SelectOperator.java:60)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:375)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:451)
 at
 

unsubscribe

2013-06-21 Thread Jyothi Kommajosyula


 CAUTION - Disclaimer *
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely
for the use of the addressee(s). If you are not the intended recipient, please
notify the sender by e-mail and delete the original message. Further, you are 
not
to copy, disclose, or distribute this e-mail or its contents to any other 
person and
any such actions are unlawful. This e-mail may contain viruses. Infosys has 
taken
every reasonable precaution to minimize this risk, but is not liable for any 
damage
you may sustain as a result of any virus in this e-mail. You should carry out 
your
own virus checks before opening the e-mail or attachment. Infosys reserves the
right to monitor and review the content of all messages sent to or from this 
e-mail
address. Messages sent to or from this e-mail address may be stored on the
Infosys e-mail system.
***INFOSYS End of Disclaimer INFOSYS***


Re: Hive built-in functions not working

2013-06-21 Thread fab wol
thx, this worked now, after i checked, that i have to add them in each
session. which config file have i to manipulate to embed those jars
permantly?


2013/6/21 Ramki Palle ramki.pa...@gmail.com

 Try to add the jar explicitly from hive prompt and see if that works.

 Regards,
 Ramki.


 On Fri, Jun 21, 2013 at 7:32 AM, fab wol darkwoll...@gmail.com wrote:

 I'm using Hadoop 0.20.2 with Hive 0.11. I have succesfully inserted into
 hive/hdfs some csv-files in seperate tables. selects and joins work
 flawlessly. When trying to analyse some data, i needed to make use of the
 built in functions of hive like:

  - substr
  - to_date
  - rand
  - etc.

 for example:

 select sid, request_id, to_date(times), to_unix_timestamp(times) from
 contents where sid = '500032066010373';

 sid and request id are strings here, times is a timestamp column
 Unfortanetely i only get errors (always the same error stack) when using
 these functions:

 java.lang.RuntimeException: Error in configuring object
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:93)
 at
 org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:64)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:117)
 at
 org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:354)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 at org.apache.hadoop.mapred.Child.main(Child.java:170)
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:601)
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:88)
 ... 5 more
 Caused by: java.lang.RuntimeException: Error in configuring object
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:93)
 at
 org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:64)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:117)
 at
 org.apache.hadoop.mapred.MapRunner.configure(MapRunner.java:34)
 ... 10 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:601)
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:88)
 ... 13 more
 Caused by: java.lang.RuntimeException: Map operator initialization
 failed
 at
 org.apache.hadoop.hive.ql.exec.ExecMapper.configure(ExecMapper.java:121)
  ... 18 more
 Caused by: java.lang.NoClassDefFoundError:
 org/codehaus/jackson/JsonFactory
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDTFJSONTuple.clinit(GenericUDTFJSONTuple.java:56)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at
 java.lang.reflect.Constructor.newInstance(Constructor.java:525)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:113)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.registerGenericUDTF(FunctionRegistry.java:526)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.registerGenericUDTF(FunctionRegistry.java:520)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.clinit(FunctionRegistry.java:423)
 at
 org.apache.hadoop.hive.ql.exec.DefaultUDFMethodResolver.getEvalMethod(DefaultUDFMethodResolver.java:59)
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDFBridge.initialize(GenericUDFBridge.java:154)
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDF.initializeAndFoldConstants(GenericUDF.java:111)
 at
 org.apache.hadoop.hive.ql.exec.ExprNodeGenericFuncEvaluator.initialize(ExprNodeGenericFuncEvaluator.java:141)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initEvaluators(Operator.java:970)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initEvaluatorsAndReturnStruct(Operator.java:996)
 at
 org.apache.hadoop.hive.ql.exec.SelectOperator.initializeOp(SelectOperator.java:60)
 at
 

TempStatsStore derby.log

2013-06-21 Thread Raj Hadoop
Hi,
 
I have Hive metastore created in an Oracle database. 
 
But when i execute my Hive queries , I see following directory and file created.
TempStatsStore  (directory)
derby.log
 
What are this? Can one one suggest why derby log is created even though my 
javax.jdo.option.ConnectionURL is pointing to Oracle?
 
Thanks,
Raj

Re: Hive built-in functions not working

2013-06-21 Thread Dean Wampler
You could add the ADD JAR statements to your hive scripts or for your
interact sessions, put them in ~/.hiverc.

On Fri, Jun 21, 2013 at 12:37 PM, fab wol darkwoll...@gmail.com wrote:

 thx, this worked now, after i checked, that i have to add them in each
 session. which config file have i to manipulate to embed those jars
 permantly?


 2013/6/21 Ramki Palle ramki.pa...@gmail.com

 Try to add the jar explicitly from hive prompt and see if that works.

 Regards,
 Ramki.


 On Fri, Jun 21, 2013 at 7:32 AM, fab wol darkwoll...@gmail.com wrote:

 I'm using Hadoop 0.20.2 with Hive 0.11. I have succesfully inserted into
 hive/hdfs some csv-files in seperate tables. selects and joins work
 flawlessly. When trying to analyse some data, i needed to make use of the
 built in functions of hive like:

  - substr
  - to_date
  - rand
  - etc.

 for example:

 select sid, request_id, to_date(times), to_unix_timestamp(times)
 from contents where sid = '500032066010373';

 sid and request id are strings here, times is a timestamp column
 Unfortanetely i only get errors (always the same error stack) when using
 these functions:

 java.lang.RuntimeException: Error in configuring object
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:93)
 at
 org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:64)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:117)
 at
 org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:354)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 at org.apache.hadoop.mapred.Child.main(Child.java:170)
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
 Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:601)
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:88)
 ... 5 more
 Caused by: java.lang.RuntimeException: Error in configuring object
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:93)
 at
 org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:64)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:117)
 at
 org.apache.hadoop.mapred.MapRunner.configure(MapRunner.java:34)
 ... 10 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
 Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:601)
 at
 org.apache.hadoop.util.ReflectionUtils.setJobConf(ReflectionUtils.java:88)
 ... 13 more
 Caused by: java.lang.RuntimeException: Map operator initialization
 failed
 at
 org.apache.hadoop.hive.ql.exec.ExecMapper.configure(ExecMapper.java:121)
  ... 18 more
 Caused by: java.lang.NoClassDefFoundError:
 org/codehaus/jackson/JsonFactory
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDTFJSONTuple.clinit(GenericUDTFJSONTuple.java:56)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at
 java.lang.reflect.Constructor.newInstance(Constructor.java:525)
 at
 org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:113)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.registerGenericUDTF(FunctionRegistry.java:526)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.registerGenericUDTF(FunctionRegistry.java:520)
 at
 org.apache.hadoop.hive.ql.exec.FunctionRegistry.clinit(FunctionRegistry.java:423)
 at
 org.apache.hadoop.hive.ql.exec.DefaultUDFMethodResolver.getEvalMethod(DefaultUDFMethodResolver.java:59)
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDFBridge.initialize(GenericUDFBridge.java:154)
 at
 org.apache.hadoop.hive.ql.udf.generic.GenericUDF.initializeAndFoldConstants(GenericUDF.java:111)
 at
 org.apache.hadoop.hive.ql.exec.ExprNodeGenericFuncEvaluator.initialize(ExprNodeGenericFuncEvaluator.java:141)
 at
 org.apache.hadoop.hive.ql.exec.Operator.initEvaluators(Operator.java:970)
 at
 

Re: show table throwing strange error

2013-06-21 Thread Sanjay Subramanian
Can u stop following services
hive-server
hive-meta-store
Hive-server2 (if u r running that)

Move current hive.log some place else

Start following services
hive-server
hive-meta-store
Hive-server2 (if u r running that)


And check hive.log ?

Also can u paste the CREATE TABLe script verbatim here…I feel if u are using 
some custom INPUTFORMAT / OUTPUTFORMAT class  that have to be specified in 
quotes…u may have to be escape that

Plus try and add a semicolon to the end of the create table script ...

sanjay

From: Mohammad Tariq donta...@gmail.commailto:donta...@gmail.com
Reply-To: user@hive.apache.orgmailto:user@hive.apache.org 
user@hive.apache.orgmailto:user@hive.apache.org
Date: Thursday, June 20, 2013 12:52 PM
To: user user@hive.apache.orgmailto:user@hive.apache.org
Subject: Re: show table throwing strange error

Thank you for looking into it Sanjay. show tables is working fine from both 
Ubuntu and Hive shell. But i'm getting the same error as yesterday when i'm 
running create table, which is :

line 1:30 character '' not supported here
line 1:31 character '' not supported here
line 1:32 character '' not supported here
line 1:33 character '' not supported here
line 1:34 character '' not supported here
line 1:35 character '' not supported here
line 1:36 character '' not supported here
line 1:37 character '' not supported here
line 1:38 character '' not supported here
line 1:39 character '' not supported here
line 1:40 character '' not supported here
line 1:41 character '' not supported here
line 1:42 character '' not supported here
.
.
.
.

Also, I have noticed 1 strange thing. hive.log is totally messed up. Looks 
like logs are getting written in some binary encoding. I have attached a 
snapshot of the same. Any idea?

Warm Regards,
Tariq
cloudfront.blogspot.comhttp://cloudfront.blogspot.com


On Fri, Jun 21, 2013 at 1:03 AM, Sanjay Subramanian 
sanjay.subraman...@wizecommerce.commailto:sanjay.subraman...@wizecommerce.com
 wrote:
Can u try from your ubuntu command prompt
$ hive -e show tables

From: Mohammad Tariq donta...@gmail.commailto:donta...@gmail.com
Reply-To: user@hive.apache.orgmailto:user@hive.apache.org 
user@hive.apache.orgmailto:user@hive.apache.org
Date: Thursday, June 20, 2013 4:28 AM
To: user user@hive.apache.orgmailto:user@hive.apache.org

Subject: Re: show table throwing strange error

Thank you for the response ma'am. It didn't help either.

Warm Regards,
Tariq
cloudfront.blogspot.comhttp://cloudfront.blogspot.com


On Thu, Jun 20, 2013 at 8:43 AM, Sunita Arvind 
sunitarv...@gmail.commailto:sunitarv...@gmail.com wrote:
Your issue seems familiar. Try logging out of hive session and re-login.

Sunita


On Wed, Jun 19, 2013 at 8:53 PM, Mohammad Tariq 
donta...@gmail.commailto:donta...@gmail.com wrote:
Hello list,

 I have a hive(0.9.0) setup on my Ubuntu box running hadoop-1.0.4. 
Everything was going smooth till now. But today when I issued show tables I got 
some strange error on the CLI. Here is the error :

hive show tables;
FAILED: Parse Error: line 1:0 character '' not supported here
line 1:1 character '' not supported here
line 1:2 character '' not supported here
line 1:3 character '' not supported here
line 1:4 character '' not supported here
line 1:5 character '' not supported here
line 1:6 character '' not supported here
line 1:7 character '' not supported here
line 1:8 character '' not supported here
line 1:9 character '' not supported here
line 1:10 character '' not supported here
line 1:11 character '' not supported here
line 1:12 character '' not supported here
line 1:13 character '' not supported here
line 1:14 character '' not supported here
line 1:15 character '' not supported here
line 1:16 character '' not supported here
line 1:17 character '' not supported here
line 1:18 character '' not supported here
line 1:19 character '' not supported here
line 1:20 character '' not supported here
line 1:21 character '' not supported here
line 1:22 character '' not supported here
line 1:23 character '' not supported here
line 1:24 character '' not supported here
line 1:25 character '' not supported here
line 1:26 character '' not supported here
line 1:27 character '' not supported here
line 1:28 character '' not supported here
line 1:29 character '' not supported here
line 1:30 character '' not supported here
line 1:31 character '' not supported here
line 1:32 character '' not supported here
line 1:33 character '' not supported here
line 1:34 character '' not supported here
line 1:35 character '' not supported here
line 1:36 character '' not supported here
line 1:37 character '' not supported here
line 1:38 character '' not supported here
line 1:39 character '' not supported here
line 1:40 character '' not supported here
line 1:41 character '' not supported here
line 1:42 character '' not supported here
line 1:43 character '' not supported here
line 1:44 character '' not supported here
line 1:45 character '' not supported here
line 1:46 character '' not supported 

Re: show table throwing strange error

2013-06-21 Thread kulkarni.swar...@gmail.com
More often than not in my experience is caused by a malformed
hive-site.xml(or hive-default.xml). When this happened to me, it was
because I somehow had tab characters in my hive-site.xml. Try dropping the
file(s) and recreate with appropriate formatting.


On Fri, Jun 21, 2013 at 2:17 PM, Sanjay Subramanian 
sanjay.subraman...@wizecommerce.com wrote:

  Can u stop following services
 hive-server
 hive-meta-store
 Hive-server2 (if u r running that)

  Move current hive.log some place else

  Start following services
  hive-server
 hive-meta-store
 Hive-server2 (if u r running that)


  And check hive.log ?

  Also can u paste the CREATE TABLe script verbatim here…I feel if u are
 using some custom INPUTFORMAT / OUTPUTFORMAT class  that have to be
 specified in quotes…u may have to be *escape* that

  Plus try and add a semicolon to the end of the create table script ...

  sanjay

   From: Mohammad Tariq donta...@gmail.com
 Reply-To: user@hive.apache.org user@hive.apache.org
 Date: Thursday, June 20, 2013 12:52 PM

 To: user user@hive.apache.org
 Subject: Re: show table throwing strange error

   Thank you for looking into it Sanjay. show tables is working fine
 from both Ubuntu and Hive shell. But i'm getting the same error as
 yesterday when i'm running create table, which is :

  line 1:30 character '' not supported here
 line 1:31 character '' not supported here
 line 1:32 character '' not supported here
 line 1:33 character '' not supported here
 line 1:34 character '' not supported here
 line 1:35 character '' not supported here
 line 1:36 character '' not supported here
 line 1:37 character '' not supported here
 line 1:38 character '' not supported here
 line 1:39 character '' not supported here
 line 1:40 character '' not supported here
 line 1:41 character '' not supported here
 line 1:42 character '' not supported here
 .
 .
 .
 .

  Also, I have noticed 1 strange thing. hive.log is totally messed up.
 Looks like logs are getting written in some binary encoding. I have
 attached a snapshot of the same. Any idea?

  Warm Regards,
 Tariq
 cloudfront.blogspot.com


 On Fri, Jun 21, 2013 at 1:03 AM, Sanjay Subramanian 
 sanjay.subraman...@wizecommerce.com wrote:

  Can u try from your ubuntu command prompt
 $ hive -e show tables

   From: Mohammad Tariq donta...@gmail.com
 Reply-To: user@hive.apache.org user@hive.apache.org
 Date: Thursday, June 20, 2013 4:28 AM
 To: user user@hive.apache.org

 Subject: Re: show table throwing strange error

   Thank you for the response ma'am. It didn't help either.

  Warm Regards,
 Tariq
 cloudfront.blogspot.com


 On Thu, Jun 20, 2013 at 8:43 AM, Sunita Arvind sunitarv...@gmail.comwrote:

  Your issue seems familiar. Try logging out of hive session and
 re-login.

  Sunita


 On Wed, Jun 19, 2013 at 8:53 PM, Mohammad Tariq donta...@gmail.comwrote:

 Hello list,

   I have a hive(0.9.0) setup on my Ubuntu box running
 hadoop-1.0.4. Everything was going smooth till now. But today when I issued
 *show tables* I got some strange error on the CLI. Here is the error :

  hive show tables;
 FAILED: Parse Error: line 1:0 character '' not supported here
 line 1:1 character '' not supported here
 line 1:2 character '' not supported here
 line 1:3 character '' not supported here
 line 1:4 character '' not supported here
 line 1:5 character '' not supported here
 line 1:6 character '' not supported here
 line 1:7 character '' not supported here
 line 1:8 character '' not supported here
 line 1:9 character '' not supported here
 line 1:10 character '' not supported here
 line 1:11 character '' not supported here
 line 1:12 character '' not supported here
 line 1:13 character '' not supported here
 line 1:14 character '' not supported here
 line 1:15 character '' not supported here
 line 1:16 character '' not supported here
 line 1:17 character '' not supported here
 line 1:18 character '' not supported here
 line 1:19 character '' not supported here
 line 1:20 character '' not supported here
 line 1:21 character '' not supported here
 line 1:22 character '' not supported here
 line 1:23 character '' not supported here
 line 1:24 character '' not supported here
 line 1:25 character '' not supported here
 line 1:26 character '' not supported here
 line 1:27 character '' not supported here
 line 1:28 character '' not supported here
 line 1:29 character '' not supported here
 line 1:30 character '' not supported here
 line 1:31 character '' not supported here
 line 1:32 character '' not supported here
 line 1:33 character '' not supported here
 line 1:34 character '' not supported here
 line 1:35 character '' not supported here
 line 1:36 character '' not supported here
 line 1:37 character '' not supported here
 line 1:38 character '' not supported here
 line 1:39 character '' not supported here
 line 1:40 character '' not supported here
 line 1:41 character '' not supported here
 line 1:42 character '' not supported here
 line 1:43 character '' not supported here