<!-- Configure internal thread pool. -->
<!--property name="publicThreadPoolSize" value="64"/-->
<!-- Configure system thread pool. -->
<!--property name="systemThreadPoolSize" value="24"/-->
這是我嘗試的兩種配置。我如何配置公共和系統線程池大小ignat
錯誤
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模式下進行性能調整。
請分享您的完整的Ignite配置文件 –