<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Nov 24, 2015 at 3:49 PM, John Hunter <span dir="ltr">&lt;<a href="mailto:zhjwpku@gmail.com" target="_blank">zhjwpku@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Tue, Nov 24, 2015 at 9:15 PM, Juan Hernández <span dir="ltr">&lt;<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span>On 11/24/2015 01:40 PM, John Hunter wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; On Tue, Nov 24, 2015 at 5:18 PM, Oved Ourfali &lt;<a href="mailto:oourfali@redhat.com" target="_blank">oourfali@redhat.com</a><br>
</span><span>&gt; &lt;mailto:<a href="mailto:oourfali@redhat.com" target="_blank">oourfali@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     Hi<br>
&gt;<br>
&gt;     I discussed it with Juan (cc-ed).<br>
&gt;<br>
&gt;     There used to be a bug in the JDBC authenticion extension that<br>
&gt;     artificially delayed RESTAPI responses by 5 seconds:<br>
&gt;<br>
&gt;       brute force prevention login delay should not be applied to successful<br>
&gt;     login requests<br>
&gt;       <a href="https://bugzilla.redhat.com/1255814" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/1255814</a><br>
&gt;<br>
&gt;     That matches the description of the issue, but in theory it has been<br>
&gt;     fixed. I would suggest him to check that he is using the right version<br>
&gt;     of the extension.<br>
&gt;<br>
&gt; I did not use the extension ovirt-engine-extension-aaa-jdbc, and I don&#39;t<br>
&gt; think this bug matches my problem, because even there is only one line<br>
&gt; in the python script, it still cost like 3 seconds, I don&#39;t think this is a<br>
&gt; reasonable time as when I import other package, it cost almost no time.<br>
&gt;<br>
&gt; Can you explain why this import line costs so much time?<br>
&gt;<br>
<br>
</span>If you are using 3.6 then you are using ovirt-engine-extension-aaa-jdbc,<br>
as it is enabled by default, but looks like it isn&#39;t related to your<br>
problem.<br>
<br>
That line takes a long time to execute because it has to process two<br>
large Python modules: the &quot;params&quot; module that contains a class per each<br>
type used by the API (393 classes) and the &quot;brokers&quot; module that<br>
contains a class per each resource used by the API (358 classes). That<br>
makes a total of 751 classes. In my environment it takes 0.9 seconds,<br>
approx. You may want to use the python profile in your environment and<br>
share the results:<br>
<br>
$ cat &gt; profile.py &lt;&lt;.<br>
import cProfile<br>
cProfile.run(&quot;from ovirtsdk.api import API&quot;)<br>
.<br>
<br>
$ python profile.py<br>
<br>
I won&#39;t be surprised to see this taking those 3 seconds in a slower<br>
environment.<br>
<br>
But even if this takes those 3 seconds it shouldn&#39;t be a big problem,<br>
because you shouldn&#39;t be running that &quot;from ... import ...&quot; line<br>
frequently. Your program should do this once only, when it starts.<br>
<span><br></span></blockquote></div></div><div>Assume that I have two functions to implement, one is to list all the vms belong</div><div>to the user, and the other is to retrieve one vm&#39;s virt-viewer connection file, as </div><div>far as I can see, I have to write two python scripts and import the ovirtsdk.api in both</div><div>scripts, each script has to take the 3 seconds :(</div></div></div></div></blockquote><div><br></div><div>No, you have two functions, which can be in the same module, or in different modules, depending on how you want to organize your code.</div><div><br></div><div>Python imports are done only once, on the first time you import a module anywhere. The module is stored in sys.modules, and the next import fetch the module object from sys.modules.</div><div><br></div><div>Can you share a profile of a simple script importing the Python sdk?</div><div><br></div><div>Do:</div><div><br></div><div>    python -m cProfile -o myscript.prof myscript.py</div><div><br></div><div>The profile will be stored in myscript.prof.</div><div><br></div><div>For viewing the profile, I recommend to use the profile-stats tool:</div><div><a href="https://github.com/oVirt/vdsm/blob/master/contrib/profile-stats">https://github.com/oVirt/vdsm/blob/master/contrib/profile-stats</a><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>How can I run the &quot;from ... import ...&quot; just once ?</div><span class=""><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span>
&gt;<br>
&gt;     In addition we also know that retrieving large lists of objects with the<br>
&gt;     SDK is slow:<br>
&gt;<br>
&gt;        [RFE][performance] - generate large scale list running to slow.<br>
&gt;        <a href="https://bugzilla.redhat.com/1221238" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/1221238</a><br>
&gt;<br>
&gt;     We don&#39;t have a solution for that yet.<br>
&gt;<br>
&gt;     CC-ing Juan in case you have additional questions.<br>
&gt;<br>
&gt;<br>
&gt;     On Mon, Nov 23, 2015 at 11:27 AM, John Hunter &lt;<a href="mailto:zhjwpku@gmail.com" target="_blank">zhjwpku@gmail.com</a><br>
</span><span>&gt;     &lt;mailto:<a href="mailto:zhjwpku@gmail.com" target="_blank">zhjwpku@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;         Hi guys,<br>
&gt;<br>
&gt;         I am using the ovirt-engine-sdk-python to communicate with the<br>
&gt;         ovirt-engine,<br>
&gt;         I am ok to list the vms but the processing time is too long,<br>
&gt;         like 4.5 seconds,<br>
&gt;         and this line:<br>
&gt;             from ovirtsdk.api import API<br>
&gt;         take almost 3 seconds.<br>
&gt;<br>
&gt;         This seems a little bit longer than I expected it to be, so I am<br>
&gt;         asking is there<br>
&gt;         a quicker way to communicate with the ovirt-engine?<br>
&gt;<br>
<br>
--<br>
</span>Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta<br>
3ºD, 28016 Madrid, Spain<br>
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.<br>
</blockquote></span></div><br><br clear="all"><span class=""><div><br></div>-- <br><div><div dir="ltr"><div><div dir="ltr"><div>Best regards<br></div><div>Junwang Zhao</div><div>Department of Computer Science &amp;Technology</div><div>Peking University</div><div>Beijing, 100871, PRC</div></div></div></div></div>
</span></div></div>
<br>_______________________________________________<br>
Devel mailing list<br>
<a href="mailto:Devel@ovirt.org">Devel@ovirt.org</a><br>
<a href="http://lists.ovirt.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.ovirt.org/mailman/listinfo/devel</a><br></blockquote></div><br></div></div>