flume自定义source

Posted 伊米伊念

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flume自定义source相关的知识,希望对你有一定的参考价值。

package me;

import java.nio.charset.Charset;
import java.util.HashMap;
import java.util.Random;

import org.apache.flume.Context;
import org.apache.flume.EventDeliveryException;
import org.apache.flume.PollableSource;
import org.apache.flume.conf.Configurable;
import org.apache.flume.event.EventBuilder;
import org.apache.flume.source.AbstractSource;

public class MySource extends AbstractSource implements Configurable, PollableSource {

	@Override
	public long getBackOffSleepIncrement() {
		// TODO Auto-generated method stub
		return 0;
	}

	@Override
	public long getMaxBackOffSleepInterval() {
		// TODO Auto-generated method stub
		return 0;
	}

	@Override
	public Status process() throws EventDeliveryException {
		try {
			while (true) {
				int max = 20;
				int min = 10;
				Random random = new Random();

				int s = random.nextInt(max) % (max - min + 1) + min;
				HashMap<String, String> header = new HashMap<String, String>();
				header.put("id", Integer.toString(s));
				this.getChannelProcessor()
						.processEvent(EventBuilder.withBody(Integer.toString(s), Charset.forName("UTF-8"), header));

				Thread.sleep(1000);
			}
		}  catch (InterruptedException e) {
			e.printStackTrace();
		}
		return null;
	}

	@Override
	public void configure(Context arg0) {
		
	}
}

 

agent.channels = ch-1
agent.sources = src-1
agent.sinks = sk1

agent.sources.src-1.type = me.MySource

agent.channels.ch-1.type = memory
agent.channels.ch-1.capacity = 10000
agent.channels.ch-1.transactionCapacity = 10000
agent.channels.ch-1.byteCapacityBufferPercentage = 20
agent.channels.ch-1.byteCapacity = 800000

agent.sinks.sk1.type = logger  

agent.sinks.sk1.channel = ch-1
agent.sources.src-1.channels=ch-1

 

lihudeMacBook-Pro:~ SunAndLi$ cd hadoop-2.7.2/flume/
lihudeMacBook-Pro:flume SunAndLi$  bin/flume-ng agent -c conf -f conf/mysql-source --name agent -Dflume.root.logger=INFO,console 

 

以上是关于flume自定义source的主要内容,如果未能解决你的问题,请参考以下文章

flume自定义source

flume 自定义 hbase sink

005- Flume Source之Custom

Flume自定义分区实现kafka有序

Hadoop实战-Flume之自定义Source(十八)

Flume-自定义 Source 读取 MySQL 数据