xml Magento 2 Cron

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml Magento 2 Cron相关的知识,希望对你有一定的参考价值。

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/cron_groups.xsd">
    <group id="default">
        <schedule_generate_every>15</schedule_generate_every>
        <schedule_ahead_for>20</schedule_ahead_for>
        <schedule_lifetime>15</schedule_lifetime>
        <history_cleanup_every>10</history_cleanup_every>
        <history_success_lifetime>10080</history_success_lifetime>
        <history_failure_lifetime>10080</history_failure_lifetime>
        <use_separate_process>0</use_separate_process>
    </group>
</config>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">
    <group id="GROUP_NAME">
        <job name="CRON_JOB_UNIQUE_ID" instance="CLASS" method="METHOD">
            <config_path>some/config/path</config_path>
        </job>
        <job name="indexer_clean_all_changelogs" instance="Magento\Indexer\Cron\ClearChangelog" method="execute">
            <schedule>0 * * * *</config_path>
        </job>
    </group>
</config>

以上是关于xml Magento 2 Cron的主要内容,如果未能解决你的问题,请参考以下文章

cron 工作正在 magento 站点工作-但没有找到心跳

Magento cron 试图联系 Paypal?

Magento cron 更改文件夹权限

删除已取消的magento订单cron

magento -- 计划任务(cron job)在magento中的作用和使用教程

magento -- 计划任务(cron job)在magento中的作用和使用教程