You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ignite.apache.org by gunman524 <gu...@126.com> on 2017/11/21 11:02:13 UTC

Register Contentious query quit slow

Hi there,

I have write an app with contentious query feature and pack as a single jar,
as depend on some 3rd party lib so it's quite big, 40M.

For local cluster, the app start quit fast and can be startup within 20
secs. But after add one more cross region node, this app need around 10 mins
to startup!!

I guess it because of peer class loading, so I copied that jar to every
ignit node
libs
├── annotations-13.0.jar
├── cache-api-1.0.0.jar
├── ignite-core-2.3.0.jar
├── ignite-indexing
├── ignite-log4j2
├── ignite-rest-http
├── ignite-shmem-1.0.0.jar
├── ignite-spring
├── my_app.jar
├── licenses
├── optional

After restart cluster, restart app, still need 10+ mins.
Is there something wrong here? Or need extra setting?



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by Denis Mekhanikov <dm...@gmail.com>.
Hi!

It's hard to tell, what causes such long startup time. What do logs say?
Try enabling debug log and watching, what nodes are doing all that time.

Please let me know if you find something.

I don't think, that peer class loading causes it, because it only works for
compute jobs and a few more things. So your entire library won't be sent
over network on startup.

BTW, what is your discovery SPI configuration? Maybe initial lookup takes
too much time to finish?

Denis

вт, 21 нояб. 2017 г. в 14:13, gunman524 <gu...@126.com>:

> BTW, the deployment mode I use is PRIVATE, does it matter?
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
BTW, the deployment mode I use is PRIVATE, does it matter?



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
Denis,

Thanks for your reply and the code as well 

I'll try what you suggested. Thanks again

BR.
Jin



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by Denis Mekhanikov <dm...@gmail.com>.
Jin,

> Fact is after I commented out IQ, RF and keep local listeners exists, no more
meta data update happened and the program still work.

I already explained you in the previous letter, where this metadata update
comes from. It's because you transfer IQ and RF over network.
On the other hand, local listener doesn't need to be transferred, so it
doesn't trigger metadata update.

Consider the following example:

public class QueryRegisterExample {
    public static void main(String[] args) {
        Ignition.setClientMode(true);

        try (Ignite ignite = Ignition.start("config/ignite.xml")) {

            IgniteCache<Object, BinaryObject> cache =
ignite.getOrCreateCache("cache");

            ContinuousQuery<Object, BinaryObject> qry = new ContinuousQuery<>();

            qry.setInitialQuery(new ScanQuery<>((k, v) -> true)); //
Registering lambda as initial query.

            qry.setLocalListener((evts) -> {
                int num = 0;
                for (CacheEntryEvent<?, ? extends BinaryObject> evt : evts)
                    num++;

                System.out.println("Processed " + num + " events");
            });

            cache.query(qry);

            System.out.println("Query registration finished");
        }
    }
}

As you can see, there is a lambda registered as initial query. When I run
this code, it causes metadata of 2 classes to be registered, because the
entire QueryRegisterExample class got serialized. I can't even tell, what
this lambda looks like in serialized format, because anything can be
captured into it and you won't even know.
Anonymous classes are just the same thing, I used lambdas to save some
space.

Serialization of anonymous classes is even not recommended by Oracle:
https://docs.oracle.com/javase/tutorial/java/javaOO/nested.html#serialization

It gets better if you change it the following way:

public class QueryRegisterExample {
    public static void main(String[] args) {
        Ignition.setClientMode(true);

        try (Ignite ignite = Ignition.start("config/ignite.xml")) {

            IgniteCache<Object, BinaryObject> cache =
ignite.getOrCreateCache("cache");

            ContinuousQuery<Object, BinaryObject> qry = new ContinuousQuery<>();

            qry.setInitialQuery(new ScanQuery<>(new
ExampleInitialQuery())); // Registering static class as initial query.

            qry.setLocalListener((evts) -> {
                int num = 0;
                for (CacheEntryEvent<?, ? extends BinaryObject> evt : evts)
                    num++;

                System.out.println("Processed " + num + " events");
            });

            cache.query(qry);

            System.out.println("Query registration finished");
        }
    }

    private static class ExampleInitialQuery implements
IgniteBiPredicate<Object, BinaryObject> {
        @Override public boolean apply(Object k, BinaryObject v) {
            return true;
        }
    }
}

In this case metadata of only one class is registered.

So, do the same thing in your code to avoid redundant objects to be sent
over network.

Denis

вт, 5 дек. 2017 г. в 3:24, gunman524 <gu...@126.com>:

> Denis,
>
> I can understand the meta data need to be updated when the CQ has initial
> query(IQ) or remote filter(RF). But my understading is only the object
> within IQ and RF need to be updated and the stuff in Local listeners does
> not.
>
> In my case, the logic in IQ and RF is simple string compare
>           e.getValue().<String> field("FROM_RDC")).equals(localRDC)
> and those can be update to cluster if necessary and does make scene.  But
> the object in local listener and all object it referenced does not need to
> be update to cluster.
>
> Fact is after I commented out IQ, RF and keep local listeners exists, no
> more meta data update happened and the program still work. Seems it proved
> my guess.
>
> I didn't go through Ignite code carefully for this part, but it feels like
> current logic will check whether IQ or RF is exists. If yes, will update
> the
> meta data of whole CQ instead of just IQ and RF part.
>
> Can we do this enhancement that do not update meta data in Local listener
> to
> cluster?  Or is there has technical issue?
>
> Thanks,
>
> Jin
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
Denis,

I can understand the meta data need to be updated when the CQ has initial
query(IQ) or remote filter(RF). But my understading is only the object
within IQ and RF need to be updated and the stuff in Local listeners does
not.

In my case, the logic in IQ and RF is simple string compare
          e.getValue().<String> field("FROM_RDC")).equals(localRDC)
and those can be update to cluster if necessary and does make scene.  But
the object in local listener and all object it referenced does not need to
be update to cluster. 

Fact is after I commented out IQ, RF and keep local listeners exists, no
more meta data update happened and the program still work. Seems it proved
my guess.

I didn't go through Ignite code carefully for this part, but it feels like
current logic will check whether IQ or RF is exists. If yes, will update the
meta data of whole CQ instead of just IQ and RF part.

Can we do this enhancement that do not update meta data in Local listener to
cluster?  Or is there has technical issue?

Thanks,

Jin



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
Dennis,

Sorry for my misleading.  The slow thing is register CQ but not connect to
cluster (this might take round 1 min). 

Thanks for your remind and after removed intial query, the whole process
become very quick and there is no more "binary metadata update messages".

So if there do have initial query and remotefilter, does it means those meta
data info need exchange among the whole ignite cluster?

I'm sorry for security reason, I cannot upload the full log here but I tried
to show some code structure here

public abstract class AbstractIgniteListeningService<T>
{
    public void registerCache() throws IgniteException
    {
        try
        {

            final IgniteCache<Object, BinaryObject> cache =
ignite.cache("SQL_PUBLIC_" +
             getTableName()).withKeepBinary();
            final ContinuousQuery<Object, BinaryObject> qry = new
ContinuousQuery<Object, BinaryObject>();
//           qry.setInitialQuery(new ScanQuery<Object, BinaryObject>(new
IgniteBiPredicate<Object, BinaryObject>()
//            {
//                @Override
//                public boolean apply(Object key, BinaryObject val)
//                {
//                    return !(val.field("FROM_RDC")).equals(localRDC);
//                }
//            }));
            // qry.setRemoteFilterFactory(new
Factory<CacheEntryEventFilter&lt;Object, BinaryObject>>()
            // {
            // @Override
            // public CacheEntryEventFilter<Object, BinaryObject> create()
            // {
            // return new CacheEntryEventFilter<Object, BinaryObject>()
            // {
            // @Override
            // public boolean evaluate(CacheEntryEvent<? extends Object, ?
extends BinaryObject> e)
            // {
            // return !(e.getValue().<String>
field("FROM_RDC")).equals(localRDC);
            // }
            // };
            // }
            // });
            qry.setLocalListener(new CacheEntryUpdatedListener<Object,
BinaryObject>()
            {
                @Override
                public void onUpdated(Iterable<CacheEntryEvent&lt;? extends
Object, ? extends BinaryObject>> evts)
                {
                    List<T> resultList = new ArrayList<T>(0);
                    int length = 0;
                    for (CacheEntryEvent<? extends Object, ? extends
BinaryObject> e : evts)
                    {
                        resultList.add(buildObject(e));
                    }
                    writeObject(assemblyObject(resultList));
                }
            });
            if (REAL_TIME_SYNC.contains(getTableName()))
            {
                qry.setTimeInterval(1000L);
            }
            else
            {
                qry.setTimeInterval(300000L);
                qry.setPageSize(1000);
            }
            cache.query(qry);
}
}

Basically,  1. intial query and remotefilter have same logic and just filter
some record according field value
2. in locallisnter,  writeObject() using mybatis write data to local DB. 
All class shows in "binary metadata update messages" actually in
writeObject() method, so why those stuff need to exchange among cluster?

Thanks,
Jin.



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by Denis Mekhanikov <dm...@gmail.com>.
And are you sure, that it's not initial query causing continuous query to
register slowly?
Maybe class loading has nothing to do with it?

Denis

пн, 27 нояб. 2017 г. в 19:26, Denis Mekhanikov <dm...@gmail.com>:

> You wrote in your previous letters, that startup takes much time.
> Could you clarify, whether node connection to a cluster takes much time,
> or query execution? Because I'm a bit confused.
>
> The messages, that you see is not a class deserialization, it's binary
> metadata update messages. They appear when you insert data of some type
> into cache for the first time.
> Could you provide full log from a node as an attached file? Also a full
> reproducer would be helpful.
>
> Denis
>
> сб, 25 нояб. 2017 г. в 12:32, gunman524 <gu...@126.com>:
>
>> Denis, thanks for your explain.
>>
>> I debugged the client side and found after I run cache.query(qry), the
>> client seems to deserialize all classes my code references to
>>
>>
>> [2017-11-25T15:47:50,347][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
>> Do not start exchange for discovery event: DiscoveryCustomEvent
>> [customMsg=MetadataUpdateAcceptedMessage
>> [id=20d0058ef51-04f9942d-cf48-445a-8508-05c6d1e821bb, typeId=-1677406589,
>> acceptedVer=166, duplicated=false], affTopVer=AffinityTopologyVersion
>> [topVer=250, minorTopVer=0], super=DiscoveryEvent
>> [evtNode=TcpDiscoveryNode
>> [id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
>> sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500,
>> order=19,
>> intOrder=11, lastExchangeTime=1511596050492, loc=false,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=false], topVer=250,
>> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
>> tstamp=1511596070347]]
>> [2017-11-25T15:47:50,347][DEBUG][main][CacheObjectBinaryProcessorImpl]
>> Requesting metadata update for -77171844
>>
>> [2017-11-25T15:47:50,379][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
>> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
>> super=TcpDiscoveryAbstractMessage
>> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
>> id=1943522ff51-7776ddf7-c511-41d5-a566-5107d2d6f966,
>> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
>> pendingIdx=0, failedNodes=null, isClient=false]]
>>
>> [2017-11-25T15:47:50,379][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
>> Discovery notification [node=TcpDiscoveryNode
>> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
>> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
>> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0,
>> order=250,
>> intOrder=0, lastExchangeTime=1511596049874, loc=true,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true],
>> type=DISCOVERY_CUSTOM_EVT,
>> topVer=250]
>>
>> [2017-11-25T15:47:50,379][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
>> Do not start exchange for discovery event: DiscoveryCustomEvent
>> [customMsg=MetadataUpdateProposedMessage
>> [id=1943522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
>> origNodeId=7776ddf7-c511-41d5-a566-5107d2d6f966, metadata=BinaryMetadata
>> [typeId=-77171844, typeName=org.apache.ibatis.session.Configuration,
>> fields={logImpl=BinaryFieldMetadata [fieldId=342344548, typeId=32],
>> autoMappingUnknownColumnBehavior=BinaryFieldMetadata [fieldId=-333850733,
>> typeId=28], lazyLoadingEnabled=BinaryFieldMetadata [fieldId=-1856534791,
>> typeId=8], logPrefix=BinaryFieldMetadata [fieldId=-1514679594, typeId=9],
>> aggressiveLazyLoading=BinaryFieldMetadata [fieldId=-1718584124, typeId=8],
>> mapUnderscoreToCamelCase=BinaryFieldMetadata [fieldId=-286817803,
>> typeId=8],
>> mappedStatements=BinaryFieldMetadata [fieldId=1731452759, typeId=103],
>> languageRegistry=BinaryFieldMetadata [fieldId=-940446827, typeId=103],
>> useGeneratedKeys=BinaryFieldMetadata [fieldId=-101509668, typeId=8],
>> incompleteResultMaps=BinaryFieldMetadata [fieldId=900998162, typeId=103],
>> reflectorFactory=BinaryFieldMetadata [fieldId=500612010, typeId=103],
>> cacheEnabled=BinaryFieldMetadata [fieldId=-1267415681, typeId=8],
>> caches=BinaryFieldMetadata [fieldId=-1368047311, typeId=103],
>> callSettersOnNulls=BinaryFieldMetadata [fieldId=-289605417, typeId=8],
>> incompleteStatements=BinaryFieldMetadata [fieldId=1257025730, typeId=103],
>> incompleteMethods=BinaryFieldMetadata [fieldId=841112724, typeId=103],
>> useColumnLabel=BinaryFieldMetadata [fieldId=926720375, typeId=8],
>> safeRowBoundsEnabled=BinaryFieldMetadata [fieldId=1691167967, typeId=8],
>> typeAliasRegistry=BinaryFieldMetadata [fieldId=1228666259, typeId=103],
>> autoMappingBehavior=BinaryFieldMetadata [fieldId=-1192801391, typeId=28],
>> jdbcTypeForNull=BinaryFieldMetadata [fieldId=1461105531, typeId=28],
>> vfsImpl=BinaryFieldMetadata [fieldId=380866659, typeId=32],
>> mapperRegistry=BinaryFieldMetadata [fieldId=1261051262, typeId=103],
>> incompleteCacheRefs=BinaryFieldMetadata [fieldId=1157355812, typeId=103],
>> defaultStatementTimeout=BinaryFieldMetadata [fieldId=1303620947,
>> typeId=3],
>> lazyLoadTriggerMethods=BinaryFieldMetadata [fieldId=2058678228
>> <(205)%20867-8228>, typeId=103],
>> objectFactory=BinaryFieldMetadata [fieldId=-1947780885, typeId=103],
>> resultMaps=BinaryFieldMetadata [fieldId=-571115468, typeId=103],
>> loadedResources=BinaryFieldMetadata [fieldId=-310590528, typeId=103],
>> safeResultHandlerEnabled=BinaryFieldMetadata [fieldId=1128633633,
>> typeId=8],
>> multipleResultSetsEnabled=BinaryFieldMetadata [fieldId=-459661949,
>> typeId=8], cacheRefMap=BinaryFieldMetadata [fieldId=1431520747,
>> typeId=103],
>> defaultExecutorType=BinaryFieldMetadata [fieldId=-1339727026, typeId=28],
>> variables=BinaryFieldMetadata [fieldId=-82477705, typeId=103],
>> keyGenerators=BinaryFieldMetadata [fieldId=741028767, typeId=103],
>> defaultFetchSize=BinaryFieldMetadata [fieldId=-1429234534, typeId=3],
>> objectWrapperFactory=BinaryFieldMetadata [fieldId=-137856490, typeId=103],
>> databaseId=BinaryFieldMetadata [fieldId=1688906710, typeId=9],
>> interceptorChain=BinaryFieldMetadata [fieldId=-1647583300, typeId=103],
>> environment=BinaryFieldMetadata [fieldId=-85904877, typeId=103],
>> typeHandlerRegistry=BinaryFieldMetadata [fieldId=95318797, typeId=103],
>> sqlFragments=BinaryFieldMetadata [fieldId=1400197653, typeId=103],
>> parameterMaps=BinaryFieldMetadata [fieldId=-378683968, typeId=103],
>> proxyFactory=BinaryFieldMetadata [fieldId=-271225124, typeId=103],
>> configurationFactory=BinaryFieldMetadata [fieldId=-1223795884, typeId=32],
>> localCacheScope=BinaryFieldMetadata [fieldId=-771766851, typeId=28]},
>> affKeyFieldName=null, schemas=[BinarySchema [schemaId=1365054742,
>> idToOrderMask=1023, id0=0, id1=0, id2=0, id3=0, ids=[-85904877,
>> 1691167967,
>> 1128633633, -286817803, -1718584124, -459661949, -101509668, 926720375,
>> -1267415681, -289605417, -1514679594, 342344548, 380866659, -771766851,
>> 1461105531, 2058678228 <(205)%20867-8228>, 1303620947, -1429234534,
>> -1339727026, -1192801391,
>> -333850733, -82477705, 500612010, -1947780885, -137856490, 1261051262,
>> -1856534791, -271225124, 1688906710, -1223795884, -1647583300, 95318797,
>> 1228666259, -940446827, 1731452759, -1368047311, -571115468, -378683968,
>> 741028767, -310590528, 1400197653, 1257025730, 1157355812, 900998162,
>> 841112724, 1431520747], names=[null, null, null, null, null, null, null,
>> null, null, null, null, null, null, null, null, null, null, null, null,
>> null, null, null, null, null, null, null, null, null, null, null, null,
>> null, null, null, null, null, null, null, null, null, null, null, null,
>> null, null, null], idToOrderData=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 900998162,
>> 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -571115468, 36, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380866659, 12, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 841112724, 44, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, -1429234534, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257025730, 41, 0, 0, -1718584124,
>> 4,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -289605417, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 1691167967, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, -1947780885, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1128633633, 2, 0, 0,
>> 0, 0, 1157355812, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, -1368047311, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 1303620947, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 926720375, 7, -82477705, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 1261051262,
>> 25, -1267415681, 8, 0, 0, 0, 0, 0, 0, -459661949, 5, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 1228666259, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -771766851, 13, 0, 0, 0, 0,
>> -378683968,
>> 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, -101509668, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1431520747, 45, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -286817803, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> -85904877, 0, 0, 0, 1400197653, 40, -137856490, 24, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> -1514679594, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -271225124, 27, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, -1856534791, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95318797, 31,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, -1339727026, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1223795884, 29, 0,
>> 0,
>> 0, 0, 1731452759, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 342344548, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 1461105531, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, -1192801391, 19, 0, 0, -333850733, 20, 0, 0, -940446827, 33, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741028767, 38, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500612010, 22, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, -1647583300, 30, 0, 0, 0, 0, 0, 0, -310590528, 39, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 2058678228 <(205)%20867-8228>, 15, 0, 0,
>> 1688906710, 28, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0]]], isEnum=false], typeId=-77171844, pendingVer=165,
>> acceptedVer=164, status=SUCCESSFUL, err=null],
>> affTopVer=AffinityTopologyVersion [topVer=250, minorTopVer=0],
>> super=DiscoveryEvent [evtNode=TcpDiscoveryNode
>> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
>> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
>> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0,
>> order=250,
>> intOrder=0, lastExchangeTime=1511596049874, loc=true,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], topVer=250,
>> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
>> tstamp=1511596070379]]
>>
>> [2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
>> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
>> super=TcpDiscoveryAbstractMessage
>> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
>> id=61d0058ef51-e95753b3-7be4-498f-9dbe-87d197cfe355,
>> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
>> pendingIdx=0, failedNodes=null, isClient=false]]
>>
>> [2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
>> Discovery notification [node=TcpDiscoveryNode
>> [id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
>> sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500,
>> order=19,
>> intOrder=11, lastExchangeTime=1511596050492, loc=false,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=false],
>> type=DISCOVERY_CUSTOM_EVT, topVer=250]
>>
>> [2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-msg-worker-#4][CacheObjectBinaryProcessorImpl]
>> Completing future for [typeId=-77171844, pendingVer=165, acceptedVer=165]
>> [2017-11-25T15:47:50,395][DEBUG][main][CacheObjectBinaryProcessorImpl]
>> Requesting metadata update for -77171844
>>
>> [2017-11-25T15:47:50,395][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
>> Do not start exchange for discovery event: DiscoveryCustomEvent
>> [customMsg=MetadataUpdateAcceptedMessage
>> [id=61d0058ef51-04f9942d-cf48-445a-8508-05c6d1e821bb, typeId=-77171844,
>> acceptedVer=165, duplicated=false], affTopVer=AffinityTopologyVersion
>> [topVer=250, minorTopVer=0], super=DiscoveryEvent
>> [evtNode=TcpDiscoveryNode
>> [id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
>> sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500,
>> order=19,
>> intOrder=11, lastExchangeTime=1511596050492, loc=false,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=false], topVer=250,
>> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
>> tstamp=1511596070395]]
>>
>> [2017-11-25T15:47:50,411][DEBUG][grid-timeout-worker-#23][GridTimeoutProcessor]
>> Timeout has occurred [obj=CancelableTask
>> [id=3143522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
>> endTime=1511596070385,
>> period=3000, cancel=false,
>>
>> task=org.apache.ignite.internal.processors.query.GridQueryProcessor$2@e79bd7
>> ],
>> process=true]
>>
>> [2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
>> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
>> super=TcpDiscoveryAbstractMessage
>> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
>> id=6943522ff51-7776ddf7-c511-41d5-a566-5107d2d6f966,
>> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
>> pendingIdx=0, failedNodes=null, isClient=false]]
>>
>> [2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
>> Discovery notification [node=TcpDiscoveryNode
>> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
>> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
>> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0,
>> order=250,
>> intOrder=0, lastExchangeTime=1511596049874, loc=true,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true],
>> type=DISCOVERY_CUSTOM_EVT,
>> topVer=250]
>>
>> [2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
>> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
>> super=TcpDiscoveryAbstractMessage
>> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
>> id=82d0058ef51-e95753b3-7be4-498f-9dbe-87d197cfe355,
>> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
>> pendingIdx=0, failedNodes=null, isClient=false]]
>>
>> [2017-11-25T15:47:50,427][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
>> Do not start exchange for discovery event: DiscoveryCustomEvent
>> [customMsg=MetadataUpdateProposedMessage
>> [id=6943522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
>> origNodeId=7776ddf7-c511-41d5-a566-5107d2d6f966, metadata=BinaryMetadata
>> [typeId=-77171844, typeName=org.apache.ibatis.session.Configuration,
>> fields={logImpl=BinaryFieldMetadata [fieldId=342344548, typeId=32],
>> autoMappingUnknownColumnBehavior=BinaryFieldMetadata [fieldId=-333850733,
>> typeId=28], lazyLoadingEnabled=BinaryFieldMetadata [fieldId=-1856534791,
>> typeId=8], logPrefix=BinaryFieldMetadata [fieldId=-1514679594, typeId=9],
>> aggressiveLazyLoading=BinaryFieldMetadata [fieldId=-1718584124, typeId=8],
>> mapUnderscoreToCamelCase=BinaryFieldMetadata [fieldId=-286817803,
>> typeId=8],
>> mappedStatements=BinaryFieldMetadata [fieldId=1731452759, typeId=103],
>> languageRegistry=BinaryFieldMetadata [fieldId=-940446827, typeId=103],
>> useGeneratedKeys=BinaryFieldMetadata [fieldId=-101509668, typeId=8],
>> incompleteResultMaps=BinaryFieldMetadata [fieldId=900998162, typeId=103],
>> reflectorFactory=BinaryFieldMetadata [fieldId=500612010, typeId=103],
>> cacheEnabled=BinaryFieldMetadata [fieldId=-1267415681, typeId=8],
>> caches=BinaryFieldMetadata [fieldId=-1368047311, typeId=103],
>> callSettersOnNulls=BinaryFieldMetadata [fieldId=-289605417, typeId=8],
>> incompleteStatements=BinaryFieldMetadata [fieldId=1257025730, typeId=103],
>> incompleteMethods=BinaryFieldMetadata [fieldId=841112724, typeId=103],
>> useColumnLabel=BinaryFieldMetadata [fieldId=926720375, typeId=8],
>> safeRowBoundsEnabled=BinaryFieldMetadata [fieldId=1691167967, typeId=8],
>> typeAliasRegistry=BinaryFieldMetadata [fieldId=1228666259, typeId=103],
>> autoMappingBehavior=BinaryFieldMetadata [fieldId=-1192801391, typeId=28],
>> jdbcTypeForNull=BinaryFieldMetadata [fieldId=1461105531, typeId=28],
>> vfsImpl=BinaryFieldMetadata [fieldId=380866659, typeId=32],
>> mapperRegistry=BinaryFieldMetadata [fieldId=1261051262, typeId=103],
>> incompleteCacheRefs=BinaryFieldMetadata [fieldId=1157355812, typeId=103],
>> defaultStatementTimeout=BinaryFieldMetadata [fieldId=1303620947,
>> typeId=3],
>> lazyLoadTriggerMethods=BinaryFieldMetadata [fieldId=2058678228
>> <(205)%20867-8228>, typeId=103],
>> objectFactory=BinaryFieldMetadata [fieldId=-1947780885, typeId=103],
>> resultMaps=BinaryFieldMetadata [fieldId=-571115468, typeId=103],
>> loadedResources=BinaryFieldMetadata [fieldId=-310590528, typeId=103],
>> safeResultHandlerEnabled=BinaryFieldMetadata [fieldId=1128633633,
>> typeId=8],
>> multipleResultSetsEnabled=BinaryFieldMetadata [fieldId=-459661949,
>> typeId=8], cacheRefMap=BinaryFieldMetadata [fieldId=1431520747,
>> typeId=103],
>> defaultExecutorType=BinaryFieldMetadata [fieldId=-1339727026, typeId=28],
>> variables=BinaryFieldMetadata [fieldId=-82477705, typeId=103],
>> keyGenerators=BinaryFieldMetadata [fieldId=741028767, typeId=103],
>> defaultFetchSize=BinaryFieldMetadata [fieldId=-1429234534, typeId=3],
>> objectWrapperFactory=BinaryFieldMetadata [fieldId=-137856490, typeId=103],
>> databaseId=BinaryFieldMetadata [fieldId=1688906710, typeId=9],
>> interceptorChain=BinaryFieldMetadata [fieldId=-1647583300, typeId=103],
>> environment=BinaryFieldMetadata [fieldId=-85904877, typeId=103],
>> typeHandlerRegistry=BinaryFieldMetadata [fieldId=95318797, typeId=103],
>> sqlFragments=BinaryFieldMetadata [fieldId=1400197653, typeId=103],
>> parameterMaps=BinaryFieldMetadata [fieldId=-378683968, typeId=103],
>> proxyFactory=BinaryFieldMetadata [fieldId=-271225124, typeId=103],
>> configurationFactory=BinaryFieldMetadata [fieldId=-1223795884, typeId=32],
>> localCacheScope=BinaryFieldMetadata [fieldId=-771766851, typeId=28]},
>> affKeyFieldName=null, schemas=[BinarySchema [schemaId=1365054742,
>> idToOrderMask=1023, id0=0, id1=0, id2=0, id3=0, ids=[-85904877,
>> 1691167967,
>> 1128633633, -286817803, -1718584124, -459661949, -101509668, 926720375,
>> -1267415681, -289605417, -1514679594, 342344548, 380866659, -771766851,
>> 1461105531, 2058678228 <(205)%20867-8228>, 1303620947, -1429234534,
>> -1339727026, -1192801391,
>> -333850733, -82477705, 500612010, -1947780885, -137856490, 1261051262,
>> -1856534791, -271225124, 1688906710, -1223795884, -1647583300, 95318797,
>> 1228666259, -940446827, 1731452759, -1368047311, -571115468, -378683968,
>> 741028767, -310590528, 1400197653, 1257025730, 1157355812, 900998162,
>> 841112724, 1431520747], names=[null, null, null, null, null, null, null,
>> null, null, null, null, null, null, null, null, null, null, null, null,
>> null, null, null, null, null, null, null, null, null, null, null, null,
>> null, null, null, null, null, null, null, null, null, null, null, null,
>> null, null, null], idToOrderData=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 900998162,
>> 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -571115468, 36, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380866659, 12, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 841112724, 44, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, -1429234534, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257025730, 41, 0, 0, -1718584124,
>> 4,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -289605417, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 1691167967, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, -1947780885, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1128633633, 2, 0, 0,
>> 0, 0, 1157355812, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, -1368047311, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 1303620947, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 926720375, 7, -82477705, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 1261051262,
>> 25, -1267415681, 8, 0, 0, 0, 0, 0, 0, -459661949, 5, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 1228666259, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -771766851, 13, 0, 0, 0, 0,
>> -378683968,
>> 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, -101509668, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1431520747, 45, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -286817803, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> -85904877, 0, 0, 0, 1400197653, 40, -137856490, 24, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> -1514679594, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -271225124, 27, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, -1856534791, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95318797, 31,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, -1339727026, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1223795884, 29, 0,
>> 0,
>> 0, 0, 1731452759, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 342344548, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 1461105531, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, -1192801391, 19, 0, 0, -333850733, 20, 0, 0, -940446827, 33, 0, 0,
>> 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741028767, 38, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500612010, 22, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, -1647583300, 30, 0, 0, 0, 0, 0, 0, -310590528, 39, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 2058678228 <(205)%20867-8228>, 15, 0, 0,
>> 1688906710, 28, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
>> 0, 0, 0]]], isEnum=false], typeId=-77171844, pendingVer=166,
>> acceptedVer=165, status=SUCCESSFUL, err=null],
>> affTopVer=AffinityTopologyVersion [topVer=250, minorTopVer=0],
>> super=DiscoveryEvent [evtNode=TcpDiscoveryNode
>> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
>> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
>> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0,
>> order=250,
>> intOrder=0, lastExchangeTime=1511596049874, loc=true,
>> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], topVer=250,
>> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
>> tstamp=1511596070427]]
>>
>>
>> That will take a lot of time for fist query register and It seems without
>> using withKeepBinary() method, it could be a littler faster.
>>
>> In my logic, I need to insert data in to local DB in locallistener logic
>> and
>> it seems hard to get ride of those data connection stuff out of
>> locallistener logic.
>>
>> SO, is there any suggestion to make the CQ performance better?
>>
>> Many thanks!
>>
>>
>>
>> --
>> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>>
>

Re: Register Contentious query quit slow

Posted by Denis Mekhanikov <dm...@gmail.com>.
Jin,

Regarding the problem with initial query: it's not binary metadata update,
what causes the slow-down, but processing the data.
Binary metadata update is done by just sending a few messages across the
ring, it's not a big deal, you shouldn't care too much about it.
You just have a lot of data, and all of it is processed by initial query.
That's why you get such performance impact.

Metadata does not contain Java classes, it's some internal information
about structure of objects, that are stored in cache.
So, if you put data of some type for the first time, it will cause metadata
update messages to be sent across the ring.

I'm not sure, that I understand your goal completely, but you can take a
look at a node filter
<https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/configuration/CacheConfiguration.html#setNodeFilter(org.apache.ignite.lang.IgnitePredicate)>
cache configuration parameter, looks like it could help.

As I already said, you shouldn't build a cluster on nodes, that are
connected with an unreliable network. It will lead to stability issues like
segmentation or split-brain.
It will also lead to slow work of discovery SPI, because nodes has a ring
topology, and they may be connected in interleaving order (1st DC, then
2nd, then 1st, then 2nd again, etc).

If you want to connect multiple DCs, you can consider using proprietary
solutions for datacenter replication. Here is one of the options:
https://www.gridgain.com/products/software/enterprise-edition/data-center-replication
You can also implement it yourself, since Ignite has pluggable modules
support.

Denis

вт, 28 нояб. 2017 г. в 3:58, gunman524 <gu...@126.com>:

> Denis,
>
> For this cross region case, I've some thought to share and please help
> verify whether they are  already here.
>
> 1. Two DC,   A ---corss region--- B
> 2. A have several ignite node, A1,A2,A3 ....  and B have several ignite
> node, B1,B2,B3 ..., there are in a same cluster
> 3. In ingite, A1,A2, A3 can belongs to same group, says A' and B1,B2,B3 can
> be B'
>
> So, can Ignite do this way
> 1. For data deployed in A' and B' by REPLICATED mode and within A' using
> PARTITION mode
> 2. The Continuous Query can only register in A'
>
> In this way:
> 1. As within A', all node in same DC, every action can be performed fast,
> 2 .meanwhile, as A' B' have some data, so we should not missing any event
> 3. As data in A',B' deployed in PARTITION mode, each node do not need to
> hold a hug memory.
>
> Thanks,
> Jin
>
>
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
Denis,

For this cross region case, I've some thought to share and please help
verify whether they are  already here.

1. Two DC,   A ---corss region--- B
2. A have several ignite node, A1,A2,A3 ....  and B have several ignite
node, B1,B2,B3 ..., there are in a same cluster
3. In ingite, A1,A2, A3 can belongs to same group, says A' and B1,B2,B3 can
be B'

So, can Ignite do this way
1. For data deployed in A' and B' by REPLICATED mode and within A' using
PARTITION mode
2. The Continuous Query can only register in A'

In this way:
1. As within A', all node in same DC, every action can be performed fast, 
2 .meanwhile, as A' B' have some data, so we should not missing any event
3. As data in A',B' deployed in PARTITION mode, each node do not need to
hold a hug memory.

Thanks,
Jin





--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by Denis Mekhanikov <dm...@gmail.com>.
You wrote in your previous letters, that startup takes much time.
Could you clarify, whether node connection to a cluster takes much time, or
query execution? Because I'm a bit confused.

The messages, that you see is not a class deserialization, it's binary
metadata update messages. They appear when you insert data of some type
into cache for the first time.
Could you provide full log from a node as an attached file? Also a full
reproducer would be helpful.

Denis

сб, 25 нояб. 2017 г. в 12:32, gunman524 <gu...@126.com>:

> Denis, thanks for your explain.
>
> I debugged the client side and found after I run cache.query(qry), the
> client seems to deserialize all classes my code references to
>
>
> [2017-11-25T15:47:50,347][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
> Do not start exchange for discovery event: DiscoveryCustomEvent
> [customMsg=MetadataUpdateAcceptedMessage
> [id=20d0058ef51-04f9942d-cf48-445a-8508-05c6d1e821bb, typeId=-1677406589,
> acceptedVer=166, duplicated=false], affTopVer=AffinityTopologyVersion
> [topVer=250, minorTopVer=0], super=DiscoveryEvent [evtNode=TcpDiscoveryNode
> [id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
> sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500,
> order=19,
> intOrder=11, lastExchangeTime=1511596050492, loc=false,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=false], topVer=250,
> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
> tstamp=1511596070347]]
> [2017-11-25T15:47:50,347][DEBUG][main][CacheObjectBinaryProcessorImpl]
> Requesting metadata update for -77171844
>
> [2017-11-25T15:47:50,379][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
> super=TcpDiscoveryAbstractMessage
> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
> id=1943522ff51-7776ddf7-c511-41d5-a566-5107d2d6f966,
> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
> pendingIdx=0, failedNodes=null, isClient=false]]
>
> [2017-11-25T15:47:50,379][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
> Discovery notification [node=TcpDiscoveryNode
> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
> intOrder=0, lastExchangeTime=1511596049874, loc=true,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true],
> type=DISCOVERY_CUSTOM_EVT,
> topVer=250]
>
> [2017-11-25T15:47:50,379][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
> Do not start exchange for discovery event: DiscoveryCustomEvent
> [customMsg=MetadataUpdateProposedMessage
> [id=1943522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
> origNodeId=7776ddf7-c511-41d5-a566-5107d2d6f966, metadata=BinaryMetadata
> [typeId=-77171844, typeName=org.apache.ibatis.session.Configuration,
> fields={logImpl=BinaryFieldMetadata [fieldId=342344548, typeId=32],
> autoMappingUnknownColumnBehavior=BinaryFieldMetadata [fieldId=-333850733,
> typeId=28], lazyLoadingEnabled=BinaryFieldMetadata [fieldId=-1856534791,
> typeId=8], logPrefix=BinaryFieldMetadata [fieldId=-1514679594, typeId=9],
> aggressiveLazyLoading=BinaryFieldMetadata [fieldId=-1718584124, typeId=8],
> mapUnderscoreToCamelCase=BinaryFieldMetadata [fieldId=-286817803,
> typeId=8],
> mappedStatements=BinaryFieldMetadata [fieldId=1731452759, typeId=103],
> languageRegistry=BinaryFieldMetadata [fieldId=-940446827, typeId=103],
> useGeneratedKeys=BinaryFieldMetadata [fieldId=-101509668, typeId=8],
> incompleteResultMaps=BinaryFieldMetadata [fieldId=900998162, typeId=103],
> reflectorFactory=BinaryFieldMetadata [fieldId=500612010, typeId=103],
> cacheEnabled=BinaryFieldMetadata [fieldId=-1267415681, typeId=8],
> caches=BinaryFieldMetadata [fieldId=-1368047311, typeId=103],
> callSettersOnNulls=BinaryFieldMetadata [fieldId=-289605417, typeId=8],
> incompleteStatements=BinaryFieldMetadata [fieldId=1257025730, typeId=103],
> incompleteMethods=BinaryFieldMetadata [fieldId=841112724, typeId=103],
> useColumnLabel=BinaryFieldMetadata [fieldId=926720375, typeId=8],
> safeRowBoundsEnabled=BinaryFieldMetadata [fieldId=1691167967, typeId=8],
> typeAliasRegistry=BinaryFieldMetadata [fieldId=1228666259, typeId=103],
> autoMappingBehavior=BinaryFieldMetadata [fieldId=-1192801391, typeId=28],
> jdbcTypeForNull=BinaryFieldMetadata [fieldId=1461105531, typeId=28],
> vfsImpl=BinaryFieldMetadata [fieldId=380866659, typeId=32],
> mapperRegistry=BinaryFieldMetadata [fieldId=1261051262, typeId=103],
> incompleteCacheRefs=BinaryFieldMetadata [fieldId=1157355812, typeId=103],
> defaultStatementTimeout=BinaryFieldMetadata [fieldId=1303620947, typeId=3],
> lazyLoadTriggerMethods=BinaryFieldMetadata [fieldId=2058678228
> <(205)%20867-8228>, typeId=103],
> objectFactory=BinaryFieldMetadata [fieldId=-1947780885, typeId=103],
> resultMaps=BinaryFieldMetadata [fieldId=-571115468, typeId=103],
> loadedResources=BinaryFieldMetadata [fieldId=-310590528, typeId=103],
> safeResultHandlerEnabled=BinaryFieldMetadata [fieldId=1128633633,
> typeId=8],
> multipleResultSetsEnabled=BinaryFieldMetadata [fieldId=-459661949,
> typeId=8], cacheRefMap=BinaryFieldMetadata [fieldId=1431520747,
> typeId=103],
> defaultExecutorType=BinaryFieldMetadata [fieldId=-1339727026, typeId=28],
> variables=BinaryFieldMetadata [fieldId=-82477705, typeId=103],
> keyGenerators=BinaryFieldMetadata [fieldId=741028767, typeId=103],
> defaultFetchSize=BinaryFieldMetadata [fieldId=-1429234534, typeId=3],
> objectWrapperFactory=BinaryFieldMetadata [fieldId=-137856490, typeId=103],
> databaseId=BinaryFieldMetadata [fieldId=1688906710, typeId=9],
> interceptorChain=BinaryFieldMetadata [fieldId=-1647583300, typeId=103],
> environment=BinaryFieldMetadata [fieldId=-85904877, typeId=103],
> typeHandlerRegistry=BinaryFieldMetadata [fieldId=95318797, typeId=103],
> sqlFragments=BinaryFieldMetadata [fieldId=1400197653, typeId=103],
> parameterMaps=BinaryFieldMetadata [fieldId=-378683968, typeId=103],
> proxyFactory=BinaryFieldMetadata [fieldId=-271225124, typeId=103],
> configurationFactory=BinaryFieldMetadata [fieldId=-1223795884, typeId=32],
> localCacheScope=BinaryFieldMetadata [fieldId=-771766851, typeId=28]},
> affKeyFieldName=null, schemas=[BinarySchema [schemaId=1365054742,
> idToOrderMask=1023, id0=0, id1=0, id2=0, id3=0, ids=[-85904877, 1691167967,
> 1128633633, -286817803, -1718584124, -459661949, -101509668, 926720375,
> -1267415681, -289605417, -1514679594, 342344548, 380866659, -771766851,
> 1461105531, 2058678228 <(205)%20867-8228>, 1303620947, -1429234534,
> -1339727026, -1192801391,
> -333850733, -82477705, 500612010, -1947780885, -137856490, 1261051262,
> -1856534791, -271225124, 1688906710, -1223795884, -1647583300, 95318797,
> 1228666259, -940446827, 1731452759, -1368047311, -571115468, -378683968,
> 741028767, -310590528, 1400197653, 1257025730, 1157355812, 900998162,
> 841112724, 1431520747], names=[null, null, null, null, null, null, null,
> null, null, null, null, null, null, null, null, null, null, null, null,
> null, null, null, null, null, null, null, null, null, null, null, null,
> null, null, null, null, null, null, null, null, null, null, null, null,
> null, null, null], idToOrderData=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 900998162,
> 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -571115468, 36, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380866659, 12, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 841112724, 44, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, -1429234534, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257025730, 41, 0, 0, -1718584124,
> 4,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -289605417, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 1691167967, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, -1947780885, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1128633633, 2, 0, 0,
> 0, 0, 1157355812, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, -1368047311, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 1303620947, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 926720375, 7, -82477705, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 1261051262,
> 25, -1267415681, 8, 0, 0, 0, 0, 0, 0, -459661949, 5, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 1228666259, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -771766851, 13, 0, 0, 0, 0, -378683968,
> 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, -101509668, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1431520747, 45, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -286817803, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> -85904877, 0, 0, 0, 1400197653, 40, -137856490, 24, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> -1514679594, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -271225124, 27, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, -1856534791, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95318797, 31,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, -1339727026, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1223795884, 29, 0, 0,
> 0, 0, 1731452759, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 342344548, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 1461105531, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, -1192801391, 19, 0, 0, -333850733, 20, 0, 0, -940446827, 33, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741028767, 38, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500612010, 22, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, -1647583300, 30, 0, 0, 0, 0, 0, 0, -310590528, 39, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 2058678228 <(205)%20867-8228>, 15, 0, 0,
> 1688906710, 28, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0]]], isEnum=false], typeId=-77171844, pendingVer=165,
> acceptedVer=164, status=SUCCESSFUL, err=null],
> affTopVer=AffinityTopologyVersion [topVer=250, minorTopVer=0],
> super=DiscoveryEvent [evtNode=TcpDiscoveryNode
> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
> intOrder=0, lastExchangeTime=1511596049874, loc=true,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], topVer=250,
> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
> tstamp=1511596070379]]
>
> [2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
> super=TcpDiscoveryAbstractMessage
> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
> id=61d0058ef51-e95753b3-7be4-498f-9dbe-87d197cfe355,
> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
> pendingIdx=0, failedNodes=null, isClient=false]]
>
> [2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
> Discovery notification [node=TcpDiscoveryNode
> [id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
> sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500,
> order=19,
> intOrder=11, lastExchangeTime=1511596050492, loc=false,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=false],
> type=DISCOVERY_CUSTOM_EVT, topVer=250]
>
> [2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-msg-worker-#4][CacheObjectBinaryProcessorImpl]
> Completing future for [typeId=-77171844, pendingVer=165, acceptedVer=165]
> [2017-11-25T15:47:50,395][DEBUG][main][CacheObjectBinaryProcessorImpl]
> Requesting metadata update for -77171844
>
> [2017-11-25T15:47:50,395][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
> Do not start exchange for discovery event: DiscoveryCustomEvent
> [customMsg=MetadataUpdateAcceptedMessage
> [id=61d0058ef51-04f9942d-cf48-445a-8508-05c6d1e821bb, typeId=-77171844,
> acceptedVer=165, duplicated=false], affTopVer=AffinityTopologyVersion
> [topVer=250, minorTopVer=0], super=DiscoveryEvent [evtNode=TcpDiscoveryNode
> [id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
> sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500,
> order=19,
> intOrder=11, lastExchangeTime=1511596050492, loc=false,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=false], topVer=250,
> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
> tstamp=1511596070395]]
>
> [2017-11-25T15:47:50,411][DEBUG][grid-timeout-worker-#23][GridTimeoutProcessor]
> Timeout has occurred [obj=CancelableTask
> [id=3143522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
> endTime=1511596070385,
> period=3000, cancel=false,
>
> task=org.apache.ignite.internal.processors.query.GridQueryProcessor$2@e79bd7
> ],
> process=true]
>
> [2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
> super=TcpDiscoveryAbstractMessage
> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
> id=6943522ff51-7776ddf7-c511-41d5-a566-5107d2d6f966,
> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
> pendingIdx=0, failedNodes=null, isClient=false]]
>
> [2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
> Discovery notification [node=TcpDiscoveryNode
> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
> intOrder=0, lastExchangeTime=1511596049874, loc=true,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true],
> type=DISCOVERY_CUSTOM_EVT,
> topVer=250]
>
> [2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
> Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
> super=TcpDiscoveryAbstractMessage
> [sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
> id=82d0058ef51-e95753b3-7be4-498f-9dbe-87d197cfe355,
> verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
> pendingIdx=0, failedNodes=null, isClient=false]]
>
> [2017-11-25T15:47:50,427][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
> Do not start exchange for discovery event: DiscoveryCustomEvent
> [customMsg=MetadataUpdateProposedMessage
> [id=6943522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
> origNodeId=7776ddf7-c511-41d5-a566-5107d2d6f966, metadata=BinaryMetadata
> [typeId=-77171844, typeName=org.apache.ibatis.session.Configuration,
> fields={logImpl=BinaryFieldMetadata [fieldId=342344548, typeId=32],
> autoMappingUnknownColumnBehavior=BinaryFieldMetadata [fieldId=-333850733,
> typeId=28], lazyLoadingEnabled=BinaryFieldMetadata [fieldId=-1856534791,
> typeId=8], logPrefix=BinaryFieldMetadata [fieldId=-1514679594, typeId=9],
> aggressiveLazyLoading=BinaryFieldMetadata [fieldId=-1718584124, typeId=8],
> mapUnderscoreToCamelCase=BinaryFieldMetadata [fieldId=-286817803,
> typeId=8],
> mappedStatements=BinaryFieldMetadata [fieldId=1731452759, typeId=103],
> languageRegistry=BinaryFieldMetadata [fieldId=-940446827, typeId=103],
> useGeneratedKeys=BinaryFieldMetadata [fieldId=-101509668, typeId=8],
> incompleteResultMaps=BinaryFieldMetadata [fieldId=900998162, typeId=103],
> reflectorFactory=BinaryFieldMetadata [fieldId=500612010, typeId=103],
> cacheEnabled=BinaryFieldMetadata [fieldId=-1267415681, typeId=8],
> caches=BinaryFieldMetadata [fieldId=-1368047311, typeId=103],
> callSettersOnNulls=BinaryFieldMetadata [fieldId=-289605417, typeId=8],
> incompleteStatements=BinaryFieldMetadata [fieldId=1257025730, typeId=103],
> incompleteMethods=BinaryFieldMetadata [fieldId=841112724, typeId=103],
> useColumnLabel=BinaryFieldMetadata [fieldId=926720375, typeId=8],
> safeRowBoundsEnabled=BinaryFieldMetadata [fieldId=1691167967, typeId=8],
> typeAliasRegistry=BinaryFieldMetadata [fieldId=1228666259, typeId=103],
> autoMappingBehavior=BinaryFieldMetadata [fieldId=-1192801391, typeId=28],
> jdbcTypeForNull=BinaryFieldMetadata [fieldId=1461105531, typeId=28],
> vfsImpl=BinaryFieldMetadata [fieldId=380866659, typeId=32],
> mapperRegistry=BinaryFieldMetadata [fieldId=1261051262, typeId=103],
> incompleteCacheRefs=BinaryFieldMetadata [fieldId=1157355812, typeId=103],
> defaultStatementTimeout=BinaryFieldMetadata [fieldId=1303620947, typeId=3],
> lazyLoadTriggerMethods=BinaryFieldMetadata [fieldId=2058678228
> <(205)%20867-8228>, typeId=103],
> objectFactory=BinaryFieldMetadata [fieldId=-1947780885, typeId=103],
> resultMaps=BinaryFieldMetadata [fieldId=-571115468, typeId=103],
> loadedResources=BinaryFieldMetadata [fieldId=-310590528, typeId=103],
> safeResultHandlerEnabled=BinaryFieldMetadata [fieldId=1128633633,
> typeId=8],
> multipleResultSetsEnabled=BinaryFieldMetadata [fieldId=-459661949,
> typeId=8], cacheRefMap=BinaryFieldMetadata [fieldId=1431520747,
> typeId=103],
> defaultExecutorType=BinaryFieldMetadata [fieldId=-1339727026, typeId=28],
> variables=BinaryFieldMetadata [fieldId=-82477705, typeId=103],
> keyGenerators=BinaryFieldMetadata [fieldId=741028767, typeId=103],
> defaultFetchSize=BinaryFieldMetadata [fieldId=-1429234534, typeId=3],
> objectWrapperFactory=BinaryFieldMetadata [fieldId=-137856490, typeId=103],
> databaseId=BinaryFieldMetadata [fieldId=1688906710, typeId=9],
> interceptorChain=BinaryFieldMetadata [fieldId=-1647583300, typeId=103],
> environment=BinaryFieldMetadata [fieldId=-85904877, typeId=103],
> typeHandlerRegistry=BinaryFieldMetadata [fieldId=95318797, typeId=103],
> sqlFragments=BinaryFieldMetadata [fieldId=1400197653, typeId=103],
> parameterMaps=BinaryFieldMetadata [fieldId=-378683968, typeId=103],
> proxyFactory=BinaryFieldMetadata [fieldId=-271225124, typeId=103],
> configurationFactory=BinaryFieldMetadata [fieldId=-1223795884, typeId=32],
> localCacheScope=BinaryFieldMetadata [fieldId=-771766851, typeId=28]},
> affKeyFieldName=null, schemas=[BinarySchema [schemaId=1365054742,
> idToOrderMask=1023, id0=0, id1=0, id2=0, id3=0, ids=[-85904877, 1691167967,
> 1128633633, -286817803, -1718584124, -459661949, -101509668, 926720375,
> -1267415681, -289605417, -1514679594, 342344548, 380866659, -771766851,
> 1461105531, 2058678228 <(205)%20867-8228>, 1303620947, -1429234534,
> -1339727026, -1192801391,
> -333850733, -82477705, 500612010, -1947780885, -137856490, 1261051262,
> -1856534791, -271225124, 1688906710, -1223795884, -1647583300, 95318797,
> 1228666259, -940446827, 1731452759, -1368047311, -571115468, -378683968,
> 741028767, -310590528, 1400197653, 1257025730, 1157355812, 900998162,
> 841112724, 1431520747], names=[null, null, null, null, null, null, null,
> null, null, null, null, null, null, null, null, null, null, null, null,
> null, null, null, null, null, null, null, null, null, null, null, null,
> null, null, null, null, null, null, null, null, null, null, null, null,
> null, null, null], idToOrderData=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 900998162,
> 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -571115468, 36, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380866659, 12, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 841112724, 44, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, -1429234534, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257025730, 41, 0, 0, -1718584124,
> 4,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -289605417, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 1691167967, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, -1947780885, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1128633633, 2, 0, 0,
> 0, 0, 1157355812, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, -1368047311, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 1303620947, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 926720375, 7, -82477705, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 1261051262,
> 25, -1267415681, 8, 0, 0, 0, 0, 0, 0, -459661949, 5, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 1228666259, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -771766851, 13, 0, 0, 0, 0, -378683968,
> 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, -101509668, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1431520747, 45, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -286817803, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> -85904877, 0, 0, 0, 1400197653, 40, -137856490, 24, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> -1514679594, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -271225124, 27, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, -1856534791, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95318797, 31,
> 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, -1339727026, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1223795884, 29, 0, 0,
> 0, 0, 1731452759, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 342344548, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 1461105531, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, -1192801391, 19, 0, 0, -333850733, 20, 0, 0, -940446827, 33, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741028767, 38, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500612010, 22, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, -1647583300, 30, 0, 0, 0, 0, 0, 0, -310590528, 39, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 2058678228 <(205)%20867-8228>, 15, 0, 0,
> 1688906710, 28, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
> 0, 0, 0]]], isEnum=false], typeId=-77171844, pendingVer=166,
> acceptedVer=165, status=SUCCESSFUL, err=null],
> affTopVer=AffinityTopologyVersion [topVer=250, minorTopVer=0],
> super=DiscoveryEvent [evtNode=TcpDiscoveryNode
> [id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
> 127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
> /192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
> intOrder=0, lastExchangeTime=1511596049874, loc=true,
> ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], topVer=250,
> nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
> tstamp=1511596070427]]
>
>
> That will take a lot of time for fist query register and It seems without
> using withKeepBinary() method, it could be a littler faster.
>
> In my logic, I need to insert data in to local DB in locallistener logic
> and
> it seems hard to get ride of those data connection stuff out of
> locallistener logic.
>
> SO, is there any suggestion to make the CQ performance better?
>
> Many thanks!
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
Denis, thanks for your explain. 

I debugged the client side and found after I run cache.query(qry), the
client seems to deserialize all classes my code references to

[2017-11-25T15:47:50,347][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
Do not start exchange for discovery event: DiscoveryCustomEvent
[customMsg=MetadataUpdateAcceptedMessage
[id=20d0058ef51-04f9942d-cf48-445a-8508-05c6d1e821bb, typeId=-1677406589,
acceptedVer=166, duplicated=false], affTopVer=AffinityTopologyVersion
[topVer=250, minorTopVer=0], super=DiscoveryEvent [evtNode=TcpDiscoveryNode
[id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500, order=19,
intOrder=11, lastExchangeTime=1511596050492, loc=false,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=false], topVer=250,
nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
tstamp=1511596070347]]
[2017-11-25T15:47:50,347][DEBUG][main][CacheObjectBinaryProcessorImpl]
Requesting metadata update for -77171844
[2017-11-25T15:47:50,379][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
super=TcpDiscoveryAbstractMessage
[sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
id=1943522ff51-7776ddf7-c511-41d5-a566-5107d2d6f966,
verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
pendingIdx=0, failedNodes=null, isClient=false]]
[2017-11-25T15:47:50,379][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
Discovery notification [node=TcpDiscoveryNode
[id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
/192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
intOrder=0, lastExchangeTime=1511596049874, loc=true,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], type=DISCOVERY_CUSTOM_EVT,
topVer=250]
[2017-11-25T15:47:50,379][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
Do not start exchange for discovery event: DiscoveryCustomEvent
[customMsg=MetadataUpdateProposedMessage
[id=1943522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
origNodeId=7776ddf7-c511-41d5-a566-5107d2d6f966, metadata=BinaryMetadata
[typeId=-77171844, typeName=org.apache.ibatis.session.Configuration,
fields={logImpl=BinaryFieldMetadata [fieldId=342344548, typeId=32],
autoMappingUnknownColumnBehavior=BinaryFieldMetadata [fieldId=-333850733,
typeId=28], lazyLoadingEnabled=BinaryFieldMetadata [fieldId=-1856534791,
typeId=8], logPrefix=BinaryFieldMetadata [fieldId=-1514679594, typeId=9],
aggressiveLazyLoading=BinaryFieldMetadata [fieldId=-1718584124, typeId=8],
mapUnderscoreToCamelCase=BinaryFieldMetadata [fieldId=-286817803, typeId=8],
mappedStatements=BinaryFieldMetadata [fieldId=1731452759, typeId=103],
languageRegistry=BinaryFieldMetadata [fieldId=-940446827, typeId=103],
useGeneratedKeys=BinaryFieldMetadata [fieldId=-101509668, typeId=8],
incompleteResultMaps=BinaryFieldMetadata [fieldId=900998162, typeId=103],
reflectorFactory=BinaryFieldMetadata [fieldId=500612010, typeId=103],
cacheEnabled=BinaryFieldMetadata [fieldId=-1267415681, typeId=8],
caches=BinaryFieldMetadata [fieldId=-1368047311, typeId=103],
callSettersOnNulls=BinaryFieldMetadata [fieldId=-289605417, typeId=8],
incompleteStatements=BinaryFieldMetadata [fieldId=1257025730, typeId=103],
incompleteMethods=BinaryFieldMetadata [fieldId=841112724, typeId=103],
useColumnLabel=BinaryFieldMetadata [fieldId=926720375, typeId=8],
safeRowBoundsEnabled=BinaryFieldMetadata [fieldId=1691167967, typeId=8],
typeAliasRegistry=BinaryFieldMetadata [fieldId=1228666259, typeId=103],
autoMappingBehavior=BinaryFieldMetadata [fieldId=-1192801391, typeId=28],
jdbcTypeForNull=BinaryFieldMetadata [fieldId=1461105531, typeId=28],
vfsImpl=BinaryFieldMetadata [fieldId=380866659, typeId=32],
mapperRegistry=BinaryFieldMetadata [fieldId=1261051262, typeId=103],
incompleteCacheRefs=BinaryFieldMetadata [fieldId=1157355812, typeId=103],
defaultStatementTimeout=BinaryFieldMetadata [fieldId=1303620947, typeId=3],
lazyLoadTriggerMethods=BinaryFieldMetadata [fieldId=2058678228, typeId=103],
objectFactory=BinaryFieldMetadata [fieldId=-1947780885, typeId=103],
resultMaps=BinaryFieldMetadata [fieldId=-571115468, typeId=103],
loadedResources=BinaryFieldMetadata [fieldId=-310590528, typeId=103],
safeResultHandlerEnabled=BinaryFieldMetadata [fieldId=1128633633, typeId=8],
multipleResultSetsEnabled=BinaryFieldMetadata [fieldId=-459661949,
typeId=8], cacheRefMap=BinaryFieldMetadata [fieldId=1431520747, typeId=103],
defaultExecutorType=BinaryFieldMetadata [fieldId=-1339727026, typeId=28],
variables=BinaryFieldMetadata [fieldId=-82477705, typeId=103],
keyGenerators=BinaryFieldMetadata [fieldId=741028767, typeId=103],
defaultFetchSize=BinaryFieldMetadata [fieldId=-1429234534, typeId=3],
objectWrapperFactory=BinaryFieldMetadata [fieldId=-137856490, typeId=103],
databaseId=BinaryFieldMetadata [fieldId=1688906710, typeId=9],
interceptorChain=BinaryFieldMetadata [fieldId=-1647583300, typeId=103],
environment=BinaryFieldMetadata [fieldId=-85904877, typeId=103],
typeHandlerRegistry=BinaryFieldMetadata [fieldId=95318797, typeId=103],
sqlFragments=BinaryFieldMetadata [fieldId=1400197653, typeId=103],
parameterMaps=BinaryFieldMetadata [fieldId=-378683968, typeId=103],
proxyFactory=BinaryFieldMetadata [fieldId=-271225124, typeId=103],
configurationFactory=BinaryFieldMetadata [fieldId=-1223795884, typeId=32],
localCacheScope=BinaryFieldMetadata [fieldId=-771766851, typeId=28]},
affKeyFieldName=null, schemas=[BinarySchema [schemaId=1365054742,
idToOrderMask=1023, id0=0, id1=0, id2=0, id3=0, ids=[-85904877, 1691167967,
1128633633, -286817803, -1718584124, -459661949, -101509668, 926720375,
-1267415681, -289605417, -1514679594, 342344548, 380866659, -771766851,
1461105531, 2058678228, 1303620947, -1429234534, -1339727026, -1192801391,
-333850733, -82477705, 500612010, -1947780885, -137856490, 1261051262,
-1856534791, -271225124, 1688906710, -1223795884, -1647583300, 95318797,
1228666259, -940446827, 1731452759, -1368047311, -571115468, -378683968,
741028767, -310590528, 1400197653, 1257025730, 1157355812, 900998162,
841112724, 1431520747], names=[null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null], idToOrderData=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 900998162,
43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -571115468, 36, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380866659, 12, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 841112724, 44, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -1429234534, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257025730, 41, 0, 0, -1718584124, 4,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -289605417, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1691167967, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -1947780885, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1128633633, 2, 0, 0,
0, 0, 1157355812, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -1368047311, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1303620947, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 926720375, 7, -82477705, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1261051262,
25, -1267415681, 8, 0, 0, 0, 0, 0, 0, -459661949, 5, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1228666259, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -771766851, 13, 0, 0, 0, 0, -378683968,
37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -101509668, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1431520747, 45, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -286817803, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-85904877, 0, 0, 0, 1400197653, 40, -137856490, 24, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-1514679594, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -271225124, 27, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -1856534791, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95318797, 31, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -1339727026, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1223795884, 29, 0, 0,
0, 0, 1731452759, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 342344548, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1461105531, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -1192801391, 19, 0, 0, -333850733, 20, 0, 0, -940446827, 33, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741028767, 38, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500612010, 22, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -1647583300, 30, 0, 0, 0, 0, 0, 0, -310590528, 39, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 2058678228, 15, 0, 0, 1688906710, 28, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0]]], isEnum=false], typeId=-77171844, pendingVer=165,
acceptedVer=164, status=SUCCESSFUL, err=null],
affTopVer=AffinityTopologyVersion [topVer=250, minorTopVer=0],
super=DiscoveryEvent [evtNode=TcpDiscoveryNode
[id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
/192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
intOrder=0, lastExchangeTime=1511596049874, loc=true,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], topVer=250,
nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
tstamp=1511596070379]]
[2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
super=TcpDiscoveryAbstractMessage
[sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
id=61d0058ef51-e95753b3-7be4-498f-9dbe-87d197cfe355,
verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
pendingIdx=0, failedNodes=null, isClient=false]]
[2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
Discovery notification [node=TcpDiscoveryNode
[id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500, order=19,
intOrder=11, lastExchangeTime=1511596050492, loc=false,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=false],
type=DISCOVERY_CUSTOM_EVT, topVer=250]
[2017-11-25T15:47:50,395][DEBUG][tcp-client-disco-msg-worker-#4][CacheObjectBinaryProcessorImpl]
Completing future for [typeId=-77171844, pendingVer=165, acceptedVer=165]
[2017-11-25T15:47:50,395][DEBUG][main][CacheObjectBinaryProcessorImpl]
Requesting metadata update for -77171844
[2017-11-25T15:47:50,395][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
Do not start exchange for discovery event: DiscoveryCustomEvent
[customMsg=MetadataUpdateAcceptedMessage
[id=61d0058ef51-04f9942d-cf48-445a-8508-05c6d1e821bb, typeId=-77171844,
acceptedVer=165, duplicated=false], affTopVer=AffinityTopologyVersion
[topVer=250, minorTopVer=0], super=DiscoveryEvent [evtNode=TcpDiscoveryNode
[id=e95753b3-7be4-498f-9dbe-87d197cfe355, addrs=[10.41.91.200, 127.0.0.1],
sockAddrs=[/10.41.91.200:47500, /127.0.0.1:47500], discPort=47500, order=19,
intOrder=11, lastExchangeTime=1511596050492, loc=false,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=false], topVer=250,
nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
tstamp=1511596070395]]
[2017-11-25T15:47:50,411][DEBUG][grid-timeout-worker-#23][GridTimeoutProcessor]
Timeout has occurred [obj=CancelableTask
[id=3143522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9, endTime=1511596070385,
period=3000, cancel=false,
task=org.apache.ignite.internal.processors.query.GridQueryProcessor$2@e79bd7],
process=true]
[2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
super=TcpDiscoveryAbstractMessage
[sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
id=6943522ff51-7776ddf7-c511-41d5-a566-5107d2d6f966,
verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
pendingIdx=0, failedNodes=null, isClient=false]]
[2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-msg-worker-#4][TcpDiscoverySpi]
Discovery notification [node=TcpDiscoveryNode
[id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
/192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
intOrder=0, lastExchangeTime=1511596049874, loc=true,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], type=DISCOVERY_CUSTOM_EVT,
topVer=250]
[2017-11-25T15:47:50,427][DEBUG][tcp-client-disco-sock-reader-#3][TcpDiscoverySpi]
Message has been received: TcpDiscoveryCustomEventMessage [msg=null,
super=TcpDiscoveryAbstractMessage
[sndNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355,
id=82d0058ef51-e95753b3-7be4-498f-9dbe-87d197cfe355,
verifierNodeId=e95753b3-7be4-498f-9dbe-87d197cfe355, topVer=250,
pendingIdx=0, failedNodes=null, isClient=false]]
[2017-11-25T15:47:50,427][DEBUG][disco-event-worker-#36][GridCachePartitionExchangeManager]
Do not start exchange for discovery event: DiscoveryCustomEvent
[customMsg=MetadataUpdateProposedMessage
[id=6943522ff51-3f3ccb92-e4d9-44c0-b178-854b90dbfbf9,
origNodeId=7776ddf7-c511-41d5-a566-5107d2d6f966, metadata=BinaryMetadata
[typeId=-77171844, typeName=org.apache.ibatis.session.Configuration,
fields={logImpl=BinaryFieldMetadata [fieldId=342344548, typeId=32],
autoMappingUnknownColumnBehavior=BinaryFieldMetadata [fieldId=-333850733,
typeId=28], lazyLoadingEnabled=BinaryFieldMetadata [fieldId=-1856534791,
typeId=8], logPrefix=BinaryFieldMetadata [fieldId=-1514679594, typeId=9],
aggressiveLazyLoading=BinaryFieldMetadata [fieldId=-1718584124, typeId=8],
mapUnderscoreToCamelCase=BinaryFieldMetadata [fieldId=-286817803, typeId=8],
mappedStatements=BinaryFieldMetadata [fieldId=1731452759, typeId=103],
languageRegistry=BinaryFieldMetadata [fieldId=-940446827, typeId=103],
useGeneratedKeys=BinaryFieldMetadata [fieldId=-101509668, typeId=8],
incompleteResultMaps=BinaryFieldMetadata [fieldId=900998162, typeId=103],
reflectorFactory=BinaryFieldMetadata [fieldId=500612010, typeId=103],
cacheEnabled=BinaryFieldMetadata [fieldId=-1267415681, typeId=8],
caches=BinaryFieldMetadata [fieldId=-1368047311, typeId=103],
callSettersOnNulls=BinaryFieldMetadata [fieldId=-289605417, typeId=8],
incompleteStatements=BinaryFieldMetadata [fieldId=1257025730, typeId=103],
incompleteMethods=BinaryFieldMetadata [fieldId=841112724, typeId=103],
useColumnLabel=BinaryFieldMetadata [fieldId=926720375, typeId=8],
safeRowBoundsEnabled=BinaryFieldMetadata [fieldId=1691167967, typeId=8],
typeAliasRegistry=BinaryFieldMetadata [fieldId=1228666259, typeId=103],
autoMappingBehavior=BinaryFieldMetadata [fieldId=-1192801391, typeId=28],
jdbcTypeForNull=BinaryFieldMetadata [fieldId=1461105531, typeId=28],
vfsImpl=BinaryFieldMetadata [fieldId=380866659, typeId=32],
mapperRegistry=BinaryFieldMetadata [fieldId=1261051262, typeId=103],
incompleteCacheRefs=BinaryFieldMetadata [fieldId=1157355812, typeId=103],
defaultStatementTimeout=BinaryFieldMetadata [fieldId=1303620947, typeId=3],
lazyLoadTriggerMethods=BinaryFieldMetadata [fieldId=2058678228, typeId=103],
objectFactory=BinaryFieldMetadata [fieldId=-1947780885, typeId=103],
resultMaps=BinaryFieldMetadata [fieldId=-571115468, typeId=103],
loadedResources=BinaryFieldMetadata [fieldId=-310590528, typeId=103],
safeResultHandlerEnabled=BinaryFieldMetadata [fieldId=1128633633, typeId=8],
multipleResultSetsEnabled=BinaryFieldMetadata [fieldId=-459661949,
typeId=8], cacheRefMap=BinaryFieldMetadata [fieldId=1431520747, typeId=103],
defaultExecutorType=BinaryFieldMetadata [fieldId=-1339727026, typeId=28],
variables=BinaryFieldMetadata [fieldId=-82477705, typeId=103],
keyGenerators=BinaryFieldMetadata [fieldId=741028767, typeId=103],
defaultFetchSize=BinaryFieldMetadata [fieldId=-1429234534, typeId=3],
objectWrapperFactory=BinaryFieldMetadata [fieldId=-137856490, typeId=103],
databaseId=BinaryFieldMetadata [fieldId=1688906710, typeId=9],
interceptorChain=BinaryFieldMetadata [fieldId=-1647583300, typeId=103],
environment=BinaryFieldMetadata [fieldId=-85904877, typeId=103],
typeHandlerRegistry=BinaryFieldMetadata [fieldId=95318797, typeId=103],
sqlFragments=BinaryFieldMetadata [fieldId=1400197653, typeId=103],
parameterMaps=BinaryFieldMetadata [fieldId=-378683968, typeId=103],
proxyFactory=BinaryFieldMetadata [fieldId=-271225124, typeId=103],
configurationFactory=BinaryFieldMetadata [fieldId=-1223795884, typeId=32],
localCacheScope=BinaryFieldMetadata [fieldId=-771766851, typeId=28]},
affKeyFieldName=null, schemas=[BinarySchema [schemaId=1365054742,
idToOrderMask=1023, id0=0, id1=0, id2=0, id3=0, ids=[-85904877, 1691167967,
1128633633, -286817803, -1718584124, -459661949, -101509668, 926720375,
-1267415681, -289605417, -1514679594, 342344548, 380866659, -771766851,
1461105531, 2058678228, 1303620947, -1429234534, -1339727026, -1192801391,
-333850733, -82477705, 500612010, -1947780885, -137856490, 1261051262,
-1856534791, -271225124, 1688906710, -1223795884, -1647583300, 95318797,
1228666259, -940446827, 1731452759, -1368047311, -571115468, -378683968,
741028767, -310590528, 1400197653, 1257025730, 1157355812, 900998162,
841112724, 1431520747], names=[null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null], idToOrderData=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 900998162,
43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -571115468, 36, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380866659, 12, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 841112724, 44, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -1429234534, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1257025730, 41, 0, 0, -1718584124, 4,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -289605417, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1691167967, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -1947780885, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1128633633, 2, 0, 0,
0, 0, 1157355812, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -1368047311, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1303620947, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 926720375, 7, -82477705, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1261051262,
25, -1267415681, 8, 0, 0, 0, 0, 0, 0, -459661949, 5, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1228666259, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -771766851, 13, 0, 0, 0, 0, -378683968,
37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -101509668, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1431520747, 45, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -286817803, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-85904877, 0, 0, 0, 1400197653, 40, -137856490, 24, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-1514679594, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -271225124, 27, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -1856534791, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95318797, 31, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -1339727026, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1223795884, 29, 0, 0,
0, 0, 1731452759, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 342344548, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1461105531, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -1192801391, 19, 0, 0, -333850733, 20, 0, 0, -940446827, 33, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741028767, 38, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500612010, 22, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -1647583300, 30, 0, 0, 0, 0, 0, 0, -310590528, 39, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 2058678228, 15, 0, 0, 1688906710, 28, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0]]], isEnum=false], typeId=-77171844, pendingVer=166,
acceptedVer=165, status=SUCCESSFUL, err=null],
affTopVer=AffinityTopologyVersion [topVer=250, minorTopVer=0],
super=DiscoveryEvent [evtNode=TcpDiscoveryNode
[id=7776ddf7-c511-41d5-a566-5107d2d6f966, addrs=[0:0:0:0:0:0:0:1, 1.2.3.4,
127.0.0.1, 192.168.56.1], sockAddrs=[/0:0:0:0:0:0:0:1:0, /127.0.0.1:0,
/192.168.56.1:0, HOST_NAME.XXX.XXXX.com/1.2.3.4:0], discPort=0, order=250,
intOrder=0, lastExchangeTime=1511596049874, loc=true,
ver=2.3.0#20171028-sha1:8add7fd5, isClient=true], topVer=250,
nodeId8=7776ddf7, msg=null, type=DISCOVERY_CUSTOM_EVT,
tstamp=1511596070427]]


That will take a lot of time for fist query register and It seems without
using withKeepBinary() method, it could be a littler faster.

In my logic, I need to insert data in to local DB in locallistener logic and
it seems hard to get ride of those data connection stuff out of
locallistener logic. 

SO, is there any suggestion to make the CQ performance better?

Many thanks!



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
1.  *For Ignite cluster initialization, here is the log *

[2017-11-22T08:01:56,975][INFO ][main][IgniteKernal] Non-loopback local IPs:
10.41.91.200
[2017-11-22T08:01:56,975][INFO ][main][IgniteKernal] Enabled local MACs:
286ED488CFC0
[2017-11-22T08:03:36,496][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery accepted incoming connection [rmtAddr=/1.2.3.4, rmtPort=3918]
[2017-11-22T08:03:36,509][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery spawning a new thread for connection [rmtAddr=/1.2.3.4,
rmtPort=3918]
[2017-11-22T08:03:36,510][INFO ][tcp-disco-sock-reader-#4][TcpDiscoverySpi]
Started serving remote node connection [rmtAddr=/1.2.3.4:3918, rmtPort=3918]
[2017-11-22T08:03:36,538][INFO ][tcp-disco-sock-reader-#4][TcpDiscoverySpi]
Finished serving remote node connection [rmtAddr=/1.2.3.4:3918, rmtPort=3918
[2017-11-22T08:03:41,681][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery accepted incoming connection [rmtAddr=/5.6.7.8, rmtPort=46327]
[2017-11-22T08:03:41,682][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery spawning a new thread for connection [rmtAddr=/5.6.7.8,
rmtPort=46327]
[2017-11-22T08:03:41,682][INFO ][tcp-disco-sock-reader-#5][TcpDiscoverySpi]
Started serving remote node connection [rmtAddr=/5.6.7.8:46327,
rmtPort=46327]
[2017-11-22T08:03:42,127][INFO ][tcp-disco-sock-reader-#5][TcpDiscoverySpi]
Finished serving remote node connection [rmtAddr=/5.6.7.8:46327,
rmtPort=46327
[2017-11-22T08:03:46,145][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery accepted incoming connection [rmtAddr=/5.6.7.8, rmtPort=36082]
[2017-11-22T08:03:46,145][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery spawning a new thread for connection [rmtAddr=/5.6.7.8,
rmtPort=36082]
[2017-11-22T08:03:46,146][INFO ][tcp-disco-sock-reader-#6][TcpDiscoverySpi]
Started serving remote node connection [rmtAddr=/5.6.7.8:36082,
rmtPort=36082]
[2017-11-22T08:03:46,540][INFO ][tcp-disco-sock-reader-#6][TcpDiscoverySpi]
Finished serving remote node connection [rmtAddr=/5.6.7.8:36082,
rmtPort=36082
[2017-11-22T08:03:48,934][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery accepted incoming connection [rmtAddr=/5.6.7.8, rmtPort=33224]
[2017-11-22T08:03:48,935][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery spawning a new thread for connection [rmtAddr=/5.6.7.8,
rmtPort=33224]
[2017-11-22T08:03:48,935][INFO ][tcp-disco-sock-reader-#7][TcpDiscoverySpi]
Started serving remote node connection [rmtAddr=/5.6.7.8:33224,
rmtPort=33224]
[2017-11-22T08:03:49,338][INFO ][tcp-disco-sock-reader-#7][TcpDiscoverySpi]
Finished serving remote node connection [rmtAddr=/5.6.7.8:33224,
rmtPort=33224
[2017-11-22T08:03:52,522][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery accepted incoming connection [rmtAddr=/5.6.7.8, rmtPort=33160]
[2017-11-22T08:03:52,522][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery spawning a new thread for connection [rmtAddr=/5.6.7.8,
rmtPort=33160]
[2017-11-22T08:03:52,524][INFO ][tcp-disco-sock-reader-#8][TcpDiscoverySpi]
Started serving remote node connection [rmtAddr=/5.6.7.8:33160,
rmtPort=33160]
[2017-11-22T08:03:52,954][INFO ][tcp-disco-sock-reader-#8][TcpDiscoverySpi]
Finished serving remote node connection [rmtAddr=/5.6.7.8:33160,
rmtPort=33160
[2017-11-22T08:03:56,974][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery accepted incoming connection [rmtAddr=/5.6.7.8, rmtPort=48364]
[2017-11-22T08:03:56,974][INFO ][tcp-disco-srvr-#2][TcpDiscoverySpi] TCP
discovery spawning a new thread for connection [rmtAddr=/5.6.7.8,
rmtPort=48364]
[2017-11-22T08:03:56,975][INFO ][tcp-disco-sock-reader-#9][TcpDiscoverySpi]
Started serving remote node connection [rmtAddr=/5.6.7.8:48364,
rmtPort=48364]
[2017-11-22T08:03:57,368][INFO ][tcp-disco-sock-reader-#9][TcpDiscoverySpi]
Finished serving remote node connection [rmtAddr=/5.6.7.8:48364,
rmtPort=48364
。。。。。
[2017-11-22T08:05:06,021][INFO
][disco-event-worker-#41][GridDiscoveryManager] Topology snapshot [ver=3,
servers=3, clients=0, CPUs=20, heap=16.0GB]

*I wondered why connecting so many port, as my configuration is like*
<bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
    <value>1.2.3.4:47500</value>
  <value>5.6.7.8:47500</value>
 <value>9.10.11.12:47500</value>





--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Register Contentious query quit slow

Posted by Denis Mekhanikov <dm...@gmail.com>.
> I wondered why connecting so many port, as my configuration is like
You see remote ports, that are opened on remote nodes to establish a client
connection. They are chosen by the OS arbitrary and may differ from the
ones you specified in config.

> Does the "Class locally deployed" means load class for local but not from
remote?
It means that the class was deployed in some way :) As I already said, peer
class loading is supported for compute jobs only, so your whole library
won't be sent over network.

> How to enable debug message in app site?
Here is a documentation page that describes how to configure logging:
https://apacheignite.readme.io/docs/logging
It depends on the logger you are using.

Did you try starting only two nodes in the same DC? I'm pretty sure, that
your whole problem is caused by weak internet connection, not class
loading. Cluster will encounter network timeouts all the time .

Try looking into logs to figure out, what nodes are doing all that time. If
you don't see anything, then try using some profiler.

Denis

ср, 22 нояб. 2017 г. в 12:36, gunman524 <gu...@126.com>:

> 2 After I copied jar file to Ignite libs and start my app, the log on
> server
> side shows:
>
> [2017-11-22T08:14:17,585][INFO
> ][tcp-disco-msg-worker-#3][GridDeploymentLocalStore] Class locally
> deployed:
> class
> org.apache.ignite.configuration.CacheConfiguration$IgniteAllNodesPredicate
> [2017-11-22T08:14:17,586][INFO
> ][tcp-disco-msg-worker-#3][GridDeploymentPerLoaderStore] Class was deployed
> in Private or Isolated mode: class
> org.apache.ignite.configuration.CacheConfiguration$IgniteAllNodesPredicate
> [2017-11-22T08:14:17,588][INFO
> ][tcp-disco-msg-worker-#3][GridDeploymentLocalStore] Class locally
> deployed:
> class com.aaa.bbb.service.ignite.service.AbstractIgniteListeningService$2
> [2017-11-22T08:14:17,588][INFO
> ][tcp-disco-msg-worker-#3][GridDeploymentPerLoaderStore] Class was deployed
> in Private or Isolated mode: class
> com.aaa.bbb.service.ignite.service.AbstractIgniteListeningService$2
> [2017-11-22T08:14:29,572][WARN ][query-#116][GridCacheDeploymentManager]
> Ignoring deployment in PRIVATE or ISOLATED mode
> [sndId=19d2e782-413c-4cbb-9c01-1a0fc6f3e1df,
> ldrId=b45a011ef51-19d2e782-413c-4cbb-9c01-1a0fc6f3e1df, userVer=0,
> mode=PRIVATE, participants=null, daemon=false]
> [2017-11-22T08:14:29,574][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.AbstractIgniteListeningService$1
> [2017-11-22T08:14:29,574][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.DraftShareUserService
> [2017-11-22T08:14:29,575][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.DraftShareUserDao
> [2017-11-22T08:14:29,575][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.binding.MapperProxy
> [2017-11-22T08:14:29,575][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.mybatis.spring.SqlSessionTemplate
> [2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.session.defaults.DefaultSqlSessionFactory
> [2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.session.Configuration
> [2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.mapping.Environment
> [2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.mybatis.spring.transaction.SpringManagedTransactionFactory
> [2017-11-22T08:14:29,577][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.tomcat.jdbc.pool.DataSource
> [2017-11-22T08:14:29,577][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.tomcat.jdbc.pool.PoolProperties
> [2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.session.LocalCacheScope
> [2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.JdbcType
> [2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.session.ExecutorType
> [2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.session.AutoMappingBehavior
> [2017-11-22T08:14:29,579][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.session.AutoMappingUnknownColumnBehavior
> [2017-11-22T08:14:29,579][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.reflection.DefaultReflectorFactory
> [2017-11-22T08:14:29,580][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.reflection.factory.DefaultObjectFactory
> [2017-11-22T08:14:29,580][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.reflection.wrapper.DefaultObjectWrapperFactory
> [2017-11-22T08:14:29,580][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.binding.MapperRegistry
> [2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.binding.MapperProxyFactory
> [2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.IStepInstanceDao
> [2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.FaqDao
> [2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.KVRotationVODao
> [2017-11-22T08:14:29,582][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.UserGuideSubClassVODao
> [2017-11-22T08:14:29,582][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.I18nDao
> [2017-11-22T08:14:29,582][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.CatalogDao
> [2017-11-22T08:14:29,583][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.IIgniteScheduleDao
> [2017-11-22T08:14:29,583][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.MyWorkPieceHistoryDao
> [2017-11-22T08:14:29,583][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.AnnounceUserDao
> [2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.UserBoardingVoDao
> [2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.StepWorkTimeDao
> [2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.AnnounceProjectDao
> [2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.UserGuideVODao
> [2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.DomianDisplayNameRelationVoDao
> [2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.ScenrioTempStausDao
> [2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.AnnounceMainDao
> [2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.IScenarioTempDao
> [2017-11-22T08:14:29,586][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.FeedbackDao
> [2017-11-22T08:14:29,590][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.DocumentDownDao
> [2017-11-22T08:14:29,590][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.AppDraftResultHistoryDao
> [2017-11-22T08:14:29,590][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.UserProjectDao
> [2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.StepAssigneeDao
> [2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.ProjectRoleDao
> [2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.IScenrioProjectPlanDao
> [2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.StepDefRelDao
> [2017-11-22T08:14:29,592][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.AppWorkPieceHistoryDao
> [2017-11-22T08:14:29,592][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.ITaskWorkpieceTempDao
> [2017-11-22T08:14:29,592][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.IHissDao
> [2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.ProjectDao
> [2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.TaskTempDao
> [2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.DocumentVODao
> [2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.StepTempDao
> [2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface
> com.aaa.bbb.service.ignite.dao.DomianDisplayNameVoDao
> [2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface com.aaa.bbb.service.ignite.dao.AppCommentDao
> [2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory
> [2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.plugin.InterceptorChain
> [2017-11-22T08:14:29,595][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.TypeHandlerRegistry
> [2017-11-22T08:14:29,595][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ArrayTypeHandler
> [2017-11-22T08:14:29,595][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.BooleanTypeHandler
> [2017-11-22T08:14:29,596][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ByteTypeHandler
> [2017-11-22T08:14:29,596][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ShortTypeHandler
> [2017-11-22T08:14:29,597][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.IntegerTypeHandler
> [2017-11-22T08:14:29,597][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.LongTypeHandler
> [2017-11-22T08:14:29,597][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.FloatTypeHandler
> [2017-11-22T08:14:29,598][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.BigDecimalTypeHandler
> [2017-11-22T08:14:29,598][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.DoubleTypeHandler
> [2017-11-22T08:14:29,598][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.StringTypeHandler
> [2017-11-22T08:14:29,599][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ClobTypeHandler
> [2017-11-22T08:14:29,599][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.DateOnlyTypeHandler
> [2017-11-22T08:14:29,599][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.TimeOnlyTypeHandler
> [2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.DateTypeHandler
> [2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.BlobTypeHandler
> [2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.UnknownTypeHandler
> [2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ByteObjectArrayTypeHandler
> [2017-11-22T08:14:29,601][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.CharacterTypeHandler
> [2017-11-22T08:14:29,601][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.BlobInputStreamTypeHandler
> [2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.NStringTypeHandler
> [2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.BigIntegerTypeHandler
> [2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ClobReaderTypeHandler
> [2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.SqlTimeTypeHandler
> [2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.NClobTypeHandler
> [2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.type.BlobByteObjectArrayTypeHandler
> [2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.ByteArrayTypeHandler
> [2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.SqlDateTypeHandler
> [2017-11-22T08:14:29,604][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.SqlTimestampTypeHandler
> [2017-11-22T08:14:29,605][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.type.TypeAliasRegistry
> [2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.cache.impl.PerpetualCache
> [2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.logging.log4j2.Log4j2Impl
> [2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.logging.jdk14.Jdk14LoggingImpl
> [2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.mapping.VendorDatabaseIdProvider
> [2017-11-22T08:14:29,607][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.transaction.jdbc.JdbcTransactionFactory
> [2017-11-22T08:14:29,607][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.scripting.xmltags.XMLLanguageDriver
> [2017-11-22T08:14:29,607][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.transaction.managed.ManagedTransactionFactory
> [2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.cache.decorators.FifoCache
> [2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl
> [2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.scripting.defaults.RawLanguageDriver
> [2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.datasource.pooled.PooledDataSourceFactory
> [2017-11-22T08:14:29,609][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.logging.stdout.StdOutImpl
> [2017-11-22T08:14:29,609][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.cache.decorators.LruCache
> [2017-11-22T08:14:29,610][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.datasource.jndi.JndiDataSourceFactory
> [2017-11-22T08:14:29,610][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.datasource.unpooled.UnpooledDataSourceFactory
> [2017-11-22T08:14:29,610][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.logging.nologging.NoLoggingImpl
> [2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.cache.decorators.SoftCache
> [2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.cache.decorators.WeakCache
> [2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.logging.slf4j.Slf4jImpl
> [2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.executor.loader.cglib.CglibProxyFactory
> [2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.logging.log4j.Log4jImpl
> [2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.LanguageDriverRegistry
> [2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.session.Configuration$StrictMap
> [2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.mapping.MappedStatement
> [2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.session.AutoMappingUnknownColumnBehavior$1
> [2017-11-22T08:14:29,614][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.executor.keygen.NoKeyGenerator
> [2017-11-22T08:14:29,614][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.mapping.ParameterMap
> [2017-11-22T08:14:29,615][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.mapping.SqlCommandType
> [2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.scripting.xmltags.DynamicSqlSource
> [2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.xmltags.MixedSqlNode
> [2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.scripting.xmltags.StaticTextSqlNode
> [2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.xmltags.ForEachSqlNode
> [2017-11-22T08:14:29,617][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.xmltags.SetSqlNode
> [2017-11-22T08:14:29,618][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.scripting.xmltags.ExpressionEvaluator
> [2017-11-22T08:14:29,618][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.logging.slf4j.Slf4jLocationAwareLoggerImpl
> [2017-11-22T08:14:29,618][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.logging.slf4j.Log4jLogger
> [2017-11-22T08:14:29,619][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.mapping.StatementType
> [2017-11-22T08:14:29,620][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.xmltags.TrimSqlNode
> [2017-11-22T08:14:29,620][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.xmltags.IfSqlNode
> [2017-11-22T08:14:29,624][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.scripting.defaults.RawSqlSource
> [2017-11-22T08:14:29,625][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.builder.StaticSqlSource
> [2017-11-22T08:14:29,628][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.apache.ibatis.session.Configuration$StrictMap$Ambiguity
> [2017-11-22T08:14:29,652][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface org.apache.ibatis.session.SqlSession
> [2017-11-22T08:14:29,652][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class
> org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor
> [2017-11-22T08:14:29,657][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.apache.ibatis.session.RowBounds
> [2017-11-22T08:14:29,658][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: interface org.apache.ibatis.session.ResultHandler
> [2017-11-22T08:14:29,658][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class org.mybatis.spring.MyBatisExceptionTranslator
> [2017-11-22T08:14:29,659][INFO ][query-#116][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.DraftShareUserVo
> [2017-11-22T08:14:35,741][INFO ][query-#119][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.AppDraftResultHistoryService
> [2017-11-22T08:14:35,775][INFO ][query-#119][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.vo.AppDraftResultHistoryVo
> [2017-11-22T08:14:41,931][INFO ][query-#123][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.AppWorkPieceHistoryService
> [2017-11-22T08:14:41,964][INFO ][query-#123][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.AppWorkPieceHistoryVo
> [2017-11-22T08:14:47,518][INFO ][query-#125][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.MyWorkPieceHistoryService
> [2017-11-22T08:14:47,556][INFO ][query-#125][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.MyWorkPieceHistoryVo
> [2017-11-22T08:14:53,439][INFO ][query-#128][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.service.ProjectService
> [2017-11-22T08:14:53,472][INFO ][query-#128][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.ProjectVo
> [2017-11-22T08:14:59,095][INFO ][query-#130][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.UserProjectService
> [2017-11-22T08:14:59,128][INFO ][query-#130][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.UserProjectVo
> [2017-11-22T08:15:05,360][INFO ][query-#133][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.IgniteScenrioTempStatusService
> [2017-11-22T08:15:05,450][INFO ][query-#133][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.ScenrioTempStausVO
> [2017-11-22T08:15:10,734][INFO ][query-#136][GridDeploymentLocalStore]
> Class
> locally deployed: class
> com.aaa.bbb.service.ignite.service.IgniteStepTempRelaService
> [2017-11-22T08:15:10,767][INFO ][query-#136][GridDeploymentLocalStore]
> Class
> locally deployed: class com.aaa.bbb.service.ignite.vo.StepDefRelVO
>
> Does the "Class locally deployed" means load class for local but not from
> remote?
>
> 3.  How to enable debug message in app site? i tried to set
> -DIGNITE_QUIET=false and set level = ALL in java.util.logging.properties
> BUT
> STILL ONLY INFO LEVEL MSG
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Re: Register Contentious query quit slow

Posted by gunman524 <gu...@126.com>.
2 After I copied jar file to Ignite libs and start my app, the log on server
side shows:

[2017-11-22T08:14:17,585][INFO
][tcp-disco-msg-worker-#3][GridDeploymentLocalStore] Class locally deployed:
class
org.apache.ignite.configuration.CacheConfiguration$IgniteAllNodesPredicate
[2017-11-22T08:14:17,586][INFO
][tcp-disco-msg-worker-#3][GridDeploymentPerLoaderStore] Class was deployed
in Private or Isolated mode: class
org.apache.ignite.configuration.CacheConfiguration$IgniteAllNodesPredicate
[2017-11-22T08:14:17,588][INFO
][tcp-disco-msg-worker-#3][GridDeploymentLocalStore] Class locally deployed:
class com.aaa.bbb.service.ignite.service.AbstractIgniteListeningService$2
[2017-11-22T08:14:17,588][INFO
][tcp-disco-msg-worker-#3][GridDeploymentPerLoaderStore] Class was deployed
in Private or Isolated mode: class
com.aaa.bbb.service.ignite.service.AbstractIgniteListeningService$2
[2017-11-22T08:14:29,572][WARN ][query-#116][GridCacheDeploymentManager]
Ignoring deployment in PRIVATE or ISOLATED mode
[sndId=19d2e782-413c-4cbb-9c01-1a0fc6f3e1df,
ldrId=b45a011ef51-19d2e782-413c-4cbb-9c01-1a0fc6f3e1df, userVer=0,
mode=PRIVATE, participants=null, daemon=false]
[2017-11-22T08:14:29,574][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.AbstractIgniteListeningService$1
[2017-11-22T08:14:29,574][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.DraftShareUserService
[2017-11-22T08:14:29,575][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.DraftShareUserDao
[2017-11-22T08:14:29,575][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.binding.MapperProxy
[2017-11-22T08:14:29,575][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.mybatis.spring.SqlSessionTemplate
[2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.session.defaults.DefaultSqlSessionFactory
[2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.session.Configuration
[2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.mapping.Environment
[2017-11-22T08:14:29,576][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.mybatis.spring.transaction.SpringManagedTransactionFactory
[2017-11-22T08:14:29,577][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.tomcat.jdbc.pool.DataSource
[2017-11-22T08:14:29,577][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.tomcat.jdbc.pool.PoolProperties
[2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.session.LocalCacheScope
[2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.JdbcType
[2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.session.ExecutorType
[2017-11-22T08:14:29,578][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.session.AutoMappingBehavior
[2017-11-22T08:14:29,579][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.session.AutoMappingUnknownColumnBehavior
[2017-11-22T08:14:29,579][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.reflection.DefaultReflectorFactory
[2017-11-22T08:14:29,580][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.reflection.factory.DefaultObjectFactory
[2017-11-22T08:14:29,580][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.reflection.wrapper.DefaultObjectWrapperFactory
[2017-11-22T08:14:29,580][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.binding.MapperRegistry
[2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.binding.MapperProxyFactory
[2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.IStepInstanceDao
[2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.FaqDao
[2017-11-22T08:14:29,581][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.KVRotationVODao
[2017-11-22T08:14:29,582][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.UserGuideSubClassVODao
[2017-11-22T08:14:29,582][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.I18nDao
[2017-11-22T08:14:29,582][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.CatalogDao
[2017-11-22T08:14:29,583][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.IIgniteScheduleDao
[2017-11-22T08:14:29,583][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.MyWorkPieceHistoryDao
[2017-11-22T08:14:29,583][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.AnnounceUserDao
[2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.UserBoardingVoDao
[2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.StepWorkTimeDao
[2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.AnnounceProjectDao
[2017-11-22T08:14:29,584][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.UserGuideVODao
[2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.DomianDisplayNameRelationVoDao
[2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.ScenrioTempStausDao
[2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.AnnounceMainDao
[2017-11-22T08:14:29,585][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.IScenarioTempDao
[2017-11-22T08:14:29,586][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.FeedbackDao
[2017-11-22T08:14:29,590][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.DocumentDownDao
[2017-11-22T08:14:29,590][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.AppDraftResultHistoryDao
[2017-11-22T08:14:29,590][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.UserProjectDao
[2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.StepAssigneeDao
[2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.ProjectRoleDao
[2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.IScenrioProjectPlanDao
[2017-11-22T08:14:29,591][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.StepDefRelDao
[2017-11-22T08:14:29,592][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.AppWorkPieceHistoryDao
[2017-11-22T08:14:29,592][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.ITaskWorkpieceTempDao
[2017-11-22T08:14:29,592][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.IHissDao
[2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.ProjectDao
[2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.TaskTempDao
[2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.DocumentVODao
[2017-11-22T08:14:29,593][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.StepTempDao
[2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface
com.aaa.bbb.service.ignite.dao.DomianDisplayNameVoDao
[2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface com.aaa.bbb.service.ignite.dao.AppCommentDao
[2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory
[2017-11-22T08:14:29,594][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.plugin.InterceptorChain
[2017-11-22T08:14:29,595][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.TypeHandlerRegistry
[2017-11-22T08:14:29,595][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ArrayTypeHandler
[2017-11-22T08:14:29,595][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.BooleanTypeHandler
[2017-11-22T08:14:29,596][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ByteTypeHandler
[2017-11-22T08:14:29,596][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ShortTypeHandler
[2017-11-22T08:14:29,597][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.IntegerTypeHandler
[2017-11-22T08:14:29,597][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.LongTypeHandler
[2017-11-22T08:14:29,597][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.FloatTypeHandler
[2017-11-22T08:14:29,598][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.BigDecimalTypeHandler
[2017-11-22T08:14:29,598][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.DoubleTypeHandler
[2017-11-22T08:14:29,598][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.StringTypeHandler
[2017-11-22T08:14:29,599][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ClobTypeHandler
[2017-11-22T08:14:29,599][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.DateOnlyTypeHandler
[2017-11-22T08:14:29,599][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.TimeOnlyTypeHandler
[2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.DateTypeHandler
[2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.BlobTypeHandler
[2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.UnknownTypeHandler
[2017-11-22T08:14:29,600][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ByteObjectArrayTypeHandler
[2017-11-22T08:14:29,601][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.CharacterTypeHandler
[2017-11-22T08:14:29,601][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.BlobInputStreamTypeHandler
[2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.NStringTypeHandler
[2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.BigIntegerTypeHandler
[2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ClobReaderTypeHandler
[2017-11-22T08:14:29,602][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.SqlTimeTypeHandler
[2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.NClobTypeHandler
[2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.type.BlobByteObjectArrayTypeHandler
[2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.ByteArrayTypeHandler
[2017-11-22T08:14:29,603][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.SqlDateTypeHandler
[2017-11-22T08:14:29,604][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.SqlTimestampTypeHandler
[2017-11-22T08:14:29,605][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.type.TypeAliasRegistry
[2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.cache.impl.PerpetualCache
[2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.logging.log4j2.Log4j2Impl
[2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.logging.jdk14.Jdk14LoggingImpl
[2017-11-22T08:14:29,606][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.mapping.VendorDatabaseIdProvider
[2017-11-22T08:14:29,607][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.transaction.jdbc.JdbcTransactionFactory
[2017-11-22T08:14:29,607][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.scripting.xmltags.XMLLanguageDriver
[2017-11-22T08:14:29,607][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.transaction.managed.ManagedTransactionFactory
[2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.cache.decorators.FifoCache
[2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl
[2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.scripting.defaults.RawLanguageDriver
[2017-11-22T08:14:29,608][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.datasource.pooled.PooledDataSourceFactory
[2017-11-22T08:14:29,609][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.logging.stdout.StdOutImpl
[2017-11-22T08:14:29,609][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.cache.decorators.LruCache
[2017-11-22T08:14:29,610][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.datasource.jndi.JndiDataSourceFactory
[2017-11-22T08:14:29,610][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.datasource.unpooled.UnpooledDataSourceFactory
[2017-11-22T08:14:29,610][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.logging.nologging.NoLoggingImpl
[2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.cache.decorators.SoftCache
[2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.cache.decorators.WeakCache
[2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.logging.slf4j.Slf4jImpl
[2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.executor.loader.cglib.CglibProxyFactory
[2017-11-22T08:14:29,611][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.logging.log4j.Log4jImpl
[2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.LanguageDriverRegistry
[2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.session.Configuration$StrictMap
[2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.mapping.MappedStatement
[2017-11-22T08:14:29,612][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.session.AutoMappingUnknownColumnBehavior$1
[2017-11-22T08:14:29,614][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.executor.keygen.NoKeyGenerator
[2017-11-22T08:14:29,614][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.mapping.ParameterMap
[2017-11-22T08:14:29,615][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.mapping.SqlCommandType
[2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.xmltags.DynamicSqlSource
[2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.xmltags.MixedSqlNode
[2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.scripting.xmltags.StaticTextSqlNode
[2017-11-22T08:14:29,616][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.xmltags.ForEachSqlNode
[2017-11-22T08:14:29,617][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.xmltags.SetSqlNode
[2017-11-22T08:14:29,618][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.scripting.xmltags.ExpressionEvaluator
[2017-11-22T08:14:29,618][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.logging.slf4j.Slf4jLocationAwareLoggerImpl
[2017-11-22T08:14:29,618][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.logging.slf4j.Log4jLogger
[2017-11-22T08:14:29,619][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.mapping.StatementType
[2017-11-22T08:14:29,620][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.xmltags.TrimSqlNode
[2017-11-22T08:14:29,620][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.xmltags.IfSqlNode
[2017-11-22T08:14:29,624][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.scripting.defaults.RawSqlSource
[2017-11-22T08:14:29,625][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.builder.StaticSqlSource
[2017-11-22T08:14:29,628][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.apache.ibatis.session.Configuration$StrictMap$Ambiguity
[2017-11-22T08:14:29,652][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface org.apache.ibatis.session.SqlSession
[2017-11-22T08:14:29,652][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class
org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor
[2017-11-22T08:14:29,657][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.apache.ibatis.session.RowBounds
[2017-11-22T08:14:29,658][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: interface org.apache.ibatis.session.ResultHandler
[2017-11-22T08:14:29,658][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class org.mybatis.spring.MyBatisExceptionTranslator
[2017-11-22T08:14:29,659][INFO ][query-#116][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.DraftShareUserVo
[2017-11-22T08:14:35,741][INFO ][query-#119][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.AppDraftResultHistoryService
[2017-11-22T08:14:35,775][INFO ][query-#119][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.vo.AppDraftResultHistoryVo
[2017-11-22T08:14:41,931][INFO ][query-#123][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.AppWorkPieceHistoryService
[2017-11-22T08:14:41,964][INFO ][query-#123][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.AppWorkPieceHistoryVo
[2017-11-22T08:14:47,518][INFO ][query-#125][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.MyWorkPieceHistoryService
[2017-11-22T08:14:47,556][INFO ][query-#125][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.MyWorkPieceHistoryVo
[2017-11-22T08:14:53,439][INFO ][query-#128][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.service.ProjectService
[2017-11-22T08:14:53,472][INFO ][query-#128][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.ProjectVo
[2017-11-22T08:14:59,095][INFO ][query-#130][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.UserProjectService
[2017-11-22T08:14:59,128][INFO ][query-#130][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.UserProjectVo
[2017-11-22T08:15:05,360][INFO ][query-#133][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.IgniteScenrioTempStatusService
[2017-11-22T08:15:05,450][INFO ][query-#133][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.ScenrioTempStausVO
[2017-11-22T08:15:10,734][INFO ][query-#136][GridDeploymentLocalStore] Class
locally deployed: class
com.aaa.bbb.service.ignite.service.IgniteStepTempRelaService
[2017-11-22T08:15:10,767][INFO ][query-#136][GridDeploymentLocalStore] Class
locally deployed: class com.aaa.bbb.service.ignite.vo.StepDefRelVO

Does the "Class locally deployed" means load class for local but not from
remote?

3.  How to enable debug message in app site? i tried to set
-DIGNITE_QUIET=false and set level = ALL in java.util.logging.properties BUT
STILL ONLY INFO LEVEL MSG



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/