salvatore-piccione/blueprints 1
A Property Graph Model Interface
salvatore-piccione/orientdb-jdbc 1
OrientDb JDBC Driver
salvatore-piccione/atmosphere 0
Realtime Client Server Framework for the JVM, supporting WebSockets and Cross-Browser Fallbacks Support
salvatore-piccione/docs.go.cd 0
GoCD user documentation
salvatore-piccione/Marbles-Lite-Brightside-Samples 0
CA Brightside - Command Line Interface for the Mainframe
salvatore-piccione/RabbitMQ-Management 0
Administration tools for RabbitMQ in java
A Graph Server
salvatore-piccione/simple-node-js-react-npm-app 0
For an introductory tutorial on how to use Jenkins to build a simple Node.js and React application with npm.
push eventorientechnologies/orientdb
commit sha 951b63ac85c5726e954f272ead5d3367c127d08a
Update views management
push time in 12 hours
push eventorientechnologies/orientdb
commit sha 9137fe65be85f2776799ebed93262e9d97f64a36
Update views management
push time in 13 hours
push eventorientechnologies/orientdb
commit sha e9043530db106097f46fc31b3e4b1de64e91d25e
Implement DROP CLASS with parameter Resolves #9627
push time in 18 hours
issue closedorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
OrientDB Version: 3.2.0
Java Version: 8
maven dependency: orientdb-client 3.2.0
i want to drop class named "zzz"
can work:
ODatabaseSession session = pool.acquire();
OResultSet rs = session.command("drop class zzz");
rs.close();
not work:
ODatabaseSession session = pool.acquire();
OResultSet rs = session.command("drop class ?" ,"zzz");
rs.close();
is it unsupported ?
Exception in thread "main" com.orientechnologies.orient.core.sql.OCommandSQLParsingException: Error parsing query:
drop class ?
^
Encountered " <DROP> "drop "" at line 1, column 1.
Was expecting one of:
<SELECT> ...
<TRAVERSE> ...
<MATCH> ...
<INSERT> ...
<RETURN> ...
<FIND> ...
<REBUILD> ...
<OPTIMIZE> ...
<GRANT> ...
<REVOKE> ...
<BEGIN> ...
<COMMIT> ...
<ROLLBACK> ...
<IF> ...
<SLEEP> ...
<CONSOLE> ...
<MOVE> ...
<SELECT> ...
<SELECT> ...
<TRAVERSE> ...
<MATCH> ...
<FIND> ...
<INSERT> ...
<MOVE> ...
DB name="cmdb"
Error Code="1"
DB name="cmdb"
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:78)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleException(OChannelBinaryAsynchClient.java:355)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleStatus(OChannelBinaryAsynchClient.java:303)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleStatus(OChannelBinaryAsynchClient.java:325)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.beginResponse(OChannelBinaryAsynchClient.java:209)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.beginResponse(OChannelBinaryAsynchClient.java:167)
at com.orientechnologies.orient.client.remote.OStorageRemote.beginResponse(OStorageRemote.java:2006)
at com.orientechnologies.orient.client.remote.OStorageRemote.lambda$networkOperationRetryTimeout$2(OStorageRemote.java:390)
at com.orientechnologies.orient.client.remote.OStorageRemote.baseNetworkOperation(OStorageRemote.java:455)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperationRetryTimeout(OStorageRemote.java:370)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperation(OStorageRemote.java:410)
at com.orientechnologies.orient.client.remote.OStorageRemote.query(OStorageRemote.java:1098)
at com.orientechnologies.orient.core.db.document.ODatabaseDocumentRemote.query(ODatabaseDocumentRemote.java:379)
at com.example.orientdbclient.OrientDBController.main(OrientDBController.java:27)
closed time in 18 hours
tonglshpush eventorientechnologies/orientdb
commit sha bfe34dee1565e484da353f90b65a71db425932d4
Implement DROP CLASS with parameter Resolves #9627
push time in 19 hours
issue commentorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
got it ,thank you.
comment created time in 20 hours
issue commentorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
Oh yes, sorry, I got it... The problem is the parameter. No, it's not supported for DROP CLASS in the new SQL executor, but I can implement it right away, it's pretty easy. It will be in v 3.2.1
Thanks
Luigi
comment created time in 20 hours
issue commentorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
@luigidellaquila
comment created time in 20 hours
issue commentorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
wait please... db.command(String query, Object... args) throw the exception too.
comment created time in 20 hours
issue closedorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
OrientDB Version: 3.2.0
Java Version: 8
maven dependency: orientdb-client 3.2.0
i want to drop class named "zzz"
can work:
ODatabaseSession session = pool.acquire();
OResultSet rs = session.query("drop class zzz");
rs.close();
not work:
ODatabaseSession session = pool.acquire();
OResultSet rs = session.query("drop class ?" ,"zzz");
rs.close();
is it unsupported ?
Exception in thread "main" com.orientechnologies.orient.core.sql.OCommandSQLParsingException: Error parsing query:
drop class ?
^
Encountered " <DROP> "drop "" at line 1, column 1.
Was expecting one of:
<SELECT> ...
<TRAVERSE> ...
<MATCH> ...
<INSERT> ...
<RETURN> ...
<FIND> ...
<REBUILD> ...
<OPTIMIZE> ...
<GRANT> ...
<REVOKE> ...
<BEGIN> ...
<COMMIT> ...
<ROLLBACK> ...
<IF> ...
<SLEEP> ...
<CONSOLE> ...
<MOVE> ...
<SELECT> ...
<SELECT> ...
<TRAVERSE> ...
<MATCH> ...
<FIND> ...
<INSERT> ...
<MOVE> ...
DB name="cmdb"
Error Code="1"
DB name="cmdb"
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:78)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleException(OChannelBinaryAsynchClient.java:355)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleStatus(OChannelBinaryAsynchClient.java:303)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleStatus(OChannelBinaryAsynchClient.java:325)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.beginResponse(OChannelBinaryAsynchClient.java:209)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.beginResponse(OChannelBinaryAsynchClient.java:167)
at com.orientechnologies.orient.client.remote.OStorageRemote.beginResponse(OStorageRemote.java:2006)
at com.orientechnologies.orient.client.remote.OStorageRemote.lambda$networkOperationRetryTimeout$2(OStorageRemote.java:390)
at com.orientechnologies.orient.client.remote.OStorageRemote.baseNetworkOperation(OStorageRemote.java:455)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperationRetryTimeout(OStorageRemote.java:370)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperation(OStorageRemote.java:410)
at com.orientechnologies.orient.client.remote.OStorageRemote.query(OStorageRemote.java:1098)
at com.orientechnologies.orient.core.db.document.ODatabaseDocumentRemote.query(ODatabaseDocumentRemote.java:379)
at com.example.orientdbclient.OrientDBController.main(OrientDBController.java:27)
closed time in 20 hours
tonglshissue commentorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
Hi @tonglsh
db.query() is only for queries that do not modify the state (ie. SELECT, TRAVERSE, MATCH...).
For DROP you have to use db.command()
Thanks
Luigi
comment created time in 20 hours
issue openedorientechnologies/orientdb
ODatabaseSession().command(String query, Object... args) unsupport for DROP?
OrientDB Version: 3.2.0
Java Version: 8
maven dependency: orientdb-client 3.2.0
i want to drop class named "zzz"
can work:
ODatabaseSession session = pool.acquire();
OResultSet rs = session.query("drop class zzz");
rs.close();
not work:
ODatabaseSession session = pool.acquire();
OResultSet rs = session.query("drop class ?" ,"zzz");
rs.close();
is it unsupported ?
Exception in thread "main" com.orientechnologies.orient.core.sql.OCommandSQLParsingException: Error parsing query:
drop class ?
^
Encountered " <DROP> "drop "" at line 1, column 1.
Was expecting one of:
<SELECT> ...
<TRAVERSE> ...
<MATCH> ...
<INSERT> ...
<RETURN> ...
<FIND> ...
<REBUILD> ...
<OPTIMIZE> ...
<GRANT> ...
<REVOKE> ...
<BEGIN> ...
<COMMIT> ...
<ROLLBACK> ...
<IF> ...
<SLEEP> ...
<CONSOLE> ...
<MOVE> ...
<SELECT> ...
<SELECT> ...
<TRAVERSE> ...
<MATCH> ...
<FIND> ...
<INSERT> ...
<MOVE> ...
DB name="cmdb"
Error Code="1"
DB name="cmdb"
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:78)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleException(OChannelBinaryAsynchClient.java:355)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleStatus(OChannelBinaryAsynchClient.java:303)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.handleStatus(OChannelBinaryAsynchClient.java:325)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.beginResponse(OChannelBinaryAsynchClient.java:209)
at com.orientechnologies.orient.client.binary.OChannelBinaryAsynchClient.beginResponse(OChannelBinaryAsynchClient.java:167)
at com.orientechnologies.orient.client.remote.OStorageRemote.beginResponse(OStorageRemote.java:2006)
at com.orientechnologies.orient.client.remote.OStorageRemote.lambda$networkOperationRetryTimeout$2(OStorageRemote.java:390)
at com.orientechnologies.orient.client.remote.OStorageRemote.baseNetworkOperation(OStorageRemote.java:455)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperationRetryTimeout(OStorageRemote.java:370)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperation(OStorageRemote.java:410)
at com.orientechnologies.orient.client.remote.OStorageRemote.query(OStorageRemote.java:1098)
at com.orientechnologies.orient.core.db.document.ODatabaseDocumentRemote.query(ODatabaseDocumentRemote.java:379)
at com.example.orientdbclient.OrientDBController.main(OrientDBController.java:27)
created time in a day
startedzeroturnaround/sql-formatter
started time in 2 days
startedlaktak/js-graphy
started time in 2 days
issue commentorientechnologies/orientdb
Hi! I had the same problem using orient 3.1.5. Any news about this?
DWL:database: block size = 4096 bytes, maximum segment size = 347 MB [DoubleWriteLogGL]Exception `18748728` in storage `plocal:/path/to/database`: 3.1.5 - Veloce (build 846eeb77dcb175a9fbd7ed534e039424322f44a7, branch 3.1.x)
com.orientechnologies.orient.core.exception.OStorageException: Exception during execution of atomic operation inside of storage database
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideAtomicOperation(OAtomicOperationsManager.java:195)
at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.open(OAbstractPaginatedStorage.java:422)
at com.orientechnologies.orient.core.db.OrientDBEmbedded.open(OrientDBEmbedded.java:483)
at com.orientechnologies.orient.core.db.OrientDBEmbedded.open(OrientDBEmbedded.java:418)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:979)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:947)
at com.orientechnologies.orient.server.OConnectionBinaryExecutor.executeDatabaseOpen37(OConnectionBinaryExecutor.java:1369)
at com.orientechnologies.orient.client.remote.message.OOpen37Request.execute(OOpen37Request.java:75)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.sessionRequest(ONetworkProtocolBinary.java:355)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.execute(ONetworkProtocolBinary.java:239)
at com.orientechnologies.common.thread.OSoftThread.run(OSoftThread.java:67)
Caused by: com.orientechnologies.orient.core.exception.OStorageException: Exception during execution of component operation inside component config.cd in storage database
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideComponentOperation(OAtomicOperationsManager.java:221)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideComponentOperation(OAtomicOperationsManager.java:206)
at com.orientechnologies.orient.core.storage.impl.local.paginated.base.ODurableComponent.executeInsideComponentOperation(ODurableComponent.java:102)
at com.orientechnologies.orient.core.storage.cluster.v2.OPaginatedClusterV2.open(OPaginatedClusterV2.java:211)
at com.orientechnologies.orient.core.storage.config.OClusterBasedStorageConfiguration.load(OClusterBasedStorageConfiguration.java:250)
at com.orientechnologies.orient.core.storage.disk.OLocalPaginatedStorage.initConfiguration(OLocalPaginatedStorage.java:558)
at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.lambda$open$1(OAbstractPaginatedStorage.java:433)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideAtomicOperation(OAtomicOperationsManager.java:189)
... 10 more
Caused by: com.orientechnologies.orient.core.exception.OStorageException: File with name config.cd does not exist in storage database
at com.orientechnologies.orient.core.storage.cache.local.OWOWCache.loadFile(OWOWCache.java:760)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationBinaryTracking.loadFile(OAtomicOperationBinaryTracking.java:372)
at com.orientechnologies.orient.core.storage.impl.local.paginated.base.ODurableComponent.openFile(ODurableComponent.java:193)
at com.orientechnologies.orient.core.storage.cluster.v2.OPaginatedClusterV2.lambda$open$1(OPaginatedClusterV2.java:216)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideComponentOperation(OAtomicOperationsManager.java:214)
... 17 more
comment created time in 2 days
issue commentorientechnologies/orientdb
File with name config.cd does not exist in <dbname>
Hi! I had the same problem using orient 3.1.5. Any news about this?
DWL:database: block size = 4096 bytes, maximum segment size = 347 MB [DoubleWriteLogGL]Exception `18748728` in storage `plocal:/path/to/database`: 3.1.5 - Veloce (build 846eeb77dcb175a9fbd7ed534e039424322f44a7, branch 3.1.x)
com.orientechnologies.orient.core.exception.OStorageException: Exception during execution of atomic operation inside of storage database
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideAtomicOperation(OAtomicOperationsManager.java:195)
at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.open(OAbstractPaginatedStorage.java:422)
at com.orientechnologies.orient.core.db.OrientDBEmbedded.open(OrientDBEmbedded.java:483)
at com.orientechnologies.orient.core.db.OrientDBEmbedded.open(OrientDBEmbedded.java:418)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:979)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:947)
at com.orientechnologies.orient.server.OConnectionBinaryExecutor.executeDatabaseOpen37(OConnectionBinaryExecutor.java:1369)
at com.orientechnologies.orient.client.remote.message.OOpen37Request.execute(OOpen37Request.java:75)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.sessionRequest(ONetworkProtocolBinary.java:355)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.execute(ONetworkProtocolBinary.java:239)
at com.orientechnologies.common.thread.OSoftThread.run(OSoftThread.java:67)
Caused by: com.orientechnologies.orient.core.exception.OStorageException: Exception during execution of component operation inside component config.cd in storage database
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideComponentOperation(OAtomicOperationsManager.java:221)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideComponentOperation(OAtomicOperationsManager.java:206)
at com.orientechnologies.orient.core.storage.impl.local.paginated.base.ODurableComponent.executeInsideComponentOperation(ODurableComponent.java:102)
at com.orientechnologies.orient.core.storage.cluster.v2.OPaginatedClusterV2.open(OPaginatedClusterV2.java:211)
at com.orientechnologies.orient.core.storage.config.OClusterBasedStorageConfiguration.load(OClusterBasedStorageConfiguration.java:250)
at com.orientechnologies.orient.core.storage.disk.OLocalPaginatedStorage.initConfiguration(OLocalPaginatedStorage.java:558)
at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.lambda$open$1(OAbstractPaginatedStorage.java:433)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideAtomicOperation(OAtomicOperationsManager.java:189)
... 10 more
Caused by: com.orientechnologies.orient.core.exception.OStorageException: File with name config.cd does not exist in storage database
at com.orientechnologies.orient.core.storage.cache.local.OWOWCache.loadFile(OWOWCache.java:760)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationBinaryTracking.loadFile(OAtomicOperationBinaryTracking.java:372)
at com.orientechnologies.orient.core.storage.impl.local.paginated.base.ODurableComponent.openFile(ODurableComponent.java:193)
at com.orientechnologies.orient.core.storage.cluster.v2.OPaginatedClusterV2.lambda$open$1(OPaginatedClusterV2.java:216)
at com.orientechnologies.orient.core.storage.impl.local.paginated.atomicoperations.OAtomicOperationsManager.executeInsideComponentOperation(OAtomicOperationsManager.java:214)
... 17 more
comment created time in 2 days
startedyerich/Graphr
started time in 2 days
issue closedorientechnologies/orientdb
Socket Read time out REST API batch push using thread in java
OrientDB Version: <3.2.0>
Java Version: <1.8>
OS: <mac os 11.3.1>
Expected behavior
Am pushing batch of vertex through REST API from java via Thread.It results in Socket java.net.SocketTimeoutException: Read timed out .Am i missing any configuration here ?I've tried configuring NETWORK_SOCKET_TIMEOUT,still same exists.Kindly help me on this. Request details : Content-Type - application/json Authorization header has been set
Exception trace Suppressed: java.net.SocketTimeoutException: Read timed out| at java.net.SocketInputStream.socketRead0(Native Method)| at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)| at java.net.SocketInputStream.read(SocketInputStream.java:171)| at java.net.SocketInputStream.read(SocketInputStream.java:141)| at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)| at java.io.BufferedInputStream.read1(BufferedInputStream.java:286)| at java.io.BufferedInputStream.read(BufferedInputStream.java:345)| at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:735)| at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:678)| at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1587)| at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1492)| at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)|
closed time in 2 days
KirubakaranSPissue commentorientechnologies/orientdb
Socket Read time out REST API batch push using thread in java
It all depends on how big is each vertex. How many properties? Do you have binary or long strings? If you can compute that amount in terms of total Kb sent it would be helpful.
Generally speaking, if you're sending big packets concurrently, OrientDB's web socket could having hard time to process the requests.
Try reducing the parallel threads from 10 to 3 and see how it goes. Also from 1000 vertices, try with 300.
Try to play around those numbers to see a good configuration based on your data and hw/sw available.
comment created time in 2 days
issue commentorientechnologies/orientdb
Socket Read time out REST API batch push using thread in java
I am inserting 1000 vertices as JSON through rest API from java.
On Wed, Jun 16, 2021 at 6:57 PM Luca Garulli ***@***.***> wrote:
1,000 operations or 1,000 bytes? How big is the packet in Kb/Mb?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/orientechnologies/orientdb/issues/9624#issuecomment-862379734, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJRKU3ETJMS6K4UIVTYLOD3TTCRFJANCNFSM46OXQHPA .
comment created time in 3 days
issue commentorientechnologies/orientdb
Socket Read time out REST API batch push using thread in java
1,000 operations or 1,000 bytes? How big is the packet in Kb/Mb?
comment created time in 3 days
issue commentorientechnologies/orientdb
Socket Read time out REST API batch push using thread in java
The size of the packet is 1000 and parallely running 10 threads.
On Wed, Jun 16, 2021 at 12:15 AM Luca Garulli ***@***.***> wrote:
What's the size of the packet you're sending?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/orientechnologies/orientdb/issues/9624#issuecomment-861746257, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJRKU3BUHDR6XJFAYM36Y53TS6NVFANCNFSM46OXQHPA .
comment created time in 3 days
issue commentorientechnologies/orientdb
Socket Read time out REST API batch push using thread in java
What's the size of the packet you're sending?
comment created time in 3 days
issue commentorientechnologies/orientdb
how to save a database so I can recover from : Id of WAL operation can not be duplicated?
3.1.7 also works. I cant go beyond this.
comment created time in 3 days
PR opened orientechnologies/orientdb
pr created time in 4 days
issue commentorientechnologies/orientdb
[3.2.0] JS function invocation issues
Hi Luca, Can you please check this https://github.com/orientechnologies/orientdb/issues/9624 issue?As it is very urgent,kindly update me on this. Thanks and Regards Kirubakaran S P
On Tue, Jun 15, 2021 at 11:05 AM Luca Garulli ***@***.***> wrote:
Closed #9596 https://github.com/orientechnologies/orientdb/issues/9596.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/orientechnologies/orientdb/issues/9596#event-4889292525, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJRKU3A6SH6BCRYU5XKI5MDTS3RDDANCNFSM432SXCKA .
comment created time in 4 days