
com.hazelcast.jet.pipeline.test.LongStreamSourceP 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.pipeline.test;
import com.hazelcast.jet.Traverser;
import com.hazelcast.jet.core.AbstractProcessor;
import com.hazelcast.jet.core.AppendableTraverser;
import com.hazelcast.jet.core.EventTimeMapper;
import com.hazelcast.jet.core.EventTimePolicy;
import com.hazelcast.logging.ILogger;
import javax.annotation.Nonnull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.NANOSECONDS;
import static java.util.concurrent.TimeUnit.SECONDS;
/**
* Implements the {@link TestSources#longStream} source.
*
* @since Jet 4.3
*/
public class LongStreamSourceP extends AbstractProcessor {
private static final long SOURCE_THROUGHPUT_REPORTING_PERIOD_SECONDS = 5;
private static final long HICCUP_REPORT_THRESHOLD_NANOS = MILLISECONDS.toNanos(10);
private static final long NANOS_PER_SECOND = SECONDS.toNanos(1);
private final long nanoTimeMillisToCurrentTimeMillis = determineTimeOffset();
private final long eventsPerSecond;
private final EventTimeMapper super Long> eventTimeMapper;
private long startNanoTime;
private long globalProcessorIndex;
private long totalParallelism;
private long lastReportNanos;
private long valueAtLastReport;
private long lastCallNanos;
private long valueToEmit;
private long nowNanoTime;
private ILogger logger;
private Traverser
© 2015 - 2025 Weber Informatics LLC | Privacy Policy