You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Anton Vinogradov (Jira)" <ji...@apache.org> on 2020/09/14 13:25:00 UTC

[jira] [Created] (IGNITE-13446) Configs inside Ducktests logs should be pretty printed

Anton Vinogradov created IGNITE-13446:
-----------------------------------------

             Summary: Configs inside Ducktests logs should be pretty printed
                 Key: IGNITE-13446
                 URL: https://issues.apache.org/jira/browse/IGNITE-13446
             Project: Ignite
          Issue Type: Task
            Reporter: Anton Vinogradov


Currently, I see the following inside the logs

{code}
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                            http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean class="org.apache.ignite.configuration.IgniteConfiguration">
        <property name="workDirectory" value="/mnt/service/work" />
        <property name="gridLogger">
            <bean class="org.apache.ignite.logger.log4j.Log4JLogger">
                <constructor-arg type="java.lang.String" value="/mnt/service/ignite-log4j.xml"/>
            </bean>
        </property>

        <property name="clientMode" value="True"/>
        <property name="consistentId" value="ducker04"/>
        <property name="failureDetectionTimeout" value="10000"/>

        
    
        <property name="clusterStateOnStart" value="ACTIVE"/>
    


        
    <property name="discoverySpi">
        
            
    <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
        
    
        <property name="ipFinder">
            
                <bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
                    <property name="addresses">
                        <list>
                            
                                <value>ducker02</value>
                            
                                <value>ducker03</value>
                            
                        </list>
                    </property>
                </bean>
            
        </property>
    

    </bean>

        
    </property>


        
    


        
    


        
            
            <property name="cacheConfiguration">
                <list>
                    <bean class="org.apache.ignite.configuration.CacheConfiguration">
                        <property name="affinity">
                            <bean class="org.apache.ignite.cache.affinity.rendezvous.RendezvousAffinityFunction">
                                <property name="affinityBackupFilter">
                                    <bean class="org.apache.ignite.internal.ducktest.tests.cellular_affinity_test.CellularAffinityBackupFilter">
                                        <constructor-arg value="CELL"/>
                                    </bean>
                                </property>
                            </bean>
                        </property>
                        <property name="name" value="test-cache"/>
                        <property name="backups" value="3"/> 
                        <property name="atomicityMode" value="TRANSACTIONAL"/>
                    </bean>
                </list>
            </property>
        
        
    </bean>
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)