简体   繁体   English

Kinesis Firehose - S3 备份 - 不工作 - 数据未移动到 s3 备份文件夹

[英]Kinesis Firehose - S3 backup -Not working - Data is NOT moving to s3 back up folder

Doing kinesis Firehose "delivery stream" data into Lambda for transformation and move the data into two different location将 kinesis Firehose“传输流”数据放入 Lambda 进行转换并将数据移动到两个不同的位置

  1. Transformation / filter - s3 location转换/过滤器 - s3 位置
  2. s3 back up. s3 备份。

-s3 location - i am reeving filter data. -s3 位置 - 我正在查看过滤器数据。 But i couldn't get entire data stream data in s3 backup folder.\但我无法在 s3 备份文件夹中获取整个数据 stream 数据。\

Lambda filtering condition: Lambda 滤波条件:

                String status = "Dropped";
                if (data.toLowerCase().contains("apple"))
                    status = "Ok";                  
                outRec.setResult(status);

在此处输入图像描述

what is the buffer condition you are providing?您提供的缓冲条件是什么?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM