- Newest
- Most votes
- Most comments
Thank you for your questions about the Neptune exporter tool. Let me address your concerns:
- The Neptune exporter tool is designed to work across different operating systems, including Windows. However, the issue you're experiencing with the path separator is a known limitation when running the tool on Windows. The tool seems to be using the Windows path separator ('') instead of the forward slash ('/') required for S3 paths.
To work around this issue, you can try the following:
- Use forward slashes ('/') instead of backslashes ('') in your JSON configuration file for all path-related parameters, including the outputS3Path.
- If possible, try using the Linux subsystem for Windows or a Unix-like environment on your Windows EC2 instance to run the Neptune exporter tool.
- Regarding the copy process to S3, the Neptune exporter tool typically follows this workflow:
- It first exports the data to a local directory specified by the --root-path parameter.
- After the local export is complete, it then transfers the files from the local directory to the specified S3 bucket.
This two-step process allows for a more reliable export, as it first ensures that all data is properly exported locally before attempting to transfer it to S3. The copy to S3 is generally the final phase of the export process, occurring after all the data has been successfully exported to the local directory.
If you continue to experience issues, you might want to consider using the Neptune-Export service instead of the command-line tool. This service is designed to handle the export process more seamlessly and may avoid some of the path-related issues you're encountering.
Sources
Using the neptune-export command-line tool to export data from Neptune - Amazon Neptune
Using the Neptune-Export service to export Neptune data - Amazon Neptune
Relevant content
- AWS OFFICIALUpdated 2 years ago