Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
I want to import a large amount of timestamped data into a ValueStream. The files are CSV with multiples columns and +100k rows (per file). It's seem that CSVParser is the way to go, but it doesn't fit my needs. Indeed, several problems :
So, how can I import such a large data history into a ValueStream?
Could a JSON format be easier?
Solved! Go to Solution.
Hello @plpt,
It depends on several factors -- how often you're going to do it, whether you have access to the database and filesystem, etc. There are many possible solutions, here are just few ideas:
JSON format won't help you much, I'm afraid.
Regards,
Constantine
Hello @plpt,
It depends on several factors -- how often you're going to do it, whether you have access to the database and filesystem, etc. There are many possible solutions, here are just few ideas:
JSON format won't help you much, I'm afraid.
Regards,
Constantine
Thank you Constantine, it's very clear now!
Philippe