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

org.apache.hudi.common.util.queue.DisruptorWaitStrategyType Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.hudi.common.util.queue;

import org.apache.hudi.keygen.constant.KeyGeneratorType;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
 * Enum for the type of waiting strategy in Disruptor Queue.
 */
public enum DisruptorWaitStrategyType {

  /**
   * The BlockingWaitStrategy is the slowest of the available wait strategies, but is the most conservative with the respect to CPU usage
   * and will give the most consistent behaviour across the widest variety of deployment options.
   */
  BLOCKING_WAIT,

  /**
   * Like the `BlockingWaitStrategy` the `SleepingWaitStrategy` it attempts to be conservative with CPU usage by using a simple busy wait loop.
   * The difference is that the `SleepingWaitStrategy` uses a call to `LockSupport.parkNanos(1)` in the middle of the loop.
   * On a typical Linux system this will pause the thread for around 60µs.
   */
  SLEEPING_WAIT,

  /**
   * The `YieldingWaitStrategy` is one of two WaitStrategies that can be use in low-latency systems.
   * It is designed for cases where there is the option to burn CPU cycles with the goal of improving latency.
   * The `YieldingWaitStrategy` will busy spin, waiting for the sequence to increment to the appropriate value.
   * Inside the body of the loop `Thread#yield()` will be called allowing other queued threads to run.
   * This is the recommended wait strategy when you need very high performance, and the number of `EventHandler` threads is lower than the total number of logical cores,
   * e.g. you have hyper-threading enabled.
   */
  YIELDING_WAIT,

  /**
   * The `BusySpinWaitStrategy` is the highest performing WaitStrategy.
   * Like the `YieldingWaitStrategy`, it can be used in low-latency systems, but puts the highest constraints on the deployment environment.
   */
  BUSY_SPIN_WAIT;

  public static List getNames() {
    List names = new ArrayList<>(KeyGeneratorType.values().length);
    Arrays.stream(KeyGeneratorType.values())
        .forEach(x -> names.add(x.name()));
    return names;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy