Magento – the best and fastest way to create products in Magento 2

importmagento2product

I am developing a connector between Magento 2 and an ERP system. And I have to import 1000s of products from ERP to magento. And Update them using cron.

So I want to know what is the best way to bulk import products. And how they can be achieved?

Best Answer

There's a Magento 2 version of FastSimpleImport:

https://github.com/firegento/FireGento_FastSimpleImport2

It allows you to programmatically access Magento\ImportExport module and will be quite fast (50-100 products per second).

Related Topic