All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.jet.pipeline.WindowAggregateBuilder Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Copyright (c) 2008-2021, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.jet.pipeline;

import com.hazelcast.jet.aggregate.AggregateOperation;
import com.hazelcast.jet.aggregate.AggregateOperation1;
import com.hazelcast.jet.aggregate.CoAggregateOperationBuilder;
import com.hazelcast.jet.datamodel.ItemsByTag;
import com.hazelcast.jet.datamodel.Tag;
import com.hazelcast.jet.datamodel.WindowResult;
import com.hazelcast.jet.impl.pipeline.AggBuilder;
import com.hazelcast.jet.impl.pipeline.AggBuilder.CreateOutStageFn;
import com.hazelcast.jet.impl.pipeline.StreamStageImpl;

import javax.annotation.Nonnull;

import static com.hazelcast.jet.aggregate.AggregateOperations.coAggregateOperationBuilder;

/**
 * Offers a step-by-step fluent API to build a pipeline stage that
 * performs a windowed co-aggregation of the data from several input
 * stages. To obtain it, call {@link StageWithWindow#aggregateBuilder()} on
 * one of the stages to co-aggregate and refer to that method's Javadoc for
 * further details.
 * 

* Note: this is not a builder of {@code * AggregateOperation}. If that' s what you are looking for, go {@link * AggregateOperation#withCreate here}. * * @param type of the aggregated result for stream-0 * * @since Jet 3.0 */ public class WindowAggregateBuilder { private final AggBuilder aggBuilder; private final CoAggregateOperationBuilder aggrOpBuilder = coAggregateOperationBuilder(); WindowAggregateBuilder( @Nonnull StreamStage s, @Nonnull AggregateOperation1 aggrOp0, @Nonnull WindowDefinition wDef ) { aggBuilder = new AggBuilder(s, wDef); aggrOpBuilder.add(Tag.tag0(), aggrOp0); } /** * Returns the tag corresponding to the pipeline stage this builder * was obtained from. Use this tag to refer to this stage when building * the {@code AggregateOperation} that you'll pass to {@link #build * build(aggrOp)}. */ @Nonnull public Tag tag0() { return Tag.tag0(); } /** * Adds another stage that will contribute its data to the aggregate * operation to be performed. Returns the tag you'll use to refer to this * stage when building the {@code AggregateOperation} that you'll pass to * {@link #build build()}. */ @Nonnull public Tag add( StreamStage stage, AggregateOperation1 aggrOp ) { Tag tag = aggBuilder.add(stage); return aggrOpBuilder.add(tag, aggrOp); } /** * Creates and returns a pipeline stage that performs a windowed * co-aggregation of the stages registered with this builder object. The * composite aggregate operation places the results of the individual * aggregate operations in an {@code ItemsByTag}. * * @return a new stage representing the cogroup-and-aggregate operation */ @Nonnull public StreamStage> build() { AggregateOperation aggrOp = aggrOpBuilder.build(); CreateOutStageFn, StreamStage>> createOutStageFn = StreamStageImpl::new; return aggBuilder.build(aggrOp, createOutStageFn); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy