Repository: incubator-beam-site Updated Branches: refs/heads/asf-site 946ed0010 -> cb975b411
Add external link icon to Java SDK API reference, and change to open in new tab. Project: http://git-wip-us.apache.org/repos/asf/incubator-beam-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam-site/commit/c79ea35a Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam-site/tree/c79ea35a Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam-site/diff/c79ea35a Branch: refs/heads/asf-site Commit: c79ea35a932f25448456f331485f8926adc7a0e1 Parents: 946ed00 Author: Hadar Hod <[email protected]> Authored: Fri Nov 18 12:07:12 2016 -0800 Committer: Davor Bonaci <[email protected]> Committed: Wed Nov 23 14:54:30 2016 -0800 ---------------------------------------------------------------------- src/_includes/header.html | 5 ++++- src/get-started/wordcount-example.md | 2 +- src/images/external-link-icon.png | Bin 0 -> 1871 bytes 3 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam-site/blob/c79ea35a/src/_includes/header.html ---------------------------------------------------------------------- diff --git a/src/_includes/header.html b/src/_includes/header.html index 7757f9f..4b638df 100644 --- a/src/_includes/header.html +++ b/src/_includes/header.html @@ -44,7 +44,10 @@ <li role="separator" class="divider"></li> <li class="dropdown-header">SDKs</li> <li><a href="{{ site.baseurl }}/documentation/sdks/java/">Java SDK</a></li> - <li><a href="{{ site.baseurl }}/documentation/sdks/javadoc/">Java SDK API Reference</a></li> + <li><a href="{{ site.baseurl }}/documentation/sdks/javadoc/{{ site.release_latest }}/" target="_blank">Java SDK API Reference <img src="{{ site.baseurl }}/images/external-link-icon.png" + width="14" height="14" + alt="External link."></a> + </li> <li><a href="{{ site.baseurl }}/documentation/sdks/python/">Python SDK</a></li> <li role="separator" class="divider"></li> <li class="dropdown-header">Runners</li> http://git-wip-us.apache.org/repos/asf/incubator-beam-site/blob/c79ea35a/src/get-started/wordcount-example.md ---------------------------------------------------------------------- diff --git a/src/get-started/wordcount-example.md b/src/get-started/wordcount-example.md index 4df1cd1..9b02a2b 100644 --- a/src/get-started/wordcount-example.md +++ b/src/get-started/wordcount-example.md @@ -410,7 +410,7 @@ You can reuse existing `PTransform`s, that were created for manipulating simple PCollection<KV<String, Long>> wordCounts = windowedWords.apply(new WordCount.CountWords()); ``` -## Write Results to an Unbounded Sink +### Write Results to an Unbounded Sink Since our input is unbounded, the same is true of our output `PCollection`. We need to make sure that we choose an appropriate, unbounded sink. Some output sinks support only bounded output, such as a text file. Google Cloud BigQuery is an output source that supports both bounded and unbounded input. http://git-wip-us.apache.org/repos/asf/incubator-beam-site/blob/c79ea35a/src/images/external-link-icon.png ---------------------------------------------------------------------- diff --git a/src/images/external-link-icon.png b/src/images/external-link-icon.png new file mode 100644 index 0000000..2e6cf8a Binary files /dev/null and b/src/images/external-link-icon.png differ
