Magento 1.9 – How to Import 22,000 Products Efficiently

importmagento-1.9

I'm working on a Magento store and I'm looking to import 22.000 products with a single solution.

I've written a Ruby wrapper for the REST API, it takes around 7 seconds to create a single product (visible in store, assigned to a product category, assigned to website and with one image)

The Ruby wrapper for the REST API is tested against a demo Magento store hosted on a DigitalOcean VPS with 2 CPU'S and 2GB RAM.

It would take a very long time to import the 22.000 with a single solution using the Ruby wrapper.

Since I'm not a very experienced programmer and don't have PHP or SQL knowledge, I'm wondering how a more experienced programmer would solve this.

Best Answer

the best way is using MAGMI. you can find that open source project in the following url http://sourceforge.net/projects/magmi/ . The tutorial of how to use it -> http://wiki.magmi.org/index.php?title=Main_Page .

Magmi’s speed is very evident whenever you import a large number of SKUs. We’ve seen import speeds of as many as 2-3,000 products per minute. The speed depends on such things as the number of fields to be imported and whether images are imported from the same server or from remote URLs.

You can also build scripts to automatically run that could pull a file from a remote server and update the products using a cron job.

Related Topic