|
|
-
What is the difference between Rack-local map tasks and Data-local map tasks?
centerqi hu 2012-10-07, 13:56
hi all
When I run "hadoop job -status xxx",Output the following some list.
Rack-local map tasks=124 Data-local map tasks=6
What is the difference between Rack-local map tasks and Data-local map tasks? -- [EMAIL PROTECTED]|Sam
+
centerqi hu 2012-10-07, 13:56
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Michael Segel 2012-10-07, 14:45
Rack local means that while the data isn't local to the node running the task, it is still on the same rack. (Its meaningless unless you've set up rack awareness because all of the machines are on the default rack. )
Data local means that the task is running local to the machine that contains the actual data.
HTH
-Mike
On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote:
> > hi all > When I run "hadoop job -status xxx",Output the following some list. > > Rack-local map tasks=124 > Data-local map tasks=6 > What is the difference between Rack-local map tasks and Data-local map tasks? > > -- > [EMAIL PROTECTED]|Sam
+
Michael Segel 2012-10-07, 14:45
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
centerqi hu 2012-10-07, 15:28
Very good explanation, If there is a way to reduce Rack-local map tasks but can increase the Data-local map tasks , Whether to increase performance?
2012/10/7 Michael Segel <[EMAIL PROTECTED]>
> Rack local means that while the data isn't local to the node running the > task, it is still on the same rack. > (Its meaningless unless you've set up rack awareness because all of the > machines are on the default rack. ) > > Data local means that the task is running local to the machine that > contains the actual data. > > HTH > > -Mike > > On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: > > > hi all > > When I run "hadoop job -status xxx",Output the following some list. > > Rack-local map tasks=124 > Data-local map tasks=6 > > What is the difference between Rack-local map tasks and Data-local map > tasks? > -- > [EMAIL PROTECTED]|Sam > > > -- [EMAIL PROTECTED]|齐忠
+
centerqi hu 2012-10-07, 15:28
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Bertrand Dechoux 2012-10-07, 19:31
Basically, more replicas.
The second solution would be to use a 'smarter' scheduler. In theory, the jobtracker should be able to say "postpone this task until a data-local task can be created". But I don't think any stable and public available scheduler do that at the moment. This would allow you to have less traffic but the whole job might be slower due to the wait. It might be a good trade if you have multiple jobs running at the same time and if your hot data is uniformly distributed. But in practice this is of course not always the case and you also need to consider sla for the users so the whole is not trivial.
Regards
Bertrand
On Sun, Oct 7, 2012 at 5:28 PM, centerqi hu <[EMAIL PROTECTED]> wrote:
> Very good explanation, > If there is a way to reduce Rack-local map tasks > but can increase the Data-local map tasks , > Whether to increase performance? > > 2012/10/7 Michael Segel <[EMAIL PROTECTED]> > >> Rack local means that while the data isn't local to the node running the >> task, it is still on the same rack. >> (Its meaningless unless you've set up rack awareness because all of the >> machines are on the default rack. ) >> >> Data local means that the task is running local to the machine that >> contains the actual data. >> >> HTH >> >> -Mike >> >> On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: >> >> >> hi all >> >> When I run "hadoop job -status xxx",Output the following some list. >> >> Rack-local map tasks=124 >> Data-local map tasks=6 >> >> What is the difference between Rack-local map tasks and Data-local map >> tasks? >> -- >> [EMAIL PROTECTED]|Sam >> >> >> > > > -- > [EMAIL PROTECTED]|齐忠 >
-- Bertrand Dechoux
+
Bertrand Dechoux 2012-10-07, 19:31
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
paritosh ranjan 2012-10-07, 19:49
One thing to look for would be the block size and input split size. In case the input split size is greater than block size, then the task might pick blocks which are not on the same node. So, keeping the input split size less than or equal to block size might help.
HTH, Paritosh
On Mon, Oct 8, 2012 at 1:01 AM, Bertrand Dechoux <[EMAIL PROTECTED]> wrote:
> Basically, more replicas. > > The second solution would be to use a 'smarter' scheduler. In theory, the > jobtracker should be able to say "postpone this task until a data-local > task can be created". But I don't think any stable and public available > scheduler do that at the moment. This would allow you to have less traffic > but the whole job might be slower due to the wait. It might be a good trade > if you have multiple jobs running at the same time and if your hot data is > uniformly distributed. But in practice this is of course not always the > case and you also need to consider sla for the users so the whole is not > trivial. > > Regards > > Bertrand > > > On Sun, Oct 7, 2012 at 5:28 PM, centerqi hu <[EMAIL PROTECTED]> wrote: > >> Very good explanation, >> If there is a way to reduce Rack-local map tasks >> but can increase the Data-local map tasks , >> Whether to increase performance? >> >> 2012/10/7 Michael Segel <[EMAIL PROTECTED]> >> >>> Rack local means that while the data isn't local to the node running the >>> task, it is still on the same rack. >>> (Its meaningless unless you've set up rack awareness because all of the >>> machines are on the default rack. ) >>> >>> Data local means that the task is running local to the machine that >>> contains the actual data. >>> >>> HTH >>> >>> -Mike >>> >>> On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: >>> >>> >>> hi all >>> >>> When I run "hadoop job -status xxx",Output the following some list. >>> >>> Rack-local map tasks=124 >>> Data-local map tasks=6 >>> >>> What is the difference between Rack-local map tasks and Data-local map >>> tasks? >>> -- >>> [EMAIL PROTECTED]|Sam >>> >>> >>> >> >> >> -- >> [EMAIL PROTECTED]|齐忠 >> > > > > -- > Bertrand Dechoux >
+
paritosh ranjan 2012-10-07, 19:49
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Harsh J 2012-10-07, 22:46
Bertrand,
FairScheduler does support delay scheduling for locality via mapred.fairscheduler.locality.delay config prop. MR2's CapacityScheduler recently got similar support for better locality scheduling as well (see YARN-80). Is this not what you're talking of?
On Mon, Oct 8, 2012 at 1:01 AM, Bertrand Dechoux <[EMAIL PROTECTED]> wrote: > Basically, more replicas. > > The second solution would be to use a 'smarter' scheduler. In theory, the > jobtracker should be able to say "postpone this task until a data-local task > can be created". But I don't think any stable and public available scheduler > do that at the moment. This would allow you to have less traffic but the > whole job might be slower due to the wait. It might be a good trade if you > have multiple jobs running at the same time and if your hot data is > uniformly distributed. But in practice this is of course not always the case > and you also need to consider sla for the users so the whole is not trivial. > > Regards > > Bertrand > > > On Sun, Oct 7, 2012 at 5:28 PM, centerqi hu <[EMAIL PROTECTED]> wrote: >> >> Very good explanation, >> If there is a way to reduce Rack-local map tasks >> but can increase the Data-local map tasks , >> Whether to increase performance? >> >> 2012/10/7 Michael Segel <[EMAIL PROTECTED]> >>> >>> Rack local means that while the data isn't local to the node running the >>> task, it is still on the same rack. >>> (Its meaningless unless you've set up rack awareness because all of the >>> machines are on the default rack. ) >>> >>> Data local means that the task is running local to the machine that >>> contains the actual data. >>> >>> HTH >>> >>> -Mike >>> >>> On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: >>> >>> >>> hi all >>> >>> When I run "hadoop job -status xxx",Output the following some list. >>> >>> Rack-local map tasks=124 >>> Data-local map tasks=6 >>> >>> What is the difference between Rack-local map tasks and Data-local map >>> tasks? >>> >>> -- >>> [EMAIL PROTECTED]|Sam >>> >>> >> >> >> >> -- >> [EMAIL PROTECTED]|齐忠 > > > > > -- > Bertrand Dechoux
-- Harsh J
+
Harsh J 2012-10-07, 22:46
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Michael Segel 2012-10-08, 00:13
Ok,
So what would be the use case for this feature?
I mean when would locality take precedence over job time completion?
On Oct 7, 2012, at 5:46 PM, Harsh J <[EMAIL PROTECTED]> wrote:
> Bertrand, > > FairScheduler does support delay scheduling for locality via > mapred.fairscheduler.locality.delay config prop. MR2's > CapacityScheduler recently got similar support for better locality > scheduling as well (see YARN-80). Is this not what you're talking of? > > On Mon, Oct 8, 2012 at 1:01 AM, Bertrand Dechoux <[EMAIL PROTECTED]> wrote: >> Basically, more replicas. >> >> The second solution would be to use a 'smarter' scheduler. In theory, the >> jobtracker should be able to say "postpone this task until a data-local task >> can be created". But I don't think any stable and public available scheduler >> do that at the moment. This would allow you to have less traffic but the >> whole job might be slower due to the wait. It might be a good trade if you >> have multiple jobs running at the same time and if your hot data is >> uniformly distributed. But in practice this is of course not always the case >> and you also need to consider sla for the users so the whole is not trivial. >> >> Regards >> >> Bertrand >> >> >> On Sun, Oct 7, 2012 at 5:28 PM, centerqi hu <[EMAIL PROTECTED]> wrote: >>> >>> Very good explanation, >>> If there is a way to reduce Rack-local map tasks >>> but can increase the Data-local map tasks , >>> Whether to increase performance? >>> >>> 2012/10/7 Michael Segel <[EMAIL PROTECTED]> >>>> >>>> Rack local means that while the data isn't local to the node running the >>>> task, it is still on the same rack. >>>> (Its meaningless unless you've set up rack awareness because all of the >>>> machines are on the default rack. ) >>>> >>>> Data local means that the task is running local to the machine that >>>> contains the actual data. >>>> >>>> HTH >>>> >>>> -Mike >>>> >>>> On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: >>>> >>>> >>>> hi all >>>> >>>> When I run "hadoop job -status xxx",Output the following some list. >>>> >>>> Rack-local map tasks=124 >>>> Data-local map tasks=6 >>>> >>>> What is the difference between Rack-local map tasks and Data-local map >>>> tasks? >>>> >>>> -- >>>> [EMAIL PROTECTED]|Sam >>>> >>>> >>> >>> >>> >>> -- >>> [EMAIL PROTECTED]|齐忠 >> >> >> >> >> -- >> Bertrand Dechoux > > > > -- > Harsh J >
+
Michael Segel 2012-10-08, 00:13
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Bertrand Dechoux 2012-10-08, 05:44
@Harsh : I didn't know. That's good to hear. I will check out the mapred.fairscheduler.locality.delay in FairScheduler. And I will also look at YARN-80 for my personal information.
Thanks!
Bertrand
On Mon, Oct 8, 2012 at 2:13 AM, Michael Segel <[EMAIL PROTECTED]>wrote:
> Ok, > > So what would be the use case for this feature? > > I mean when would locality take precedence over job time completion? > > On Oct 7, 2012, at 5:46 PM, Harsh J <[EMAIL PROTECTED]> wrote: > > > Bertrand, > > > > FairScheduler does support delay scheduling for locality via > > mapred.fairscheduler.locality.delay config prop. MR2's > > CapacityScheduler recently got similar support for better locality > > scheduling as well (see YARN-80). Is this not what you're talking of? > > > > On Mon, Oct 8, 2012 at 1:01 AM, Bertrand Dechoux <[EMAIL PROTECTED]> > wrote: > >> Basically, more replicas. > >> > >> The second solution would be to use a 'smarter' scheduler. In theory, > the > >> jobtracker should be able to say "postpone this task until a data-local > task > >> can be created". But I don't think any stable and public available > scheduler > >> do that at the moment. This would allow you to have less traffic but the > >> whole job might be slower due to the wait. It might be a good trade if > you > >> have multiple jobs running at the same time and if your hot data is > >> uniformly distributed. But in practice this is of course not always the > case > >> and you also need to consider sla for the users so the whole is not > trivial. > >> > >> Regards > >> > >> Bertrand > >> > >> > >> On Sun, Oct 7, 2012 at 5:28 PM, centerqi hu <[EMAIL PROTECTED]> wrote: > >>> > >>> Very good explanation, > >>> If there is a way to reduce Rack-local map tasks > >>> but can increase the Data-local map tasks , > >>> Whether to increase performance? > >>> > >>> 2012/10/7 Michael Segel <[EMAIL PROTECTED]> > >>>> > >>>> Rack local means that while the data isn't local to the node running > the > >>>> task, it is still on the same rack. > >>>> (Its meaningless unless you've set up rack awareness because all of > the > >>>> machines are on the default rack. ) > >>>> > >>>> Data local means that the task is running local to the machine that > >>>> contains the actual data. > >>>> > >>>> HTH > >>>> > >>>> -Mike > >>>> > >>>> On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: > >>>> > >>>> > >>>> hi all > >>>> > >>>> When I run "hadoop job -status xxx",Output the following some list. > >>>> > >>>> Rack-local map tasks=124 > >>>> Data-local map tasks=6 > >>>> > >>>> What is the difference between Rack-local map tasks and Data-local map > >>>> tasks? > >>>> > >>>> -- > >>>> [EMAIL PROTECTED]|Sam > >>>> > >>>> > >>> > >>> > >>> > >>> -- > >>> [EMAIL PROTECTED]|齐忠 > >> > >> > >> > >> > >> -- > >> Bertrand Dechoux > > > > > > > > -- > > Harsh J > > > > -- Bertrand Dechoux
+
Bertrand Dechoux 2012-10-08, 05:44
-
Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Bejoy KS 2012-10-07, 18:29
Definitely, If data local map tasks are more the performance will be improved much.
Ideally if data is uniformly distributed across DNs and if you have enough number of map task slots on colocated TTs then most of your map tasks should be Data Local. You may have just a few non data local map tasks when the number of input splits/map tasks are large which is quite common.
Regards Bejoy KS
Sent from handheld, please excuse typos.
-----Original Message----- From: centerqi hu <[EMAIL PROTECTED]> Date: Sun, 7 Oct 2012 23:28:55 To: <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Subject: Re: What is the difference between Rack-local map tasks and Data-local map tasks?
Very good explanation, If there is a way to reduce Rack-local map tasks but can increase the Data-local map tasks , Whether to increase performance?
2012/10/7 Michael Segel <[EMAIL PROTECTED]>
> Rack local means that while the data isn't local to the node running the > task, it is still on the same rack. > (Its meaningless unless you've set up rack awareness because all of the > machines are on the default rack. ) > > Data local means that the task is running local to the machine that > contains the actual data. > > HTH > > -Mike > > On Oct 7, 2012, at 8:56 AM, centerqi hu <[EMAIL PROTECTED]> wrote: > > > hi all > > When I run "hadoop job -status xxx",Output the following some list. > > Rack-local map tasks=124 > Data-local map tasks=6 > > What is the difference between Rack-local map tasks and Data-local map > tasks? > -- > [EMAIL PROTECTED]|Sam > > > -- [EMAIL PROTECTED]|齐忠
+
Bejoy KS 2012-10-07, 18:29
-
What is the difference between the branch-1 and branch-1-win
pengwenwu2008 2012-12-13, 06:22
Hi all, Could you help me What is the difference between the branch-1 and branch-1-win ? Regards, Wenwu,Peng
+
pengwenwu2008 2012-12-13, 06:22
|
|