Replies: 1 comment 1 reply
|
What you are seeing is usually not expected if the configuration was applied correctly. In many cases, this happens because the values were changed in a config file that is not actually being loaded by the running server instance. A few things to check:
You can also try setting the values directly from the console: config set script.pool.maxSize 50
config set db.pool.max 100Then restart and check again with: config get script.pool.maxSize
config get db.pool.maxIf the values still revert to defaults, it may indicate:
One good way to confirm whether the values are actually active is through runtime behavior (thread pools, connection limits, logs, monitoring metrics) rather than relying only on the |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I need to make a couple of configuration changes to the default settings (
script.pool.maxSizeanddb.pool.max). I've tried doing this using both the command-line approach and updating orientdb-server-config.xml. But after restarting the server with either or both of these in place, the consoleCONFIGcommand still returns both settings' default values. Is that expected? If so, how do I confirm that the new values have been accepted? If not, how do I go about setting those (and other) values?All reactions