Ronald
Ronald

Reputation: 1

Is there a way to restart an Exasol database instance automatically

For reasons outlined here: https://community.exasol.com/t5/discussion-forum/performance-on-premise-dropping/td-p/9029 we need to restart a database regularly (at least until al issues are resolved, and this can take some time). So the question arises: Can this be done on a regular bases without human interaction?

LUA is not a solution, but perhaps a cron job is possible, but we need OS access for that, which we do not have.

Upvotes: 0

Views: 124

Answers (2)

fortnico
fortnico

Reputation: 26

Yes, this should be possible using the shudownDatabase() and startDatabase() methods from this GitHub repository. You might need to use stateDatabase() in between to determine when the database is actually stopped before you try to start it again.

Upvotes: 0

Related Questions