Loading gzipped csv file from URL in Neo4j 5
‎11-15-2022 06:46 AM
Hi all, I'm trying to load a gzipped csv file with the following cypher command:
:auto LOAD CSV FROM "/my/local/url/my_file.csv.gz" CALL { ... } IN TRANSACTIONS OF 1000 ROWS
I can load csv file with that command, but it fails loading a gzipped one.
Neo.ClientError.Statement.ExternalResourceFailed: no protocol
According to the documentation I should be able to read a gzipped csv file, isn't it?
Thanks for any help
Pierre
‎11-15-2022 06:58 AM
If it is a local file, you may need to prepend the path with "file:///"
‎11-15-2022 07:35 AM
Actually, I do, as for the csv file which reads fine.