The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Job Agent cannot find file on mounted network drive
Hi all,
I have a RM 9.7 docker implementation on a Windows Server 2019 VM with currently one Job Agent in the queue.
I tried to access a file on a mounted network drive which is both accessible by my local work station and with the VM with the same file path.
The Job Agent however does not look at this drive but seems to search inside the containers repository and throws an error:
File not found
The file 'java.io.FileNotFoundException: /rapidminer-jobagent/home/data/containers/1/Z:\\xyz\zyx.csv (No such file or directory)' does not exist.
Has anyone got an idea how I can make the Job Agent look in the right path? The docker runs AI Hub in an emulated Linux instance. Might be part of the problem I guess.
Thanks or your help!
Biersepp
I have a RM 9.7 docker implementation on a Windows Server 2019 VM with currently one Job Agent in the queue.
I tried to access a file on a mounted network drive which is both accessible by my local work station and with the VM with the same file path.
The Job Agent however does not look at this drive but seems to search inside the containers repository and throws an error:
File not found
The file 'java.io.FileNotFoundException: /rapidminer-jobagent/home/data/containers/1/Z:\\xyz\zyx.csv (No such file or directory)' does not exist.
Has anyone got an idea how I can make the Job Agent look in the right path? The docker runs AI Hub in an emulated Linux instance. Might be part of the problem I guess.
Thanks or your help!
Biersepp
0
Answers
- Docker host bind/mount: Bind Z:\ into the Job Agent docker container. This will allow you to specify absolute paths in the operator, e.g. bind Z:\testFolder to /myFolder in the docker container. If you like to access Z:\testFolder\xyz.csv in your process, change the file path in the operator to /myFolder/xyz.csv. You can also host bind entire Z:\ if you like, e.g. to /myNetworkDriveZ and adjust file path to /myNetworkDriveZ/testFolder/xyz.csv.
- (recommended) Although binding host drives works, I'd recommend that you place the .csv file directly into Server's/AI Hub's repository. Then you have consistent files residing next to each other. If the contents of the drive change frequently you could also think about using our REST API to periodically push the changed CSV file to the repository or starting from 9.7, utilize projects and with 9.8 utilize projects with large file support. Network drives might have hick-ups, connection errors etc. If you place it directly in the repository you know that this is going to work regardless of any external drive being available.
I hope this helped.