<!-- Configure internal thread pool. -->
<!--property name="publicThreadPoolSize" value="64"/-->
<!-- Configure system thread pool. -->
<!--property name="systemThreadPoolSize" value="24"/-->
Вот две конфигурации, которые я попробовал.
ошибка
Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException:
Invalid property 'systemThreadPoolSize' of bean class [org.apache.ignite.configuration.CacheConfiguration]:
Bean property 'systemThreadPoolSize' is not writable or has an invalid setter method. Does the parameter
type of the setter match the return type of the getter?
Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException:
Invalid property 'publicThreadPoolSize' of bean class [org.apache.ignite.configuration.CacheConfiguration]:
Bean property 'publicThreadPoolSize' is not writable or has an invalid setter method. Does the parameter
type of the setter match the return type of the getter?
Я пробую конфигурации здесь. https://apacheignite-cpp.readme.io/v2.0/docs/performance-tips
Большинство из них кажутся неверными. Можно ли также предложить, где я могу найти имена свойств для конфигураций XML для настройки производительности в режиме FULL_SYNC.
Вы помещаете это в неправильное место, вы помещаете это в конфигурацию кеша, в то время как это должно быть частью конфигурации зажигания:
<bean id="grid.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">
....
<property name="publicThreadPoolSize" value="100"/>
<property name="systemThreadPoolSize" value="100"/>
....
<property name="cacheConfiguration">
<list>
<!-- NOT HERE -->
</list>
</property>
</bean>
Других решений пока нет …