I am connecting to remote database as following using JDBC driver v2.2.13
Connection conn = (OrientJdbcConnection) DriverManager.getConnection("jdbc:orient:remote:" + ip + ":" + port + ";" + ip + ":" + port2 + "/"
+ appName, info);
I am getting the following below warning as server logs when creating edge
WARNI {db=Sun} Requested command 'create edge type '_F_ as subclass of 'E'' must be executed outside active transaction: the transactional will be committed and reopen right after it. To avoid this behavior execute it outside a transaction [OrientGraph]
From warning it looks like instance (Connection conn) of database is transactional.
One way to solve this is using OrientgraphNoTx database instance using Java API.
How can I do "non-transactional" commit or equivalent of OrientgraphNoTx for Orient JDBC driver