What kind of data will be stored in local if we use s3? #4403
-
I am working on a logging system which have ton of data then it needs to be stored by ObjectStorage like S3. I read document but didn't find related information about:
Can you answer above questions or give me some related documents? Thank you very much. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Sorry, the storage location document is not updated https://docs.greptime.com/user-guide/concepts/storage-location If you set the
The storage of database and table metadata depends on your deployment type. In standalone setups, metadata like database options, table schema, and internal states are stored locally under
You cannot restore the database directly from S3. For standalone databases, you must back up the For more about DR solutions, please read the DR document https://docs.greptime.com/user-guide/administration/disaster-recovery/overview |
Beta Was this translation helpful? Give feedback.
-
Maybe we can implement a s3 backed kvbackend, and s3 backed WAL, then all data will be located on s3 solely. |
Beta Was this translation helpful? Give feedback.
Sorry, the storage location document is not updated https://docs.greptime.com/user-guide/concepts/storage-location
I will update it ASAP.
If you set the
storage.type
tos3
, the data and index files will be stored in S3, but:The storage of database and table metadata depends on your deployment type. In standalone setups, metadata like database options, table schema, and internal states are stored locally under
data_home
. In a cluster configuration, metadata is stored in etcd; a minimum of three nodes is recommended for the etcd cluster.