amazon-archives / kinesis-log4j-appender

ARCHIVED: Log4J Appender for writing data into a Kinesis Stream
Apache License 2.0
62 stars 42 forks source link

Will this appender work for kinesis-firehose streams as well ? #16

Open sbhola opened 7 years ago

sbhola commented 7 years ago

@ksumit @d-smith Can you please confirm if this appender will work for amazon kinesis FIREHOSE streams as well ?

vbelanger commented 7 years ago

I have tested the appender and can confirm that it does not work with Kinesis Firehose streams. It uses the Amazon Kinesis Streams client. Should be quite trivial to modify it yourself to use the Amazon Kinesis Firehose client though.

mahatosourav91 commented 6 years ago

@ksumit @TheKreator @sbhola Hi, I have modified to use the Amazon Kinesis Firehose client . But the problem I am facing is that the application keeps on running even all executions are over .

I belive this is because multiple threads remain open KinesisFirehoseAsyncClient . I have to manually write Logger.shutdown() at the end of the main class to shutdown the application.

Any suggestions?