SAMZA-7: Rewrite Container section of docs to bring it up-to-date. Reviewed by Jakob Homan.
Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/26c1e27d Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/26c1e27d Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/26c1e27d Branch: refs/heads/0.7.0 Commit: 26c1e27d18a2b44bad16ff074cc05b7db4f11367 Parents: a887d3e Author: Martin Kleppmann <[email protected]> Authored: Mon Jun 9 19:06:05 2014 +0100 Committer: Martin Kleppmann <[email protected]> Committed: Tue Jun 10 12:05:19 2014 +0100 ---------------------------------------------------------------------- docs/css/main.css | 27 +- .../documentation/container/checkpointing-2.png | Bin 18449 -> 0 bytes .../documentation/container/checkpointing.png | Bin 14613 -> 0 bytes .../documentation/container/checkpointing.svg | 4 + .../learn/documentation/container/job-flow.png | Bin 31104 -> 0 bytes .../learn/documentation/container/metrics.png | Bin 20542 -> 0 bytes .../container/tasks-and-partitions.png | Bin 14362 -> 0 bytes .../container/tasks-and-partitions.svg | 4 + docs/learn/documentation/0.7.0/api/overview.md | 206 ++++++++------- .../0.7.0/comparisons/introduction.md | 2 +- .../documentation/0.7.0/comparisons/mupd8.md | 2 +- .../0.7.0/container/checkpointing.md | 82 ++++-- .../documentation/0.7.0/container/event-loop.md | 89 ++----- .../documentation/0.7.0/container/index.md | 18 -- docs/learn/documentation/0.7.0/container/jmx.md | 17 +- .../documentation/0.7.0/container/metrics.md | 120 +++++---- .../0.7.0/container/samza-container.md | 66 +++++ .../0.7.0/container/serialization.md | 46 ++++ .../0.7.0/container/state-management.md | 263 ++++++++----------- .../documentation/0.7.0/container/streams.md | 163 +++++------- .../0.7.0/container/task-runner.md | 44 ---- .../documentation/0.7.0/container/windowing.md | 39 ++- docs/learn/documentation/0.7.0/index.html | 5 +- .../0.7.0/introduction/architecture.md | 6 +- .../documentation/0.7.0/jobs/configuration.md | 9 +- .../documentation/0.7.0/jobs/job-runner.md | 4 +- docs/learn/documentation/0.7.0/jobs/logging.md | 8 +- .../learn/documentation/0.7.0/jobs/packaging.md | 2 +- .../learn/documentation/0.7.0/jobs/yarn-jobs.md | 6 +- .../0.7.0/yarn/application-master.md | 8 +- .../learn/documentation/0.7.0/yarn/isolation.md | 2 +- 31 files changed, 648 insertions(+), 594 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/26c1e27d/docs/css/main.css ---------------------------------------------------------------------- diff --git a/docs/css/main.css b/docs/css/main.css index 4dc014c..44d4888 100755 --- a/docs/css/main.css +++ b/docs/css/main.css @@ -136,11 +136,14 @@ h4 { pre { border: 0px !important; border-radius: 0px !important; - overflow-x: auto; + overflow: scroll !important; + white-space: pre; + overflow-wrap: normal; + word-wrap: normal !important; } pre code { - overflow-wrap: normal; white-space: pre; + font-size: 12px; } th.header { cursor: pointer; @@ -194,6 +197,26 @@ ul.documentation-list { list-style: none; padding-left: 20px; } +img.diagram-large { + width: 100%; +} +table.documentation { + border-collapse: collapse; + font-size: 12px; + margin: 1em 0; +} +table.documentation th, table.documentation td { + text-align: left; + vertical-align: top; + border: 1px solid #888; + padding: 5px; +} +table.documentation th.nowrap, table.documentation td.nowrap { + white-space: nowrap; +} +table.documentation th { + background-color: #eee; +} .footer { clear: both; position: relative; http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/26c1e27d/docs/img/0.7.0/learn/documentation/container/checkpointing-2.png ---------------------------------------------------------------------- diff --git a/docs/img/0.7.0/learn/documentation/container/checkpointing-2.png b/docs/img/0.7.0/learn/documentation/container/checkpointing-2.png deleted file mode 100644 index cfd85e1..0000000 Binary files a/docs/img/0.7.0/learn/documentation/container/checkpointing-2.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/26c1e27d/docs/img/0.7.0/learn/documentation/container/checkpointing.png ---------------------------------------------------------------------- diff --git a/docs/img/0.7.0/learn/documentation/container/checkpointing.png b/docs/img/0.7.0/learn/documentation/container/checkpointing.png deleted file mode 100644 index aa36240..0000000 Binary files a/docs/img/0.7.0/learn/documentation/container/checkpointing.png and /dev/null differ
