Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Localize horizontal scaling for Japanese #2890

Merged
merged 2 commits into from
Feb 2, 2024
Merged

Conversation

shizhenhu
Copy link
Contributor

Describe your changes

Localize horizontal scaling for Japanese

Related issue number or link (ex: resolves #issue-number)

#2600

Checklist before opening this PR (put x in the checkboxes)

  • This PR does not contain plagiarism
    • don’t copy other people’s work unless you are quoting and contributing it to them.
  • I have signed off on all commits
    • signing off (ex: git commit -s) is to affirm that commits comply DCO. If you are working locally, you could add an alias to your gitconfig by running git config --global alias.ci "commit -s".

Signed-off-by: shizhenhu <shizhenhu@gmail.com>
Copy link

netlify bot commented Feb 2, 2024

Deploy Preview for cncfglossary ready!

Name Link
🔨 Latest commit 86cd2ed
🔍 Latest deploy log https://app.netlify.com/sites/cncfglossary/deploys/65bcaf47ad6a870008ff7b6c
😎 Deploy Preview https://deploy-preview-2890--cncfglossary.netlify.app/ja/horizontal-scaling
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@github-actions github-actions bot added the lang/ja for Japanese label Feb 2, 2024
@Okabe-Junya Okabe-Junya linked an issue Feb 2, 2024 that may be closed by this pull request
@Okabe-Junya
Copy link
Collaborator

The target page on the deploy preview:

Copy link
Collaborator

@Okabe-Junya Okabe-Junya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

コントリビュートありがとうございます :)

いくつかのコメントを残したので、確認していただければと思います。

例えば、1つのノードが1秒あたり1,000リクエストを処理できるとすると、ノードを1つ追加するごとに、システム全体で1秒あたり処理できる総リクエストが約1,000リクエスト増えることになります。
これにより、アプリケーションは特定のノードの処理能力を強化することなく、より多くの処理を同時に行うことができます。

## 関連する用語はあります
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## 関連する用語はあります
## 関連する用語はありますか

## 関連する用語はありますかで統一するルールになっているので、修正をお願いします。

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

すみません、コピペミスです。修正しました。

アプリケーションに対する需要がそのアプリケーションインスタンスの現在の処理能力を超えた場合、システムに処理能力を[スケール](/ja/scalability/)する(処理能力を向上させる)方法が必要になります。


システムにノードを追加する(水平スケーリング)か、既存のノードにより多くの計算リソースを追加する(垂直スケーリング)かのいずれかが可能です。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
システムにノードを追加する水平スケーリングか、既存のノードにより多くの計算リソースを追加する垂直スケーリングかのいずれかが可能です。
システムにノードを追加する(水平スケーリング)か、既存のノードにより多くの計算リソースを追加する(垂直スケーリング)かのいずれかが可能です。

カッコ () は半角で統一する決まりになっているため、修正をお願いします

ref. https://kubernetes.io/ja/docs/contribute/localization/#基本方針

  • スペースと括弧 () 、コロン : は半角、それ以外の記号類は全角で表記

---

水平スケーリングは、より多くのノードを追加することでシステムの処理能力を向上させる手法です。個別の[ノード](/ja/nodes/)により多くの計算リソースを追加する手法とは異なります(後者は[垂直スケーリング](/ja/vertical-scaling/)として知られています)。
たとえば、メモリ容量4GBのシステムを持っていて、そのメモリを16GBに増やしたい場合、水平スケーリングはメモリ容量16GBのシステムに切り替えるのではなく、メモリ4GB x 4台で対応します。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"RAM" を「メモリ」と訳していただいていますが、"RAM" のママで良いのではないかと思いました

おそらく、「メモリ」というとRAM以外にもROM: Read Only Memory(やその他ストレージデバイスなど)を指すこともあるので、原文では "RAM" と表記されているという認識です。

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ご指摘ありがとうございます。日常会話ではメモリ=RAMという認識ですが、明確的な定義ではありません。RAMの表記に統一します。

---

水平スケーリングは、より多くのノードを追加することでシステムの処理能力を向上させる手法です。個別の[ノード](/ja/nodes/)により多くの計算リソースを追加する手法とは異なります(後者は[垂直スケーリング](/ja/vertical-scaling/)として知られています)。
たとえば、メモリ容量4GBのシステムを持っていて、そのメモリを16GBに増やしたい場合、水平スケーリングはメモリ容量16GBのシステムに切り替えるのではなく、メモリ4GB x 4台で対応します。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMHO:

メモリ4GB x 4台

の箇所は「メモリ4GBのマシン4台で」のように乗算を用いないで表記しても良いかと思いました


## どのように役に立つのでしょうか

水平スケーリングにより、アプリケーションはインフラとなるクラスターが提供する限界までスケールすることができます。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
水平スケーリングにより、アプリケーションはインフラとなるクラスターが提供する限界までスケールすることができます
水平スケーリングにより、アプリケーションは基礎となるクラスターが提供する限界までスケールすることができます

IMHO: "underlying" は「基礎」と直訳しても良いと思いました(インフラが意訳でなかったらすいません。。)

Signed-off-by: shizhenhu <shizhenhu@gmail.com>
Copy link
Collaborator

@Okabe-Junya Okabe-Junya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ありがとうございます、LGTMです〜

Copy link
Collaborator

@naonishijima naonishijima left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@naonishijima naonishijima merged commit e03eb70 into cncf:dev-ja Feb 2, 2024
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lang/ja for Japanese
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[ja] Localize Horizontal Scaling
3 participants