Hi Chris<br><br>thanks for your advice. As suggested by you, I modified the script and created only 4 LogicalChannelI objects linked to the image&#39;s channels (I looked into the xml model file and found the many-to-one relationship between channel and logicalchannel), now the execution time takes only 13 minutes.<br>

I attach the script in order to provide an example if anybody needs one.<br><br>Luca<br><br><br><div class="gmail_quote">2009/8/5 Chris Allan <span dir="ltr">&lt;<a href="mailto:callan@blackcat.ca">callan@blackcat.ca</a>&gt;</span><br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi Luca,<br>
<br>
One big thing is to be very careful with enumerations:<br>
<br>
26       do = om.model.DimensionOrderI()<br>
27       do.setValue(omt.rstring(&#39;XYZCT&#39;))<br>
28       pt = om.model.PixelsTypeI()<br>
29       pt.setValue(omt.rstring(&#39;uint16&#39;))<br>
<br>
This is creating brand new enumerations for every image inserted, which<br>
will slow any enumeration queries to a crawl and is causing 3000 extra<br>
INSERTs, significant graph inspection overhead, etc. You want to<br>
retrieve the existing enumerations through IQuery and then use an<br>
unloaded version of the object to help you out, for example<br>
(pseudo-code):<br>
<br>
...<br>
dimension_orders = iquery.findAll(&quot;DimensionOrder&quot;)<br>
xyzct = filter(lambda a: a.value.val == &#39;XYZCT&#39;)[0]<br>
syzct.unload()<br>
...<br>
for image in range(0, 100):<br>
...<br>
    p.setDimensionOrder(xyzct)<br>
<br>
The above applies to FormatI, DimensionOrderI and PixelsTypeI. In fact,<br>
you&#39;ve sort of corrupted your database in a way for the particular user<br>
you&#39;ve logged in as by adding 1000&#39;s of bogus enumerations.<br>
<br>
Give that a try first after deleting your bogus enums and see where you<br>
get to.<br>
<br>
-Chris<br>
<div><div></div><div class="h5"><br>
On Wed, 2009-08-05 at 16:06 +0200, Luca Lianas wrote:<br>
&gt; Sorry, i forgot the attachment...<br>
&gt;<br>
&gt;<br>
&gt; 2009/8/5 Luca Lianas &lt;<a href="mailto:luca.lianas@crs4.it">luca.lianas@crs4.it</a>&gt;<br>
&gt;         I belong to the biomedical reserch group at CRS4, a research<br>
&gt;         centre in Italy; we are currently using omero in several<br>
&gt;         projects and we are running some performance tests during<br>
&gt;         these days.<br>
&gt;         We noticed that the server has low performances when loading a<br>
&gt;         large amount of data (I tried to load the meta-informations<br>
&gt;         for 50.000 4-channel images).<br>
&gt;         I did a smaller test loading 1000 images using a python script<br>
&gt;         and it took 1 minute and 42 seconds to load the data (as said<br>
&gt;         before, I only wrote the meta-data of the images into the<br>
&gt;         database, the real pixels are stored into a HDFS file system).<br>
&gt;         I used the compiled version of Omero downloaded from the<br>
&gt;         website and with default configuration. Omero runs on a Linux<br>
&gt;         server (Fedora core 11) with a dual opteron processor (248<br>
&gt;         model) and 4GB of RAM.<br>
&gt;         I&#39;m wondering what is the problem and if there are some hints<br>
&gt;         to improve the performances on the server. Any help is<br>
&gt;         appreciated.<br>
&gt;<br>
&gt;         Please see the script I&#39;m using, as per attachment (maybe is<br>
&gt;         the script itself my problem).<br>
&gt;<br>
&gt;         Thanks for you attention<br>
&gt;<br>
&gt;         Luca<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; ome-devel mailing list<br>
&gt; <a href="mailto:ome-devel@lists.openmicroscopy.org.uk">ome-devel@lists.openmicroscopy.org.uk</a><br>
&gt; <a href="http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-devel" target="_blank">http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-devel</a><br>
<br>
</blockquote></div><br>