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

com.hazelcast.jet.impl.pipeline.transform.Transform Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2008-2024, 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.impl.pipeline.transform;

import com.hazelcast.function.FunctionEx;
import com.hazelcast.jet.impl.pipeline.Planner;
import com.hazelcast.jet.impl.pipeline.PipelineImpl.Context;


import javax.annotation.Nonnull;
import java.io.Serializable;
import java.util.List;

/**
 * This is a pure data object and holds no implementation code for the
 * transformation it represents. {@link Planner} is the implementation class
 * that creates a Core API DAG for a pipeline.
 */
public interface Transform extends Serializable {
    /**
     * Returns the name of this transformation.
     */
    @Nonnull
    String name();

    /**
     * Sets a descriptive name for this transform.
     *
     * @param name the stage name. If {@code null}, the stage will use its default name
     */
    void setName(@Nonnull String name);

    int localParallelism();

    void localParallelism(int localParallelism);

    int determinedLocalParallelism();

    void determinedLocalParallelism(int determinedLocalParallelism);

    void setRebalanceInput(int ordinal, boolean value);

    void setPartitionKeyFnForInput(int ordinal, FunctionEx keyFn);

    boolean shouldRebalanceInput(int ordinal);

    FunctionEx partitionKeyFnForInput(int ordinal);

    @Nonnull
    List upstream();

    void addToDag(Planner p, Context context);

    /**
     * Returns the optimal watermark stride for this windowed transform.
     * Watermarks that are more spaced out are better for performance, but
     * they hurt the responsiveness of a windowed pipeline stage. The Planner
     * will determine the actual stride, which may be an integer fraction of
     * the value returned here.
     * 

* If it returns {@code 0}, this transform doesn't need watermarks. */ long preferredWatermarkStride(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy