Document JOBDIR option issue #5173

Add JOBDIR setting to the settings page.
Add default JOBDIR setting to global defaults in scrapy.settings.default_settings module.
This commit is contained in:
Aaron Tan 2021-08-07 11:44:12 +10:00
parent 94baa4b272
commit 8e7d2ef133
2 changed files with 13 additions and 0 deletions

View File

@ -989,6 +989,17 @@ Default: ``{}``
A dict containing the pipelines enabled by default in Scrapy. You should never
modify this setting in your project, modify :setting:`ITEM_PIPELINES` instead.
.. setting:: JOBDIR
JOBDIR
------
Default: ``''``
A string indicating the directory for storing the required data to keep the state of a single job to enable persistence support. This directory must not be shared by different spiders or jobs/runs of the same spider.
For more info on this setting, see :ref:`topics-jobs`
.. setting:: LOG_ENABLED
LOG_ENABLED

View File

@ -199,6 +199,8 @@ ITEM_PROCESSOR = 'scrapy.pipelines.ItemPipelineManager'
ITEM_PIPELINES = {}
ITEM_PIPELINES_BASE = {}
JOBDIR = ''
LOG_ENABLED = True
LOG_ENCODING = 'utf-8'
LOG_FORMATTER = 'scrapy.logformatter.LogFormatter'