I using dockerized version of Blazegraph (https://hub.docker.com/r/nawer/blazegraph) and I am trying to import a large file to Blazegraph. It gave me a warning "File too large, enter the path to file" with an example (/path/to/Thesaurus.owl). So I described the path as follows in the update part.
/home/erwarth/Downloads/Thesaurus.OWL/Thesaurus.owl
However when I submit the data I am receiving the following error
Caused by: java.io.FileNotFoundException: /home/erwarth/Downloads/Thesaurus.OWL/Thesaurus.owl (No such file or directory)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.(FileInputStream.java:138)
at java.io.FileInputStream.(FileInputStream.java:93)
at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:90)
at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:188)
at com.bigdata.rdf.sail.webapp.InsertServlet$InsertWithURLsTask.call(InsertServlet.java:561)
at com.bigdata.rdf.sail.webapp.InsertServlet$InsertWithURLsTask.call(InsertServlet.java:417)
at com.bigdata.rdf.task.ApiTaskForIndexManager.call(ApiTaskForIndexManager.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
... 1 more
Does anybody have an idea?