From bc64e4101d9b2323d132815861ebfe6edb48d861 Mon Sep 17 00:00:00 2001 From: SATO Yusuke Date: Thu, 11 Jul 2019 00:27:14 +0900 Subject: [PATCH] JA: Fix mistranslation in Federation section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ":" in the second paragraph is not properly translated. - "have" (持つ) in the second paragraph shouldn't be literally translated in this situation. - "therefore" (その結果) in the second paragraph is missing in the translation. - The translation of "replication" should be standardized into "レプリケーション". - "用いる" (use) in "データベースを用いる" would be mistranslation of "result in" (〜なることで). - The meaning of the third paragraph is translated incorrectly because "cache locality" (キャッシュの局所性) is mistranslated into "ローカルキャッシュ" (local cache). - The meaning of the 4th paragraph is translated incorrectly because "serializing" (直列化) is missing in the translation. --- README-ja.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-ja.md b/README-ja.md index 9aa683e21f..156666c0f2 100644 --- a/README-ja.md +++ b/README-ja.md @@ -830,7 +830,7 @@ SQLなどのリレーショナルデータベースはテーブルに整理さ Source: Scaling up to your first 10 million users

-フェデレーション (もしくは機能分割化とも言う) はデータベースを機能ごとに分割する。例えば、モノリシックな単一データベースの代わりに三つのデータベースを持つことができます: **フォーラム**、 **ユーザー** そして **プロダクト**です。各データベースへの書き込み読み取りのトラフィックが減ることで複製ラグも短くなります。より小さなデータベースを用いることで、メモリーに収まるデータが増えます。ローカルキャッシュに保存できる量が増えることで、キャッシュヒット率も上がります。単一の中央マスターが書き込みの処理をしなくても、並列で書き込みを処理することができ、スループットの向上が期待できます。 +フェデレーション (もしくは機能分割化とも言う) はデータベースを機能ごとに分割する。例えば、モノリシックな単一データベースの代わりに、データベースを **フォーラム**、 **ユーザー**、 **プロダクト** のように三つにすることで、データベース一つあたりの書き込み・読み取りのトラフィックが減り、その結果レプリケーションのラグも短くなります。データベースが小さくなることで、メモリーに収まるデータが増えます。キャッシュの局所性が高まるため、キャッシュヒット率も上がります。単一の中央マスターで書き込みを直列化したりしないため、並列で書き込みを処理することができ、スループットの向上が期待できます。 ##### 欠点: federation