Closed (works as designed)
Project:
Feeds
Version:
7.x-2.x-dev
Component:
Documentation
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Dec 2011 at 22:36 UTC
Updated:
13 Dec 2011 at 18:34 UTC
In the readme.txt is says you can set feeds_process_limit to limit the amount of items that get processed per import. It does not currently respect that vale.
Comments
Comment #1
twistor commentedFrom readme.txt:
This translates to the number of nodes created in one batch process. I.e. if it's set to 50, and you're importing 200 items, then there will be 4 batch processes run.
Comment #2
twistor commentedActually, the docs need to be fixed. It's not just a limit on the number of nodes, but any entity that is created by Feeds.
Comment #3
pwaterz commentedSetting that value in your settings.php doesn't do anything.
Comment #4
twistor commentedI use this often. Are you setting it in the $conf array?
Comment #5
pwaterz commentedyes I am
$conf['feeds_process_limit'] = 5;
still try to process the entire thing in one batch operation.
Comment #6
pwaterz commentedIf you grep all the feeds code for 'global conf' it finds nothing.
grep -r -n 'global $conf' feeds
Comment #7
twistor commentedThe $conf array sets values for Drupal variables.
Comment #8
pwaterz commentedHuh? Did you not read my last comment. I am not a drupal noob.
Comment #9
twistor commentedFeeds accesses the $conf array through variable_get(), not directly.
Comment #10
pwaterz commentedI apologize I did know you could access it that way. But it still isn't working for me. I will investigate more and let you know.
Comment #11
pwaterz commentedIt looks to be working. I think i needed to clear the cache after I added it to the settings.php. Thanks for your help.