In the config.xml, the following lines sets the "Page Size".
<bean class="org.apache.ignite.configuration.IgniteConfiguration">
  <property name="dataStorageConfiguration">
    <bean class="org.apache.ignite.configuration.DataStorageConfiguration">

      <!-- Set the page size to 8 KB -->
      <property name="pageSize" value="8192"/>
    </bean>
  </property>

  <!--- Additional settings ---->
</bean>
As per my understanding, the data entered by the client, is stored in 'pages' 
in the memory, therefore, if I increase the page-size, more number of key-value 
pairs can be accommodated in the same page. I was thinking that, this size 
might affect the throughput therefore I wanted to increase the size, however, 
I'm unable to do so. I get the following error:
ERROR: Failed to instantiate configuration from Spring XML: 
./../../../config/config.xml
Ignite seems to be accepting only 8 KB as the value of page Size. Why is this 
happening?

Stackoverflow link: 
https://stackoverflow.com/questions/50116444/unable-to-increase-pagesize

Thanks and regards,
Vishal Sharma
"Confidentiality Warning: This message and any attachments are intended only 
for the use of the intended recipient(s). 
are confidential and may be privileged. If you are not the intended recipient. 
you are hereby notified that any 
review. re-transmission. conversion to hard copy. copying. circulation or other 
use of this message and any attachments is 
strictly prohibited. If you are not the intended recipient. please notify the 
sender immediately by return email. 
and delete this message and any attachments from your system.

Virus Warning: Although the company has taken reasonable precautions to ensure 
no viruses are present in this email. 
The company cannot accept responsibility for any loss or damage arising from 
the use of this email or attachment."

Reply via email to