本文整理汇总了Python中mrjob.runner.MRJobRunner._invoke_sort方法的典型用法代码示例。如果您正苦于以下问题:Python MRJobRunner._invoke_sort方法的具体用法?Python MRJobRunner._invoke_sort怎么用?Python MRJobRunner._invoke_sort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mrjob.runner.MRJobRunner
的用法示例。
在下文中一共展示了MRJobRunner._invoke_sort方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_one_file
# 需要导入模块: from mrjob.runner import MRJobRunner [as 别名]
# 或者: from mrjob.runner.MRJobRunner import _invoke_sort [as 别名]
def test_one_file(self):
runner = MRJobRunner(conf_paths=[])
runner._invoke_sort([self.a], self.out)
self.assertEqual(list(open(self.out)),
['A\n',
'alligator\n',
'apple\n'])
示例2: test_two_files
# 需要导入模块: from mrjob.runner import MRJobRunner [as 别名]
# 或者: from mrjob.runner.MRJobRunner import _invoke_sort [as 别名]
def test_two_files(self):
runner = MRJobRunner(conf_paths=[])
self.addCleanup(runner.cleanup)
runner._invoke_sort([self.a, self.b], self.out)
with open(self.out) as out_f:
self.assertEqual(list(out_f), ["A\n", "B\n", "alligator\n", "apple\n", "ball\n", "banana\n"])
示例3: test_one_file
# 需要导入模块: from mrjob.runner import MRJobRunner [as 别名]
# 或者: from mrjob.runner.MRJobRunner import _invoke_sort [as 别名]
def test_one_file(self):
runner = MRJobRunner(conf_paths=[])
self.addCleanup(runner.cleanup)
runner._invoke_sort([self.a], self.out)
with open(self.out) as out_f:
self.assertEqual(list(out_f),
['A\n',
'alligator\n',
'apple\n'])
示例4: test_two_files
# 需要导入模块: from mrjob.runner import MRJobRunner [as 别名]
# 或者: from mrjob.runner.MRJobRunner import _invoke_sort [as 别名]
def test_two_files(self):
runner = MRJobRunner(conf_paths=[])
runner._invoke_sort([self.a, self.b], self.out)
self.assertEqual(list(open(self.out)),
['A\n',
'B\n',
'alligator\n',
'apple\n',
'ball\n',
'banana\n'])