blob: c4f5cac9c0fd67498d908f8e80e87d0f4b491a59 [file] [log] [blame]
/**
* 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 com.jwplayer.sqe.trident.spout.kafka;
import org.apache.storm.kafka.Partition;
import org.apache.storm.kafka.trident.GlobalPartitionInformation;
import org.apache.storm.kafka.trident.OpaqueTridentKafkaSpout;
import org.apache.storm.kafka.trident.TridentKafkaConfig;
import org.apache.storm.task.TopologyContext;
import org.apache.storm.trident.spout.IOpaquePartitionedTridentSpout;
import org.apache.storm.tuple.Fields;
import java.util.List;
import java.util.Map;
public class FilteredOpaqueTridentKafkaSpout implements IOpaquePartitionedTridentSpout<List<GlobalPartitionInformation>, Partition, Map> {
private TridentKafkaConfig config;
private long hwmTtl;
private OpaqueTridentKafkaSpout spout;
public FilteredOpaqueTridentKafkaSpout(TridentKafkaConfig config, long hwmTtl) {
this.config = config;
this.hwmTtl = hwmTtl;
this.spout = new OpaqueTridentKafkaSpout(config);
}
@Override
public Map<String, Object> getComponentConfiguration() {
return spout.getComponentConfiguration();
}
@Override
public Coordinator getCoordinator(Map map, TopologyContext topologyContext) {
return spout.getCoordinator(map, topologyContext);
}
@Override
public Emitter<List<GlobalPartitionInformation>, Partition, Map> getEmitter(Map conf, TopologyContext context) {
return (new FilteredTridentKafkaEmitter(conf, context, config, context.getStormId(), hwmTtl)).asOpaqueEmitter();
}
@Override
public Fields getOutputFields() {
return spout.getOutputFields();
}
}