Touch up some punctuation in state blog post
Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/f928b50e Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/f928b50e Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/f928b50e Branch: refs/heads/asf-site Commit: f928b50e1594cba453f07aa608ab28afb6329aff Parents: 8518baa Author: Kenneth Knowles <[email protected]> Authored: Wed Feb 15 10:08:31 2017 -0800 Committer: Kenneth Knowles <[email protected]> Committed: Wed Feb 15 10:08:31 2017 -0800 ---------------------------------------------------------------------- src/_posts/2017-02-13-stateful-processing.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam-site/blob/f928b50e/src/_posts/2017-02-13-stateful-processing.md ---------------------------------------------------------------------- diff --git a/src/_posts/2017-02-13-stateful-processing.md b/src/_posts/2017-02-13-stateful-processing.md index b3e0c63..fbbe76b 100644 --- a/src/_posts/2017-02-13-stateful-processing.md +++ b/src/_posts/2017-02-13-stateful-processing.md @@ -238,11 +238,12 @@ key+window pairs, like this: keys and windows are independent dimensions) You can provide the opportunity for parallelism by making sure that table has -enough columns, either via: +enough columns. You might have many keys and many windows, or you might have +many of just one or the other: -- Many keys in few windows for example, a globally windowed stateful computation +- Many keys in few windows, for example a globally windowed stateful computation keyed by user ID. -- Many windows over few keys for example, a fixed windowed stateful computation +- Many windows over few keys, for example a fixed windowed stateful computation over a global key. Caveat: all Beam runners today parallelize only over the key.
