Feeds import not working with cron

Created on 21 October 2024, 5 months ago

Drupal 10.3.6
SQL Server Driver (not MySQL)
8.x-3.0-rc2

Preface

Please be aware we use SQL Server driver and a Microsoft stack. This is a non-negotiable item for this system.

Problem/Motivation

The problem is I can't get my Feeds import to work with cron. Supposedly when cron is configured, feeds import will run. I've tried several things with cron. I have a Task Scheduler which goes out every day to the browser URL and triggers cron. This works. Initially, I turned off Drupal cron because that was recommended when you use an outside method. Now I have it turned on because the Task Scheduler method was not working.

Here is the error I'm seeing.

Drupal\Core\Database\IntegrityConstraintViolationException: SQLSTATE[42000]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Cannot update identity column 'lid'.: UPDATE [feeds_import_log_entry] SET [operation]=:db_update_placeholder_0, [message]=:db_update_placeholder_1, [timestamp]=:db_update_placeholder_2, [variables]=:db_update_placeholder_3, [entity_type_id]=:db_update_placeholder_4, [entity_id]=:db_update_placeholder_5, [entity_label]=:db_update_placeholder_6, [item_id]=:db_update_placeholder_7, [import_id]=:db_update_placeholder_8, [feed_id]=:db_update_placeholder_9, [lid]=:db_update_placeholder_10, [item]=:db_update_placeholder_11 WHERE [lid] = :db_condition_placeholder_0; Array ( [operation] => failed [message] => SQLSTATE[42000]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Cannot update identity column 'lid'.: UPDATE [feeds_import_log_entry] SET [operation]=:db_update_placeholder_0, [message]=:db_update_placeholder_1, [timestamp]=:db_update_placeholder_2, [variables]=:db_update_placeholder_3, [entity_type_id]=:db_update_placeholder_4, [entity_id]=:db_update_placeholder_5, [entity_label]=:db_update_placeholder_6, [item_id]=:db_update_placeholder_7, [import_id]=:db_update_placeholder_8, [feed_id]=:db_update_placeholder_9, [lid]=:db_update_placeholder_10, [item]=:db_update_placeholder_11 WHERE [lid] = :db_condition_placeholder_0; Array ( [operation] => updated [message] => [timestamp] => 1729497605 [variables] => a:0:@ [entity_type_id] => user [entity_id] => 8027 [entity_label] => label: 111804 [item_id] => value:111804 [import_id] => 620 [feed_id] => 1 [lid] => 4495 [item] => private://feeds/log/620/items/4495.json ) [timestamp] => 1729497605 [variables] => a:0:{} [entity_type_id] => user [entity_id] => 8027 [entity_label] => label: 111804 [item_id] => value:111804 [import_id] => 620 [feed_id] => 1 [lid] => 4496 [item] => private://feeds/log/620/items/4496.json ) in Drupal\sqlsrv\Driver\Database\sqlsrv\ExceptionHandler->handleExecutionException() (line 39 of E:\wwwroot\jurorportal\web\modules\contrib\sqlsrv\src\Driver\Database\sqlsrv\ExceptionHandler.php).

Drupal cron is set to run every day currently, but I don't get any indication that's happening. The only cron run that's working is the one I set up with Task Scheduler.

Steps to reproduce

Set up Drupal 10 using SQL Server driver. Set up Feeds module. Create a feed type and feed instance. Set up cron. See if it runs properly.

I don't know how to proceed. Thanks in advance.

๐Ÿ› Bug report
Status

Active

Component

Code

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @rraney
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney
  • First commit to issue fork.
  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands megachriz

    I do not have a MS SQL Server driver ready, but based on the error message, I made a change that perhaps works. The error says "Cannot update identity column 'lid'", and the code is passing a value for 'lid' when updating a log entry. So maybe the issue gets fixed when the code no longer passes a value for 'lid'.

    Can you try the code from 3482189-cron-sql-server-driver to see if that helps?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    I will try, but honestly I'm not super familiar with the new way of doing things. I'm still in the "patch" world. I'll try to get it figured out on Google.

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands megachriz

    If you click the "plain diff" link, then you get a text file that you could use as a patch.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    I figured out to get a patch from your branch but I'm having trouble getting the patch applied.

    Could not apply patch! Skipping. The error was: Cannot apply patch https://git.drupalcode.org/issue/feeds-3482189/-/commit/b0c52a15e36251cf...

    Here's my patch:

    "drupal/feeds": {
    "Issue 3482189": "https://git.drupalcode.org/issue/feeds-3482189/-/commit/b0c52a15e36251cf..."
    }

    Full output in CLI

    patch "-p1" --no-backup-if-mismatch -d "E:\wwwroot\zzz/web/modules/contrib/feeds" < "C:\Users\admin\AppData\Local\Temp\9/67167e57ec37b.patch"
    patching file src/Result/HttpFetcherResult.php
    patching file tests/src/Unit/Result/HttpFetcherResultTest.php
    Hunk #1 FAILED at 7.
    1 out of 2 hunks FAILED -- saving rejects to file tests/src/Unit/Result/HttpFetcherResultTest.php.rej

    patch "-p0" --no-backup-if-mismatch -d "E:\wwwroot\zzz/web/modules/contrib/feeds" < "C:\Users\admin\AppData\Local\Temp\9/67167e57ec37b.patch"
    can't find file to patch at input line 16
    Perhaps you used the wrong -p or --strip option?
    The text leading up to this was:
    --------------------------
    |From b0c52a15e36251cfa1c3529ee1d8a2bd2a78f177 Mon Sep 17 00:00:00 2001
    |From: znerol <46208-znerol@users.noreply.drupalcode.org>
    |Date: Mon, 14 Oct 2024 14:08:50 +0000
    |Subject: [PATCH] Issue #3480545 by znerol: Fixed PHP Warning: unlink(): No
    | such file or directory in HttpFetcherResult::cleanUp().
    |
    |---
    | src/Result/HttpFetcherResult.php | 2 +-
    | tests/src/Unit/Result/HttpFetcherResultTest.php | 2 ++
    | 2 files changed, 3 insertions(+), 1 deletion(-)
    |
    |diff --git a/src/Result/HttpFetcherResult.php b/src/Result/HttpFetcherResult.php
    |index fdd803ae..f9966d5c 100644
    |--- a/src/Result/HttpFetcherResult.php
    |+++ b/src/Result/HttpFetcherResult.php
    --------------------------
    File to patch:
    Skip this patch? [y]
    Skipping patch.
    1 out of 1 hunk ignored
    can't find file to patch at input line 29
    Perhaps you used the wrong -p or --strip option?
    The text leading up to this was:
    --------------------------
    |diff --git a/tests/src/Unit/Result/HttpFetcherResultTest.php b/tests/src/Unit/Result/HttpFetcherResultTest.php
    |index 1dbea793..6060cdfd 100644
    |--- a/tests/src/Unit/Result/HttpFetcherResultTest.php
    |+++ b/tests/src/Unit/Result/HttpFetcherResultTest.php
    --------------------------
    File to patch:
    Skip this patch? [y]
    Skipping patch.
    2 out of 2 hunks ignored

    patch "-p2" --no-backup-if-mismatch -d "E:\wwwroot\zzz/web/modules/contrib/feeds" < "C:\Users\admin\AppData\Local\Temp\9/67167e57ec37b.patch"
    can't find file to patch at input line 16
    Perhaps you used the wrong -p or --strip option?
    The text leading up to this was:
    --------------------------
    |From b0c52a15e36251cfa1c3529ee1d8a2bd2a78f177 Mon Sep 17 00:00:00 2001
    |From: znerol <46208-znerol@users.noreply.drupalcode.org>
    |Date: Mon, 14 Oct 2024 14:08:50 +0000
    |Subject: [PATCH] Issue #3480545 by znerol: Fixed PHP Warning: unlink(): No
    | such file or directory in HttpFetcherResult::cleanUp().
    |
    |---
    | src/Result/HttpFetcherResult.php | 2 +-
    | tests/src/Unit/Result/HttpFetcherResultTest.php | 2 ++
    | 2 files changed, 3 insertions(+), 1 deletion(-)
    |
    |diff --git a/src/Result/HttpFetcherResult.php b/src/Result/HttpFetcherResult.php
    |index fdd803ae..f9966d5c 100644
    |--- a/src/Result/HttpFetcherResult.php
    |+++ b/src/Result/HttpFetcherResult.php
    --------------------------
    File to patch:
    Skip this patch? [y]
    Skipping patch.
    1 out of 1 hunk ignored
    can't find file to patch at input line 29
    Perhaps you used the wrong -p or --strip option?
    The text leading up to this was:
    --------------------------
    |diff --git a/tests/src/Unit/Result/HttpFetcherResultTest.php b/tests/src/Unit/Result/HttpFetcherResultTest.php
    |index 1dbea793..6060cdfd 100644
    |--- a/tests/src/Unit/Result/HttpFetcherResultTest.php
    |+++ b/tests/src/Unit/Result/HttpFetcherResultTest.php
    --------------------------
    File to patch:
    Skip this patch? [y]
    Skipping patch.
    2 out of 2 hunks ignored

    patch "-p4" --no-backup-if-mismatch -d "E:\wwwroot\zzz/web/modules/contrib/feeds" < "C:\Users\admin\AppData\Local\Temp\9/67167e57ec37b.patch"
    can't find file to patch at input line 16
    Perhaps you used the wrong -p or --strip option?
    The text leading up to this was:
    --------------------------
    |From b0c52a15e36251cfa1c3529ee1d8a2bd2a78f177 Mon Sep 17 00:00:00 2001
    |From: znerol <46208-znerol@users.noreply.drupalcode.org>
    |Date: Mon, 14 Oct 2024 14:08:50 +0000
    |Subject: [PATCH] Issue #3480545 by znerol: Fixed PHP Warning: unlink(): No
    | such file or directory in HttpFetcherResult::cleanUp().
    |
    |---
    | src/Result/HttpFetcherResult.php | 2 +-
    | tests/src/Unit/Result/HttpFetcherResultTest.php | 2 ++
    | 2 files changed, 3 insertions(+), 1 deletion(-)
    |
    |diff --git a/src/Result/HttpFetcherResult.php b/src/Result/HttpFetcherResult.php
    |index fdd803ae..f9966d5c 100644
    |--- a/src/Result/HttpFetcherResult.php
    |+++ b/src/Result/HttpFetcherResult.php
    --------------------------
    File to patch:
    Skip this patch? [y]
    Skipping patch.
    1 out of 1 hunk ignored
    can't find file to patch at input line 29
    Perhaps you used the wrong -p or --strip option?
    The text leading up to this was:
    --------------------------
    |diff --git a/tests/src/Unit/Result/HttpFetcherResultTest.php b/tests/src/Unit/Result/HttpFetcherResultTest.php
    |index 1dbea793..6060cdfd 100644
    |--- a/tests/src/Unit/Result/HttpFetcherResultTest.php
    |+++ b/tests/src/Unit/Result/HttpFetcherResultTest.php
    --------------------------
    File to patch:
    Skip this patch? [y]
    Skipping patch.
    2 out of 2 hunks ignored

    Could not apply patch! Skipping. The error was: Cannot apply patch https://git.drupalcode.org/issue/feeds-3482189/-/commit/b0c52a15e36251cf...

    > post-package-install: Drupal\Composer\Plugin\Scaffold\Plugin->postPackage
    > post-package-install: Laminas\ComponentInstaller\ComponentInstaller->onPostPackageInstall
    Generating autoload files
    54 packages you are using are looking for funding.
    Use the `composer fund` command to find out more!
    > post-install-cmd: Drupal\Composer\Plugin\Scaffold\Plugin->postCmd
    > post-install-cmd: Drupal\Composer\Plugin\ProjectMessage\MessagePlugin->displayPostCreateMessage
    * Homepage: https://www.drupal.org/project/drupal โ†’
    * Support:
    * docs: https://www.drupal.org/docs/user_guide/en/index.html โ†’
    * chat: https://www.drupal.org/node/314178 โ†’

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    I found the link above
    https://git.drupalcode.org/project/feeds/-/merge_requests/203.diff

    I applied the patch and there was no error. I cleared cache. I ran cron manually.
    The errors are gone in Recent Logs. That part is resolved.

    If I filter logs by "Feeds" it doesn't show that the feed was imported just now. While the SQL error was resolved, it still apparently didn't import.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    Logs show that feeds_cron() and feeds_log_cron() ran, but no sign of any changes to the entity fields that are imported.

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands megachriz

    Is there something scheduled to be imported? If not, try to start an import using the โ€œImport in backgroundโ€ link and then run cron. If the feed is currently locked, unlock it first and then try to import in background.

    Note: A feed becomes locked when an import for it is started or planned, to prevent running two imports for the same feed at the same time. But if an import abruptly ended due to an error, the feed may remain in a locked state without the import getting continued. In this case, it is good to unlock it manually.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    It was locked. I'm unlocking, then importing in background. After this, I'll try a cron run. Thanks for your help.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    Cron updated the data. The feeds filter in Logs shows updates at the same time as cron. I think it's working :)

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    I'm actually having a problem with the scheduled import and cron. When I schedule the feed then run cron, it is incomplete. When I run the feed manually, it takes a lot longer but it's complete.

    Any idea why the cron import isn't doing a complete feed import?

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands megachriz

    Because there is a time limit on cron runs, if your import is large, it can take multiple cron runs to complete an import. Feeds is given about a minute per cron run to do its thing.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States rraney

    OK thanks. I guess I need to look into running it more often.

  • Pipeline finished with Skipped
    5 months ago
    #322996
    • megachriz โ†’ committed 7bea6300 on 8.x-3.x
      Issue #3482189 by megachriz: Fixed IntegrityConstraintViolationException...
  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands megachriz

    I merged the code for the issue you had with feeds_log and since it looks like your other issues with the module are now also solved, I'm marking this issue as "fixed".

    Feel free to reopen or open a new issue if you experience more issues related to the MS SQL Server Driver. ๐Ÿ™‚

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024