Hbase ImportTSV runs in parallel?

2015-03-05 Thread Siva
Hi All, I’m loading data to Hbase by using Hbase ImportTsv utility. When I kick off this process simultaneously for different tables in different sessions, both the process starts in parallel till it reaches the map reduce program. Once one of the process kicks off map reduce job for one table,

Re: Hbase ImportTSV runs in parallel?

2015-03-05 Thread Vladimir Rodionov
Search google "how to run jobs in parallel in Hadoop" Your mapreduce configuration allows you to run one job at a time. This usually happens when number of job's tasks exceeds capacity of a cluster. -Vlad On Thu, Mar 5, 2015 at 3:03 PM, Siva wrote: > Hi All, > > > > I’m loading data to Hbase

Re: Hbase ImportTSV runs in parallel?

2015-03-09 Thread Siva
Thanks Vlad for your input, I m working with our admin to resolve. Thanks, Siva. On Thu, Mar 5, 2015 at 3:57 PM, Vladimir Rodionov wrote: > Search google "how to run jobs in parallel in Hadoop" > > Your mapreduce configuration allows you to run one job at a time. This > usually happens > when