Is OrientDB Schema Creation possible in multi thread environment? #10231
Unanswered
arpitdd123
asked this question in
Q&A
Replies: 1 comment
-
Hi, Yes it is possible to run schema command in multithread, in should improve a bit the performance anyway most of the work is done behind a exclusive lock so you should not see much difference, especially with an empty database. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a requirement where I want to create more than 400 vertices and edges schema along with 15 to 20 different properties in the orientdb.
Is it possible to create schema in orientdb on threads? Because as per "https://orientdb.com/docs/3.2.x/general/Schema.html?highlight=schema#schema", "Changes to the schema are not transactional. You must execute these commands outside of a transaction.".
Sequential orientdb schema creation take more time, so is there any way to make schema creation fast.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions