Error when using "quarkus-hibernate-orm" dependency on Google App Engine standard
See original GitHub issueJust by adding the quarkus-hibernate-orm dependency to a project and trying to run it on Google App Engine standard, I get this error:
2019-11-07 16:58:30,265 WARN [com.arj.ats.common] (main) ARJUNA048006: cannot create new instance of com.arjuna.ats.internal.arjuna.objectstore.ShadowNoFileLockStore: java.lang.reflect.InvocationTargetException ... Caused by: com.arjuna.ats.arjuna.exceptions.ObjectStoreException: ARJUNA012225: FileSystemStore::setupStore - cannot access root of object store: /srv/ObjectStore/ShadowNoFileLockStore/defaultStore/
I was able to get over this by setting this the object store dir to the /tmp directory (remember, it’s running in App Engine, so I can’t just change the permissions of the default directory):
-Dcom.arjuna.ats.arjuna.objectstore.objectStoreDir=/tmp
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (7 by maintainers)
For future reference - @tfve has created a discussion in the developer.jboss.org forums here https://developer.jboss.org/thread/280777
Yes @Sanne, I agree. We have to make sure it is working flawless. I’m planning on doing some transactional tests soon. I’ll let you know if something funny happens.