Skip to content

Commit

Permalink
Add object storage config to doc (#2049)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?
Add object storage config to doc

### Type of change

- [x] Documentation Update
  • Loading branch information
Ami11111 authored Oct 15, 2024
1 parent 4b619c2 commit dc9848e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/references/configurations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,21 @@ compact_interval = "120s"
# The system performs a flush operation for that in-memory index
# Range : [8192, 8388608]
mem_index_capacity = 1048576
# Storage type. Including local, minio. Default to local
storage_type = "local"

# Object storage configuration
[storage.object_storage]
# URL of the object storage server
url = "127.0.0.1:9000"
# The bucket where store the data
bucket_name = "infinity"
# Access key of object storage server
access_key = "minioadmin"
# Secret key of object storage server
secret_key = "minioadmin"
# Using http or https protocol
enable_https = false

# Buffer manager configuration
[buffer]
Expand Down

0 comments on commit dc9848e

Please sign in to comment.