Flume报 Space for commit to queue couldn't be acquired. Sinks are likely not keeping up with sources, or the buffer size is too tight

报这个错误 需要一个是flume堆内存不够.还有一个就是把channel的容器调大

在channel加配置

type - 组件类型名称必须是memory
capacity 100 存储在 Channel 当中的最大 events 数
transactionCapacity 100 同时刻从Source 获取,或发送到 Sink 的最大 events 数
keep-alive 3 添加或删除一个 event 超时的秒数

如果每分钟开头量比较大,keep-alive需要调大 

原文地址:https://www.cnblogs.com/justinyang/p/8675414.html