This is an automated email from the ASF dual-hosted git repository. mergebot-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/beam-site.git
commit 2dadee6d036359abbb9e0bbbbdf2621794e1f8da Author: Mergebot <[email protected]> AuthorDate: Thu Nov 30 21:17:40 2017 +0000 Prepare repository for deployment. --- content/blog/2016/10/20/test-stream.html | 2 +- content/blog/2017/08/16/splittable-do-fn.html | 10 +++---- .../contribute/ptransform-style-guide/index.html | 4 +-- content/documentation/dsls/sql/index.html | 10 +++---- .../pipelines/test-your-pipeline/index.html | 4 +-- content/documentation/programming-guide/index.html | 16 +++++----- content/documentation/runners/dataflow/index.html | 6 ++-- content/documentation/runners/direct/index.html | 12 ++++---- content/documentation/runners/flink/index.html | 4 +-- content/documentation/runners/gearpump/index.html | 4 +-- content/documentation/runners/jstorm/index.html | 2 +- content/documentation/runners/mapreduce/index.html | 2 +- content/documentation/runners/spark/index.html | 2 +- .../sdks/feature-comparison/index.html | 4 +-- .../documentation/sdks/java-extensions/index.html | 4 +-- content/documentation/sdks/java/index.html | 4 +-- content/documentation/sdks/java/nexmark/index.html | 4 +-- .../documentation/sdks/javadoc/current/index.html | 8 ++--- .../documentation/sdks/pydoc/current/index.html | 8 ++--- .../documentation/sdks/python-custom-io/index.html | 4 +-- .../sdks/python-pipeline-dependencies/index.html | 4 +-- .../sdks/python-type-safety/index.html | 4 +-- content/documentation/sdks/python/index.html | 4 +-- content/feed.xml | 12 ++++---- content/get-started/downloads/index.html | 34 +++++++++++++--------- content/get-started/quickstart-java/index.html | 2 +- 26 files changed, 90 insertions(+), 84 deletions(-) diff --git a/content/blog/2016/10/20/test-stream.html b/content/blog/2016/10/20/test-stream.html index ad43e27..f98d239 100644 --- a/content/blog/2016/10/20/test-stream.html +++ b/content/blog/2016/10/20/test-stream.html @@ -143,7 +143,7 @@ be controlled within a test.</p> <h2 id="writing-deterministic-tests-to-emulate-nondeterminism">Writing Deterministic Tests to Emulate Nondeterminism</h2> <p>The Beam testing infrastructure provides the -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/testing/PAssert.html">PAssert</a> +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/testing/PAssert.html">PAssert</a> methods, which assert properties about the contents of a PCollection from within a pipeline. We have expanded this infrastructure to include <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java">TestStream</a>, diff --git a/content/blog/2017/08/16/splittable-do-fn.html b/content/blog/2017/08/16/splittable-do-fn.html index 6459b1e..5c3ca1c 100644 --- a/content/blog/2017/08/16/splittable-do-fn.html +++ b/content/blog/2017/08/16/splittable-do-fn.html @@ -156,22 +156,22 @@ has other limitations that make it insufficient for this task</em>).</p> <h2 id="beam-source-api">Beam Source API</h2> <p>Apache Beam historically provides a Source API -(<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/BoundedSource.html">BoundedSource</a> +(<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/BoundedSource.html">BoundedSource</a> and -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/UnboundedSource.html">UnboundedSource</a>) which does +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/UnboundedSource.html">UnboundedSource</a>) which does not have these limitations and allows development of efficient data sources for batch and streaming systems. Pipelines use this API via the -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/Read.html"><code class="highlighter-rouge">Read.from(Source)</code></a> built-in <code class="highlighter-rouge">PTransform</code>.</p> +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/Read.html"><code class="highlighter-rouge">Read.from(Source)</code></a> built-in <code class="highlighter-rouge">PTransform</code>.</p> <p>The Source API is largely similar to that of most other data processing frameworks, and allows the system to read data in parallel using multiple workers, as well as checkpoint and resume reading from an unbounded data source. Additionally, the Beam -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/BoundedSource.html"><code class="highlighter-rouge">BoundedSource</code></a> +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/BoundedSource.html"><code class="highlighter-rouge">BoundedSource</code></a> API provides advanced features such as progress reporting and <a href="/blog/2016/05/18/splitAtFraction-method.html">dynamic rebalancing</a> (which together enable autoscaling), and -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/UnboundedSource.html"><code class="highlighter-rouge">UnboundedSource</code></a> supports +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/UnboundedSource.html"><code class="highlighter-rouge">UnboundedSource</code></a> supports reporting the source’s watermark and backlog <em>(until SDF, we believed that “batch” and “streaming” data sources are fundamentally different and thus require fundamentally different APIs)</em>.</p> diff --git a/content/contribute/ptransform-style-guide/index.html b/content/contribute/ptransform-style-guide/index.html index 3a627d1..80d6a89 100644 --- a/content/contribute/ptransform-style-guide/index.html +++ b/content/contribute/ptransform-style-guide/index.html @@ -443,8 +443,8 @@ E.g. when expanding a filepattern into files, log what the filepattern was and h <ul> <li>Generally, follow the rules of <a href="http://semver.org/">semantic versioning</a>.</li> - <li>If the API of the transform is not yet stable, annotate it as <code class="highlighter-rouge">@Experimental</code> (Java) or <code class="highlighter-rouge">@experimental</code> (<a href="/documentation/sdks/pydoc/2.1.0/apache_beam.utils.html#module-apache_beam.utils.annotations">Python</a>).</li> - <li>If the API deprecated, annotate it as <code class="highlighter-rouge">@Deprecated</code> (Java) or <code class="highlighter-rouge">@deprecated</code> (<a href="/documentation/sdks/pydoc/2.1.0/apache_beam.utils.html#module-apache_beam.utils.annotations">Python</a>).</li> + <li>If the API of the transform is not yet stable, annotate it as <code class="highlighter-rouge">@Experimental</code> (Java) or <code class="highlighter-rouge">@experimental</code> (<a href="/documentation/sdks/pydoc/2.2.0/apache_beam.utils.annotations.html">Python</a>).</li> + <li>If the API deprecated, annotate it as <code class="highlighter-rouge">@Deprecated</code> (Java) or <code class="highlighter-rouge">@deprecated</code> (<a href="/documentation/sdks/pydoc/2.2.0/apache_beam.utils.annotations.html">Python</a>).</li> <li>Pay attention to the stability and versioning of third-party classes exposed by the transform’s API: if they are unstable or improperly versioned (do not obey <a href="http://semver.org/">semantic versioning</a>), it is better to wrap them in your own classes.</li> </ul> diff --git a/content/documentation/dsls/sql/index.html b/content/documentation/dsls/sql/index.html index ab9188d..5b8130f 100644 --- a/content/documentation/dsls/sql/index.html +++ b/content/documentation/dsls/sql/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> @@ -164,8 +164,8 @@ <p>There are two main pieces to the SQL DSL API:</p> <ul> - <li><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/values/BeamRecord.html">BeamRecord</a>: a new data type used to define composite records (i.e., rows) that consist of multiple, named columns of primitive data types. All SQL DSL queries must be made against collections of type <code class="highlighter-rouge">PCollection<BeamRecord></code>. Note that <code class="highlighter-rouge">BeamRecord</code> itself is not SQL-specific, however, and may also be u [...] - <li><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/extensions/sql/BeamSql.html">BeamSql</a>: the interface for creating <code class="highlighter-rouge">PTransforms</code> from SQL queries.</li> + <li><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/values/BeamRecord.html">BeamRecord</a>: a new data type used to define composite records (i.e., rows) that consist of multiple, named columns of primitive data types. All SQL DSL queries must be made against collections of type <code class="highlighter-rouge">PCollection<BeamRecord></code>. Note that <code class="highlighter-rouge">BeamRecord</code> itself is not SQL-specific, however, and may also be u [...] + <li><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/extensions/sql/BeamSql.html">BeamSql</a>: the interface for creating <code class="highlighter-rouge">PTransforms</code> from SQL queries.</li> </ul> <p>We’ll look at each of these below.</p> @@ -174,7 +174,7 @@ <h3 id="beamrecord">BeamRecord</h3> -<p>Before applying a SQL query to a <code class="highlighter-rouge">PCollection</code>, the data in the collection must be in <code class="highlighter-rouge">BeamRecord</code> format. A <code class="highlighter-rouge">BeamRecord</code> represents a single, immutable row in a Beam SQL <code class="highlighter-rouge">PCollection</code>. The names and types of the fields/columns in the record are defined by its associated <a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam [...] +<p>Before applying a SQL query to a <code class="highlighter-rouge">PCollection</code>, the data in the collection must be in <code class="highlighter-rouge">BeamRecord</code> format. A <code class="highlighter-rouge">BeamRecord</code> represents a single, immutable row in a Beam SQL <code class="highlighter-rouge">PCollection</code>. The names and types of the fields/columns in the record are defined by its associated <a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam [...] <p>A <code class="highlighter-rouge">PCollection<BeamRecord></code> can be created explicitly or implicitly:</p> diff --git a/content/documentation/pipelines/test-your-pipeline/index.html b/content/documentation/pipelines/test-your-pipeline/index.html index ae5d1a8..c87b002 100644 --- a/content/documentation/pipelines/test-your-pipeline/index.html +++ b/content/documentation/pipelines/test-your-pipeline/index.html @@ -396,7 +396,7 @@ for the <code class="highlighter-rouge">DoFnTester</code> as follows:</p> <p>You can use the <code class="highlighter-rouge">Create</code> transform to create a <code class="highlighter-rouge">PCollection</code> out of a standard in-memory collection class, such as Java <code class="highlighter-rouge">List</code>. See <a href="/documentation/programming-guide/#creating-a-pcollection">Creating a PCollection</a> for more information.</p> <h3 id="passert">PAssert</h3> -<p><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/testing/PAssert.html">PAssert</a> is a class included in the Beam Java SDK that is an assertion on the contents of a <code class="highlighter-rouge">PCollection</code>. You can use <code class="highlighter-rouge">PAssert</code>to verify that a <code class="highlighter-rouge">PCollection</code> contains a specific set of expected elements.</p> +<p><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/testing/PAssert.html">PAssert</a> is a class included in the Beam Java SDK that is an assertion on the contents of a <code class="highlighter-rouge">PCollection</code>. You can use <code class="highlighter-rouge">PAssert</code>to verify that a <code class="highlighter-rouge">PCollection</code> contains a specific set of expected elements.</p> <p>For a given <code class="highlighter-rouge">PCollection</code>, you can use <code class="highlighter-rouge">PAssert</code> to verify the contents as follows:</p> @@ -422,7 +422,7 @@ for the <code class="highlighter-rouge">DoFnTester</code> as follows:</p> </code></pre> </div> -<p>For more information on how these classes work, see the <a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/testing/package-summary.html">org.apache.beam.sdk.testing</a> package documentation.</p> +<p>For more information on how these classes work, see the <a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/testing/package-summary.html">org.apache.beam.sdk.testing</a> package documentation.</p> <h3 id="an-example-test-for-a-composite-transform">An Example Test for a Composite Transform</h3> diff --git a/content/documentation/programming-guide/index.html b/content/documentation/programming-guide/index.html index 6df1d91..1803da2 100644 --- a/content/documentation/programming-guide/index.html +++ b/content/documentation/programming-guide/index.html @@ -500,7 +500,7 @@ asynchronous “job” (or equivalent) on that back-end.</p> <p>The <code class="highlighter-rouge">Pipeline</code> abstraction encapsulates all the data and steps in your data processing task. Your Beam driver program typically starts by constructing a -<span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/Pipeline.html">Pipeline</a></span> +<span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/Pipeline.html">Pipeline</a></span> <span class="language-py"><a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/pipeline.py">Pipeline</a></span> object, and then using that object as the basis for creating the pipeline’s data sets as <code class="highlighter-rouge">PCollection</code>s and its operations as <code class="highlighter-rouge">Transform</code>s.</p> @@ -649,7 +649,7 @@ with <code class="highlighter-rouge">PipelineOptionsFactory</code>:</p> <h2 id="pcollections">3. PCollections</h2> -<p>The <span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/values/PCollection.html">PCollection</a></span> +<p>The <span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/values/PCollection.html">PCollection</a></span> <span class="language-py"><code class="highlighter-rouge">PCollection</code></span> abstraction represents a potentially distributed, multi-element data set. You can think of a <code class="highlighter-rouge">PCollection</code> as “pipeline” data; Beam transforms use <code class="highlighter-rouge">PCollection</code> objects as @@ -1441,7 +1441,7 @@ and format data from each collection.</p> <h4 id="combine">4.2.4. Combine</h4> -<p><span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/transforms/Combine.html"><code class="highlighter-rouge">Combine</code></a></span> +<p><span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/transforms/Combine.html"><code class="highlighter-rouge">Combine</code></a></span> <span class="language-py"><a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Combine</code></a></span> is a Beam transform for combining collections of elements or values in your data. <code class="highlighter-rouge">Combine</code> has variants that work on entire <code class="highlighter-rouge">PCollection</code>s, and some that @@ -1700,7 +1700,7 @@ PerKey must be an associative reduction function or a subclass of <code class="h <h4 id="flatten">4.2.5. Flatten</h4> -<p><span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/transforms/Flatten.html"><code class="highlighter-rouge">Flatten</code></a></span> +<p><span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/transforms/Flatten.html"><code class="highlighter-rouge">Flatten</code></a></span> <span class="language-py"><a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Flatten</code></a></span> and is a Beam transform for <code class="highlighter-rouge">PCollection</code> objects that store the same data type. <code class="highlighter-rouge">Flatten</code> merges multiple <code class="highlighter-rouge">PCollection</code> objects into a single logical @@ -1751,7 +1751,7 @@ pipeline is constructed.</p> <h4 id="partition">4.2.6. Partition</h4> -<p><span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/transforms/Partition.html"><code class="highlighter-rouge">Partition</code></a></span> +<p><span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/transforms/Partition.html"><code class="highlighter-rouge">Partition</code></a></span> <span class="language-py"><a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/transforms/core.py"><code class="highlighter-rouge">Partition</code></a></span> is a Beam transform for <code class="highlighter-rouge">PCollection</code> objects that store the same data type. <code class="highlighter-rouge">Partition</code> splits a single <code class="highlighter-rouge">PCollection</code> into a fixed number of smaller @@ -2145,8 +2145,8 @@ transform can make your code more modular and easier to understand.</p> <p>The Beam SDK comes packed with many useful composite transforms. See the API reference pages for a list of transforms:</p> <ul> - <li><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/transforms/package-summary.html">Pre-written Beam transforms for Java</a></li> - <li><a href="/documentation/sdks/pydoc/2.1.0/apache_beam.transforms.html">Pre-written Beam transforms for Python</a></li> + <li><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/transforms/package-summary.html">Pre-written Beam transforms for Java</a></li> + <li><a href="/documentation/sdks/pydoc/2.2.0/apache_beam.transforms.html">Pre-written Beam transforms for Python</a></li> </ul> <h4 id="an-example-composite-transform">4.6.1. An example composite transform</h4> @@ -2733,7 +2733,7 @@ all the elements are by default part of a single, global window.</p> <p>To use windowing with fixed data sets, you can assign your own timestamps to each element. To assign timestamps to elements, use a <code class="highlighter-rouge">ParDo</code> transform with a <code class="highlighter-rouge">DoFn</code> that outputs each element with a new timestamp (for example, the -<a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/transforms/WithTimestamps.html">WithTimestamps</a> +<a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/transforms/WithTimestamps.html">WithTimestamps</a> transform in the Beam SDK for Java).</p> <p>To illustrate how windowing with a bounded <code class="highlighter-rouge">PCollection</code> can affect how your diff --git a/content/documentation/runners/dataflow/index.html b/content/documentation/runners/dataflow/index.html index 8ab9199..c64adb7 100644 --- a/content/documentation/runners/dataflow/index.html +++ b/content/documentation/runners/dataflow/index.html @@ -188,7 +188,7 @@ Pub/Sub, or Cloud Datastore) if you use them in your pipeline code.</p> <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">runners</span><span class="o">-</span><span class="n">google</span><span class="o">-</span><span class="n">cloud</span><span class="o">-</span><span class="n">dataflow</span><span class="o">-</span><span class="n">java</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"><</span><span class="n">scope</span><span class="o">></span><span class="n">runtime</span><span class="o"></</span><span class="n">scope</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> </code></pre> @@ -286,8 +286,8 @@ Pub/Sub, or Cloud Datastore) if you use them in your pipeline code.</p> </table> <p>See the reference documentation for the -<span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html">DataflowPipelineOptions</a></span> -<span class="language-py"><a href="/documentation/sdks/pydoc/2.1.0/apache_beam.options.html#apache_beam.options.pipeline_options.PipelineOptions"><code class="highlighter-rouge">PipelineOptions</code></a></span> +<span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/runners/dataflow/options/DataflowPipelineOptions.html">DataflowPipelineOptions</a></span> +<span class="language-py"><a href="/documentation/sdks/pydoc/2.2.0/apache_beam.options.pipeline_options.html#apache_beam.options.pipeline_options.PipelineOptions"><code class="highlighter-rouge">PipelineOptions</code></a></span> interface (and any subinterfaces) for additional pipeline configuration options.</p> <h2 id="additional-information-and-caveats">Additional information and caveats</h2> diff --git a/content/documentation/runners/direct/index.html b/content/documentation/runners/direct/index.html index 7527672..e9dc35c 100644 --- a/content/documentation/runners/direct/index.html +++ b/content/documentation/runners/direct/index.html @@ -139,8 +139,8 @@ <p>Here are some resources with information about how to test your pipelines.</p> <ul> <!-- Java specific links --> - <li class="language-java"><a href="/blog/2016/10/20/test-stream.html">Testing Unbounded Pipelines in Apache Beam</a> talks about the use of Java classes <a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/testing/PAssert.html">PAssert</a> and <a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/testing/TestStream.html">TestStream</a> to test your pipelines.</li> - <li class="language-java">The <a href="/get-started/wordcount-example/#testing-your-pipeline-via-passert">Apache Beam WordCount Example</a> contains an example of logging and testing a pipeline with <a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/testing/PAssert.html"><code>PAssert</code></a>.</li> + <li class="language-java"><a href="/blog/2016/10/20/test-stream.html">Testing Unbounded Pipelines in Apache Beam</a> talks about the use of Java classes <a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/testing/PAssert.html">PAssert</a> and <a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/testing/TestStream.html">TestStream</a> to test your pipelines.</li> + <li class="language-java">The <a href="/get-started/wordcount-example/#testing-your-pipeline-via-passert">Apache Beam WordCount Example</a> contains an example of logging and testing a pipeline with <a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/testing/PAssert.html"><code>PAssert</code></a>.</li> <!-- Python specific links --> <li class="language-py">You can use <a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/testing/util.py#L76">assert_that</a> to test your pipeline. The Python <a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/wordcount_debugging.py">WordCount Debugging Example</a> contains an example of logging and testing with <code>assert_that</code>.</li> @@ -154,7 +154,7 @@ <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">runners</span><span class="o">-</span><span class="n">direct</span><span class="o">-</span><span class="n">java</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"><</span><span class="n">scope</span><span class="o">></span><span class="n">runtime</span><span class="o"></</span><span class="n">scope</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> </code></pre> @@ -167,13 +167,13 @@ <p>When executing your pipeline from the command-line, set <code class="highlighter-rouge">runner</code> to <code class="highlighter-rouge">direct</code> or <code class="highlighter-rouge">DirectRunner</code>. The default values for the other pipeline options are generally sufficient.</p> <p>See the reference documentation for the -<span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/runners/direct/DirectOptions.html"><code class="highlighter-rouge">DirectOptions</code></a></span> -<span class="language-py"><a href="/documentation/sdks/pydoc/2.1.0/apache_beam.options.html#apache_beam.options.pipeline_options.DirectOptions"><code class="highlighter-rouge">DirectOptions</code></a></span> +<span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/runners/direct/DirectOptions.html"><code class="highlighter-rouge">DirectOptions</code></a></span> +<span class="language-py"><a href="/documentation/sdks/pydoc/2.2.0/apache_beam.options.pipeline_options.html#apache_beam.options.pipeline_options.DirectOptions"><code class="highlighter-rouge">DirectOptions</code></a></span> interface for defaults and additional pipeline configuration options.</p> <h2 id="additional-information-and-caveats">Additional information and caveats</h2> -<p>Local execution is limited by the memory available in your local environment. It is highly recommended that you run your pipeline with data sets small enough to fit in local memory. You can create a small in-memory data set using a <span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/sdk/transforms/Create.html"><code class="highlighter-rouge">Create</code></a></span><span class="language-py"><a href="https://github.com/apache/beam/blob/mast [...] +<p>Local execution is limited by the memory available in your local environment. It is highly recommended that you run your pipeline with data sets small enough to fit in local memory. You can create a small in-memory data set using a <span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/sdk/transforms/Create.html"><code class="highlighter-rouge">Create</code></a></span><span class="language-py"><a href="https://github.com/apache/beam/blob/mast [...] </div> </div> diff --git a/content/documentation/runners/flink/index.html b/content/documentation/runners/flink/index.html index 1e4fb5b..59d83bc 100644 --- a/content/documentation/runners/flink/index.html +++ b/content/documentation/runners/flink/index.html @@ -169,7 +169,7 @@ <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">runners</span><span class="o">-</span><span class="n">flink_2</span><span class="o">.</span><span class="mi">10</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"><</span><span class="n">scope</span><span class="o">></span><span class="n">runtime</span><span class="o"></</span><span class="n">scope</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> </code></pre> @@ -257,7 +257,7 @@ </tr> </table> -<p>See the reference documentation for the <span class="language-java"><a href="/documentation/sdks/javadoc/2.1.0/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html">FlinkPipelineOptions</a></span><span class="language-py"><a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/options/pipeline_options.py">PipelineOptions</a></span> interface (and its subinterfaces) for the complete list of pipeline configuration options.</p> +<p>See the reference documentation for the <span class="language-java"><a href="/documentation/sdks/javadoc/2.2.0/index.html?org/apache/beam/runners/flink/FlinkPipelineOptions.html">FlinkPipelineOptions</a></span><span class="language-py"><a href="https://github.com/apache/beam/blob/master/sdks/python/apache_beam/options/pipeline_options.py">PipelineOptions</a></span> interface (and its subinterfaces) for the complete list of pipeline configuration options.</p> <h2 id="additional-information-and-caveats">Additional information and caveats</h2> diff --git a/content/documentation/runners/gearpump/index.html b/content/documentation/runners/gearpump/index.html index a6d3c68..6a53fff 100644 --- a/content/documentation/runners/gearpump/index.html +++ b/content/documentation/runners/gearpump/index.html @@ -137,7 +137,7 @@ And your Beam application should also pack Beam SDK explicitly and here is a sni <span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">runners</span><span class="o">-</span><span class="n">gearpump</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">dependency</span><span class="o">></span> @@ -157,7 +157,7 @@ And your Beam application should also pack Beam SDK explicitly and here is a sni <span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">sdks</span><span class="o">-</span><span class="n">java</span><span class="o">-</span><span class="n">core</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> <span class="o"></</span><span class="n">dependencies</span><span class="o">></span> diff --git a/content/documentation/runners/jstorm/index.html b/content/documentation/runners/jstorm/index.html index f6d5a70..4fe9113 100644 --- a/content/documentation/runners/jstorm/index.html +++ b/content/documentation/runners/jstorm/index.html @@ -227,7 +227,7 @@ <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">runners</span><span class="o">-</span><span class="n">jstorm</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> </code></pre> </div> diff --git a/content/documentation/runners/mapreduce/index.html b/content/documentation/runners/mapreduce/index.html index c31125c..b64b017 100644 --- a/content/documentation/runners/mapreduce/index.html +++ b/content/documentation/runners/mapreduce/index.html @@ -126,7 +126,7 @@ <div class="highlighter-rouge"><pre class="highlight"><code><dependency> <groupId>org.apache.beam</groupId> <artifactId>beam-runners-mapreduce</artifactId> - <version>2.1.0</version> + <version>2.2.0</version> </dependency> </code></pre> </div> diff --git a/content/documentation/runners/spark/index.html b/content/documentation/runners/spark/index.html index 5da5323..516a732 100644 --- a/content/documentation/runners/spark/index.html +++ b/content/documentation/runners/spark/index.html @@ -150,7 +150,7 @@ The Spark Runner can execute Spark pipelines just like a native Spark applicatio <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="o"><</span><span class="n">dependency</span><span class="o">></span> <span class="o"><</span><span class="n">groupId</span><span class="o">></span><span class="n">org</span><span class="o">.</span><span class="na">apache</span><span class="o">.</span><span class="na">beam</span><span class="o"></</span><span class="n">groupId</span><span class="o">></span> <span class="o"><</span><span class="n">artifactId</span><span class="o">></span><span class="n">beam</span><span class="o">-</span><span class="n">runners</span><span class="o">-</span><span class="n">spark</span><span class="o"></</span><span class="n">artifactId</span><span class="o">></span> - <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.1</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> + <span class="o"><</span><span class="n">version</span><span class="o">></span><span class="mf">2.2</span><span class="o">.</span><span class="mi">0</span><span class="o"></</span><span class="n">version</span><span class="o">></span> <span class="o"></</span><span class="n">dependency</span><span class="o">></span> </code></pre> </div> diff --git a/content/documentation/sdks/feature-comparison/index.html b/content/documentation/sdks/feature-comparison/index.html index 623ec8e..0f1df2b 100644 --- a/content/documentation/sdks/feature-comparison/index.html +++ b/content/documentation/sdks/feature-comparison/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/java-extensions/index.html b/content/documentation/sdks/java-extensions/index.html index c89ad06..e830bf7 100644 --- a/content/documentation/sdks/java-extensions/index.html +++ b/content/documentation/sdks/java-extensions/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/java/index.html b/content/documentation/sdks/java/index.html index 98b1878..0733d42 100644 --- a/content/documentation/sdks/java/index.html +++ b/content/documentation/sdks/java/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/java/nexmark/index.html b/content/documentation/sdks/java/nexmark/index.html index a1d5a00..dc5b5fc 100644 --- a/content/documentation/sdks/java/nexmark/index.html +++ b/content/documentation/sdks/java/nexmark/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/javadoc/current/index.html b/content/documentation/sdks/javadoc/current/index.html index dd9ef55..68bd377 100644 --- a/content/documentation/sdks/javadoc/current/index.html +++ b/content/documentation/sdks/javadoc/current/index.html @@ -2,9 +2,9 @@ <html lang="en-US"> <meta charset="utf-8"> <title>Redirecting…</title> -<link rel="canonical" href="/documentation/sdks/javadoc/2.1.0/"> -<meta http-equiv="refresh" content="0; url=/documentation/sdks/javadoc/2.1.0/"> +<link rel="canonical" href="/documentation/sdks/javadoc/2.2.0/"> +<meta http-equiv="refresh" content="0; url=/documentation/sdks/javadoc/2.2.0/"> <h1>Redirecting…</h1> -<a href="/documentation/sdks/javadoc/2.1.0/">Click here if you are not redirected.</a> -<script>location="/documentation/sdks/javadoc/2.1.0/"</script> +<a href="/documentation/sdks/javadoc/2.2.0/">Click here if you are not redirected.</a> +<script>location="/documentation/sdks/javadoc/2.2.0/"</script> </html> diff --git a/content/documentation/sdks/pydoc/current/index.html b/content/documentation/sdks/pydoc/current/index.html index e1d68b1..47ba7e6 100644 --- a/content/documentation/sdks/pydoc/current/index.html +++ b/content/documentation/sdks/pydoc/current/index.html @@ -2,9 +2,9 @@ <html lang="en-US"> <meta charset="utf-8"> <title>Redirecting…</title> -<link rel="canonical" href="/documentation/sdks/pydoc/2.1.0/"> -<meta http-equiv="refresh" content="0; url=/documentation/sdks/pydoc/2.1.0/"> +<link rel="canonical" href="/documentation/sdks/pydoc/2.2.0/"> +<meta http-equiv="refresh" content="0; url=/documentation/sdks/pydoc/2.2.0/"> <h1>Redirecting…</h1> -<a href="/documentation/sdks/pydoc/2.1.0/">Click here if you are not redirected.</a> -<script>location="/documentation/sdks/pydoc/2.1.0/"</script> +<a href="/documentation/sdks/pydoc/2.2.0/">Click here if you are not redirected.</a> +<script>location="/documentation/sdks/pydoc/2.2.0/"</script> </html> diff --git a/content/documentation/sdks/python-custom-io/index.html b/content/documentation/sdks/python-custom-io/index.html index 3cdea0f..d8086e1 100644 --- a/content/documentation/sdks/python-custom-io/index.html +++ b/content/documentation/sdks/python-custom-io/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/python-pipeline-dependencies/index.html b/content/documentation/sdks/python-pipeline-dependencies/index.html index 17046d6..1472927 100644 --- a/content/documentation/sdks/python-pipeline-dependencies/index.html +++ b/content/documentation/sdks/python-pipeline-dependencies/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/python-type-safety/index.html b/content/documentation/sdks/python-type-safety/index.html index c603651..89cc826 100644 --- a/content/documentation/sdks/python-type-safety/index.html +++ b/content/documentation/sdks/python-type-safety/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/documentation/sdks/python/index.html b/content/documentation/sdks/python/index.html index 111cd47..938960f 100644 --- a/content/documentation/sdks/python/index.html +++ b/content/documentation/sdks/python/index.html @@ -87,12 +87,12 @@ <ul class="section-nav-list" data-section-nav> <li><span class="section-nav-list-main-title">SDKS</span></li> <li><a href="/documentation/sdks/java/">Java SDK</a></li> -<li><a href="/documentation/sdks/javadoc/2.1.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/javadoc/2.2.0/" target="_blank">Java SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> <li><a href="/documentation/sdks/python/">Python SDK</a></li> -<li><a href="/documentation/sdks/pydoc/2.1.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" +<li><a href="/documentation/sdks/pydoc/2.2.0/" target="_blank">Python SDK API Reference <img src="/images/external-link-icon.png" width="14" height="14" alt="External link."></a> </li> diff --git a/content/feed.xml b/content/feed.xml index 0704f97..08ae3ae 100644 --- a/content/feed.xml +++ b/content/feed.xml @@ -589,22 +589,22 @@ has other limitations that make it insufficient for this task</em>).</p <h2 id="beam-source-api">Beam Source API</h2> <p>Apache Beam historically provides a Source API -(<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/BoundedSource.html">BoundedSource</a> +(<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/BoundedSource.html">BoundedSource</a> and -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/UnboundedSource.html">UnboundedSource</a>) which does +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/UnboundedSource.html">UnboundedSource</a>) which does not have these limitations and allows development of efficient data sources for batch and streaming systems. Pipelines use this API via the -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/Read.html"><code class="highlighter-rouge">Read.from(Source)</code></a> built-in <code class="highlighter-rouge">PTransform</code>.</p> +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/Read.html"><code class="highlighter-rouge">Read.from(Source)</code></a> built-in <code class="highlighter-rouge">PTransform</code>.</p> <p>The Source API is largely similar to that of most other data processing frameworks, and allows the system to read data in parallel using multiple workers, as well as checkpoint and resume reading from an unbounded data source. Additionally, the Beam -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/BoundedSource.html"><code class="highlighter-rouge">BoundedSource</code></a> +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/BoundedSource.html"><code class="highlighter-rouge">BoundedSource</code></a> API provides advanced features such as progress reporting and <a href="/blog/2016/05/18/splitAtFraction-method.html">dynamic rebalancing</a> (which together enable autoscaling), and -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/io/UnboundedSource.html"><code class="highlighter-rouge">UnboundedSource</code></a> supports +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/io/UnboundedSource.html"><code class="highlighter-rouge">UnboundedSource</code></a> supports reporting the source’s watermark and backlog <em>(until SDF, we believed that “batch” and “streaming” data sources are fundamentally different and thus require fundamentally different APIs)</em>.</p> @@ -2067,7 +2067,7 @@ be controlled within a test.</p> <h2 id="writing-deterministic-tests-to-emulate-nondeterminism">Writing Deterministic Tests to Emulate Nondeterminism</h2> <p>The Beam testing infrastructure provides the -<a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/testing/PAssert.html">PAssert</a> +<a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/testing/PAssert.html">PAssert</a> methods, which assert properties about the contents of a PCollection from within a pipeline. We have expanded this infrastructure to include <a href="https://github.com/apache/beam/blob/master/sdks/java/core/src/main/java/org/apache/beam/sdk/testing/TestStream.java">TestStream</a>, diff --git a/content/get-started/downloads/index.html b/content/get-started/downloads/index.html index 0e95d22..46f6e1f 100644 --- a/content/get-started/downloads/index.html +++ b/content/get-started/downloads/index.html @@ -117,11 +117,12 @@ <li><a href="#api-stability">API Stability</a></li> <li><a href="#releases">Releases</a> <ul> - <li><a href="#section">2.1.0 (2017-08-23)</a></li> - <li><a href="#section-1">2.0.0 (2017-05-17)</a></li> - <li><a href="#section-2">0.6.0 (2017-03-11)</a></li> - <li><a href="#section-3">0.5.0 (2017-02-02)</a></li> - <li><a href="#section-4">0.4.0 (2016-12-29)</a></li> + <li><a href="#section">2.2.0 (2017-10-26)</a></li> + <li><a href="#section-1">2.1.0 (2017-08-23)</a></li> + <li><a href="#section-2">2.0.0 (2017-05-17)</a></li> + <li><a href="#section-3">0.6.0 (2017-03-11)</a></li> + <li><a href="#section-4">0.5.0 (2017-02-02)</a></li> + <li><a href="#section-5">0.4.0 (2016-12-29)</a></li> <li><a href="#incubating-2016-10-31">0.3.0-incubating (2016-10-31)</a></li> <li><a href="#incubating-2016-08-08">0.2.0-incubating (2016-08-08)</a></li> <li><a href="#incubating-2016-06-15">0.1.0-incubating (2016-06-15)</a></li> @@ -146,12 +147,12 @@ Java with the <code class="highlighter-rouge">DirectRunner</code>, add the follo <div class="highlighter-rouge"><pre class="highlight"><code><dependency> <groupId>org.apache.beam</groupId> <artifactId>beam-sdks-java-core</artifactId> - <version>2.1.0</version> + <version>2.2.0</version> </dependency> <dependency> <groupId>org.apache.beam</groupId> <artifactId>beam-runners-direct-java</artifactId> - <version>2.1.0</version> + <version>2.2.0</version> <scope>runtime</scope> </dependency> </code></pre> @@ -160,7 +161,7 @@ Java with the <code class="highlighter-rouge">DirectRunner</code>, add the follo <p>Similarly in Python, if you are using PyPI and want to use the SDK for Python with <code class="highlighter-rouge">DirectRunner</code>, add the following requirement to your <code class="highlighter-rouge">setup.py</code> file:</p> -<div class="highlighter-rouge"><pre class="highlight"><code>apache-beam==2.1.0 +<div class="highlighter-rouge"><pre class="highlight"><code>apache-beam==2.2.0 </code></pre> </div> @@ -178,34 +179,39 @@ at scale.</p> <li>incremental version for forward-compatible bug fixes</li> </ul> -<p>Please note that APIs marked <a href="/documentation/sdks/javadoc/2.1.0/org/apache/beam/sdk/annotations/Experimental.html"><code class="highlighter-rouge">@Experimental</code></a> +<p>Please note that APIs marked <a href="/documentation/sdks/javadoc/2.2.0/org/apache/beam/sdk/annotations/Experimental.html"><code class="highlighter-rouge">@Experimental</code></a> may change at any point and are not guaranteed to remain compatible across versions.</p> <p>Additionally, any API may change before the first stable release, i.e., between versions denoted <code class="highlighter-rouge">0.x.y</code>.</p> <h2 id="releases">Releases</h2> -<h3 id="section">2.1.0 (2017-08-23)</h3> +<h3 id="section">2.2.0 (2017-10-26)</h3> +<p>Official <a href="https://www.apache.org/dyn/closer.cgi?filename=beam/2.2.0/apache-beam-2.2.0-source-release.zip&action=download">source code download</a>.</p> + +<p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319527&version=12341044">Release notes</a>.</p> + +<h3 id="section-1">2.1.0 (2017-08-23)</h3> <p>Official <a href="https://www.apache.org/dyn/closer.cgi?filename=beam/2.1.0/apache-beam-2.1.0-source-release.zip&action=download">source code download</a>.</p> <p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319527&version=12340528">Release notes</a>.</p> -<h3 id="section-1">2.0.0 (2017-05-17)</h3> +<h3 id="section-2">2.0.0 (2017-05-17)</h3> <p>Official <a href="https://www.apache.org/dyn/closer.cgi?filename=beam/2.0.0/apache-beam-2.0.0-source-release.zip&action=download">source code download</a>.</p> <p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319527&version=12339746">Release notes</a>.</p> -<h3 id="section-2">0.6.0 (2017-03-11)</h3> +<h3 id="section-3">0.6.0 (2017-03-11)</h3> <p>Official <a href="https://www.apache.org/dyn/closer.cgi?filename=beam/0.6.0/apache-beam-0.6.0-source-release.zip&action=download">source code download</a>.</p> <p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319527&version=12339256">Release notes</a>.</p> -<h3 id="section-3">0.5.0 (2017-02-02)</h3> +<h3 id="section-4">0.5.0 (2017-02-02)</h3> <p>Official <a href="https://www.apache.org/dyn/closer.cgi?filename=beam/0.5.0/apache-beam-0.5.0-source-release.zip&action=download">source code download</a>.</p> <p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319527&version=12338859">Release notes</a>.</p> -<h3 id="section-4">0.4.0 (2016-12-29)</h3> +<h3 id="section-5">0.4.0 (2016-12-29)</h3> <p>Official <a href="https://www.apache.org/dyn/closer.cgi?filename=beam/0.4.0/apache-beam-0.4.0-source-release.zip&action=download">source code download</a>.</p> <p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12319527&version=12338590">Release notes</a>.</p> diff --git a/content/get-started/quickstart-java/index.html b/content/get-started/quickstart-java/index.html index 3b1dee6..ef36237 100644 --- a/content/get-started/quickstart-java/index.html +++ b/content/get-started/quickstart-java/index.html @@ -155,7 +155,7 @@ <div class="highlighter-rouge"><pre class="highlight"><code>$ mvn archetype:generate \ -DarchetypeGroupId=org.apache.beam \ -DarchetypeArtifactId=beam-sdks-java-maven-archetypes-examples \ - -DarchetypeVersion=2.1.0 \ + -DarchetypeVersion=2.2.0 \ -DgroupId=org.example \ -DartifactId=word-count-beam \ -Dversion="0.1" \ -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
