Hi folks,
I got the attached error, very basic process, I'm joining a table loaded from a CSV with another CSV. It should be easy and my transformers are correct.
Hi folks,
I got the attached error, very basic process, I'm joining a table loaded from a CSV with another CSV. It should be easy and my transformers are correct.
Hi @osarhan,
Are you try to merger between two CSV files?
If yes, try with the transformer FeatureMerger.
Thanks,
Danilo
Hi @osarhan,
Are you try to merger between two CSV files?
If yes, try with the transformer FeatureMerger.
Thanks,
Danilo
Thanks,
Danilo
I don't think the Joiner is particularly well suited to join two huge CSV files, personally.
I would use the FeatureMerger, but it's important to make sure that you use two separate readers, one for the supplier CSV and one for the requestor CSV.
In the Navigator, make sure the suppliers CSV comes at the very top, this means that dataset will be read before the requestors.
You can then tell the FeatureMerger that the suppliers come first, which will "unblock" then transformer making it a lot more efficient memory-wise.
Another alternative could be to use the InlineQuerier, but it's slightly more complicated. Let us know if the "non-blocking" FeatureMerger doesn't work, and we'll help you if needed.