빅데이터공부하기 계속계속 달리는중~~~~
이번에 공부할 내용은 Mapper Internals입니다.
Mapper 클래스의 메소드들
앞서 본 map 메소드이외에도 다음 메소드들이 존재
public void setup(Mapper.Context context)
* map 메소드에서 필요리소스를 여기서 할당
public void cleanup(Mapper.Conntext context)
* setup에서 할당한 리소스를 해제
public void run(Mapper.Context context)
* 기본구현은 다음과 같다.
public void run(Context context)throws IOExeption, InterruptedException
{
setup(context);
while(context.netKeyValue())
{
map(context.getCurrentkey(), context getCurrentValue(), context);
}
cleanup(context);
}
빅데이터공부는 아직..끝나지않았다.. ㅋㅋㅋ
모두 파이팅하세용 ^^
'빅데이터 > 빅데이터Hadoop' 카테고리의 다른 글
빅데이터공부하기 43-2 Mapper 입력, 출력 (0) | 2014.09.04 |
---|---|
빅데이터공부하기 43-1 Mapper Internals 2 (0) | 2014.09.04 |
빅데이터공부하기 42 컴파일실행및 결과확인 (0) | 2014.09.03 |
빅데이터공부하기 41-1 Reducer 클래스 (0) | 2014.09.02 |
빅데이터공부하기 41 Reducer클래스 (0) | 2014.09.02 |