Home | History | Annotate | Download | only in ops
      1 /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
      2 
      3 Licensed under the Apache License, Version 2.0 (the "License");
      4 you may not use this file except in compliance with the License.
      5 You may obtain a copy of the License at
      6 
      7     http://www.apache.org/licenses/LICENSE-2.0
      8 
      9 Unless required by applicable law or agreed to in writing, software
     10 distributed under the License is distributed on an "AS IS" BASIS,
     11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 See the License for the specific language governing permissions and
     13 limitations under the License.
     14 ==============================================================================*/
     15 
     16 #include "tensorflow/core/framework/common_shape_fns.h"
     17 #include "tensorflow/core/framework/op.h"
     18 #include "tensorflow/core/framework/shape_inference.h"
     19 
     20 namespace tensorflow {
     21 
     22 REGISTER_OP("KafkaDataset")
     23     .Input("topics: string")
     24     .Input("servers: string")
     25     .Input("group: string")
     26     .Input("eof: bool")
     27     .Input("timeout: int64")
     28     .Output("handle: variant")
     29     .SetIsStateful()
     30     .SetShapeFn(shape_inference::ScalarShape)
     31     .Doc(R"doc(
     32 Creates a dataset that emits the messages of one or more Kafka topics.
     33 
     34 topics: A `tf.string` tensor containing one or more subscriptions,
     35   in the format of [topic:partition:offset:length],
     36   by default length is -1 for unlimited.
     37 servers: A list of bootstrap servers.
     38 group: The consumer group id.
     39 eof: If True, the kafka reader will stop on EOF.
     40 timeout: The timeout value for the Kafka Consumer to wait
     41   (in millisecond).
     42 )doc");
     43 
     44 }  // namespace tensorflow
     45