I am developing an apache Jena application. It works fine when I run the codes from Intellij IDE but if I generate a jar file and run the jar file in terminal it doesn't work.
The error I get:
Uncaught exeption ! : org.apache.jena.dboe.base.file.AlreadyLocked: Failed to get a lock: file='/home/iam/OneDrive/Internship/current_data/myTDB/tdb.lock': Lock already held
I am using:
- Apache jena (3.15.0) . (TDB2)
- Gradle 6.5
- JVM:11.0.8 (Ubuntu 11.0.8+10-post-Ubuntu-0ubuntu120.04)
TDB Specific Locking Issues
I would refer to the TDB FAQs as a first reference:
Basically you cannot open the same TDB database location from two processes simultaneously.
As for what appears to be happening in your specific case:
Or if IntelliJ is forking the new process then you/it aren't explicitly stopping that running process when you are done with it.
Most likely you'll need to begin with quitting and restarting IntelliJ since that process (or a child process) will be the lock holder. You'll then need to make sure that any code you are running from inside IntelliJ is spawned as a fresh process and that you stop that process whenever you want to test your built JAR separately.
Another possible approach would be to make your TDB database location configurable so you use a different location when testing in IntelliJ vs when running the JAR file. That way you avoid any possibility of the two processes competing over database locks because they'd be using separate databases.
File System Specific Locking Issues
I also notice that your database appears to be on a OneDrive location -
/home/iam/OneDrive/Internship/current_data/myTDB/tdb.lock
- it is also possible that there is a file system issue happening here.For 2, which seems the more likely problem in your case, you can try finding out what is holding the lock e.g. How to list processes locking file to figure out what other process is locking it and investigate further.