You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flume.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2018/09/29 04:07:00 UTC

[jira] [Issue Comment Deleted] (FLUME-3101) taildir source may endless loop when tail a file

     [ https://issues.apache.org/jira/browse/FLUME-3101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark updated FLUME-3101:
--------------------------------
    Comment: was deleted

(was: [~Neal] It dependents on channel. )

> taildir source may endless loop when tail a file
> ------------------------------------------------
>
>                 Key: FLUME-3101
>                 URL: https://issues.apache.org/jira/browse/FLUME-3101
>             Project: Flume
>          Issue Type: Bug
>          Components: Sinks+Sources
>    Affects Versions: 1.7.0
>            Reporter: hunshenshi
>            Priority: Major
>              Labels: patch, taildirsource
>             Fix For: 1.9.0
>
>         Attachments: FLUME-3101-0.patch, FLUME-3101-1.patch, FLUME-3101-2.patch, FLUME-3101-3.patch
>
>
> If there are many files in the path that need to be tail, and there is a file written by *high frequency* (for example, there are file a, file b and file c in the path, file a is written at high frequency), *taildir can read the batchSize size event from file a everytime*, then taildir will only read data from file a, other files will not to be read, because in TaildirSource.tailFileProcess will into an endless loop.
> code:
> {code:title=TaildirSource.java|borderStyle=solid}
> private void tailFileProcess(TailFile tf, boolean backoffWithoutNL)
>     throws IOException, InterruptedException {
>   while (true) {
>     // if events.size >= batchSize will not break while, 
>     // then into endless loop to only read tf
>     if (events.size() < batchSize) {
>       break;
>     }
>   }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@flume.apache.org
For additional commands, e-mail: issues-help@flume.apache.org