Skip to content

Commit

Permalink
use gcs instead of s3
Browse files Browse the repository at this point in the history
  • Loading branch information
sdojjy committed Mar 28, 2024
1 parent fa7ebba commit 6cbe22d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions external-storage-uri.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ tiup cdc:v7.5.0 cli changefeed create \
```shell
s3://external/test.csv?access-key=${access-key}&secret-access-key=${secret-access-key}
```
> **注意:**
>
> 请注意,GCS 的 XML API 没有完全兼容 `s3://` 协议, 如果你使用的是 GCS,请使用 `gcs://` 协议。

## GCS URI 格式

Expand Down
5 changes: 5 additions & 0 deletions ticdc/troubleshoot-ticdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,8 @@ cdc cli changefeed create --server=http://127.0.0.1:8300 --sink-uri="mysql://roo
```shell
cdc cli changefeed create --server=http://127.0.0.1:8300 --sink-uri "kafka://127.0.0.1:9092/test?topic=test&protocol=open-protocol&kafka-version=2.4.0"
```

## 使用 TiCDC 开启 Redo 时报错 `[CDC:ErrS3StorageAPI]external storage api: NotImplemented`,该如何处理?

该问题可能是由于外部存储没有完全兼容 `s3://` 协议导致。你可以替换成其他协议,比如,如果你使用的是 GCS, 可以使用 `gs://` 协议。

0 comments on commit 6cbe22d

Please sign in to comment.