blob: 144b04141525c849a3ffa124e3e2c7ee9853d648 [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.alibaba.jstorm.task.execute.spout;
import backtype.storm.task.TopologyContext;
import backtype.storm.utils.DisruptorQueue;
import com.alibaba.jstorm.metric.JStormMetricsReporter;
import com.alibaba.jstorm.task.Task;
import com.alibaba.jstorm.task.TaskBaseMetric;
import com.alibaba.jstorm.task.TaskStatus;
import com.alibaba.jstorm.task.TaskTransfer;
import com.alibaba.jstorm.task.acker.Acker;
import com.alibaba.jstorm.task.comm.TaskSendTargets;
import com.alibaba.jstorm.task.comm.TupleInfo;
import com.alibaba.jstorm.task.error.ITaskReportErr;
import com.alibaba.jstorm.utils.RotatingMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Map;
/**
* spout executor
* <p/>
* All spout actions will be done here
*
* @author yannian/Longda
*/
public class SingleThreadSpoutExecutors extends SpoutExecutors {
private static Logger LOG = LoggerFactory.getLogger(SingleThreadSpoutExecutors.class);
public SingleThreadSpoutExecutors(Task task) {
super(task);
}
@Override
public void mkPending() {
// sending Tuple's TimeCacheMap
pending = new RotatingMap<Long, TupleInfo>(Acker.TIMEOUT_BUCKET_NUM, null, true);
}
@Override
public String getThreadName() {
return idStr + "-" + SingleThreadSpoutExecutors.class.getSimpleName();
}
@Override
public void run() {
if (isFinishInit == false ) {
initWrapper();
}
executeEvent();
super.nextTuple();
processControlEvent();
}
private void executeEvent() {
try {
exeQueue.consumeBatch(this);
} catch (Exception e) {
if (taskStatus.isShutdown() == false) {
LOG.error("Actor occur unknow exception ", e);
}
}
}
}