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

    https://github.com/apache/spark/pull/10953#discussion_r52201159
  
    --- Diff: 
external/kafka/src/main/scala/org/apache/spark/streaming/kafka/DirectKafkaInputDStreamBase.scala
 ---
    @@ -0,0 +1,158 @@
    +/*
    + * 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 scala.collection.mutable
    +import scala.reflect.ClassTag
    +
    +import kafka.common.TopicAndPartition
    +import kafka.serializer.Decoder
    +
    +import org.apache.spark.Logging
    +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.
    + * For an easy interface to Kafka-managed offsets,
    + *  see {@link org.apache.spark.streaming.kafka.KafkaCluster}
    +  *
    +  * @param kafkaParams Kafka <a 
href="http://kafka.apache.org/documentation.html#configuration";>
    + * configuration parameters</a>.
    + *   Requires "metadata.broker.list" or "bootstrap.servers" to be set with 
Kafka broker(s),
    + *   NOT zookeeper servers, specified in host1:port1,host2:port2 form.
    + * @param fromOffsets per-topic/partition Kafka offsets defining the 
(inclusive)
    + *  starting point of the stream
    + */
    +private[streaming]
    +abstract class DirectKafkaInputDStreamBase[
    --- End diff --
    
    thinking another way. Instead of having a common base class and then 2 
classes that extend it, could we introduce a 'BackPressure' trait that is then 
mixed-in 
    
    Benefits :  we don't have to force fit things like Decoder's in base class  
type (especially given we are force fitting the deprecated thing in base)
    
    We still might not be able to do away with the TopicPartition vs 
TopicAndPartition even when using the BackPressure trait. But in those 
scenario's, i think we should use the new consumer class as a rule of thumb 
rather than the old kafka.xxx classes (after all that is what we will knock off 
over period of time and not the other way around and also we force the old impl 
to do the extra conversion step and not the new impl.... few nanosecond gain 
:-) )


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