Giter Site home page Giter Site logo

Comments (2)

zanpen2000 avatar zanpen2000 commented on July 19, 2024

注释掉了 d.addBoth()方法,可以了

def start_crawl(rule, task_id):
    rule = dict2obj(rule)
    runner = CrawlerRunner(settings=settings)

    for r in rule.rules:
        r = dict2obj(r)
        runner.crawl(get_spider(rule.name)['class'], user_rule=r, task_id=task_id)
        # d.addBoth(lambda _: reactor.stop())

    reactor.run()

更正注释掉了 d.addBoth()方法不可行

因为会导致task只received而不accepted的情况发生,如,beat发送了4个任务,而你的CPU是4Core且没有做任何concurrency的设置(所以默认为4),那么,前面4个task都会成功执行,之后的task则会只received而不accepted

后来,实在没办法,试着升级了一下

pip install scrapy --upgrade

神奇的事情发生了,不再出现ReactorNotRestartable的提示了.

现在的代码是这个样子的

def start_crawl(rule, task_id):
    rule = dict2obj(rule)
    runner = CrawlerRunner(settings=settings)

    def crawl():
        for r in rule.rules:
            r = dict2obj(r)
            runner.crawl(get_spider(rule.name)['class'], user_rule=r, task_id=task_id)
        d = runner.join()
        d.addBoth(lambda _: reactor.stop())

    crawl()
    reactor.run()

from scrapy-dynamic-configurable.

clarksun avatar clarksun commented on July 19, 2024

最新的1.0版本还是有这个问题, 把run.py最后一行process.start()移出for循环就可以了.
详见Pull request.

from scrapy-dynamic-configurable.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.