Использование встроенной базы данных в производственной среде?
Я использую встроенную базу данных Spring MVC 3.2 (H2) для хранения хода выполнения задач в режиме реального времени, уведомлений об очередях и некоторых временных журналов. Единственная проблема с этим подходом состоит в том, что мои данные исчезают; Если приложение повторно развертывается или сервер перезапускается. Этот сценарий, вероятно, очень редок в производственной среде, но все же я хочу знать, что использование встроенных баз данных в производственной среде является хорошим выбором или нет?.. Или есть ли способ сохранить состояние встроенной базы данных в жесткий диск, чтобы при следующей загрузке сервера мы могли восстановить состояние базы данных до сохраненной контрольной точки?
Спасибо.
1 ответ
Встроенные базы данных не предназначены для использования в производственной среде. Они предназначены для более быстрой разработки, так как вам не нужно иметь зависимость от внешней базы данных. Со встроенной базой данных вы можете программно запустить ее и при желании инициализировать в соответствии с вашими потребностями.
Причина, по которой ваши изменения теряются во время повторного развертывания, заключается в том, что вы используете версию HsQL в оперативной памяти вместо режима In-process(Standalone file). Вы можете использовать автономный режим, который сохраняет изменения.
In-Process (Standalone) Mode
This mode runs the database engine as part of your application program in the same Java Virtual Machine. For most applications this mode can be faster, as the data is not converted and sent over the network. The main drawback is that it is not possible by default to connect to the database from outside your application. As a result you cannot check the contents of the database with external tools such as Database Manager while your application is running. In 1.8.0, you can run a server instance in a thread from the same virtual machine as your application and provide external access to your in-process database.
The recommended way of using the in-process mode in an application is to use an HSQLDB Server instance for the database while developing the application and then switch to In-Process mode for deployment.
An In-Process Mode database is started from JDBC, with the database file path specified in the connection URL. For example, if the database name is testdb and its files are located in the same directory as where the command to run your application was issued, the following code is used for the connection:
Connection c = DriverManager.getConnection("jdbc:hsqldb:file:testdb", "sa", "");
The database file path format can be specified using forward slashes in Windows hosts as well as Linux hosts. So relative paths or paths that refer to the same directory on the same drive can be identical. For example if your database path in Linux is /opt/db/testdb and you create an identical directory structure on the C: drive of a Windows host, you can use the same URL in both Windows and Linux:
Connection c = DriverManager.getConnection("jdbc:hsqldb:file:/opt/db/testdb", "sa", "");
When using relative paths, these paths will be taken relative to the directory in which the shell command to start the Java Virtual Machine was executed. Refer to Javadoc for jdbcConnection for more details.