I'm new to Drupal.
I'm using the Feeds importer module to import some records from a csv file.
Every thing is working fine except only 50 records are getting imported at a time.
I need to import all records in the csv.
Its not a memory limit issue as the csv is not very large has about 200 records.
Is there a limit to the amount to data that could be imported.How can I change it?
Any help would be welcome

Comments

leewillis77’s picture

It imports in "chunks", which as you've noticed are set to 50 items at a time by default. If you want to change that, then you can set $conf['feeds_process_limit'] to your desired limit in sites/default/settings.php, e.g.

$conf['feeds_process_limit'] = 200;

You'll probably need to clear the Drupal cache after setting this up before it will get picked up, but otherwise we've used it successfully while importing 40,000 nodes :)

Richter Miklós’s picture

Thaks, it is very good solution for this problem! :-)
It was five very hard night about this problem, Thanks, thanks for 1000X + 1 :-)

Best regads
Miklós

divyesh19’s picture

@leewillis77, I have around 800 records with about 60 fields in each record. Currently, it gives timeout after some records. Will the above setting be enough or do I need to change any other configuration limits of php ?