Skip to content

Commit

Permalink
訳修正案 /engine/reference/commandline/dockerd #5 (#361)
Browse files Browse the repository at this point in the history
* [誤訳] 「/docker を fs cgroup ドライバとして使います」完全に主語述語が狂った誤訳。/docker はドライバではない。

* [誤訳] 「ルート cgroup の下に作成され」直訳にもなっていない誤訳。「他のcgroup」"他"とは何なのか、前段の誤訳に引きずられ意味不明。

* [誤訳] 論理がハチャメチャ。前段落を誤訳していて、ここは前段落の具体例であることが理解できていないのか。

* [誤訳,表現修正] 「ドライバは --cgroup-parent と異なるルールです」主語述語が意義を為していない誤訳。"ドライバがルールです"ってどういうこと? 「スライス(訳者注..」私は訳者注は不要と思う。本提案では残しておいた。これだけ長い訳者注は、文章読解の邪魔になる懸念。systemd の基本用語くらいは理解しておいて、という態度で訳してよいと思う。「コンテナ用の cgroup を」なぜ memory を訳していないのか不明。

* [表現修正] 「コンテナに対しても可能」"per"が訳されていない。全体設定はデーモンオプションにて行われるが、コンテナ実行時での個別指定が可能である、というニュアンスが伝わってこない。
  • Loading branch information
matsuand authored May 21, 2021
1 parent 674c236 commit 73770dd
Showing 1 changed file with 44 additions and 19 deletions.
63 changes: 44 additions & 19 deletions engine/reference/commandline/dockerd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1204,25 +1204,50 @@ Docker は Docker データ・ディレクトリ( ``/var/lib/docker`` )と `
デフォルトの親 cgroup
==============================
.. The --cgroup-parent option allows you to set the default cgroup parent to use for containers. If this option is not set, it defaults to /docker for fs cgroup driver and system.slice for systemd cgroup driver.
``--cgroup-parent`` オプションは、コンテナがデフォルトで使う親 cgroup (cgroup parent)を指定できます。オプションを設定しなければ、 ``/docker`` を fs cgroup ドライバとして使います。また ``system.slice`` を systemd cgroup ドライバとして使います。
.. If the cgroup has a leading forward slash (/), the cgroup is created under the root cgroup, otherwise the cgroup is created under the daemon cgroup.
cgroup はスラッシュ記号( ``/`` )で始まるルート cgroup の下に作成されますが、他の cgroup は daemon cgroup の下に作成されます。
.. Assuming the daemon is running in cgroup daemoncgroup, --cgroup-parent=/foobar creates a cgroup in /sys/fs/cgroup/memory/foobar, whereas using --cgroup-parent=foobar creates the cgroup in /sys/fs/cgroup/memory/daemoncgroup/foobar
デーモンが cgroup ``daemoncgroup`` で実行されており、``--cgroup-parent=/foobar`` で ``/sys/fs/cgroup/memory/foobar`` の中に cgroup を作成したと仮定時、 ``--cgroup-parent=foobar`` は ``/sys/fs/cgroup/memory/daemoncgroup/foobar`` に cgroup を作成します。
.. The systemd cgroup driver has different rules for --cgroup-parent. Systemd represents hierarchy by slice and the name of the slice encodes the location in the tree. So --cgroup-parent for systemd cgroups should be a slice name. A name can consist of a dash-separated series of names, which describes the path to the slice from the root slice. For example, --cgroup-parent=user-a-b.slice means the memory cgroup for the container is created in /sys/fs/cgroup/memory/user.slice/user-a.slice/user-a-b.slice/docker-<id>.scope.
systemd cgroup ドライバは ``--cgroup-parent`` と異なるルールです。Systemd のリソース階層は、スライス(訳者注:systemd における CPU やメモリなどのリソースを分割する単位のこと)とツリー上でスライスをエンコードする場所の名前で表します。そのため systemd cgroups 用の ``--cgroup-parent`` はスライス名と同じにすべきです。名前はダッシュ区切りの名前で構成します。つまりルート・スライスからのスライスに対するパスです。例えば ``--cgroup-parent=user-a-b.slice`` を指定する意は、コンテナ用の cgroup を ``/sys/fs/cgroup/memory/user.slice/user-a.slice/user-a-b.slice/docker-<id>.scope`` に割り当てます。
.. This setting can also be set per container, using the --cgroup-parent option on docker create and docker run, and takes precedence over the --cgroup-parent option on the daemon.
これらの指定はコンテナに対しても可能です。 ``docker create`` と ``docker run`` の実行時に ``--cgroup-parent`` を使うと、デーモンのオプションで指定した ``--cgroup-parent`` よりも優先されます。
.. The `--cgroup-parent` option allows you to set the default cgroup parent
to use for containers. If this option is not set, it defaults to `/docker` for
fs cgroup driver and `system.slice` for systemd cgroup driver.
``--cgroup-parent`` オプションは、コンテナが利用するデフォルトの親 cgroup を設定します。
このオプションが指定されていない場合、デフォルトは fs cgroup ドライバに対しては ``/docker`` となり、systemd cgroup ドライバに対しては ``system.slice`` となります。
.. If the cgroup has a leading forward slash (`/`), the cgroup is created
under the root cgroup, otherwise the cgroup is created under the daemon
cgroup.
cgroup の先頭がスラッシュ( ``/`` )で始まる場合、この cgroup はルート cgroup のもとに生成され、そうでない場合はデーモン cgroup のもとに生成されます。
.. Assuming the daemon is running in cgroup `daemoncgroup`,
`--cgroup-parent=/foobar` creates a cgroup in
`/sys/fs/cgroup/memory/foobar`, whereas using `--cgroup-parent=foobar`
creates the cgroup in `/sys/fs/cgroup/memory/daemoncgroup/foobar`
デーモンが仮に ``daemoncgroup`` という cgroup 内で実行されているとします。
``--cgroup-parent=/foobar`` という指定を行うと、cgroup は ``/sys/fs/cgroup/memory/foobar`` のもとに生成されます。
一方 ``--cgroup-parent=foobar`` と指定すると、cgroup は ``/sys/fs/cgroup/memory/daemoncgroup/foobar`` のもとに生成されます。
.. The systemd cgroup driver has different rules for `--cgroup-parent`. Systemd
represents hierarchy by slice and the name of the slice encodes the location in
the tree. So `--cgroup-parent` for systemd cgroups should be a slice name. A
name can consist of a dash-separated series of names, which describes the path
to the slice from the root slice. For example, `--cgroup-parent=user-a-b.slice`
means the memory cgroup for the container is created in
`/sys/fs/cgroup/memory/user.slice/user-a.slice/user-a-b.slice/docker-<id>.scope`.
systemd cgroup ドライバには ``--cgroup-parent`` に対して別ルールがあります。
systemd はスライス(訳者注:systemd における CPU やメモリなどのリソースを分割する単位のこと)による階層構造により表現され、そのスライス名はツリー内の場所をエンコードしています。
したがって systemd cgroups に対する ``--cgroup-parent`` の設定値はスライス名とします。
1 つの名前は、一連の名前をダッシュで区切って構成します。
これが、そのスライスに対するルートスライスからのパスを表します。
たとえば ``--cgroup-parent=user-a-b.slice`` というのは、コンテナに対するメモリ cgroup であり、``/sys/fs/cgroup/memory/user.slice/user-a.slice/user-a-b.slice/docker-<id>.scope`` に生成されます。
.. This setting can also be set per container, using the `--cgroup-parent`
option on `docker create` and `docker run`, and takes precedence over
the `--cgroup-parent` option on the daemon.
上の指定はコンテナ単位で行うこともできます。
その場合は ``docker create`` や ``docker run`` の実行時に ``--cgroup-parent`` を指定します。
この指定は、デーモンに対する ``--cgroup-parent`` オプションよりも優先して適用されます。
.. Daemon configuration file
Expand Down

0 comments on commit 73770dd

Please sign in to comment.