Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
*/
package org.apache.beam.sdk.transforms;

import static java.util.Collections.singleton;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Comparator;
Expand All @@ -29,7 +27,6 @@
import javax.annotation.Nullable;
import org.apache.beam.sdk.transforms.windowing.BoundedWindow;
import org.apache.beam.sdk.transforms.windowing.GlobalWindow;
import org.apache.beam.sdk.transforms.windowing.PaneInfo;
import org.apache.beam.sdk.values.PCollection;
import org.apache.beam.sdk.values.WindowingStrategy;

Expand Down Expand Up @@ -571,11 +568,7 @@ public void processElement(

try (BatchSizeEstimator.Stopwatch sw = estimator.recordTime(targetBatch.size)) {

receiver.outputWindowedValue(
targetBatch.elements,
targetWindow.maxTimestamp(),
singleton(targetWindow),
PaneInfo.NO_FIRING);
receiver.outputWithTimestamp(targetBatch.elements, targetWindow.maxTimestamp());
}

batches.remove(targetWindow);
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ limitations under the License.
<tr><td><a href="/documentation/transforms/java/aggregation/groupbykey">GroupByKey</a></td><td>Takes a keyed collection of elements and produces a collection where each element
consists of a key and all values associated with that key.</td></tr>
<tr><td><a href="/documentation/transforms/java/aggregation/groupintobatches">GroupIntoBatches</a></td><td>Batches values associated with keys into <code>Iterable</code> batches of some size. Each batch contains elements associated with a specific key.</td></tr>
<tr><td><a href="/documentation/transforms/java/aggregation/batchelements">BatchElements</a></td><td>Groups individual elements into batches to amortize fixed processing costs, using dynamically estimated batch sizes.</td></tr>
<tr><td><a href="/documentation/transforms/java/aggregation/hllcount">HllCount</a></td><td>Estimates the number of distinct elements and creates re-aggregatable sketches using the HyperLogLog++ algorithm.</td></tr>
<tr><td><a href="/documentation/transforms/java/aggregation/latest">Latest</a></td><td>Selects the latest element within each aggregation according to the implicit timestamp.</td></tr>
<tr><td><a href="/documentation/transforms/java/aggregation/max">Max</a></td><td>Outputs the maximum element within each aggregation.</td></tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,6 @@
<li><a href="/documentation/transforms/java/aggregation/distinct/">Distinct</a></li>
<li><a href="/documentation/transforms/java/aggregation/groupbykey/">GroupByKey</a></li>
<li><a href="/documentation/transforms/java/aggregation/groupintobatches/">GroupIntoBatches</a></li>
<li><a href="/documentation/transforms/java/aggregation/batchelements/">BatchElements</a></li>
<li><a href="/documentation/transforms/java/aggregation/hllcount/">HllCount</a></li>
<li><a href="/documentation/transforms/java/aggregation/latest/">Latest</a></li>
<li><a href="/documentation/transforms/java/aggregation/max/">Max</a></li>
Expand Down
Loading