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


Python Process.incr_module_timeout_statistic方法代码示例

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


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

示例1: Process

# 需要导入模块: from Helper import Process [as 别名]
# 或者: from Helper.Process import incr_module_timeout_statistic [as 别名]
    config_section = 'SentimentAnalysis'

    # Setup the I/O queues
    p = Process(config_section)

    # Sent to the logging a description of the module
    publisher.info("<description of the module>")

    # REDIS_LEVEL_DB #
    server = redis.StrictRedis(
        host=p.config.get("ARDB_Sentiment", "host"),
        port=p.config.get("ARDB_Sentiment", "port"),
        db=p.config.get("ARDB_Sentiment", "db"),
        decode_responses=True)

    while True:
        message = p.get_from_set()
        if message is None:
            publisher.debug("{} queue is empty, waiting".format(config_section))
            time.sleep(1)
            continue
        signal.alarm(60)
        try:
            Analyse(message, server)
        except TimeoutException:
            p.incr_module_timeout_statistic()
            print ("{0} processing timeout".format(message))
            continue
        else:
            signal.alarm(0)
开发者ID:mokaddem,项目名称:AIL-framework,代码行数:32,代码来源:SentimentAnalysis.py

示例2: str

# 需要导入模块: from Helper import Process [as 别名]
# 或者: from Helper.Process import incr_module_timeout_statistic [as 别名]
        message = p.get_from_set()
        if message is None:

            publisher.debug("{} queue is empty, waiting".format(config_section))
            time.sleep(1)
            continue

        filename = message
        paste = Paste.Paste(filename)

        # Do something with the message from the queue
        content = paste.get_p_content()
        date = str(paste._get_p_date())

        for decoder in decoder_order: # add threshold and size limit

            # max execution time on regex
            signal.alarm(decoder['max_execution_time'])
            try:
                encoded_list = re.findall(decoder['regex'], content)
            except TimeoutException:
                encoded_list = []
                p.incr_module_timeout_statistic() # add encoder type
                print ("{0} processing timeout".format(paste.p_rel_path))
                continue
            else:
                signal.alarm(0)

                if(len(encoded_list) > 0):
                    content = decode_string(content, message, date, encoded_list, decoder['name'], decoder['encoded_min_size'])
开发者ID:CIRCL,项目名称:AIL-framework,代码行数:32,代码来源:Decoder.py


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