Magento2 Product Export – How to Export Product CSV in Magento 2.3

exportmagento2product

When i try to export csv from backend it get the message "Message is added to queue, wait to get your file soon". but i did not get any file later.
I tried this 4-5 time, same message appears.

what is the issue. Is the file getting saved somewhere into magento directory?

Best Answer

After export product, You will see some file at var folder like:

importexport_5e57c6084a30b

After that you can run below command if CRON is not set

php bin/magento queue:consumers:start exportProcessor

Above command will create another file with your export data.

For more information, read thread at GitHub

Related Topic