This repository was archived by the owner on Jan 8, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
src/main/java/org/keedio/flume/source Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ Download the official mysql jdbc driver and copy in libext flume plugins directo
2929```
3030$ wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.35.tar.gz
3131$ tar xzf mysql-connector-java-5.1.35.tar.gz
32- $ cp mysql-connector-java-5.1.35-bin.jar $FLUME_HOME/plugins.d/lib/ sql-source/libext
32+ $ cp mysql-connector-java-5.1.35-bin.jar $FLUME_HOME/plugins.d/sql-source/libext
3333```
3434
3535##### Microsoft SQLServer
3636Download the official Microsoft 4.1 Sql Server jdbc driver and copy in libext flume plugins directory:
3737Download URL: https://www.microsoft.com/es-es/download/details.aspx?id=11774
3838```
3939$ tar xzf sqljdbc_4.1.5605.100_enu.tar.gz
40- $ cp sqljdbc_4.1/enu/sqljdbc41.jar $FLUME_HOME/plugins.d/lib/ sql-source/libext
40+ $ cp sqljdbc_4.1/enu/sqljdbc41.jar $FLUME_HOME/plugins.d/sql-source/libext
4141```
4242
4343##### IBM DB2
@@ -150,3 +150,8 @@ Special thanks
150150
151151I used flume-ng-kafka to guide me (https://github.com/baniuyao/flume-ng-kafka-source.git ).
152152Thanks to [ Frank Yao] ( https://github.com/baniuyao ) .
153+
154+ Version History
155+ ---------------
156+ Actual stable version is 1.5.0 (compatible with Apache Flume 1.8.0)
157+ Previous stable version is 1.4.3 (compatible with Apache Flume prior to 1.7.0)
Original file line number Diff line number Diff line change 4545 * @author <a href="mailto:mvalle@keedio.com">Marcelo Valle</a>
4646 */
4747public class SQLSource extends AbstractSource implements Configurable , PollableSource {
48-
48+ @ Override
49+ public long getBackOffSleepIncrement () {
50+ return 0 ;
51+ }
52+
53+ @ Override
54+ public long getMaxBackOffSleepInterval () {
55+ return 0 ;
56+ }
57+
4958 private static final Logger LOG = LoggerFactory .getLogger (SQLSource .class );
5059 protected SQLSourceHelper sqlSourceHelper ;
5160 private SqlSourceCounter sqlSourceCounter ;
You can’t perform that action at this time.
0 commit comments