自定义Source

自定义Source

1)介绍

	Source 是负责接收数据到 Flume Agent 的组件。Source 组件可以处理各种类型、各种格式的日志数据,包括 avro、thrift、exec、jms、spooling directory、netcat、sequence generator、syslog、http、legacy。官方提供的 source 类型已经很多,但是有时候并不能满足实际开发当中的需求,此时我们就需要根据实际需求自定义某些 source。
	官方也提供了自定义 source 的接口:
https://flume.apache.org/FlumeDeveloperGuide.html#source 根据官方说明自定义
MySource 需要继承 AbstractSource 类并实现 Configurable 和 PollableSource 接口。
	实现相应方法:
getBackOffSleepIncrement() //backoff 步长
getMaxBackOffSleepInterval()//backoff 最长时间
configure(Context context)//初始化 context(读取配置文件内容)
process()//获取数据封装成 event 并写入 channel,这个方法将被循环调用。
使用场景:读取 MySQL 数据或者其他文件系统。

2)需求

使用 flume 接收数据,并给每条数据添加前缀,输出到控制台。前缀可从 flume 配置文 件中配置

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-w8Ehf2u9-1643203657577)(C:\Users\Admin\AppData\Roaming\Typora\typora-user-images\image-20220126151649221.png)]

3)分析

在这里插入图片描述

4)编码

导入 pom 依赖

<dependencies>
 <dependency>
 <groupId>org.apache.flume</groupId>
 <artifactId>flume-ng-core</artifactId>
 <version>1.9.0</version>
</dependency>

定义Source类基础AbstractSource,实现Configurable, PollableSource

package com.yingzi.source;

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

import java.util.HashMap;

/**
 * @author 影子
 * @create 2022-01-25-17:07
 **/
public class MySource extends AbstractSource implements Configurable, PollableSource {

    private String prefix;
    private String subfix;
    private Long delay;

    @Override
    public void configure(Context context) {

        prefix = context.getString("pre","pre-");
        subfix = context.getString("sub");
        delay = context.getLong("delay",2000L);

    }

    @Override
    public Status process() throws EventDeliveryException {

        //2.循环创建事件信息,传给Channel
        try {
            for (int i = 0; i < 5; i++) {
                //1.声明事件
                Event event = new SimpleEvent();
                HashMap<String, String> header = new HashMap<>();
                event.setHeaders(header);
                event.setBody((prefix + "atguigu" + i + subfix).getBytes());
                getChannelProcessor().processEvent(event);
            }
            return Status.READY;
        } catch (Exception e) {
            e.printStackTrace();
            return Status.BACKOFF;
        }
    }

    @Override
    public long getBackOffSleepIncrement() {
        return 0;
    }

    @Override
    public long getMaxBackOffSleepInterval() {
        return 0;
    }

}

5)配置文件

在flume/job下创建mysource.conf

# Name the components on this agent
a1.sources = r1
a1.sinks = k1
a1.channels = c1

# Describe/configure the source
a1.sources.r1.type = com.yingzi.source.MySource
a1.sources.r1.pre = -sb
a1.sources.r1.sub = bs-
a1.sources.r1.delay = 50000

# Describe the sink
a1.sinks.k1.type = logger

# Use a channel which buffers events in memory
a1.channels.c1.type = memory
a1.channels.c1.capacity = 1000
a1.channels.c1.transactionCapacity = 100

# Bind the source and sink to the channel
a1.sources.r1.channels = c1
a1.sinks.k1.channel = c1

6)启动命令

bin/flume-ng agent -c conf/ -f job/mysource.conf -n a1 -Dflume.root.logger=INFO,console

7)检验

查看控制台日志信息,发现添加成功
在这里插入图片描述
因为这块程序加的
在这里插入图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值