Page 2 of 2

Re: SVS image uploading issues

PostPosted: Mon Dec 18, 2017 4:35 am
by mayav
Hi,

This is output for the bin/omero admin jvmcfg


JVM Settings:
============
blitz=-Xmx512m -XX:MaxPermSize=128m -XX:+IgnoreUnrecognizedVMOptions # Settings({'max_system_memory': '8000', 'system_memory': '4000', 'percent': '50', 'strategy': 'manual'})
indexer=-Xmx2000m -XX:MaxPermSize=128m -XX:+IgnoreUnrecognizedVMOptions # Settings({'max_system_memory': '8000', 'system_memory': '4000', 'strategy': 'manual', 'heap_size': '2000'})
pixeldata=-Xmx512m -XX:MaxPermSize=128m -XX:+IgnoreUnrecognizedVMOptions # Settings({'max_system_memory': '8000', 'system_memory': '4000', 'strategy': 'manual'})
repository=-Xmx512m -XX:MaxPermSize=128m -XX:+IgnoreUnrecognizedVMOptions # Settings({'max_system_memory': '8000', 'system_memory': '4000', 'strategy': 'manual'})

And In my server we have 16GB RAM.

Kindly suggest the solution, how and where increase the memory size in the system

Thanks

Re: SVS image uploading issues

PostPosted: Mon Dec 18, 2017 5:39 pm
by bramalingam
Hi,

Thank you for writing back to us.

Looking into your JVM settings from,
viewtopic.php?f=5&t=8214&p=18915#p18915

Your current configuration suggests that you are using a ManualStrategy, and as highlighted in the documentation
https://docs.openmicroscopy.org/omero/5 ... properties:
“ManualStrategy
Simply provides the values given as the JVM settings. If no value is set for a particular configuration property, then the default is used: heap_size=512m and perm_gen=128m These values are equivalent to the defaults in OMERO 5.0.2 and earlier.”

Expanding a bit more on the usage,

Please set the strategy to PercentStrategy as mentioned in the documentation page,
$ bin/omero config set omero.jvmcfg.strategy percent

and set the percent distribution of the different processes (setting a few example values, please select appropriate values for the same),
$ bin/omero config set omero.jvmcfg.percent.blitz 50
$ bin/omero config set omero.jvmcfg.percent.indexer 20
$ bin/omero config set omero.jvmcfg.percent.pixeldata 20
$ bin/omero config set omero.jvmcfg.system_memory 14000
Assuming you would like to allocate 14GB to the system_memory (You can edit this value to an appropriate value).

Please let us know if the trouble persists after editing the configuration, as suggested.
Hope that helps.

Best,
Balaji

Re: SVS image uploading issues

PostPosted: Tue Dec 19, 2017 8:04 am
by mayav
Hi,

Thanks for the help.
Issue sorted