From 1322f59790def36ad3918f81d8613180fb49bf46 Mon Sep 17 00:00:00 2001 From: xiaojiebao Date: Mon, 8 Apr 2024 10:57:19 +0800 Subject: [PATCH] fix comments --- docs/how-to-use-relational-entity-storage.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/how-to-use-relational-entity-storage.md b/docs/how-to-use-relational-entity-storage.md index 7d0292dec44..fcb5db37bb8 100644 --- a/docs/how-to-use-relational-entity-storage.md +++ b/docs/how-to-use-relational-entity-storage.md @@ -7,7 +7,16 @@ This software is licensed under the Apache License version 2." ## Introduction -Gravitino supports using `Relational Entity Storage` to store metadata after version `0.5.0`. Currently, you can use `MySQL` as the jdbc backend for `Relational Entity Storage`. +Gravitino supports using `Relational Entity Storage` to store metadata after version `0.5.0`. + +#### Target users +`Relational Entity Storage` is mainly aimed at users who are accustomed to using RDBMS to store data or lack available KV storage +to help them better to use Gravitino. + +#### Advantages +With `Relational Entity Storage`, you can quickly deploy Gravitino in a production environment and take advantage of relational +storage to view and manage metadata. +Currently, you can use `MySQL` as the jdbc backend for `Relational Entity Storage`. ## Steps for usage @@ -22,7 +31,7 @@ Gravitino supports using `Relational Entity Storage` to store metadata after ver You need `download` and `unzip` the distribution package firstly, please see: [How to install Gravitino](how-to-install.md). Then you can get the initialization script in the directory: ```text -${distribution_package_directory}/scripts/relational-entity-store/jdbc/mysql/ +${distribution_package_directory}/scripts/relational-entity-store/mysql/ ``` The script names like `schema-{version}-mysql.sql`, and the `version` depends on your Gravitino version. For example, if your Gravitino version is `0.5.0`, then you should choose the `schema-0.5.0-mysql.sql` script.