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

    https://github.com/apache/spark/pull/11863#discussion_r62284518
  
    --- Diff: 
external/kafka-beta/src/main/scala/org/apache/spark/streaming/kafka/DirectKafkaInputDStream.scala
 ---
    @@ -0,0 +1,344 @@
    +/*
    + * 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.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.
    + * Starting offsets are specified in advance,
    + * and this DStream is not responsible for committing offsets,
    + * so that you can control exactly-once semantics.
    + * @param kafkaParams Kafka <a 
href="http://kafka.apache.org/documentation.html#newconsumerconfigs";>
    + * configuration parameters</a>.
    + *   Requires  "bootstrap.servers" to be set with Kafka broker(s),
    + *   NOT zookeeper servers, specified in host1:port1,host2:port2 form.
    + */
    +
    +class DirectKafkaInputDStream[K: ClassTag, V: ClassTag] private[spark] (
    +    _ssc: StreamingContext,
    +    preferredHosts: ju.Map[TopicPartition, String],
    +    executorKafkaParams: ju.Map[String, Object],
    --- End diff --
    
    Any python api would almost certainly need to be a wrapper anyway.  I think 
it's a little premature to get hung up on ju.Map without seeing how it actually 
plays out in a python wrapper.  If you want to work on one, go for it.


---
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