Skip to content

Commit

Permalink
[hotfix][docs] Stream joins don't support tuple position keys
Browse files Browse the repository at this point in the history
  • Loading branch information
rmetzger authored and fhueske committed Nov 23, 2016
1 parent 74e0971 commit 3458a66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dev/datastream_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ dataStream.union(otherStream1, otherStream2, ...);
<p>Join two data streams on a given key and a common window.</p>
{% highlight java %}
dataStream.join(otherStream)
.where(0).equalTo(1)
.where(<key selector>).equalTo(<key selector>)
.window(TumblingEventTimeWindows.of(Time.seconds(3)))
.apply (new JoinFunction () {...});
{% endhighlight %}
Expand Down Expand Up @@ -750,7 +750,7 @@ dataStream.union(otherStream1, otherStream2, ...)
<p>Join two data streams on a given key and a common window.</p>
{% highlight scala %}
dataStream.join(otherStream)
.where(0).equalTo(1)
.where(<key selector>).equalTo(<key selector>)
.window(TumblingEventTimeWindows.of(Time.seconds(3)))
.apply { ... }
{% endhighlight %}
Expand Down

0 comments on commit 3458a66

Please sign in to comment.