Conversation
|
!haiku レビューしてください |
|
Claude finished @Hexa's task in 32s —— View job PR レビュー: Docker 使用時のストレージを RustFS に変更する指摘事項(優先度順)【重要】1.
|
|
!opus 修正を再度レビューして |
|
Claude finished @voluntas's task in 1m 55s —— View job 修正後のレビュー
前回の指摘事項の修正状況
修正内容の確認結果1.
|
|
!opus 他に MinIO という表記はない?それも変更したいです。 |
This comment was marked as resolved.
This comment was marked as resolved.
7b74b72 で変更しました
df2cbe0 で変更しました
756d419 で実行例を rustfs に変更しました
9f4a590 で alias を myrustfs に変更しました
MinIO ライブラリを使っているので、MinIO クライアント表記のままにします |
This pull request migrates the storage backend from MinIO to RustFS across the project. It updates environment variables, Docker Compose configuration, documentation, Makefile commands, and test cases to use RustFS as the default storage solution instead of MinIO.
The most important changes are:
Environment and Configuration Updates:
.env.templateto replace all MinIO-related variables with RustFS equivalents, including data/log paths and endpoint settings. The default storage type is nowrustfsinstead ofminio.compose.ymlto remove the MinIO service and add the RustFS service with appropriate environment variables and volume mappings. All service dependencies and endpoints now reference RustFS. [1] [2] [3]Build and Setup Process:
Makefileto create and manage RustFS directories (rustfs/data,rustfs/logs) instead of MinIO'sdatadirectory. Makefile targets and environment variable exports now reference RustFS. [1] [2] [3] [4] [5]Documentation:
docs/DOCKER.mdto replace all references to MinIO with RustFS, including setup instructions, architecture descriptions, and port information. [1] [2] [3] [4] [5]Application and Test Code:
ingester/src/run.pyto userustfsas the default storage type and adjusted comments for RustFS compatibility. [1] [2]ingester/tests/test_ingester.pyto userustfsinstead ofminiofor storage, and updated comments to reflect the new backend. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17]