You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Greg Bakos (JIRA)" <ji...@apache.org> on 2018/07/27 12:26:00 UTC

[jira] [Updated] (IGNITE-9107) FINE log level causes slow transactional cache

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

Greg Bakos updated IGNITE-9107:
-------------------------------
    Description: 
java.util.logging.properties file's org.apache.ignite.level=FINE setting causes slow transactional putAll call.

Cache config:
{code:java}
<property name="cacheConfiguration">
 <list>
 <!-- Partitioned cache example configuration (Atomic mode). -->
 <bean class="org.apache.ignite.configuration.CacheConfiguration">
 <property name="name" value="transtest"/>
 <property name="atomicityMode" value="TRANSACTIONAL"/>
 <property name="cacheMode" value="REPLICATED"/>
 <property name="backups" value="1"/>
 <property name="writeSynchronizationMode" value="FULL_ASYNC"/>
 </bean>
 </list>{code}
</property>

  was:
java.util.logging.properties file's org.apache.ignite.level=FINE setting causes slow transactional putAll call.

Cache config:
|<property name="cacheConfiguration">|

|<list>|

|<!-- Partitioned cache example configuration (Atomic mode). -->|

|<bean class="org.apache.ignite.configuration.CacheConfiguration">|

|<property name="name" value="transtest"/>|

|<property name="atomicityMode" value="TRANSACTIONAL"/>|

|<property name="cacheMode" value="REPLICATED"/>|

|<property name="backups" value="1"/>|

|<property name="writeSynchronizationMode" value="FULL_ASYNC"/>|

|</bean>|

|</list>|

</property>


> FINE log level causes slow transactional cache
> ----------------------------------------------
>
>                 Key: IGNITE-9107
>                 URL: https://issues.apache.org/jira/browse/IGNITE-9107
>             Project: Ignite
>          Issue Type: Bug
>          Components: cache
>    Affects Versions: 2.4, 2.6
>         Environment: Docker Hub Image with 2.4.0 and 2.6.0 versions.
>            Reporter: Greg Bakos
>            Priority: Major
>
> java.util.logging.properties file's org.apache.ignite.level=FINE setting causes slow transactional putAll call.
> Cache config:
> {code:java}
> <property name="cacheConfiguration">
>  <list>
>  <!-- Partitioned cache example configuration (Atomic mode). -->
>  <bean class="org.apache.ignite.configuration.CacheConfiguration">
>  <property name="name" value="transtest"/>
>  <property name="atomicityMode" value="TRANSACTIONAL"/>
>  <property name="cacheMode" value="REPLICATED"/>
>  <property name="backups" value="1"/>
>  <property name="writeSynchronizationMode" value="FULL_ASYNC"/>
>  </bean>
>  </list>{code}
> </property>



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