当前位置: 首页>>代码示例>>Python>>正文


Python MRWordCount.make_runner方法代码示例

本文整理汇总了Python中tests.mr_word_count.MRWordCount.make_runner方法的典型用法代码示例。如果您正苦于以下问题:Python MRWordCount.make_runner方法的具体用法?Python MRWordCount.make_runner怎么用?Python MRWordCount.make_runner使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tests.mr_word_count.MRWordCount的用法示例。


在下文中一共展示了MRWordCount.make_runner方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_job_name_specified_run_twice

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
 def test_job_name_specified_run_twice(self):
     job_name = datetime.datetime.now().strftime('WordCount2-%Y%m%d%H%M%S')
     try:
         job = MRWordCount(['--job-name', job_name,
                            '--cleanup', 'NONE', __file__])
         with job.make_runner() as runner:
             runner.run()
         job2 = MRWordCount(['--job-name', job_name, __file__])
         with job2.make_runner() as runner2:
             runner2.run()
     except OSError:
         self.fail('Local scratch was not auto-deleted')
开发者ID:anusha-r,项目名称:mrjob,代码行数:14,代码来源:test_runner.py

示例2: test_jobconf

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_jobconf(self):
        jobconf_args = ["--jobconf", "FOO=bar", "--jobconf", "BAZ=qux", "--jobconf", "BAX=Arnold"]

        job = MRWordCount(jobconf_args)
        with job.make_runner() as runner:
            self.assertEqual(runner._hadoop_args_for_step(0), ["-D", "BAX=Arnold", "-D", "BAZ=qux", "-D", "FOO=bar"])

        job_0_18 = MRWordCount(jobconf_args + ["--hadoop-version", "0.18"])
        with job_0_18.make_runner() as runner_0_18:
            self.assertEqual(
                runner_0_18._hadoop_args_for_step(0),
                ["-jobconf", "BAX=Arnold", "-jobconf", "BAZ=qux", "-jobconf", "FOO=bar"],
            )
开发者ID:hophacker,项目名称:mrjob,代码行数:15,代码来源:test_runner.py

示例3: test_persistent_cluster

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_persistent_cluster(self):
        mr_job = MRWordCount(["-r", "dataproc", "--max-hours-idle", "0.01"])
        mr_job.sandbox()

        with mr_job.make_runner() as runner:
            runner.run()
            self.assertRanIdleTimeoutScriptWith(runner, {"mrjob-max-secs-idle": "36"})
开发者ID:davidmarin,项目名称:mrjob,代码行数:9,代码来源:test_dataproc.py

示例4: test_input_files_and_setting_number_of_tasks

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_input_files_and_setting_number_of_tasks(self):
        input_path = os.path.join(self.tmp_dir, 'input')
        with open(input_path, 'wb') as input_file:
            input_file.write(b'bar\nqux\nfoo\n')

        input_gz_path = os.path.join(self.tmp_dir, 'input.gz')
        input_gz = gzip.GzipFile(input_gz_path, 'wb')
        input_gz.write(b'foo\n')
        input_gz.close()

        mr_job = MRWordCount(['-r', self.RUNNER,
                              '--jobconf=mapred.map.tasks=3',
                              '--jobconf=mapred.reduce.tasks=3',
                              input_path, input_gz_path])
        mr_job.sandbox()

        results = []

        with mr_job.make_runner() as runner:
            runner.run()

            for line in runner.stream_output():
                key, value = mr_job.parse_output_line(line)
                results.append((key, value))

            self.assertEqual(runner.counters()[0]['count']['combiners'], 3)

        self.assertEqual(sorted(results),
                         [(input_path, 3), (input_gz_path, 1)])
开发者ID:anirudhreddy92,项目名称:mrjob,代码行数:31,代码来源:test_inline.py

示例5: test_default

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_default(self):
        mr_job = MRWordCount(["-r", "dataproc"])
        mr_job.sandbox()

        with mr_job.make_runner() as runner:
            runner.run()
            self.assertRanIdleTimeoutScriptWith(runner, {"mrjob-max-secs-idle": "360"})
开发者ID:davidmarin,项目名称:mrjob,代码行数:9,代码来源:test_dataproc.py

示例6: test_partitioner

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_partitioner(self):
        partitioner = 'org.apache.hadoop.mapreduce.Partitioner'
        job = MRWordCount(['--partitioner', partitioner])

        with job.make_runner() as runner:
            self.assertEqual(runner._hadoop_args_for_step(0),
                             ['-partitioner', partitioner])
开发者ID:anirudhreddy92,项目名称:mrjob,代码行数:9,代码来源:test_runner.py

示例7: test_empty_jobconf_values

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_empty_jobconf_values(self):
        # value of None means to omit that jobconf
        job = MRWordCount()
        # no way to pass in None from the command line
        job.JOBCONF = {"foo": "", "bar": None}

        with job.make_runner() as runner:
            self.assertEqual(runner._hadoop_args_for_step(0), ["-D", "foo="])
开发者ID:irskep,项目名称:mrjob,代码行数:10,代码来源:test_runner.py

示例8: test_empty

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_empty(self):
        job = MRWordCount(['-r', 'hadoop'])
        job.sandbox()

        with job.make_runner() as runner:
            runner._add_job_files_for_upload()
            args = runner._args_for_streaming_step(0)

            self.assertNotIn('-libjars', args)
开发者ID:etiennebatise,项目名称:mrjob,代码行数:11,代码来源:test_hadoop.py

示例9: test_environment_variables_version_agnostic

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
 def test_environment_variables_version_agnostic(self):
     job = MRWordCount(['-r', 'local'])
     with job.make_runner() as runner:
         simulated_jobconf = runner._simulate_jobconf_for_step(
             0, 'mapper', 0, '/tmp/foo')
         self.assertIn(
             'mapred.cache.localArchives', simulated_jobconf)
         self.assertIn(
             'mapreduce.job.cache.local.archives', simulated_jobconf)
开发者ID:northaviva,项目名称:mrjob,代码行数:11,代码来源:test_local.py

示例10: test_persistent_cluster

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_persistent_cluster(self):
        mr_job = MRWordCount(['-r', 'dataproc', '--max-hours-idle', '0.01'])
        mr_job.sandbox()

        with mr_job.make_runner() as runner:
            runner.run()
            self.assertRanIdleTimeoutScriptWith(runner, {
                'mrjob-max-secs-idle': '36',
            })
开发者ID:Jeremyfanfan,项目名称:mrjob,代码行数:11,代码来源:test_dataproc.py

示例11: test_default

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_default(self):
        mr_job = MRWordCount(['-r', 'dataproc'])
        mr_job.sandbox()

        with mr_job.make_runner() as runner:
            runner.run()
            self.assertRanIdleTimeoutScriptWith(runner, {
                'mrjob-max-secs-idle': '360',
            })
开发者ID:Jeremyfanfan,项目名称:mrjob,代码行数:11,代码来源:test_dataproc.py

示例12: test_environment_variables_hadoop_2

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
 def test_environment_variables_hadoop_2(self):
     job = MRWordCount(['-r', 'local', '--hadoop-version', '2.7.2'])
     with job.make_runner() as runner:
         simulated_jobconf = runner._simulate_jobconf_for_step(
             'mapper', 0, 0)
         self.assertIn(
             'mapreduce.job.cache.local.archives', simulated_jobconf)
         self.assertNotIn(
             'mapred.cache.localArchives', simulated_jobconf)
开发者ID:Affirm,项目名称:mrjob,代码行数:11,代码来源:test_local.py

示例13: test_configuration_translation

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_configuration_translation(self):
        job = MRWordCount(["--jobconf", "mapred.jobtracker.maxtasks.per.job=1", "--hadoop-version", "0.21"])

        with job.make_runner() as runner:
            with no_handlers_for_logger("mrjob.compat"):
                self.assertEqual(
                    runner._hadoop_args_for_step(0),
                    ["-D", "mapred.jobtracker.maxtasks.per.job=1", "-D", "mapreduce.jobtracker.maxtasks.perjob=1"],
                )
开发者ID:hophacker,项目名称:mrjob,代码行数:11,代码来源:test_runner.py

示例14: test_job_passes_in_steps

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
    def test_job_passes_in_steps(self):
        job = MRWordCount()
        job.sandbox()

        with job.make_runner() as runner:
            self.assertTrue(runner._steps)

            runner.run()

            self.assertFalse(self.log.warning.called)
开发者ID:Affirm,项目名称:mrjob,代码行数:12,代码来源:test_runner.py

示例15: test_cmdenv

# 需要导入模块: from tests.mr_word_count import MRWordCount [as 别名]
# 或者: from tests.mr_word_count.MRWordCount import make_runner [as 别名]
 def test_cmdenv(self):
     job = MRWordCount(['--cmdenv', 'FOO=bar',
                        '--cmdenv', 'BAZ=qux',
                        '--cmdenv', 'BAX=Arnold'])
     with job.make_runner() as runner:
         self.assertEqual(runner._hadoop_args_for_step(0),
                          ['-cmdenv', 'BAX=Arnold',
                           '-cmdenv', 'BAZ=qux',
                           '-cmdenv', 'FOO=bar',
                           ])
开发者ID:anirudhreddy92,项目名称:mrjob,代码行数:12,代码来源:test_runner.py


注:本文中的tests.mr_word_count.MRWordCount.make_runner方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。