Skip to content

Commit 231771e

Browse files
authored
Merge pull request #4916 from ClickHouse/locadex/main/1765106652463
feat(locadex): update translations on main
2 parents 592484b + 52559c9 commit 231771e

File tree

26 files changed

+5656
-5523
lines changed

26 files changed

+5656
-5523
lines changed

docs/integrations/data-ingestion/clickpipes/kafka/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ keywords: ['Kafka ClickPipes', 'Apache Kafka', 'streaming ingestion', 'real-time
1515
<!--AUTOGENERATED_START-->
1616
| Page | Description |
1717
|-----|-----|
18-
| [Reference](/integrations/clickpipes/kafka/reference) | Details supported formats, sources, delivery semantics, authentication and experimental features supported by Kafka ClickPipes |
19-
| [Schema registries for Kafka ClickPipe](/integrations/clickpipes/kafka/schema-registries) | How to integrate for ClickPipes with a schema registry for schema management |
2018
| [Creating your first Kafka ClickPipe](/integrations/clickpipes/kafka/create-your-first-kafka-clickpipe) | Step-by-step guide to creating your first Kafka ClickPipe. |
21-
| [Kafka ClickPipes FAQ](/integrations/clickpipes/kafka/faq) | Frequently asked questions about ClickPipes for Kafka |
19+
| [Schema registries for Kafka ClickPipe](/integrations/clickpipes/kafka/schema-registries) | How to integrate for ClickPipes with a schema registry for schema management |
20+
| [Reference](/integrations/clickpipes/kafka/reference) | Details supported formats, sources, delivery semantics, authentication and experimental features supported by Kafka ClickPipes |
2221
| [Best practices](/integrations/clickpipes/kafka/best-practices) | Details best practices to follow when working with Kafka ClickPipes |
22+
| [Kafka ClickPipes FAQ](/integrations/clickpipes/kafka/faq) | Frequently asked questions about ClickPipes for Kafka |
2323
<!--AUTOGENERATED_END-->

gt-lock.json

Lines changed: 5300 additions & 5202 deletions
Large diffs are not rendered by default.

i18n/jp/docusaurus-plugin-content-docs/current/cloud/guides/backups/03_bring_your_own_backup/01_export-backups-to-own-cloud-account.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ ClickHouse Cloud では、お客様のクラウドサービスプロバイダ (C
1919
バックアップを同一クラウドプロバイダ内で別リージョンにエクスポートするあらゆる利用形態では、[data transfer](/cloud/manage/network-data-transfer) の料金が発生することに注意してください。現在は、異なるクラウド間でのバックアップはサポートしていません。
2020
:::
2121

22+
2223
## 前提条件 {#requirements}
2324

2425
ご利用の CSP ストレージバケットにバックアップをエクスポート/リストアするには、次の情報が必要です。
@@ -28,26 +29,27 @@ ClickHouse Cloud では、お客様のクラウドサービスプロバイダ (C
2829
1. AWS S3 エンドポイント(形式):
2930

3031
```text
31-
s3://<bucket_name>.s3.amazonaws.com/<directory>
32+
s3://<bucket_name>.s3.amazonaws.com/<directory>
3233
```
3334

3435
例:
3536

3637
```text
37-
s3://testchbackups.s3.amazonaws.com/backups/
38+
s3://testchbackups.s3.amazonaws.com/backups/
3839
```
3940

4041
Where:
4142

4243
* `testchbackups` は、バックアップを書き出す先の S3 バケット名です。
43-
* `backups` は任意のサブディレクトリです。
44+
* `backups` は任意のサブディレクトリです。
4445

4546
2. AWS アクセスキーおよびシークレット。AWS のロールベース認証にも対応しており、AWS アクセスキーおよびシークレットの代わりに使用できます。
4647

4748
:::note
4849
ロールベース認証を使用するには、Secure S3 の[セットアップ](https://clickhouse.com/docs/cloud/security/secure-s3)に従ってください。さらに、[こちら](https://clickhouse.com/docs/cloud/security/secure-s3#option-2-manually-create-iam-role)で説明されている IAM ポリシーに `s3:PutObject` および `s3:DeleteObject` の権限を追加する必要があります。
4950
:::
5051

52+
5153
### Azure {#azure}
5254

5355
1. Azure Storage の接続文字列。
@@ -58,12 +60,12 @@ Where:
5860

5961
1. GCS エンドポイント(形式):
6062

61-
```text
62-
https://storage.googleapis.com/<bucket_name>/
63-
```
63+
```text
64+
https://storage.googleapis.com/<bucket_name>/
65+
```
6466
2. アクセス用 HMAC キーおよび HMAC シークレット。
6567
66-
<hr />
68+
<hr/>
6769
6870
# バックアップ / 復元 {#backup-restore}
6971
@@ -82,7 +84,7 @@ TO S3('https://testchbackups.s3.amazonaws.com/backups/<uuid>', '<key id>', '<key
8284

8385
:::note
8486
このサブディレクトリ内の新しいバックアップごとに異なる UUID を使用する必要があります。そうしないと、`BACKUP_ALREADY_EXISTS` エラーが発生します。
85-
例えば、日次バックアップを実行している場合は、毎日新しい UUID を使用する必要があります。\
87+
例えば、日次バックアップを実行している場合は、毎日新しい UUID を使用する必要があります。
8688
:::
8789

8890
**増分バックアップ**
@@ -93,6 +95,7 @@ TO S3('https://testchbackups.s3.amazonaws.com/backups/<uuid>', '<key id>', '<key
9395
SETTINGS base_backup = S3('https://testchbackups.s3.amazonaws.com/backups/<base-backup-uuid>', '<key id>', '<key secret>')
9496
```
9597

98+
9699
### バックアップから復元する {#restore-from-a-backup}
97100

98101
```sql
@@ -101,7 +104,8 @@ AS test_backups_restored
101104
FROM S3('https://testchbackups.s3.amazonaws.com/backups/<uuid>', '<key id>', '<key secret>')
102105
```
103106

104-
詳細については、[S3 エンドポイントを使用するように BACKUP/RESTORE を設定する](/operations/backup#configuring-backuprestore-to-use-an-s3-endpoint) を参照してください。
107+
詳細については、[S3 エンドポイントを使用するように BACKUP/RESTORE を設定する](/operations/backup/s3_endpoint) を参照してください。
108+
105109

106110
## Azure Blob Storage へのバックアップ / リストア {#backup--restore-to-azure-blob-storage}
107111

@@ -124,6 +128,7 @@ TO AzureBlobStorage('<AzureBlobStorage endpoint connection string>', '<container
124128
SETTINGS base_backup = AzureBlobStorage('<AzureBlobStorage endpoint connection string>', '<container>', '<blob>/<uuid>')
125129
```
126130

131+
127132
### バックアップから復元する {#restore-from-a-backup-1}
128133

129134
```sql
@@ -132,7 +137,8 @@ AS test_backups_restored_azure
132137
FROM AzureBlobStorage('<AzureBlobStorage endpoint connection string>', '<container>', '<blob>/<uuid>')
133138
```
134139

135-
詳細については、[S3 エンドポイントを使用するように BACKUP/RESTORE を構成する](/operations/backup#configuring-backuprestore-to-use-an-azureblobstorage-endpoint) を参照してください。
140+
詳細については、[AzureBlobStorage エンドポイントを使用するように BACKUP/RESTORE を構成する](/operations/backup/azure#configuring-backuprestore-to-use-an-azureblobstorage-endpoint) を参照してください。
141+
136142

137143
## Google Cloud Storage (GCS) へのバックアップ / 復元 {#backup--restore-to-google-cloud-storage-gcs}
138144

@@ -155,6 +161,7 @@ TO S3('https://storage.googleapis.com/test_gcs_backups/<uuid>/my_incremental', '
155161
SETTINGS base_backup = S3('https://storage.googleapis.com/test_gcs_backups/<uuid>', 'key', 'secret')
156162
```
157163
164+
158165
### バックアップから復元する {#restore-from-a-backup-2}
159166
160167
```sql

i18n/jp/docusaurus-plugin-content-docs/current/cloud/guides/backups/03_bring_your_own_backup/03_backup_restore_using_commands.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ import TabItem from '@theme/TabItem';
1717
ユーザーは、`BACKUP` および `RESTORE` コマンドを使用してバックアップをストレージバケットにエクスポートできます。これは、[ユーザーインターフェイス経由](/cloud/manage/backups/backup-restore-via-ui)でバックアップや復元を行う方法に加えて利用できます。
1818
本ガイドでは、3 つすべての CSP 向けのコマンドを紹介します。
1919

20-
21-
2220
## 必要条件 {#requirements}
2321

2422
ご自身の CSP ストレージバケットにバックアップをエクスポート/復元するには、次の情報が必要です:
@@ -46,12 +44,10 @@ import TabItem from '@theme/TabItem';
4644
</TabItem>
4745
</Tabs>
4846

49-
50-
5147
## 特定のデータベースのバックアップ / リストア {#backup_restore_db}
5248

5349
ここでは、*単一* のデータベースのバックアップおよびリストアの方法を示します。
54-
完全なバックアップおよびリストアコマンドについては、[バックアップコマンドの概要](/operations/backup#command-summary)を参照してください。
50+
完全なバックアップおよびリストアコマンドについては、[バックアップコマンドの概要](/operations/backup/overview#command-summary)を参照してください。
5551

5652
### AWS S3 {#aws-s3-bucket}
5753

@@ -152,8 +148,6 @@ FROM AzureBlobStorage(
152148
</TabItem>
153149
</Tabs>
154150

155-
156-
157151
## サービス全体のバックアップ / リストア {#backup_restore_entire_service}
158152

159153
サービス全体をバックアップするには、以下のコマンドを使用します。
@@ -196,8 +190,6 @@ FROM S3(
196190
</TabItem>
197191
</Tabs>
198192

199-
200-
201193
## FAQ {#backups-faq}
202194

203195
<details>
@@ -233,4 +225,4 @@ UI 上でエクスポート先として新しい場所を設定する必要が
233225

234226
特定のサービスの外部バックアップを無効化するには、そのサービスの設定画面に移動し、「Change external backup」をクリックします。続く画面で「Remove setup」をクリックすると、そのサービスの外部バックアップが無効化されます。
235227

236-
</details>
228+
</details>

i18n/jp/docusaurus-plugin-content-docs/current/data-compression/compression-modes.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ doc_type: 'reference'
1010
import CompressionBlock from '@site/static/images/data-compression/ch_compression_block.png';
1111
import Image from '@theme/IdealImage';
1212

13+
1314
# 圧縮モード {#compression-modes}
1415

1516
ClickHouse プロトコルは、チェックサム付きの **データブロック** の圧縮をサポートしています。
1617
どのモードを選ぶべきか迷う場合は、`LZ4` を使用してください。
17-
18+
``
1819
:::tip
1920
利用可能な [カラム圧縮コーデック](/sql-reference/statements/create/table#column_compression_codec) について詳しく確認し、テーブル作成時または作成後にそれらを指定してください。
2021
:::
@@ -54,4 +55,4 @@ Checksum は [ClickHouse CityHash](../native-protocol/hash.md) を用いて `has
5455
## None モード {#none-mode}
5556

5657
*None* モードを使用する場合、`compressed_data` は元のデータと同一になります。
57-
非圧縮モードは、ハッシュ計算のオーバーヘッドが無視できる程度に小さいため、チェックサムによって追加のデータ完全性を確保するのに有用です。
58+
非圧縮モードは、ハッシュ計算のオーバーヘッドが無視できる程度に小さいため、チェックサムによって追加のデータ完全性を確保するのに有用です。

i18n/jp/docusaurus-plugin-content-docs/current/guides/manage-and-deploy-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ keywords: ['デプロイメント', '管理', '運用管理', '運用', 'ガイ
2828
| [Startup Scripts](/operations/startup-scripts) | マイグレーションや自動スキーマ作成に有用な、起動時にスタートアップスクリプトを実行する方法の例。 |
2929
| [External Disks for Storing Data](/operations/storing-data) | ClickHouse で外部ストレージを構成する方法に関する情報と例。 |
3030
| [Allocation profiling](/operations/allocation-profiling) | jemalloc を用いたアロケーションサンプリングおよびプロファイリングに関する情報と例。 |
31-
| [Backup and Restore](/operations/backup) | ローカルディスクまたは外部ストレージへのバックアップに関するガイド。 |
31+
| [Backup and Restore](/operations/backup/overview) | ローカルディスクまたは外部ストレージへのバックアップに関するガイド。 |
3232
| [Caches](/operations/caches) | ClickHouse におけるさまざまなキャッシュタイプの解説。 |
3333
| [Workload scheduling](/operations/workload-scheduling) | ClickHouse におけるワークロードスケジューリングの解説。 |
3434
| [Self-managed Upgrade](/operations/update) | セルフマネージド環境でアップグレードを実施する際のガイドライン。 |

i18n/jp/docusaurus-plugin-content-docs/current/operations/system-tables/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ doc_type: 'reference'
1818

1919
{/*AUTOGENERATED_START*/ }
2020

21-
2221
| ページ | 概要 |
2322
| ----------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
2423
| [システムテーブル概要](/operations/system-tables/overview) | システムテーブルとは何か、なぜ有用なのかについての概要。 |

i18n/jp/docusaurus-plugin-content-docs/current/tools-and-utilities/static-files-disk-uploader.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,23 @@
22
slug: /operations/utilities/static-files-disk-uploader
33
title: 'clickhouse-static-files-disk-uploader'
44
keywords: ['clickhouse-static-files-disk-uploader', 'utility', 'disk', 'uploader']
5-
description: 'clickhouse-static-files-disk-uploader ユーティリティについて説明します'
5+
description: 'clickhouse-static-files-disk-uploader ユーティリティの概要を説明します'
66
doc_type: 'guide'
77
---
88

99
# clickhouse-static-files-disk-uploader {#clickhouse-static-files-disk-uploader}
1010

1111
指定した ClickHouse テーブルのメタデータを含むデータディレクトリを出力します。このメタデータを使用して、`web` ディスクをバックエンドとする読み取り専用データセットに基づいた ClickHouse テーブルを別のサーバー上に作成できます。
1212

13-
このツールをデータ移行に使用しないでください。代わりに、[`BACKUP` および `RESTORE` コマンド](/operations/backup)を使用してください。
13+
このツールをデータ移行に使用しないでください。代わりに、[`BACKUP` および `RESTORE` コマンド](/operations/backup/overview)を使用してください。
1414

1515
## 使い方 {#usage}
1616

1717
```bash
1818
$ clickhouse static-files-disk-uploader [args]
1919
```
2020

21+
2122
## コマンド {#commands}
2223

2324
|Command|Description|
@@ -53,6 +54,7 @@ SELECT data_paths
5354
└───────────────────────────────────────────────────────┘
5455
```
5556

57+
5658
## 出力テーブルのメタデータディレクトリをローカルファイルシステム上に書き出す {#output-table-metadata-directory-to-the-local-filesystem}
5759

5860
ターゲット出力ディレクトリ `output` と指定したメタデータパスを使用して、次のコマンドを実行します。
@@ -64,9 +66,10 @@ $ clickhouse static-files-disk-uploader --output-dir output --metadata-path ./st
6466
成功すると、次のメッセージが表示され、`output` ディレクトリに指定したテーブルのメタデータが含まれているはずです。
6567

6668
```repsonse
67-
データパス:「/Users/john/store/bcc/bccc1cfd-d43d-43cf-a5b6-1cda8178f1ee」、出力先パス:「output
69+
Data path: "/Users/john/store/bcc/bccc1cfd-d43d-43cf-a5b6-1cda8178f1ee", destination path: "output"
6870
```
6971

72+
7073
## テーブルメタデータディレクトリを外部の URL に出力する {#output-table-metadata-directory-to-an-external-url}
7174

7275
この手順は、`--test-mode` フラグを追加する点を除き、データディレクトリをローカルファイルシステムに出力する場合と同様です。出力ディレクトリを指定する代わりに、`--url` フラグを使用してターゲット URL を指定する必要があります。
@@ -77,8 +80,9 @@ $ clickhouse static-files-disk-uploader --output-dir output --metadata-path ./st
7780
$ clickhouse static-files-disk-uploader --test-mode --url http://nginx:80/test1 --metadata-path ./store/bcc/bccc1cfd-d43d-43cf-a5b6-1cda8178f1ee/
7881
```
7982

83+
8084
## テーブルメタデータディレクトリを使用して ClickHouse テーブルを作成する {#using-the-table-metadata-directory-to-create-a-clickhouse-table}
8185

82-
テーブルメタデータディレクトリを取得したら、それを使用して別のサーバー上に ClickHouse テーブルを作成できます。
86+
テーブルメタデータディレクトリが用意できたら、それを使用して別のサーバー上に ClickHouse テーブルを作成できます。
8387

84-
デモを含む[この GitHub リポジトリ](https://github.com/ClickHouse/web-tables-demo)を参照してください。例では、`web` ディスクを使用してテーブルを作成し、別のサーバー上のデータセットにテーブルをアタッチしています
88+
デモを含む[この GitHub リポジトリ](https://github.com/ClickHouse/web-tables-demo)を参照してください。例では、`web` ディスクを使用してテーブルを作成し、別のサーバー上のデータセットにテーブルを関連付けています

i18n/jp/docusaurus-plugin-content-docs/current/troubleshooting/index.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,10 @@ title: 'よくある問題のトラブルシューティング'
2020
description: '遅いクエリ、メモリエラー、接続の問題、設定に関する問題など、最も一般的な ClickHouse の問題に対する解決策を紹介します。'
2121
---
2222

23-
24-
2523
# よくある問題のトラブルシューティング {#troubleshooting-common-issues}
2624

2725
ClickHouse で問題が発生していますか?ここでは、よくある問題とその対処方法を紹介します。
2826

29-
30-
3127
## パフォーマンスとエラー {#performance-and-errors}
3228

3329
クエリの実行が遅い、タイムアウトが発生する、または "Memory limit exceeded" や "Connection refused" といった特定のエラーメッセージが表示される場合。
@@ -60,8 +56,6 @@ ClickHouse で問題が発生していますか?ここでは、よくある問
6056
- **その他の問題**[クラスター全体のエラーを追跡する](/docs/operations/system-tables/errors)
6157
</details>
6258

63-
64-
6559
## メモリとリソース {#memory-and-resources}
6660

6761
メモリ使用量が高い、メモリ不足によるクラッシュが発生する、または ClickHouse デプロイメントの適切なサイジングについてサポートが必要な場合。
@@ -89,8 +83,6 @@ ClickHouse で問題が発生していますか?ここでは、よくある問
8983

9084
</details>
9185

92-
93-
9486
## 接続と認証 {#connections-and-authentication}
9587

9688
ClickHouse に接続できない、認証に失敗する、SSL 証明書エラーが発生する、クライアント設定に問題がある場合。
@@ -116,8 +108,6 @@ ClickHouse に接続できない、認証に失敗する、SSL 証明書エラ
116108

117109
</details>
118110

119-
120-
121111
## セットアップと構成 {#setup-and-configuration}
122112

123113
初期インストール、サーバー設定、データベース作成、データのインジェストに関する問題、レプリケーション設定など。
@@ -145,13 +135,11 @@ ClickHouse に接続できない、認証に失敗する、SSL 証明書エラ
145135
- [データレプリケーションを設定する](/docs/engines/table-engines/mergetree-family/replication)
146136
- [分散テーブルを設定する](/docs/engines/table-engines/special/distributed)
147137
<!-- - [ClickHouse Keeper setup](/docs/guides/sre/keeper/index.md) -->
148-
- [バックアップとリカバリを設定する](/docs/operations/backup)
138+
- [バックアップとリカバリを設定する](/docs/operations/backup/overview)
149139
- [モニタリングを設定する](/docs/operations/system-tables/overview)
150140

151141
</details>
152142

153-
154-
155143
## まだお困りですか? {#still-need-help}
156144

157145
解決策が見つからない場合は、次の方法を試してください:

0 commit comments

Comments
 (0)