You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by "Remko Popma (JIRA)" <ji...@apache.org> on 2016/10/06 05:27:20 UTC

[jira] [Updated] (LOG4J2-1595) (GC) Avoid allocating temporary objects in Filter implementations

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

Remko Popma updated LOG4J2-1595:
--------------------------------
    Fix Version/s:     (was: 2.7)
                   2.8

> (GC) Avoid allocating temporary objects in Filter implementations
> -----------------------------------------------------------------
>
>                 Key: LOG4J2-1595
>                 URL: https://issues.apache.org/jira/browse/LOG4J2-1595
>             Project: Log4j 2
>          Issue Type: New Feature
>          Components: Filters
>    Affects Versions: 2.6.2
>            Reporter: Remko Popma
>            Assignee: Remko Popma
>             Fix For: 2.8
>
>
> Review current Filter implementation classes and change them to be garbage-free where feasible. Document on the web site which filters are garbage free and which are not.
> h4. Current status
> * (-) BurstFilter (allocates, non-trivial to change)
> * (/) CompositeFilter (adding & removing elements produces garbage for thread safety, no allocation in steady state)
> * (/) DynamicThresholdFilter (garbage free)
> * LevelRangeFilter (can be garbage free after overriding unrolled vararg methods)
> * MapFilter (creates iterator for each event to loop over the map. Easy to change by constructing MapFilter with an ArrayContextData instead of a Map, and overriding unrolled vararg methods)
> * MarkerFilter  (can be garbage free after overriding unrolled vararg methods)
> * (-) RegexFilter (not garbagefree due to JDK regex library)
> * (-) ScriptFilter (not garbagefree: creates new Binding object for each event)
> * StructuredDataFilter (TBD)
> * ThreadContextMapFilter  (creates iterator for each event to loop over the map. Easy to change by constructing ThreadContextMapFilter with an ArrayContextData instead of a Map, and overriding unrolled vararg methods)
> * ThresholdFilter (can be garbage free after overriding unrolled vararg methods)
> * TimeFilter



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org