Review Request 38199: HIVE-4577: hive CLI can't handle hadoop dfs command with space and quotes.

2015-09-08 Thread Bing Li
fy it in a real cluster. Thanks, Bing Li

Review Request 34877: HIVE-11201: HCatalog is ignoring user specified avro schema in the table definition

2015-09-08 Thread Bing Li
correct avro schema. Diffs - Diff: https://reviews.apache.org/r/34877/diff/ Testing (updated) --- I have tested it in a real cluster. And also ran Hive UTs in local successfully. Thanks, Bing Li

Re: Review Request 34877: HIVE-11201: HCatalog is ignoring user specified avro schema in the table definition

2015-09-11 Thread Bing Li
/hcatalog/mapreduce/SpecialCases.java f38d53b Diff: https://reviews.apache.org/r/34877/diff/ Testing --- I have tested it in a real cluster. And also ran Hive UTs in local successfully. Thanks, Bing Li

Review Request 38357: HIVE-6091: Empty pipeout files are created for connection create/close

2015-09-14 Thread Bing Li
--- Tested it in local and a real cluster. Thanks, Bing Li

Review Request 38358: HIVE-10495: Hive index creation code throws NPE if index table is null

2015-09-14 Thread Bing Li
local and a real cluster. Thanks, Bing Li

Review Request 38392: HIVE-6990: Direct SQL fails when the explicit schema setting is different from the default one

2015-09-14 Thread Bing Li
/MetaStoreDirectSql.java 1f89b7c metastore/src/java/org/apache/hadoop/hive/metastore/ObjectStore.java d165fc8 Diff: https://reviews.apache.org/r/38392/diff/ Testing --- I have tested it in Hive 1.2.1 in a real cluster. Thanks, Bing Li

Review Request 38711: HIVE-10982: Customizable the value of java.sql.statement.setFetchSize in Hive JDBC Driver

2015-09-24 Thread Bing Li
change. Thanks, Bing Li

Review Request 41089: HIVE-10982: Customizable the value of java.sql.statement.setFetchSize in Hive JDBC Driver

2015-12-08 Thread Bing Li
, Bing Li

Hive runtime error while run TestCliDriver auto_join21.q

2011-10-25 Thread Bing Li
Hi, Guys I met an error which is similar like described in HIVE-1478, but not exactly the same when run auto_join21.q in TestCliDriver. Do you have some ideas on this? == Re-Produce == Hive: 0.7.1 ANT: 1.8.2 Hadoop: 0.20.2 command: ant test -Dtestcase=TestCliDriver -Dqfile

Does hive support running on an existing NFS

2011-10-31 Thread Bing Li
When I distribute Hive to a NFS and execute a select command, it failed: hive> SELECT a.foo FROM invites a;Total MapReduce jobs = 1Launching Job 1 out of 1Number of reduce tasks is set to 0 since there's no reduce operatorStarting Job = job_201110310722_0001, Tracking URL = http://localhost:5003

How to make hive handle/show Chinese words

2011-11-02 Thread Bing Li
Hi, guysI want to load some data files which including Chinese words.Currently, I found Hive can't display it well.Is there some setting/properties that I can configure to resolve this? Thanks,Bing

UT failed with release-0.8.0-rc1

2011-11-22 Thread Bing Li
Hi, all I checked out the source code of hive-0.8.0 from the following link http://svn.apache.org/repos/asf/hive/tags/release-0.8.0-rc1/ and run "ant test", 3 cases failed: 1. TestEmbeddedHiveMetaStore 2. TestRemoteHiveMetaStore 3. TestCliDriver (timeout) some info of my env: 1. ant: 1.8.2 2.

a potential bug in HIVE/HADOOP ? -- MetaStore, createDatabase()

2011-12-14 Thread Bing Li
Hi, developers When I ran Hive UT with the candidate build of Hive-0.8.0, I found that TestEmbeddedHiveMetaStore and TestRemoteHiveMetaStore always FAILED with ROOT account while PASS with NON-ROOT account. I took a look at the source code of TestHiveMetaStore, and found that   fs.mkdirs(

FW: a potential bug in HIVE/HADOOP ? -- MetaStore, createDatabase()

2011-12-14 Thread Bing Li
fyi --- 11年12月14日,周三, Bing Li 写道: 发件人: Bing Li 主题: a potential bug in HIVE/HADOOP ? -- MetaStore, createDatabase() 收件人: "hive dev list" 日期: 2011年12月14日,周三,下午8:32 Hi, developers When I ran Hive UT with the candidate build of Hive-0.8.0, I found that TestEmbeddedHiveMet

FW: a potential bug in HIVE/HADOOP ? -- MetaStore, createDatabase()

2011-12-14 Thread Bing Li
fyi --- 11年12月14日,周三, Bing Li 写道: 发件人: Bing Li 主题: a potential bug in HIVE/HADOOP ? -- MetaStore, createDatabase() 收件人: "hive dev list" 日期: 2011年12月14日,周三,下午8:32 Hi, developers When I ran Hive UT with the candidate build of Hive-0.8.0, I found that TestEmbeddedHiveMet

A bug or work as design ? - MetaStore, createDatabase()

2011-12-15 Thread Bing Li
Hi, Devs When I ran Hive UT with the candidate build of Hive-0.8.0, I found that TestEmbeddedHiveMetaStore and TestRemoteHiveMetaStore always FAILED with ROOT account while PASS with NON-ROOT account. I took a look at the source code of TestHiveMetaStore, and found that fs.mkdirs(

Does hive REAL enable TestHadoop20SAuthBridge in hive-0.8.0 ? -- [HIVE-2257] patch doesn't work for me

2011-12-22 Thread Bing Li
Hi, All When I ran hive UT, I found that TestHadoop20SAuthBridge wasn't compiled, so TestHadoop20SAuthBridge won't be run by "ant test" command. In src/shims/build.xml, I found the following lines: Then, I commented off lines in blue, and it could generate the class file of

Re: Does hive REAL enable TestHadoop20SAuthBridge in hive-0.8.0 ? -- [HIVE-2257] patch doesn't work for me

2011-12-22 Thread Bing Li
ken out when making Hive compile with Hadoop 0.23. > > The test case will be put back as part of > > https://issues.apache.org/jira/browse/HIVE-2629 > > > On 12/22/11 12:15 AM, "Bing Li" wrote: > > > Hi, All > > When I ran hive UT, I found tha

Hive JOIN fails if SELECT statement contains fields from the first table.

2012-01-16 Thread Bing Li
1. I create two Hive table: Hive> CREATE EXTERNAL TABLE student_details (studentid INT,studentname STRING,age INT,gpa FLOAT) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' STORED AS TEXTFILE LOCATION ‘/home/biadmin/hivetbl'; Hive>CREATE EXTERNAL TABLE student_score(studentid INT, classid INT,scor

scripe_pipe.q (TestCliDriver) FAILED in open JDK

2012-01-17 Thread Bing Li
Hi, Devs When I ran UT of *hive-0.8.0*, script_pipe.q failed as: [junit] Running org.apache.hadoop.hive.cli.TestCliDriver [junit] Begin query: *script_pipe.q* [junit] *java.io.IOException: No such file or directory* [junit] at java.io.FileOutputStream.writeBytes(Native Method)

Re: scripe_pipe.q (TestCliDriver) FAILED in open JDK

2012-01-17 Thread Bing Li
Updated == If there are *TWO columns* in table *src*, which are key and value: SELECT TRANSFORM(*key, value*) USING 'head -n 1' as a,b,c,d FROM src; // * PASS* SELECT TRANSFORM(*key, value, key, value*) USING 'head -n 1' as a,b,c,d FROM src; //* FAILED* 2012/1/17

Get race condition in hive with script_pipe.q ( the same as HIVE-1491)

2012-02-07 Thread Bing Li
Hi,All I got the same error message described in [HIVE-1491] ( https://issues.apache.org/jira/browse/HIVE-1491) when ran script_pipe.q on Open JDK. Will hive plan to resolve this race condition? Details: = [junit] Begin query: script_pipe.q [junit] Ended

check scriptPid in ScriptOperator.java to avoid BrokenPipeException: script_broken_pipe1.q, script_broken_pipe2.q, minimr_broken_pipe.q won't FAILED

2012-02-20 Thread Bing Li
Hi, developers I found that in ScriptOperator.close(), when it catch an IOException, it doesn't check the status of the scriptPid, I mean if the process is null. which may cause a race condition. I did a change that In ScriptOperator.close() try { if ( scriptOutWriter != null ) { scriptOutWr

Professional Hiring: Architect and Developer in Hadoop Area ( Beijing, China )

2012-04-09 Thread Bing Li
国际著名大型IT企业(排名前3位)开发中心招聘Hadoop技术专家(北京)-非猎头 职位描述: Hadoop系统和平台开发(架构师,资深开发人员) 职位要求: 1.有设计开发大型分布式系统的经验(工作年限3年以上,架构师5年以上),hadoop大型实际应用经验优先 2.良好的编程和调试经验(java or c++/c),扎实的计算机理论基础,快速的学习能力 3. 沟通和合作能力强,熟练使用英语(包括口语) *我们将提供有竞争力的待遇,欢迎加入我们* 有意请发简历到邮箱: sarah.lib...@gmail.com

Questions about Hive Execution Plan (TestHBaseCliDriver failed)

2011-08-26 Thread Bing Li
Hi, developers When I execute hive test cases, TestHBaseCliDriver, I found that the task id is different from JDK. and the standard output file is only accepted SUN jdk. For example,     [junit] diff -a -I file: -I pfile: -I hdfs: -I /tmp/ -I invalidscheme: -I lastUpdateTime -I lastAccessTime -

TestHBaseCliDriver failed when I change JDK

2011-08-28 Thread Bing Li
Hi, developers When I execute hive test cases, TestHBaseCliDriver, I found that the task id is different from JDK. and the standard output file is only accepted SUN jdk. For example,     [junit] diff -a -I file: -I pfile: -I hdfs: -I /tmp/ -I invalidscheme: -I lastUpdateTime -I lastAccessTime

Problem: The class "org.apache.hadoop.hive.metastore.model.MDatabase" is not persistable

2011-08-28 Thread Bing Li
Hi, all I setup Eclipse for Hive development, then I start hive via click "Run -> Java Application". I typed "show tables" to check if my env could work. But I got the errors like: Logging initialized using configuration in jar:file:/home/libing/hadoop/hadoop-0.20.2/hive/lib/hive-common-0.8.0-S

Can hive-0.8.0 could work with HBase-0.92.0 and Zookeeper-3.4.2

2012-04-13 Thread Bing Li
Hi, guys Currently, I run hive-0.8.0 UT with - hadoop-1.0.0 (apply patchs for HIVE-2631 and HIVE-2629 - hbase-0.92.0 - zookeeper-3.4.2 But got the following error messages: [echo] Project: hbase-handler [junit] Running org.apache.hadoop.hive.cli.TestHBaseCliDriver [junit] org.apache.

Can hive-0.8.0 could work with HBase-0.9.2 and Zookeeper-3.4.2?

2012-04-13 Thread Bing Li
Hi, guys I ran Hive-0.8.0 UT with - Hadoop-1.0.0 ( applied patches for HIVE-2631 and HIVE-2629) - HBase-0.92.0 - Zookeeper-3.4.2 But got the following error message: [echo] Project: hbase-handler [junit] Running org.apache.hadoop.hive.cli.TestHBaseCliDriver [junit] org.apache.hadoop.

Does HiveServer2 support delegation token?

2013-07-23 Thread Bing Li
Hi, all HiveMetastore supports delegation token. Does HiveServer2 support it as well? If not, do we have a plan for this? Besides, on hive wiki hive.server2.authentication - Authentication mode, default NONE. Options are NONE, KERBEROS, LDAP and CUSTOM Will HiveServer2 support PAM which could be

what's the release time for the next version of Hive?

2012-11-25 Thread Bing Li
Hi, All I noticed that hive-0.9.1 and hive-0.10.0 is being planned. Do we have a time (detailed plan) for their release time? Thanks, - Bing

Re: hive 0.10 release

2012-11-28 Thread Bing Li
When will hive 0.10 be released? 2012/11/28 Thejas Nair > Hi Ashutosh, > Can you please include patch in https://issues.apache.org/** > jira/browse/HIVE-3693 in > 0.10 if possible ? > It fixes test case failures on windows, and it is a small low

how to manage hive query logs in hive.querylog.location

2012-12-03 Thread Bing Li
Hi, All Hive keeps its structured query logs in hive.querylog.location which is set in hive-site.xml. There are two kinds of log files kept in hive.querylog.location, - hive_job_log_.txt Hive history file, which would be created when hive CLI launched each time, e.g. "hive -e" invoked - ${user_na

Got a hadoop server IPC version mismatch ERROR in TestCliDriver avro_joins.q

2013-01-13 Thread Bing Li
Hi, guys I applied the patches for HIVE-895 ( add SerDe for Avro serialized data ) and HIVE-3273 (Add avro jars into hive execution classpath ) on Hive-0.9.0. And then I ran the following command with hadoop-1.0.3 and avro-1.6.3 ant test -Dtestcase=TestCliDriver -Dqfile=avro_joins.

can hive handle concurrent JDBC statements?

2013-04-16 Thread Bing Li
Hi All, I am writing a java program to run concurrent JDBC statements. But it failed with: org.apache.thrift.TApplicationException: execute failed: out of sequence response The steps are: 1. open a connection to "jdbc:derby://hiveHost:port/commonDb" 2. run select statement at the same time:

Re: No java compiler available exception for HWI

2013-08-20 Thread Bing Li
asper-compiler-5.5.23.jar - jasper-runtime-5.5.23.jar Thanks, - Bing 2013/8/20 Bing Li > Hi, Eric et al > Did you resolve this failure? > I'm using Hive-0.11.0, and get the same error when access to HWI via > browser. > > I already set the following

Re: No java compiler available exception for HWI

2013-08-21 Thread Bing Li
Hi, Edward I filed it as HIVE-5132, did you mean this one? 2013/8/21 Edward Capriolo > We rally should pre compile the jsp. There ia a jira on this somewhere. > > On Tuesday, August 20, 2013, Bing Li wrote: > > Hi, Eric et al > > Did you resolve this failure? > >

Re: [jira] [Created] (HIVE-5132) Can't access to hwi

2013-08-21 Thread Bing Li
Hi, Edward The node running running hwi service uses a JDK. Did you point to the node running the web browser?

[jira] [Assigned] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-13 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li reassigned HIVE-6727: - Assignee: Bing Li > Table level stats for external tables are set incorrec

[jira] [Commented] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14176731#comment-14176731 ] Bing Li commented on HIVE-6727: --- This issue also happens when the table is managed

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Component/s: Metastore > Table level stats for external tables are set incorrec

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Affects Version/s: 0.13.0 0.13.1 > Table level stats for external tables are

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Fix Version/s: 0.14.0 > Table level stats for external tables are set incorrec

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Status: Patch Available (was: Open) The patch is generated based on the latest trunk code. > Table level st

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Attachment: HIVE-6727.1.patch This patch is generated based on the latest trunk code > Table level stats

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Attachment: HIVE-6727.2.patch Fix the error in HIVE-6727.1.patch > Table level stats for external tables

[jira] [Updated] (HIVE-6727) Table level stats for external tables are set incorrectly

2014-10-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6727: -- Attachment: (was: HIVE-6727.1.patch) > Table level stats for external tables are set incorrec

[jira] [Created] (HIVE-8070) TestHWIServer failed due to wrong references to war and properties file

2014-09-11 Thread Bing Li (JIRA)
Bing Li created HIVE-8070: - Summary: TestHWIServer failed due to wrong references to war and properties file Key: HIVE-8070 URL: https://issues.apache.org/jira/browse/HIVE-8070 Project: Hive Issue

[jira] [Commented] (HIVE-8070) TestHWIServer failed due to wrong references to war and properties file

2014-09-11 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-8070?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14131159#comment-14131159 ] Bing Li commented on HIVE-8070: --- This JIRA is blocked by HIVE-7233 > TestHWIServer

[jira] [Work started] (HIVE-8070) TestHWIServer failed due to wrong references to war and properties file

2014-09-11 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-8070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on HIVE-8070 started by Bing Li. - > TestHWIServer failed due to wrong references to war and properties f

[jira] [Updated] (HIVE-8070) TestHWIServer failed due to wrong references to war and properties file

2014-09-11 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-8070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-8070: -- Status: Patch Available (was: In Progress) The patch is generated for trunk > TestHWIServer failed due

[jira] [Updated] (HIVE-8070) TestHWIServer failed due to wrong references to war and properties file

2014-09-11 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-8070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-8070: -- Attachment: HIVE-8070.1.patch > TestHWIServer failed due to wrong references to war and properties f

[jira] [Created] (HIVE-8213) TestHWISessionManager failed due to miss hadoop2 dependencies

2014-09-22 Thread Bing Li (JIRA)
Bing Li created HIVE-8213: - Summary: TestHWISessionManager failed due to miss hadoop2 dependencies Key: HIVE-8213 URL: https://issues.apache.org/jira/browse/HIVE-8213 Project: Hive Issue Type: Test

[jira] [Resolved] (HIVE-8213) TestHWISessionManager failed due to miss hadoop2 dependencies

2014-09-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-8213?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li resolved HIVE-8213. --- Resolution: Duplicate This failure is fixed in HIVE-6880 > TestHWISessionManager failed due to miss hado

[jira] [Assigned] (HIVE-7292) Hive on Spark

2014-12-03 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-7292?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li reassigned HIVE-7292: - Assignee: Bing Li (was: Xuefu Zhang) > Hive on Spark > - > > Ke

[jira] [Assigned] (HIVE-9169) UT: set hive.support.concurrency to true for spark UTs

2015-01-21 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-9169?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li reassigned HIVE-9169: - Assignee: Bing Li > UT: set hive.support.concurrency to true for spark

[jira] [Created] (HIVE-18047) Support dynamic service discovery for HiveMetaStore

2017-11-12 Thread Bing Li (JIRA)
Bing Li created HIVE-18047: -- Summary: Support dynamic service discovery for HiveMetaStore Key: HIVE-18047 URL: https://issues.apache.org/jira/browse/HIVE-18047 Project: Hive Issue Type: Bug

[jira] [Created] (HIVE-10495) Hive index creation code throws NPE if index table is null

2015-04-27 Thread Bing Li (JIRA)
Bing Li created HIVE-10495: -- Summary: Hive index creation code throws NPE if index table is null Key: HIVE-10495 URL: https://issues.apache.org/jira/browse/HIVE-10495 Project: Hive Issue Type: Bug

[jira] [Created] (HIVE-10948) Slf4j warning in HiveCLI due to spark

2015-06-05 Thread Bing Li (JIRA)
Bing Li created HIVE-10948: -- Summary: Slf4j warning in HiveCLI due to spark Key: HIVE-10948 URL: https://issues.apache.org/jira/browse/HIVE-10948 Project: Hive Issue Type: Bug Components

[jira] [Created] (HIVE-10982) Customizable the value of java.sql.statement.setFetchSize in Hive JDBC Driver

2015-06-11 Thread Bing Li (JIRA)
Bing Li created HIVE-10982: -- Summary: Customizable the value of java.sql.statement.setFetchSize in Hive JDBC Driver Key: HIVE-10982 URL: https://issues.apache.org/jira/browse/HIVE-10982 Project: Hive

[jira] [Created] (HIVE-11019) Can't create an Avro table with uniontype column correctly

2015-06-16 Thread Bing Li (JIRA)
Bing Li created HIVE-11019: -- Summary: Can't create an Avro table with uniontype column correctly Key: HIVE-11019 URL: https://issues.apache.org/jira/browse/HIVE-11019 Project: Hive Issue Type

[jira] [Created] (HIVE-11020) support partial scan for analyze command - Avro

2015-06-16 Thread Bing Li (JIRA)
Bing Li created HIVE-11020: -- Summary: support partial scan for analyze command - Avro Key: HIVE-11020 URL: https://issues.apache.org/jira/browse/HIVE-11020 Project: Hive Issue Type: Improvement

[jira] [Created] (HIVE-11201) HCatalog is ignoring user specified avro schema in the table definition

2015-07-07 Thread Bing Li (JIRA)
Bing Li created HIVE-11201: -- Summary: HCatalog is ignoring user specified avro schema in the table definition Key: HIVE-11201 URL: https://issues.apache.org/jira/browse/HIVE-11201 Project: Hive

[jira] [Created] (HIVE-13384) Failed to create HiveMetaStoreClient object with proxy user when Kerberos enabled

2016-03-30 Thread Bing Li (JIRA)
Bing Li created HIVE-13384: -- Summary: Failed to create HiveMetaStoreClient object with proxy user when Kerberos enabled Key: HIVE-13384 URL: https://issues.apache.org/jira/browse/HIVE-13384 Project: Hive

[jira] [Created] (HIVE-13850) File name conflict when have multiple INSERT INTO queries running in parallel

2016-05-25 Thread Bing Li (JIRA)
Bing Li created HIVE-13850: -- Summary: File name conflict when have multiple INSERT INTO queries running in parallel Key: HIVE-13850 URL: https://issues.apache.org/jira/browse/HIVE-13850 Project: Hive

[jira] [Created] (HIVE-14156) Problem with Chinese characters as partition value when using MySQL

2016-07-04 Thread Bing Li (JIRA)
Bing Li created HIVE-14156: -- Summary: Problem with Chinese characters as partition value when using MySQL Key: HIVE-14156 URL: https://issues.apache.org/jira/browse/HIVE-14156 Project: Hive Issue

[jira] [Created] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-19 Thread Bing Li (JIRA)
Bing Li created HIVE-4577: - Summary: hive CLI can't handle hadoop dfs command with space and quotes. Key: HIVE-4577 URL: https://issues.apache.org/jira/browse/HIVE-4577 Project: Hive Issue

[jira] [Work started] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-19 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on HIVE-4577 started by Bing Li. > hive CLI can't handle hadoop dfs command with space an

[jira] [Commented] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-19 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13661811#comment-13661811 ] Bing Li commented on HIVE-4577: --- The root cause is in DfsProcessor class. Hive pa

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-19 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Attachment: HIVE-4577.1.patch > hive CLI can't handle hadoop dfs command with space an

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-19 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Status: Patch Available (was: In Progress) > hive CLI can't handle hadoop dfs command with s

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Attachment: HIVE-4577.2.patch add a query file for junit > hive CLI can't handle ha

[jira] [Work started] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on HIVE-4577 started by Bing Li. > hive CLI can't handle hadoop dfs command with space an

[jira] [Commented] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13662680#comment-13662680 ] Bing Li commented on HIVE-4577: --- Hi, Edward I updated the patch file with a simple q

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-20 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Status: Patch Available (was: In Progress) add a query file for unit test for my patch > h

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-05-21 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Affects Version/s: 0.10.0 > hive CLI can't handle hadoop dfs command with space an

[jira] [Created] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-21 Thread Bing Li (JIRA)
Bing Li created HIVE-4589: - Summary: Hive Load command failed when inpath contains space or any restricted characters Key: HIVE-4589 URL: https://issues.apache.org/jira/browse/HIVE-4589 Project: Hive

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Status: Patch Available (was: In Progress) > Hive Load command failed when inpath contains space or

[jira] [Work started] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on HIVE-4589 started by Bing Li. > Hive Load command failed when inpath contains space or any restricted > char

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Status: Open (was: Patch Available) > Hive Load command failed when inpath contains space or

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Attachment: HIVE-4589.patch > Hive Load command failed when inpath contains space or any restric

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Attachment: (was: HIVE-4589.patch) > Hive Load command failed when inpath contains space or

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Attachment: HIVE-4589.patch > Hive Load command failed when inpath contains space or any restric

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Attachment: (was: HIVE-4589.patch) > Hive Load command failed when inpath contains space or

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Attachment: HIVE-4589.patch > Hive Load command failed when inpath contains space or any restric

[jira] [Commented] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13664032#comment-13664032 ] Bing Li commented on HIVE-4589: --- In order to run this test case (-Dtestcase=TestCliDr

[jira] [Updated] (HIVE-4589) Hive Load command failed when inpath contains space or any restricted characters

2013-05-22 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4589: -- Status: Patch Available (was: Open) I added a new test case for this defect. In order to run the case

[jira] [Commented] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2013-07-02 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13698625#comment-13698625 ] Bing Li commented on HIVE-4577: --- [~appodictic],could you help to review the new patch? T

[jira] [Updated] (HIVE-3685) TestCliDriver (script_pipe.q) failed with IBM JDK

2013-07-02 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-3685?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-3685: -- Fix Version/s: 0.12.0 > TestCliDriver (script_pipe.q) failed with IBM

[jira] [Commented] (HIVE-3685) TestCliDriver (script_pipe.q) failed with IBM JDK

2013-07-02 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-3685?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13698638#comment-13698638 ] Bing Li commented on HIVE-3685: --- Hi,[~owen.omalley] Could you help to review the la

[jira] [Created] (HIVE-6865) Failed to load data into Hive from Pig using HCatStorer()

2014-04-07 Thread Bing Li (JIRA)
Bing Li created HIVE-6865: - Summary: Failed to load data into Hive from Pig using HCatStorer() Key: HIVE-6865 URL: https://issues.apache.org/jira/browse/HIVE-6865 Project: Hive Issue Type: Bug

[jira] [Work started] (HIVE-6820) HiveServer(2) ignores HIVE_OPTS

2014-04-16 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on HIVE-6820 started by Bing Li. > HiveServer(2) ignores HIVE_OPTS > --- > > Key: HIVE-6820 >

[jira] [Updated] (HIVE-6820) HiveServer(2) ignores HIVE_OPTS

2014-04-16 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6820: -- Attachment: HIVE-6820.1.patch Append $HIVE_OPTS to hiveserver2.sh and hiveserver.sh > HiveServer(2) igno

[jira] [Updated] (HIVE-6820) HiveServer(2) ignores HIVE_OPTS

2014-04-16 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6820: -- Status: Patch Available (was: In Progress) The patch is created based on trunk branch > HiveServer(2) igno

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2014-04-25 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Fix Version/s: (was: 0.12.1) 0.14.0 > hive CLI can't handle hadoop dfs comma

[jira] [Updated] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2014-04-25 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-4577: -- Fix Version/s: 0.12.1 > hive CLI can't handle hadoop dfs command with space an

[jira] [Commented] (HIVE-4577) hive CLI can't handle hadoop dfs command with space and quotes.

2014-04-25 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-4577?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13980845#comment-13980845 ] Bing Li commented on HIVE-4577: --- Hi, Thejas I noticed this fix hasn't been include

[jira] [Updated] (HIVE-6820) HiveServer(2) ignores HIVE_OPTS

2014-04-25 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-6820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-6820: -- Fix Version/s: 0.14.0 > HiveServer(2) ignores HIVE_O

[jira] [Updated] (HIVE-3685) TestCliDriver (script_pipe.q) failed with IBM JDK

2014-04-25 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-3685?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-3685: -- Fix Version/s: 0.14.0 > TestCliDriver (script_pipe.q) failed with IBM

[jira] [Updated] (HIVE-3574) Allow Hive to Submit MapReduce jobs via the MapReduce API (instead of using Hadoop BIN)

2014-04-25 Thread Bing Li (JIRA)
[ https://issues.apache.org/jira/browse/HIVE-3574?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bing Li updated HIVE-3574: -- Assignee: (was: Bing Li) > Allow Hive to Submit MapReduce jobs via the MapReduce API (instead of us

  1   2   >