You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flume.apache.org by "Patrick Wendell (JIRA)" <ji...@apache.org> on 2012/07/23 03:05:34 UTC

[jira] [Commented] (FLUME-1389) Flume gives opaque error if interceptor type not specified

    [ https://issues.apache.org/jira/browse/FLUME-1389?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13420377#comment-13420377 ] 

Patrick Wendell commented on FLUME-1389:
----------------------------------------

It looks like this type of validation is in place for sources/sinks already, we just need to add for interceptors.
                
> Flume gives opaque error if interceptor type not specified
> ----------------------------------------------------------
>
>                 Key: FLUME-1389
>                 URL: https://issues.apache.org/jira/browse/FLUME-1389
>             Project: Flume
>          Issue Type: Bug
>            Reporter: Patrick Wendell
>            Assignee: Patrick Wendell
>
> If you declare an interceptor in the configuration but you don't specify the type, flume-agent dies with an opaque NPE. Instead it should die with a message warning that the interceptor doesn't have a type. You can see this using the following config file:
> {{
> receiver1.sources = gen
> receiver1.sinks = null
> receiver1.channels = ch1
> receiver1.channels.ch1.type = memory
> receiver1.sources.gen.type = seq
> receiver1.sources.gen.channels = ch1
> receiver1.sinks.null.type = null
> receiver1.sinks.null.channel = ch1
> receiver1.sources.gen.interceptors = int_a                           
> }}
> Result is:
> {{
> 12/07/22 17:34:11 ERROR properties.PropertiesFileConfigurationProvider: Failed to load configuration data. Exception follows.
> java.lang.NullPointerException
> 	at org.apache.flume.interceptor.InterceptorBuilderFactory.lookup(InterceptorBuilderFactory.java:31)
> 	at org.apache.flume.interceptor.InterceptorBuilderFactory.newInstance(InterceptorBuilderFactory.java:44)
> 	at org.apache.flume.channel.ChannelProcessor.configureInterceptors(ChannelProcessor.java:104)
> }}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira