Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which are the methods in the Mapper Interface?
Home
HDFS
Which are the methods in the Mapper Interface?
0
votes
asked
Jun 20, 2023
in
HDFS
by
john ganales
Which are the methods in the Mapper Interface?
mapperinterface
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 20, 2023
by
john ganales
The Mapper contains the run() method, which call its own setup() method only once, it also call a map() method for each input and finally calls it cleanup() method. All above methods you can override in your code.
...