빅데이터공부하기입니다.
오늘의 내용은 Reducer 클래스의 메소드들입니다.
오늘하루도 열공!!!
앞서 본 reduce메소드이외에도 다음 메소들들이 존재
- public void setup(Reducer.Context context)
* Reduce 메소드에서 필요리소스를 여기서 할당
- public void cleanup(Reducer.Context context)
* setup에서 할당한 리소스를 해제
- public void run(Reducer.Context context)
* Reducer의 기본구현은 다음과 같다.
public void run(Context context) throws IOException, InterruptedException
{
setep(context);
while(context.nextKey())
{
reduce(context.getCurrentkev(), context.getValues(), context);
}
cleanup(context);
}
'빅데이터 > 빅데이터Hadoop' 카테고리의 다른 글
빅데이터공부하기 48 출력포맷 클래스 (0) | 2014.10.24 |
---|---|
빅데이터공부하기 47-1 Identity Reducer (0) | 2014.09.25 |
빅데이터공부하기 46-4 WritableComparator (0) | 2014.09.22 |
빅데이터공부하기 46-3 Reducer단의 준비 (0) | 2014.09.18 |
빅데이터공부하기 46-2 Mapper의 출력버퍼링 (0) | 2014.09.18 |