|
Eva Tse
2009-09-09, 05:18
He Yongqiang
2009-09-09, 05:31
He Yongqiang
2009-09-09, 11:07
Prasad Chakka
2009-09-09, 16:55
Eva Tse
2009-09-09, 17:19
Prasad Chakka
2009-09-09, 17:29
Cliff Resnick
2009-09-09, 19:12
Eva Tse
2009-09-09, 19:36
Prasad Chakka
2009-09-09, 19:52
Eva Tse
2009-09-09, 21:32
Prasad Chakka
2009-09-09, 21:49
Eva Tse
2009-09-10, 05:45
Edward Capriolo
2009-09-10, 16:11
Ashish Thusoo
2009-09-11, 09:39
Eva Tse
2009-09-12, 01:20
|
-
Files does not exist error: concurrency control on hive queries...Eva Tse 2009-09-09, 05:18
We are planning to start enabling ad-hoc querying on our hive warehouse and we tested some of the concurrent queries and found the following issue: Query 1 doing insert overwrite table yyy .... partition (dateint = xxx) select ... from yyy where dateint = xxx¹ This is done to merge small files within a partition in table yyy Query 2 doing some select on the same table joining another table. What we found is that query 2 would fail with the following exceptions in multiple reducers. java.io.FileNotFoundException: File does not exist: hdfs://ip-10-251-98-80.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_se ssion_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T 09-r-00006 at org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSy stem.java:457) at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) at org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader. java:43) at org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFil eInputFormat.java:63) at org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat .java:236) at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:336) at org.apache.hadoop.mapred.MapTask.run(MapTask.java:305) at org.apache.hadoop.mapred.Child.main(Child.java:170) Is this expected? If so, is there a jira or is it planned to be addressed? We are trying to think of workaround, but haven¹t thought of good ones as swapping of files would ideally be handled inside hive. Please let us know your feedback. Thanks, Eva.
-
Re: Files does not exist error: concurrency control on hive queries...He Yongqiang 2009-09-09, 05:31
Hi Eva,
Can you open a new jira for this? And let’s discuss and resolve this issue. I guess this is because the partition metadata is added before the data is available. Thanks Yongqiang On 09-9-9 下午1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: > > We are planning to start enabling ad-hoc querying on our hive warehouse and we > tested some of the concurrent queries and found the following issue: > > Query 1 – doing ‘insert overwrite table yyy .... partition (dateint = xxx) > select ... from yyy where dateint = xxx’ This is done to merge small files > within a partition in table yyy > Query 2 – doing some select on the same table joining another table. > > What we found is that query 2 would fail with the following exceptions in > multiple reducers. > java.io.FileNotFoundException: File does not exist: > hdfs://ip-10-251-98-80.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_sess > ion_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09-r > -00006 > at > org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSyst > em.java:457) > at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) > at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) > at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) > at > org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader.ja > va:43) > at > org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFileI > nputFormat.java:63) > at > org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat.j > ava:236) > at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:336) > at org.apache.hadoop.mapred.MapTask.run(MapTask.java:305) > at org.apache.hadoop.mapred.Child.main(Child.java:170) > > Is this expected? If so, is there a jira or is it planned to be addressed? We > are trying to think of workaround, but haven’t thought of good ones as > swapping of files would ideally be handled inside hive. > > Please let us know your feedback. > > Thanks, > Eva.
-
Re: Files does not exist error: concurrency control on hive queries...He Yongqiang 2009-09-09, 11:07
Hi Eva,
After a close at the code, I think this is not a bug. We need to find out how to avoid this. Thanks, Yongqiang On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: > Hi Eva, > Can you open a new jira for this? And let’s discuss and resolve this > issue. > I guess this is because the partition metadata is added before the data is > available. > > Thanks > Yongqiang > On 09-9-9 下午1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: > >> >> We are planning to start enabling ad-hoc querying on our hive warehouse and >> we tested some of the concurrent queries and found the following issue: >> >> Query 1 – doing ‘insert overwrite table yyy .... partition (dateint = xxx) >> select ... from yyy where dateint = xxx’ This is done to merge small files >> within a partition in table yyy >> Query 2 – doing some select on the same table joining another table. >> >> What we found is that query 2 would fail with the following exceptions in >> multiple reducers. >> java.io.FileNotFoundException: File does not exist: >> hdfs://ip-10-251-98-80.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_ses >> sion_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09 >> -r-00006 >> at >> org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSys >> tem.java:457) >> at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) >> at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) >> at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) >> at >> org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader.j >> ava:43) >> at >> org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFile >> InputFormat.java:63) >> at >> org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat. >> java:236) >> at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:336) >> at org.apache.hadoop.mapred.MapTask.run(MapTask.java:305) >> at org.apache.hadoop.mapred.Child.main(Child.java:170) >> >> Is this expected? If so, is there a jira or is it planned to be addressed? We >> are trying to think of workaround, but haven’t thought of good ones as >> swapping of files would ideally be handled inside hive. >> >> Please let us know your feedback. >> >> Thanks, >> Eva. >
-
Re: Files does not exist error: concurrency control on hive queries...Prasad Chakka 2009-09-09, 16:55
If a certain input file/dir does not exist then the job can’t be submitted. Since only a few reducers are failing, the problem could be something else.
Eva, Does the same job succeed on a second try? Ie. Is the file/dir available eventually? What is the replication factor? Prasad ________________________________ From: Yongqiang He <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 04:07:31 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Eva, After a close at the code, I think this is not a bug. We need to find out how to avoid this. Thanks, Yongqiang On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: Hi Eva, Can you open a new jira for this? And let’s discuss and resolve this issue. I guess this is because the partition metadata is added before the data is available. Thanks Yongqiang On 09-9-9 下午1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: We are planning to start enabling ad-hoc querying on our hive warehouse and we tested some of the concurrent queries and found the following issue: Query 1 – doing ‘insert overwrite table yyy .... partition (dateint = xxx) select ... from yyy where dateint = xxx’ This is done to merge small files within a partition in table yyy Query 2 – doing some select on the same table joining another table. What we found is that query 2 would fail with the following exceptions in multiple reducers. java.io.FileNotFoundException: File does not exist: hdfs://ip-10-251-98-80.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_session_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09-r-00006 at org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSystem.java:457) at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) at org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader.java:43) at org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFileInputFormat.java:63) at org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat.java:236) at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:336) at org.apache.hadoop.mapred.MapTask.run(MapTask.java:305) at org.apache.hadoop.mapred.Child.main(Child.java:170) Is this expected? If so, is there a jira or is it planned to be addressed? We are trying to think of workaround, but haven’t thought of good ones as swapping of files would ideally be handled inside hive. Please let us know your feedback. Thanks, Eva.
-
Re: Files does not exist error: concurrency control on hive queries...Eva Tse 2009-09-09, 17:19
Prasad, We believe the problem is that one of the query is doing an ‘insert overwrite ... select from’ which actually is deleting and merging the small files. The other query somehow couldn’t find those files that it thought it has seen before and failed. So, it looks like a concurrency issue. Yongqiang, Could you elaborate a bit on why you say this is not a bug? Thanks, Eva. On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > If a certain input file/dir does not exist then the job can’t be submitted. > Since only a few reducers are failing, the problem could be something else. > Eva, Does the same job succeed on a second try? Ie. Is the file/dir available > eventually? What is the replication factor? > > Prasad > > > > From: Yongqiang He <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 04:07:31 -0700 > To: <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > Hi Eva, > After a close at the code, I think this is not a bug. We need to find out > how to avoid this. > > Thanks, > Yongqiang > On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: > >> Hi Eva, >> Can you open a new jira for this? And let’s discuss and resolve this >> issue. >> I guess this is because the partition metadata is added before the data is >> available. >> >> Thanks >> Yongqiang >> On 09-9-9 下午1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: >> >>> >>> We are planning to start enabling ad-hoc querying on our hive warehouse and >>> we tested some of the concurrent queries and found the following issue: >>> >>> Query 1 – doing ‘insert overwrite table yyy .... partition (dateint = xxx) >>> select ... from yyy where dateint = xxx’ This is done to merge small files >>> within a partition in table yyy >>> Query 2 – doing some select on the same table joining another table. >>> >>> What we found is that query 2 would fail with the following exceptions in >>> multiple reducers. >>> java.io.FileNotFoundException: File does not exist: >>> hdfs://xxxxxxxxxxxxx.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_sess >>> ion_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09 >>> -r-00006 >>> at >>> org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSy >>> stem.java:457) >>> at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) >>> at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) >>> at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) >>> at >>> org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader. >>> java:43) >>> at >>> org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFil >>> eInputFormat.java:63) >>> at >>> org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat >>> .java:236) >>> at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:336) >>> at org.apache.hadoop.mapred.MapTask.run(MapTask.java:305) >>> at org.apache.hadoop.mapred.Child.main(Child.java:170) >>> >>> Is this expected? If so, is there a jira or is it planned to be addressed? >>> We are trying to think of workaround, but haven’t thought of good ones as >>> swapping of files would ideally be handled inside hive. >>> >>> Please let us know your feedback. >>> >>> Thanks, >>> Eva. >> > >
-
Re: Files does not exist error: concurrency control on hive queries...Prasad Chakka 2009-09-09, 17:29
The first query will not return unless it copied the files to the dest directory and this operation is atomic (FileSystem.rename() guarantees that). Since second query is not executed until the first query returns, this problem may be due to a bug in HDFS (highly unlikely) or an issue with HDFS configuration or related to EC3.
The second query knows the file name ‘sessionsFacts_P20090909T021823L20090908T09-r-00006’ so Hive client does was able to successfully call getFileStatus() on it but the mapper (of second query) is not able to do the same thing. So either this file has been deleted after the Hive client accessed it but before the mapper access it or the machine on which the mapper is being executed can’t see this file. Can you manually check whether the file exists at all after the job fails? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 10:19:24 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Prasad, We believe the problem is that one of the query is doing an ‘insert overwrite ... select from’ which actually is deleting and merging the small files. The other query somehow couldn’t find those files that it thought it has seen before and failed. So, it looks like a concurrency issue. Yongqiang, Could you elaborate a bit on why you say this is not a bug? Thanks, Eva. On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: If a certain input file/dir does not exist then the job can’t be submitted. Since only a few reducers are failing, the problem could be something else. Eva, Does the same job succeed on a second try? Ie. Is the file/dir available eventually? What is the replication factor? Prasad ________________________________ From: Yongqiang He <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 04:07:31 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Eva, After a close at the code, I think this is not a bug. We need to find out how to avoid this. Thanks, Yongqiang On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: Hi Eva, Can you open a new jira for this? And let’s discuss and resolve this issue. I guess this is because the partition metadata is added before the data is available. Thanks Yongqiang On 09-9-9 下午1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: We are planning to start enabling ad-hoc querying on our hive warehouse and we tested some of the concurrent queries and found the following issue: Query 1 – doing ‘insert overwrite table yyy .... partition (dateint = xxx) select ... from yyy where dateint = xxx’ This is done to merge small files within a partition in table yyy Query 2 – doing some select on the same table joining another table. What we found is that query 2 would fail with the following exceptions in multiple reducers. java.io.FileNotFoundException: File does not exist: hdfs://xxxxxxxxxxxxx.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_session_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09-r-00006 at org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSystem.java:457) at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) at org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader.java:43) at org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFileInputFormat.java:63) at org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat.java:236) at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:336) at org.apache.hadoop.mapred.MapTask.run(MapTask.java:305) at org.apache.hadoop.mapred.Child.main(Child.java:170) Is this expected? If so, is there a jira or is it planned to be addressed? We are trying to think of workaround, but haven’t thought of good ones as swapping of files would ideally be handled inside hive. Please let us know your feedback. Thanks, Eva.
-
Re: Files does not exist error: concurrency control on hive queries...Cliff Resnick 2009-09-09, 19:12
We found this error had to do with the Hive Query plan getting stepped
on because of some shared state in org.apache.hadoop.hive.ql.exec.Utilities. I attached a patch that fixed this for us to HIVE-80. -Cliff On 09/09/2009 01:29 PM, Prasad Chakka wrote: > The first query will not return unless it copied the files to the dest > directory and this operation is atomic (FileSystem.rename() guarantees > that). Since second query is not executed until the first query > returns, this problem may be due to a bug in HDFS (highly unlikely) or > an issue with HDFS configuration or related to EC3. > > The second query knows the file name > 嚙踝蕭sessionsFacts_P20090909T021823L20090908T09-r-00006嚙踝蕭 so Hive client > does was able to successfully call getFileStatus() on it but the > mapper (of second query) is not able to do the same thing. So either > this file has been deleted after the Hive client accessed it but > before the mapper access it or the machine on which the mapper is > being executed can嚙踝蕭t see this file. Can you manually check whether the > file exists at all after the job fails? > > Prasad > > > ------------------------------------------------------------------------ > *From: *Eva Tse <[EMAIL PROTECTED]> > *Reply-To: *<[EMAIL PROTECTED]> > *Date: *Wed, 9 Sep 2009 10:19:24 -0700 > *To: *<[EMAIL PROTECTED]> > *Subject: *Re: Files does not exist error: concurrency control on hive > queries... > > > Prasad, > We believe the problem is that one of the query is doing an 嚙踝蕭insert > overwrite ... select from嚙踝蕭 which actually is deleting and merging the > small files. The other query somehow couldn嚙踝蕭t find those files that it > thought it has seen before and failed. So, it looks like a concurrency > issue. > > Yongqiang, > Could you elaborate a bit on why you say this is not a bug? > > Thanks, > Eva. > > > On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > > If a certain input file/dir does not exist then the job can嚙踝蕭t be > submitted. Since only a few reducers are failing, the problem > could be something else. > Eva, Does the same job succeed on a second try? Ie. Is the > file/dir available eventually? What is the replication factor? > > Prasad > > > ------------------------------------------------------------------------ > *From: *Yongqiang He <[EMAIL PROTECTED]> > *Reply-To: *<[EMAIL PROTECTED]> > *Date: *Wed, 9 Sep 2009 04:07:31 -0700 > *To: *<[EMAIL PROTECTED]> > *Subject: *Re: Files does not exist error: concurrency control on > hive queries... > > Hi Eva, > After a close at the code, I think this is not a bug. We need to > find out how to avoid this. > > Thanks, > Yongqiang > On 09-9-9 嚙磊嚙踝蕭1:31, "He Yongqiang" > <[EMAIL PROTECTED]> wrote: > > Hi Eva, > Can you open a new jira for this? And let嚙踝蕭s discuss and > resolve this issue. > I guess this is because the partition metadata is added before > the data is available. > > Thanks > Yongqiang > On 09-9-9 嚙磊嚙踝蕭1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: > > > We are planning to start enabling ad-hoc querying on our > hive warehouse and we tested some of the concurrent > queries and found the following issue: > > Query 1 嚙碾 doing 嚙踝蕭insert overwrite table yyy .... partition > (dateint = xxx) select ... from yyy where dateint = xxx嚙踝蕭 > This is done to merge small files within a partition in > table yyy > Query 2 嚙碾 doing some select on the same table joining > another table. > > What we found is that query 2 would fail with the > following exceptions in multiple reducers. > java.io.FileNotFoundException: File does not exist: > hdfs://xxxxxxxxxxxxx.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_session_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09-r-00006
-
Re: Files does not exist error: concurrency control on hive queries...Eva Tse 2009-09-09, 19:36
Hi Prasad,
Are you implying the expected behavior for these queries should be run sequentially by hive because one is r/w and one is read-only ? For clarifications, these two queries are running concurrently in two separate jobs as below. > Query 1 is run within a job that does the following essentially: > For every hour: > - parse log files to generate completed sessions information > - load completed sessions into 48 partitions (for the prior 48 hours) > - merge small files using ‘insert overwrite ... select from’ on every other > 8 partitions. Essentially, we would issue 6 separate queries to merge 6 > partitions at the same time, not sequentially. (We do this to minimize time > required.) And this is query 1. > > Query 2 is run within another job that does select on 24 partitions (aka daily > summary) for the previous day. This job just run this query in a loop for > testing purposes. The error comes from query 2 saying ‘file not found’ for a file that we are merging in query 1 at that point in time. We need to rerun the test to be able to catch the failure at that time to see if the file was there at that instance. In the previous run, the merge query succeeded, so I would imagine the file not there after the merge. And, am not sure if that file was still there at that instance when the failure happens. Thanks for the help! Eva. On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > The first query will not return unless it copied the files to the dest > directory and this operation is atomic (FileSystem.rename() guarantees that). > Since second query is not executed until the first query returns, this problem > may be due to a bug in HDFS (highly unlikely) or an issue with HDFS > configuration or related to EC3. > > The second query knows the file name > ‘sessionsFacts_P20090909T021823L20090908T09-r-00006’ so Hive client does was > able to successfully call getFileStatus() on it but the mapper (of second > query) is not able to do the same thing. So either this file has been deleted > after the Hive client accessed it but before the mapper access it or the > machine on which the mapper is being executed can’t see this file. Can you > manually check whether the file exists at all after the job fails? > > Prasad > > > > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 10:19:24 -0700 > To: <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > > Prasad, > We believe the problem is that one of the query is doing an ‘insert overwrite > ... select from’ which actually is deleting and merging the small files. The > other query somehow couldn’t find those files that it thought it has seen > before and failed. So, it looks like a concurrency issue. > > Yongqiang, > Could you elaborate a bit on why you say this is not a bug? > > Thanks, > Eva. > > > On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > >> If a certain input file/dir does not exist then the job can’t be submitted. >> Since only a few reducers are failing, the problem could be something else. >> Eva, Does the same job succeed on a second try? Ie. Is the file/dir available >> eventually? What is the replication factor? >> >> Prasad >> >> >> >> From: Yongqiang He <[EMAIL PROTECTED]> >> Reply-To: <[EMAIL PROTECTED]> >> Date: Wed, 9 Sep 2009 04:07:31 -0700 >> To: <[EMAIL PROTECTED]> >> Subject: Re: Files does not exist error: concurrency control on hive >> queries... >> >> Hi Eva, >> After a close at the code, I think this is not a bug. We need to find out >> how to avoid this. >> >> Thanks, >> Yongqiang >> On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: >> >>> Hi Eva, >>> Can you open a new jira for this? And let’s discuss and resolve this >>> issue. >>> I guess this is because the partition metadata is added before the data is
-
Re: Files does not exist error: concurrency control on hive queries...Prasad Chakka 2009-09-09, 19:52
I thought your script runs the two job sequentially. If these two queries are run in parallel then the error can be expected since Hive doesn’t try to acquire locks before reading or writing. I don’t think there are any plans to support this kind of locking (this can only be done if all queries go through HiveServer otherwise lot of orphaned locks will bring the system to halt). I think you should do some kind of locking (possibly with HDFS files) to prevent queries being executed simultaneously.
Any other ideas? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 12:36:11 -0700 To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Prasad, Are you implying the expected behavior for these queries should be run sequentially by hive because one is r/w and one is read-only ? For clarifications, these two queries are running concurrently in two separate jobs as below. Query 1 is run within a job that does the following essentially: For every hour: - parse log files to generate completed sessions information - load completed sessions into 48 partitions (for the prior 48 hours) - merge small files using ‘insert overwrite ... select from’ on every other 8 partitions. Essentially, we would issue 6 separate queries to merge 6 partitions at the same time, not sequentially. (We do this to minimize time required.) And this is query 1. Query 2 is run within another job that does select on 24 partitions (aka daily summary) for the previous day. This job just run this query in a loop for testing purposes. The error comes from query 2 saying ‘file not found’ for a file that we are merging in query 1 at that point in time. We need to rerun the test to be able to catch the failure at that time to see if the file was there at that instance. In the previous run, the merge query succeeded, so I would imagine the file not there after the merge. And, am not sure if that file was still there at that instance when the failure happens. Thanks for the help! Eva. On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: The first query will not return unless it copied the files to the dest directory and this operation is atomic (FileSystem.rename() guarantees that). Since second query is not executed until the first query returns, this problem may be due to a bug in HDFS (highly unlikely) or an issue with HDFS configuration or related to EC3. The second query knows the file name ‘sessionsFacts_P20090909T021823L20090908T09-r-00006’ so Hive client does was able to successfully call getFileStatus() on it but the mapper (of second query) is not able to do the same thing. So either this file has been deleted after the Hive client accessed it but before the mapper access it or the machine on which the mapper is being executed can’t see this file. Can you manually check whether the file exists at all after the job fails? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 10:19:24 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Prasad, We believe the problem is that one of the query is doing an ‘insert overwrite ... select from’ which actually is deleting and merging the small files. The other query somehow couldn’t find those files that it thought it has seen before and failed. So, it looks like a concurrency issue. Yongqiang, Could you elaborate a bit on why you say this is not a bug? Thanks, Eva. On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: If a certain input file/dir does not exist then the job can’t be submitted. Since only a few reducers are failing, the problem could be something else. Eva, Does the same job succeed on a second try? Ie. Is the file/dir available eventually? What is the replication factor? Prasad ________________________________ From: Yongqiang He <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 04:07:31 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Eva, After a close at the code, I think this is not a bug. We need to find out how to avoid this. Thanks, Yongqiang On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: Hi Eva, Can you open a new jira for this? And let’s discuss and resolve this issue. I guess this is because the partition metadata is added before the data is available. Thanks Yongqiang On 09-9-9 下午1:18, "Eva Tse" <[EMAIL PROTECTED]> wrote: We are planning to start enabling ad-hoc querying on our hive warehouse and we tested some of the concurrent queries and found the following issue: Query 1 – doing ‘insert overwrite table yyy .... partition (dateint = xxx) select ... from yyy where dateint = xxx’ This is done to merge small files within a partition in table yyy Query 2 – doing some select on the same table joining another table. What we found is that query 2 would fail with the following exceptions in multiple reducers. java.io.FileNotFoundException: File does not exist: hdfs://xxxxxxxxxxxxx.ec2.internal:9000/user/hive/dataeng/warehouse/nccp_session_facts/dateint=20090908/hour=9/sessionsFacts_P20090909T021823L20090908T09-r-00006 at org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSystem.java:457) at org.apache.hadoop.fs.FileSystem.getLength(FileSystem.java:671) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1417) at org.apache.hadoop.io.SequenceFile$Reader.(SequenceFile.java:1412) at org.apache.hadoop.mapred.SequenceFileRecordReader.(SequenceFileRecordReader.java:43) at org.apache.hadoop.mapred.SequenceFileInputFormat.getRecordReader(SequenceFileInputFormat.java:63) at org.apache.had
-
Re: Files does not exist error: concurrency control on hive queries...Eva Tse 2009-09-09, 21:32
Regardless of whether the user uses a HiveServer, looks like the logical place to do locking or concurrency control would be at the metastore DB. This is actually one big advantage of Hive. The r/w lock or access control can be achieved by a DB row with lock count for each partition, etc. This might be over-simplfying it, but the metastore DB seems to be the ideal candidate. Thoughts? On 9/9/09 12:52 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > I thought your script runs the two job sequentially. If these two queries are > run in parallel then the error can be expected since Hive doesn’t try to > acquire locks before reading or writing. I don’t think there are any plans to > support this kind of locking (this can only be done if all queries go through > HiveServer otherwise lot of orphaned locks will bring the system to halt). I > think you should do some kind of locking (possibly with HDFS files) to prevent > queries being executed simultaneously. > > Any other ideas? > > Prasad > > > > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 12:36:11 -0700 > To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > Hi Prasad, > > Are you implying the expected behavior for these queries should be run > sequentially by hive because one is r/w and one is read-only ? > > For clarifications, these two queries are running concurrently in two separate > jobs as below. > >> Query 1 is run within a job that does the following essentially: >> For every hour: >> - parse log files to generate completed sessions information >> - load completed sessions into 48 partitions (for the prior 48 hours) >> - merge small files using ‘insert overwrite ... select from’ on every >> other 8 partitions. Essentially, we would issue 6 separate queries to merge 6 >> partitions at the same time, not sequentially. (We do this to minimize time >> required.) And this is query 1. >> >> Query 2 is run within another job that does select on 24 partitions (aka >> daily summary) for the previous day. This job just run this query in a loop >> for testing purposes. > > The error comes from query 2 saying ‘file not found’ for a file that we are > merging in query 1 at that point in time. > > We need to rerun the test to be able to catch the failure at that time to see > if the file was there at that instance. In the previous run, the merge query > succeeded, so I would imagine the file not there after the merge. And, am not > sure if that file was still there at that instance when the failure happens. > > Thanks for the help! > Eva. > > On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > >> The first query will not return unless it copied the files to the dest >> directory and this operation is atomic (FileSystem.rename() guarantees that). >> Since second query is not executed until the first query returns, this >> problem may be due to a bug in HDFS (highly unlikely) or an issue with HDFS >> configuration or related to EC3. >> >> The second query knows the file name >> ‘sessionsFacts_P20090909T021823L20090908T09-r-00006’ so Hive client does was >> able to successfully call getFileStatus() on it but the mapper (of second >> query) is not able to do the same thing. So either this file has been deleted >> after the Hive client accessed it but before the mapper access it or the >> machine on which the mapper is being executed can’t see this file. Can you >> manually check whether the file exists at all after the job fails? >> >> Prasad >> >> >> >> From: Eva Tse <[EMAIL PROTECTED]> >> Reply-To: <[EMAIL PROTECTED]> >> Date: Wed, 9 Sep 2009 10:19:24 -0700 >> To: <[EMAIL PROTECTED]> >> Subject: Re: Files does not exist error: concurrency control on hive >> queries... >> >> >> Prasad, >> We believe the problem is that one of the query is doing an ‘insert overwrite
-
Re: Files does not exist error: concurrency control on hive queries...Prasad Chakka 2009-09-09, 21:49
Yeah, metastore db is logical place to do locking but there have to be periodic cleanups (when clients die without releasing locks) etc which is hacky so less preferrable. Another option is to point a ZooKeeper cluster to Hive and ask Hive to use it for locking. So those who are not concerned about concurrency control, don’t have to install ZooKeeper but other can. ZooKeeper provides leases so there won’t be any problem of hanging locks and it will be easier for admins to clean it up.
I suppose it depends on whoever wants to take this task up :) Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 14:32:20 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Regardless of whether the user uses a HiveServer, looks like the logical place to do locking or concurrency control would be at the metastore DB. This is actually one big advantage of Hive. The r/w lock or access control can be achieved by a DB row with lock count for each partition, etc. This might be over-simplfying it, but the metastore DB seems to be the ideal candidate. Thoughts? On 9/9/09 12:52 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: I thought your script runs the two job sequentially. If these two queries are run in parallel then the error can be expected since Hive doesn’t try to acquire locks before reading or writing. I don’t think there are any plans to support this kind of locking (this can only be done if all queries go through HiveServer otherwise lot of orphaned locks will bring the system to halt). I think you should do some kind of locking (possibly with HDFS files) to prevent queries being executed simultaneously. Any other ideas? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 12:36:11 -0700 To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Prasad, Are you implying the expected behavior for these queries should be run sequentially by hive because one is r/w and one is read-only ? For clarifications, these two queries are running concurrently in two separate jobs as below. Query 1 is run within a job that does the following essentially: For every hour: - parse log files to generate completed sessions information - load completed sessions into 48 partitions (for the prior 48 hours) - merge small files using ‘insert overwrite ... select from’ on every other 8 partitions. Essentially, we would issue 6 separate queries to merge 6 partitions at the same time, not sequentially. (We do this to minimize time required.) And this is query 1. Query 2 is run within another job that does select on 24 partitions (aka daily summary) for the previous day. This job just run this query in a loop for testing purposes. The error comes from query 2 saying ‘file not found’ for a file that we are merging in query 1 at that point in time. We need to rerun the test to be able to catch the failure at that time to see if the file was there at that instance. In the previous run, the merge query succeeded, so I would imagine the file not there after the merge. And, am not sure if that file was still there at that instance when the failure happens. Thanks for the help! Eva. On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: The first query will not return unless it copied the files to the dest directory and this operation is atomic (FileSystem.rename() guarantees that). Since second query is not executed until the first query returns, this problem may be due to a bug in HDFS (highly unlikely) or an issue with HDFS configuration or related to EC3. The second query knows the file name ‘sessionsFacts_P20090909T021823L20090908T09-r-00006’ so Hive client does was able to successfully call getFileStatus() on it but the mapper (of second query) is not able to do the same thing. So either this file has been deleted after the Hive client accessed it but before the mapper access it or the machine on which the mapper is being executed can’t see this file. Can you manually check whether the file exists at all after the job fails? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 10:19:24 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Prasad, We believe the problem is that one of the query is doing an ‘insert overwrite ... select from’ which actually is deleting and merging the small files. The other query somehow couldn’t find those files that it thought it has seen before and failed. So, it looks like a concurrency issue. Yongqiang, Could you elaborate a bit on why you say this is not a bug? Thanks, Eva. On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: If a certain input file/dir does not exist then the job can’t be submitted. Since only a few reducers are failing, the problem could be something else. Eva, Does the same job succeed on a second try? Ie. Is the file/dir available eventually? What is the replication factor? Prasad ________________________________ From: Yongqiang He <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 04:07:31 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Eva, After a close at the code, I think this is not a bug. We need to find out how to avoid this. Thanks, Yongqiang On 09-9-9 下午1:31, "He Yongqiang" <[EMAIL PROTECTED]> wrote: Hi Eva, Can you open a new jira for this? And let’s discuss and resolve this issue. I guess this is because the partition metadata is added before the data is available. Thanks Yongqi
-
Re: Files does not exist error: concurrency control on hive queries...Eva Tse 2009-09-10, 05:45
Zookeeper sounds like a decent alternative, though it would add a new
dependency for deployment. Maybe we could open a jira for it first to track this issue? Thanks, Eva. On 9/9/09 2:49 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > Yeah, metastore db is logical place to do locking but there have to be > periodic cleanups (when clients die without releasing locks) etc which is > hacky so less preferrable. Another option is to point a ZooKeeper cluster to > Hive and ask Hive to use it for locking. So those who are not concerned about > concurrency control, don’t have to install ZooKeeper but other can. ZooKeeper > provides leases so there won’t be any problem of hanging locks and it will be > easier for admins to clean it up. > > I suppose it depends on whoever wants to take this task up :) > > Prasad > > > > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 14:32:20 -0700 > To: <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > > Regardless of whether the user uses a HiveServer, looks like the logical place > to do locking or concurrency control would be at the metastore DB. This is > actually one big advantage of Hive. The r/w lock or access control can be > achieved by a DB row with lock count for each partition, etc. This might be > over-simplfying it, but the metastore DB seems to be the ideal candidate. > Thoughts? > > > On 9/9/09 12:52 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > >> I thought your script runs the two job sequentially. If these two queries are >> run in parallel then the error can be expected since Hive doesn’t try to >> acquire locks before reading or writing. I don’t think there are any plans to >> support this kind of locking (this can only be done if all queries go through >> HiveServer otherwise lot of orphaned locks will bring the system to halt). I >> think you should do some kind of locking (possibly with HDFS files) to >> prevent queries being executed simultaneously. >> >> Any other ideas? >> >> Prasad >> >> >> >> From: Eva Tse <[EMAIL PROTECTED]> >> Reply-To: <[EMAIL PROTECTED]> >> Date: Wed, 9 Sep 2009 12:36:11 -0700 >> To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> >> Subject: Re: Files does not exist error: concurrency control on hive >> queries... >> >> Hi Prasad, >> >> Are you implying the expected behavior for these queries should be run >> sequentially by hive because one is r/w and one is read-only ? >> >> For clarifications, these two queries are running concurrently in two >> separate jobs as below. >> >>> Query 1 is run within a job that does the following essentially: >>> For every hour: >>> - parse log files to generate completed sessions information >>> - load completed sessions into 48 partitions (for the prior 48 hours) >>> - merge small files using ‘insert overwrite ... select from’ on every >>> other 8 partitions. Essentially, we would issue 6 separate queries to merge >>> 6 partitions at the same time, not sequentially. (We do this to minimize >>> time required.) And this is query 1. >>> >>> Query 2 is run within another job that does select on 24 partitions (aka >>> daily summary) for the previous day. This job just run this query in a loop >>> for testing purposes. >> >> The error comes from query 2 saying ‘file not found’ for a file that we are >> merging in query 1 at that point in time. >> >> We need to rerun the test to be able to catch the failure at that time to see >> if the file was there at that instance. In the previous run, the merge query >> succeeded, so I would imagine the file not there after the merge. And, am not >> sure if that file was still there at that instance when the failure happens. >> >> Thanks for the help! >> Eva. >> >> On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: >> >>> The first query will not return unless it copied the files to the dest
-
Re: Files does not exist error: concurrency control on hive queries...Edward Capriolo 2009-09-10, 16:11
2009/9/10 Eva Tse <[EMAIL PROTECTED]>:
> Zookeeper sounds like a decent alternative, though it would add a new > dependency for deployment. > Maybe we could open a jira for it first to track this issue? > Thanks, > Eva. > > > On 9/9/09 2:49 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > > Yeah, metastore db is logical place to do locking but there have to be > periodic cleanups (when clients die without releasing locks) etc which is > hacky so less preferrable. Another option is to point a ZooKeeper cluster to > Hive and ask Hive to use it for locking. So those who are not concerned > about concurrency control, don’t have to install ZooKeeper but other can. > ZooKeeper provides leases so there won’t be any problem of hanging locks and > it will be easier for admins to clean it up. > > I suppose it depends on whoever wants to take this task up :) > > Prasad > > > ________________________________ > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 14:32:20 -0700 > To: <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > > Regardless of whether the user uses a HiveServer, looks like the logical > place to do locking or concurrency control would be at the metastore DB. > This is actually one big advantage of Hive. The r/w lock or access control > can be achieved by a DB row with lock count for each partition, etc. This > might be over-simplfying it, but the metastore DB seems to be the ideal > candidate. Thoughts? > > > On 9/9/09 12:52 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > > I thought your script runs the two job sequentially. If these two queries > are run in parallel then the error can be expected since Hive doesn��t try to > acquire locks before reading or writing. I don’t think there are any plans > to support this kind of locking (this can only be done if all queries go > through HiveServer otherwise lot of orphaned locks will bring the system to > halt). I think you should do some kind of locking (possibly with HDFS files) > to prevent queries being executed simultaneously. > > Any other ideas? > > Prasad > > > ________________________________ > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 12:36:11 -0700 > To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > Hi Prasad, > > Are you implying the expected behavior for these queries should be run > sequentially by hive because one is r/w and one is read-only ? > > For clarifications, these two queries are running concurrently in two > separate jobs as below. > > Query 1 is run within a job that does the following essentially: > For every hour: > - parse log files to generate completed sessions information > - load completed sessions into 48 partitions (for the prior 48 hours) > - merge small files using ‘insert overwrite ... select from’ on every > other 8 partitions. Essentially, we would issue 6 separate queries to merge > 6 partitions at the same time, not sequentially. (We do this to minimize > time required.) And this is query 1. > > Query 2 is run within another job that does select on 24 partitions (aka > daily summary) for the previous day. This job just run this query in a loop > for testing purposes. > > The error comes from query 2 saying ‘file not found’ for a file that we are > merging in query 1 at that point in time. > > We need to rerun the test to be able to catch the failure at that time to > see if the file was there at that instance. In the previous run, the merge > query succeeded, so I would imagine the file not there after the merge. And, > am not sure if that file was still there at that instance when the failure > happens. > > Thanks for the help! > Eva. > > On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > > The first query will not return unless it copied the files to the dest As we all know Hadoop is designed to be mostly lock free for increased parallel-ism. Hive follows suit and does not directly deal with locking. What I think we are looking for here is a solution to write lock a table/partition. Even though it COULD be a hive level task, it seems like the solution we are going for is 'make it someone other software's problem' with a zookeeper 'Hive Lock Manager' or write so flag files in HDFS and make your own 'Hive Lock Manager'. I think this is also related to the couple times we have discussed some 'hive orchestration'. Locking, sequencing queries, all this stuff somewhat goes together and is somewhat outside of Hive's (current) scope. However while it is outside of Hive's scope it is very critical to how people use hive. So we should cook up some type of best practices / 'pet shop logs' application.
-
RE: Files does not exist error: concurrency control on hive queries...Ashish Thusoo 2009-09-11, 09:39
Another option is to deal with this using versioning. Some ideas on this are at
https://issues.apache.org/jira/browse/HIVE-718 Ashish ________________________________________ From: Eva Tse [[EMAIL PROTECTED]] Sent: Wednesday, September 09, 2009 10:45 PM To: [EMAIL PROTECTED] Subject: Re: Files does not exist error: concurrency control on hive queries... Zookeeper sounds like a decent alternative, though it would add a new dependency for deployment. Maybe we could open a jira for it first to track this issue? Thanks, Eva. On 9/9/09 2:49 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: Yeah, metastore db is logical place to do locking but there have to be periodic cleanups (when clients die without releasing locks) etc which is hacky so less preferrable. Another option is to point a ZooKeeper cluster to Hive and ask Hive to use it for locking. So those who are not concerned about concurrency control, don’t have to install ZooKeeper but other can. ZooKeeper provides leases so there won’t be any problem of hanging locks and it will be easier for admins to clean it up. I suppose it depends on whoever wants to take this task up :) Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 14:32:20 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Regardless of whether the user uses a HiveServer, looks like the logical place to do locking or concurrency control would be at the metastore DB. This is actually one big advantage of Hive. The r/w lock or access control can be achieved by a DB row with lock count for each partition, etc. This might be over-simplfying it, but the metastore DB seems to be the ideal candidate. Thoughts? On 9/9/09 12:52 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: I thought your script runs the two job sequentially. If these two queries are run in parallel then the error can be expected since Hive doesn’t try to acquire locks before reading or writing. I don’t think there are any plans to support this kind of locking (this can only be done if all queries go through HiveServer otherwise lot of orphaned locks will bring the system to halt). I think you should do some kind of locking (possibly with HDFS files) to prevent queries being executed simultaneously. Any other ideas? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 12:36:11 -0700 To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Hi Prasad, Are you implying the expected behavior for these queries should be run sequentially by hive because one is r/w and one is read-only ? For clarifications, these two queries are running concurrently in two separate jobs as below. Query 1 is run within a job that does the following essentially: For every hour: - parse log files to generate completed sessions information - load completed sessions into 48 partitions (for the prior 48 hours) - merge small files using ‘insert overwrite ... select from’ on every other 8 partitions. Essentially, we would issue 6 separate queries to merge 6 partitions at the same time, not sequentially. (We do this to minimize time required.) And this is query 1. Query 2 is run within another job that does select on 24 partitions (aka daily summary) for the previous day. This job just run this query in a loop for testing purposes. The error comes from query 2 saying ‘file not found’ for a file that we are merging in query 1 at that point in time. We need to rerun the test to be able to catch the failure at that time to see if the file was there at that instance. In the previous run, the merge query succeeded, so I would imagine the file not there after the merge. And, am not sure if that file was still there at that instance when the failure happens. Thanks for the help! Eva. On 9/9/09 10:29 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: The first query will not return unless it copied the files to the dest directory and this operation is atomic (FileSystem.rename() guarantees that). Since second query is not executed until the first query returns, this problem may be due to a bug in HDFS (highly unlikely) or an issue with HDFS configuration or related to EC3. The second query knows the file name ‘sessionsFacts_P20090909T021823L20090908T09-r-00006’ so Hive client does was able to successfully call getFileStatus() on it but the mapper (of second query) is not able to do the same thing. So either this file has been deleted after the Hive client accessed it but before the mapper access it or the machine on which the mapper is being executed can’t see this file. Can you manually check whether the file exists at all after the job fails? Prasad ________________________________ From: Eva Tse <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Wed, 9 Sep 2009 10:19:24 -0700 To: <[EMAIL PROTECTED]> Subject: Re: Files does not exist error: concurrency control on hive queries... Prasad, We believe the problem is that one of the query is doing an ‘insert overwrite ... select from’ which actually is deleting and merging the small files. The other query somehow couldn’t find those files that it thought it has seen before and failed. So, it looks like a concurrency issue. Yongqiang, Could you elaborate a bit on why you say this is not a bug? Thanks, Eva. On 9/9/09 9:55 AM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: If a certain input file/dir does not exist then the job can’t be submitted. Since only a few reducers are failing, the problem could be something else. Eva, Does the same job succeed on a second try? Ie. Is the file/dir available eventually? What is the replication factor? Prasad ________________________________ From: Yongqiang He <hey
-
Re: Files does not exist error: concurrency control on hive queries...Eva Tse 2009-09-12, 01:20
Doing versioning would work for this scenario. It essentially achieves the
same thing. On 9/11/09 2:39 AM, "Ashish Thusoo" <[EMAIL PROTECTED]> wrote: > Another option is to deal with this using versioning. Some ideas on this are > at > > https://issues.apache.org/jira/browse/HIVE-718 > > Ashish > ________________________________________ > From: Eva Tse [[EMAIL PROTECTED]] > Sent: Wednesday, September 09, 2009 10:45 PM > To: [EMAIL PROTECTED] > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > Zookeeper sounds like a decent alternative, though it would add a new > dependency for deployment. > Maybe we could open a jira for it first to track this issue? > Thanks, > Eva. > > > On 9/9/09 2:49 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > > Yeah, metastore db is logical place to do locking but there have to be > periodic cleanups (when clients die without releasing locks) etc which is > hacky so less preferrable. Another option is to point a ZooKeeper cluster to > Hive and ask Hive to use it for locking. So those who are not concerned about > concurrency control, don’t have to install ZooKeeper but other can. ZooKeeper > provides leases so there won’t be any problem of hanging locks and it will be > easier for admins to clean it up. > > I suppose it depends on whoever wants to take this task up :) > > Prasad > > > ________________________________ > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 14:32:20 -0700 > To: <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > > Regardless of whether the user uses a HiveServer, looks like the logical place > to do locking or concurrency control would be at the metastore DB. This is > actually one big advantage of Hive. The r/w lock or access control can be > achieved by a DB row with lock count for each partition, etc. This might be > over-simplfying it, but the metastore DB seems to be the ideal candidate. > Thoughts? > > > On 9/9/09 12:52 PM, "Prasad Chakka" <[EMAIL PROTECTED]> wrote: > > I thought your script runs the two job sequentially. If these two queries are > run in parallel then the error can be expected since Hive doesn’t try to > acquire locks before reading or writing. I don’t think there are any plans to > support this kind of locking (this can only be done if all queries go through > HiveServer otherwise lot of orphaned locks will bring the system to halt). I > think you should do some kind of locking (possibly with HDFS files) to prevent > queries being executed simultaneously. > > Any other ideas? > > Prasad > > > ________________________________ > From: Eva Tse <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > Date: Wed, 9 Sep 2009 12:36:11 -0700 > To: <[EMAIL PROTECTED]>, Dhruba Borthakur <[EMAIL PROTECTED]> > Subject: Re: Files does not exist error: concurrency control on hive > queries... > > Hi Prasad, > > Are you implying the expected behavior for these queries should be run > sequentially by hive because one is r/w and one is read-only ? > > For clarifications, these two queries are running concurrently in two separate > jobs as below. > > Query 1 is run within a job that does the following essentially: > For every hour: > - parse log files to generate completed sessions information > - load completed sessions into 48 partitions (for the prior 48 hours) > - merge small files using ‘insert overwrite ... select from’ on every other > 8 partitions. Essentially, we would issue 6 separate queries to merge 6 > partitions at the same time, not sequentially. (We do this to minimize time > required.) And this is query 1. > > Query 2 is run within another job that does select on 24 partitions (aka daily > summary) for the previous day. This job just run this query in a loop for > testing purposes. > > The error comes from query 2 saying ‘file not found’ for a file that we are |