The following configuration creates a list of warnings on ignite startup. How can fix it?
<?xml version="1.0" encoding="utf-8"?>
<igniteConfiguration localhost="127.0.0.1" autoGenerateIgniteInstanceName="true" peerAssemblyLoadingMode="CurrentAppDomain"
xmlns="http://ignite.apache.org/schema/dotnet/IgniteConfigurationSection">
<discoverySpi type="TcpDiscoverySpi">
<ipFinder type="TcpDiscoveryMulticastIpFinder">
<endpoints>
<string>127.0.0.1:47500..47502</string>
</endpoints>
</ipFinder>
</discoverySpi>
<jvmOptions>
<string>-DIGNITE_QUIET=true</string>
<string>-DIGNITE_PERFORMANCE_SUGGESTIONS_DISABLED=true</string>
</jvmOptions>
<logger type="Apache.Ignite.NLog.IgniteNLogLogger, Apache.Ignite.NLog" />
</igniteConfiguration>
Warnings are as follows.
org.apache.ignite.internal.util.typedef.G, Ignite work directory is not provided, automatically resolved to....
Do we need to have a unique directory exclusively for each node including client and server? does the igniteConfiguration workDirectory='..' supports relative path? and in the case of asp.net web deployment is it required to set ignite_home?
org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi, Message queue limit is set to 0 which may lead to potential OOMEs when running cache operations in FULL_ASYNC or PRIMARY_SYNC modes due to message queues growth on sender and receiver sides.
When we set the messaequeuelimit as 1024(default) value, do we need to explicitly set the slowClientQueueLimit value as less than messaequeuelimit? (communicationSpi type='TcpCommunicationSpi' messageQueueLimit='1024') refering to the thread Ignite TcpCommunicationSpi : Can slowClientQueueLimit be set to same value as messageQueueLimit as per docs?
org.apache.ignite.spi.checkpoint.noop.NoopCheckpointSpi, Checkpoints are disabled (to enable configure any GridCheckpointSpi implementation)
Can we ignore this warning when ignite is configured to run pure in-memory and persistence is OFF?
org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing, Serialization of Java objects in H2 was enabled.
org.apache.ignite.internal.processors.platform.PlatformProcessorImpl, Marshaller is automatically set to o.a.i.i.binary.BinaryMarshaller (other nodes must have the same marshaller type).