You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flume.apache.org by "E. Sammer (Created) (JIRA)" <ji...@apache.org> on 2011/10/19 05:06:10 UTC

[jira] [Created] (FLUME-802) Complete PropertyFileConfigurationProvider implementation

Complete PropertyFileConfigurationProvider implementation
---------------------------------------------------------

                 Key: FLUME-802
                 URL: https://issues.apache.org/jira/browse/FLUME-802
             Project: Flume
          Issue Type: Task
    Affects Versions: NG alpha 1
            Reporter: E. Sammer
            Assignee: E. Sammer
             Fix For: NG alpha 1


The property file based configuration provider PropertiesFileConfigurationProvider is not fully complete. It parses and loads a configuration but never exposes the configuration to Flume.

--
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

        

[jira] [Commented] (FLUME-802) Complete PropertyFileConfigurationProvider implementation

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLUME-802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13131253#comment-13131253 ] 

Hudson commented on FLUME-802:
------------------------------

Integrated in flume-728 #45 (See [https://builds.apache.org/job/flume-728/45/])
    FLUME-802: Complete PropertyFileConfigurationProvider implementation

- The skeletal flume node now uses the property file based configuration provider.
- All Configurables now expect Strings and do proper parsing where necessary. This
  is because one does not yet rich types from java properties files, at least not
  the way we're using them.
- Reformatted a bunch of things to soothe my OCD (sorry Arvind).
- Added a bunch of accessors to get at some of the internals of FlumeConfiguration.
  We probably need to rename / clean a bunch of this stuff.

esammer : http://svn.apache.org/viewvc/?view=rev&rev=1186585
Files : 
* /incubator/flume/branches/flume-728/flume-ng-core/src/main/java/org/apache/flume/sink/AbstractSink.java
* /incubator/flume/branches/flume-728/flume-ng-core/src/main/java/org/apache/flume/sink/AvroSink.java
* /incubator/flume/branches/flume-728/flume-ng-core/src/main/java/org/apache/flume/source/AbstractSource.java
* /incubator/flume/branches/flume-728/flume-ng-core/src/main/java/org/apache/flume/source/AvroSource.java
* /incubator/flume/branches/flume-728/flume-ng-core/src/main/java/org/apache/flume/source/NetcatSource.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/main/java/org/apache/flume/conf/file/AbstractFileConfigurationProvider.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/main/java/org/apache/flume/conf/properties/FlumeConfiguration.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/main/java/org/apache/flume/conf/properties/PropertiesFileConfigurationProvider.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/main/java/org/apache/flume/node/Application.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/test/java/org/apache/flume/conf/properties/TestPropertiesFileConfigurationProvider.java

                
> Complete PropertyFileConfigurationProvider implementation
> ---------------------------------------------------------
>
>                 Key: FLUME-802
>                 URL: https://issues.apache.org/jira/browse/FLUME-802
>             Project: Flume
>          Issue Type: Task
>    Affects Versions: NG alpha 1
>            Reporter: E. Sammer
>            Assignee: E. Sammer
>             Fix For: NG alpha 1
>
>
> The property file based configuration provider PropertiesFileConfigurationProvider is not fully complete. It parses and loads a configuration but never exposes the configuration to Flume.

--
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

        

[jira] [Commented] (FLUME-802) Complete PropertyFileConfigurationProvider implementation

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLUME-802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13131285#comment-13131285 ] 

Hudson commented on FLUME-802:
------------------------------

Integrated in flume-728 #46 (See [https://builds.apache.org/job/flume-728/46/])
    FLUME-807: Fix tests broken by FLUME-802 changes

- Minor reformatting occurred.
- Updated a test to not reference any JUnit 3 APIs.

esammer : http://svn.apache.org/viewvc/?view=rev&rev=1186600
Files : 
* /incubator/flume/branches/flume-728/flume-ng-core/src/test/java/org/apache/flume/sink/TestAvroSink.java
* /incubator/flume/branches/flume-728/flume-ng-core/src/test/java/org/apache/flume/sink/TestRollingFileSink.java
* /incubator/flume/branches/flume-728/flume-ng-core/src/test/java/org/apache/flume/source/TestAvroSource.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/test/java/org/apache/flume/conf/file/TestJsonFileConfigurationProvider.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/test/java/org/apache/flume/node/TestAbstractLogicalNodeManager.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/test/java/org/apache/flume/source/TestNetcatSource.java
* /incubator/flume/branches/flume-728/flume-ng-node/src/test/resources/flume-conf.json
* /incubator/flume/branches/flume-728/flume-ng-sinks/flume-hdfs-sink/src/test/java/org/apache/flume/sink/hdfs/TestHDFSEventSink.java

                
> Complete PropertyFileConfigurationProvider implementation
> ---------------------------------------------------------
>
>                 Key: FLUME-802
>                 URL: https://issues.apache.org/jira/browse/FLUME-802
>             Project: Flume
>          Issue Type: Task
>    Affects Versions: NG alpha 1
>            Reporter: E. Sammer
>            Assignee: E. Sammer
>             Fix For: NG alpha 1
>
>
> The property file based configuration provider PropertiesFileConfigurationProvider is not fully complete. It parses and loads a configuration but never exposes the configuration to Flume.

--
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

        

[jira] [Closed] (FLUME-802) Complete PropertyFileConfigurationProvider implementation

Posted by "E. Sammer (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLUME-802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

E. Sammer closed FLUME-802.
---------------------------

    
> Complete PropertyFileConfigurationProvider implementation
> ---------------------------------------------------------
>
>                 Key: FLUME-802
>                 URL: https://issues.apache.org/jira/browse/FLUME-802
>             Project: Flume
>          Issue Type: Task
>    Affects Versions: NG alpha 1
>            Reporter: E. Sammer
>            Assignee: E. Sammer
>             Fix For: NG alpha 1
>
>
> The property file based configuration provider PropertiesFileConfigurationProvider is not fully complete. It parses and loads a configuration but never exposes the configuration to Flume.

--
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

        

[jira] [Resolved] (FLUME-802) Complete PropertyFileConfigurationProvider implementation

Posted by "E. Sammer (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLUME-802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

E. Sammer resolved FLUME-802.
-----------------------------

    Resolution: Fixed

Committed to the flume-728 branch.
                
> Complete PropertyFileConfigurationProvider implementation
> ---------------------------------------------------------
>
>                 Key: FLUME-802
>                 URL: https://issues.apache.org/jira/browse/FLUME-802
>             Project: Flume
>          Issue Type: Task
>    Affects Versions: NG alpha 1
>            Reporter: E. Sammer
>            Assignee: E. Sammer
>             Fix For: NG alpha 1
>
>
> The property file based configuration provider PropertiesFileConfigurationProvider is not fully complete. It parses and loads a configuration but never exposes the configuration to Flume.

--
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