You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ We use *breaking :warning:* to mark changes that are not backward compatible (re
13
13
### Added
14
14
-[#4453](https://github.com/thanos-io/thanos/pull/4453) Tools: Add flag `--selector.relabel-config-file` / `--selector.relabel-config` / `--max-time` / `--min-time` to filter served blocks.
15
15
-[#4482](https://github.com/thanos-io/thanos/pull/4482) COS: Add http_config for cos object store client.
16
+
-[#4506](https://github.com/thanos-io/thanos/pull/4506)`Baidu BOS` object storage, see [documents](docs/storage.md#baidu-bos) for further information.
@echo ">> running unit tests (without /test/e2e). Do export THANOS_TEST_OBJSTORE_SKIP=GCS,S3,AZURE,SWIFT,COS,ALIYUNOSS if you want to skip e2e tests against all real store buckets. Current value: ${THANOS_TEST_OBJSTORE_SKIP}"
221
+
@echo ">> running unit tests (without /test/e2e). Do export THANOS_TEST_OBJSTORE_SKIP=GCS,S3,AZURE,SWIFT,COS,ALIYUNOSS,BOS if you want to skip e2e tests against all real store buckets. Current value: ${THANOS_TEST_OBJSTORE_SKIP}"
222
222
@go test$(shell go list ./... | grep -v /vendor/ | grep -v /test/e2e);
223
223
224
224
.PHONY: test-local
225
225
test-local: ## Runs test excluding tests for ALL object storage integrations.
Copy file name to clipboardExpand all lines: docs/storage.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -418,6 +418,23 @@ config:
418
418
419
419
Use --objstore.config-file to reference to this configuration file.
420
420
421
+
#### Baidu BOS
422
+
423
+
In order to use Baidu BOS object storage, you should apply a Baidu Account to create an object storage bucket at first. Note that detailed from Baidu Cloud Documents:[https://cloud.baidu.com/doc/BOS/index.html](https://cloud.baidu.com/doc/BOS/index.html) for more detail.
424
+
425
+
To use Baidu BOS object storage, please specify following yaml configuration file in `objstore.config*` flag.
426
+
427
+
```yaml mdox-exec="go run scripts/cfggen/main.go --name=bos.Config"
428
+
type: BOS
429
+
config:
430
+
bucket: ""
431
+
endpoint: ""
432
+
access_key: ""
433
+
secret_key: ""
434
+
```
435
+
436
+
Use --objstore.config-file to reference to this configuration file.
437
+
421
438
#### Filesystem
422
439
423
440
This storage type is used when user wants to store and access the bucket in the local filesystem. We treat filesystem the same way we would treat object storage, so all optimization for remote bucket applies even though, we might have the files locally.
0 commit comments