i would like to find the max value in list by mrjob. when i run this, it always show the error:
No configs found; falling back on auto-configuration; No configs specified for inline runner
i'd like to know what's the meaning
class MRWordCounter(MRJob):
def mapper(self, key, line):
num = csv_readline(line)
yield num, 1
def reducer(self, word, compare):
num_list = []
for value in compare:
if value == max(compare):
value=num_list
yield word, num_list