Github user lfrancke commented on a diff in the pull request:

    https://github.com/apache/spark/pull/11863#discussion_r67822597
  
    --- Diff: 
external/kafka-0-10/src/main/scala/org/apache/spark/streaming/kafka/DirectKafkaInputDStream.scala
 ---
    @@ -0,0 +1,401 @@
    +/*
    + * 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.streaming.kafka
    +
    +import java.{ util => ju }
    +import java.util.concurrent.ConcurrentLinkedQueue
    +import java.util.concurrent.atomic.AtomicReference
    +
    +import scala.annotation.tailrec
    +import scala.collection.JavaConverters._
    +import scala.collection.mutable
    +import scala.reflect.ClassTag
    +
    +import org.apache.kafka.clients.consumer._
    +import org.apache.kafka.common.{ PartitionInfo, TopicPartition }
    +
    +import org.apache.spark.annotation.Experimental
    +import org.apache.spark.SparkException
    +import org.apache.spark.internal.Logging
    +import org.apache.spark.storage.StorageLevel
    +import org.apache.spark.streaming.{StreamingContext, Time}
    +import org.apache.spark.streaming.dstream._
    +import org.apache.spark.streaming.scheduler.{RateController, 
StreamInputInfo}
    +import org.apache.spark.streaming.scheduler.rate.RateEstimator
    +
    +/**
    + *  A stream of {@link org.apache.spark.streaming.kafka.KafkaRDD} where
    + * each given Kafka topic/partition corresponds to an RDD partition.
    + * The spark configuration spark.streaming.kafka.maxRatePerPartition gives 
the maximum number
    + *  of messages
    + * per second that each '''partition''' will accept.
    + * @param preferredHosts map from TopicPartition to preferred host for 
processing that partition.
    --- End diff --
    
    I don't know why but when I build the Scaladoc (using maven scala:doc) none 
of these constructor parameters are being shown. And if they were I don't think 
the links to the companion object would work (preferConsistent and 
preferBrokers) as Scaladoc currently doesn't support links to the companion 
object.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to