I'm trying to create a log file from the log servers and pushing it in to oracle. Is there a way I could implement the same using Flume (without HDFS setup) to push the log file in to ORACLE? Any help would be greatly appreciated.
Asked
Active
Viewed 66 times
1 Answers
1
You will need to create a custom sink in order to persist data into Oracle. This is relatively easy, you only have to extend the AbstrackSink
class and implement the process()
method (basically, take an event from the channel and use the Oracle API in order to persist the data).

frb
- 3,738
- 2
- 21
- 51