Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upWhat is the recommended way to export huge data (1Lac plus rows). #33
Comments
This comment has been minimized.
This comment has been minimized.
There's really no way to avoid making 1 API call per customer -- the Magento SOAP API does not support bulk retrieval of customer info. You have to get customer metadata in bulk and then make 1 call per customer to get the detailed data. Are you getting timeouts? Or is it just slow and you wish it was faster? |
This comment has been minimized.
This comment has been minimized.
@JordanVerasamy currently getting no timeouts. It is just slow and I want it to be a little faster. |
This comment has been minimized.
This comment has been minimized.
@gopalvirat I've created a feature request based on this to retrieve data in parallel: #66 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem:
What is the recommended way to export huge data (1 Lac plus rows).
As the data will be processing line by line, what is the best possible way to handle this.