spark package 源码

  • 2022-10-20
  • 浏览 (224)

spark package 代码

文件路径:/connector/kafka-0-10-sql/src/main/scala/org/apache/spark/sql/kafka010/package.scala

/*
 * 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.spark.sql

import java.util.concurrent.TimeUnit

import org.apache.kafka.common.TopicPartition

import org.apache.spark.internal.config.ConfigBuilder

package object kafka010 {   // scalastyle:ignore
  // ^^ scalastyle:ignore is for ignoring warnings about digits in package name
  type PartitionOffsetMap = Map[TopicPartition, Long]

  private[kafka010] val PRODUCER_CACHE_TIMEOUT =
    ConfigBuilder("spark.kafka.producer.cache.timeout")
      .doc("The expire time to remove the unused producers.")
      .version("2.2.1")
      .timeConf(TimeUnit.MILLISECONDS)
      .createWithDefaultString("10m")

  private[kafka010] val PRODUCER_CACHE_EVICTOR_THREAD_RUN_INTERVAL =
    ConfigBuilder("spark.kafka.producer.cache.evictorThreadRunInterval")
      .doc("The interval of time between runs of the idle evictor thread for producer pool. " +
        "When non-positive, no idle evictor thread will be run.")
      .version("3.0.0")
      .timeConf(TimeUnit.MILLISECONDS)
      .createWithDefaultString("1m")

  private[kafka010] val CONSUMER_CACHE_CAPACITY =
    ConfigBuilder("spark.kafka.consumer.cache.capacity")
      .doc("The maximum number of consumers cached. Please note it's a soft limit" +
        " (check Structured Streaming Kafka integration guide for further details).")
      .version("3.0.0")
      .intConf
      .createWithDefault(64)

  private[kafka010] val CONSUMER_CACHE_JMX_ENABLED =
    ConfigBuilder("spark.kafka.consumer.cache.jmx.enable")
      .doc("Enable or disable JMX for pools created with this configuration instance.")
      .version("3.0.0")
      .booleanConf
      .createWithDefault(false)

  private[kafka010] val CONSUMER_CACHE_TIMEOUT =
    ConfigBuilder("spark.kafka.consumer.cache.timeout")
      .doc("The minimum amount of time a consumer may sit idle in the pool before " +
        "it is eligible for eviction by the evictor. " +
        "When non-positive, no consumers will be evicted from the pool due to idle time alone.")
      .version("3.0.0")
      .timeConf(TimeUnit.MILLISECONDS)
      .createWithDefaultString("5m")

  private[kafka010] val CONSUMER_CACHE_EVICTOR_THREAD_RUN_INTERVAL =
    ConfigBuilder("spark.kafka.consumer.cache.evictorThreadRunInterval")
      .doc("The interval of time between runs of the idle evictor thread for consumer pool. " +
        "When non-positive, no idle evictor thread will be run.")
      .version("3.0.0")
      .timeConf(TimeUnit.MILLISECONDS)
      .createWithDefaultString("1m")

  private[kafka010] val FETCHED_DATA_CACHE_TIMEOUT =
    ConfigBuilder("spark.kafka.consumer.fetchedData.cache.timeout")
      .doc("The minimum amount of time a fetched data may sit idle in the pool before " +
        "it is eligible for eviction by the evictor. " +
        "When non-positive, no fetched data will be evicted from the pool due to idle time alone.")
      .version("3.0.0")
      .timeConf(TimeUnit.MILLISECONDS)
      .createWithDefaultString("5m")

  private[kafka010] val FETCHED_DATA_CACHE_EVICTOR_THREAD_RUN_INTERVAL =
    ConfigBuilder("spark.kafka.consumer.fetchedData.cache.evictorThreadRunInterval")
      .doc("The interval of time between runs of the idle evictor thread for fetched data pool. " +
        "When non-positive, no idle evictor thread will be run.")
      .version("3.0.0")
      .timeConf(TimeUnit.MILLISECONDS)
      .createWithDefaultString("1m")
}

相关信息

spark 源码目录

相关文章

spark ConsumerStrategy 源码

spark JsonUtils 源码

spark KafkaBatch 源码

spark KafkaBatchPartitionReader 源码

spark KafkaBatchWrite 源码

spark KafkaContinuousStream 源码

spark KafkaDataWriter 源码

spark KafkaMicroBatchStream 源码

spark KafkaOffsetRangeCalculator 源码

spark KafkaOffsetRangeLimit 源码

0  赞