<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 24, 2015 at 9:56 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>On 11/24/2015 02:49 PM, John Hunter wrote:<br>
&gt;<br>
&gt;<br>
&gt; On Tue, Nov 24, 2015 at 9:15 PM, Juan Hernández &lt;<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@redhat.com</a><br>
</span><span>&gt; &lt;mailto:<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     On 11/24/2015 01:40 PM, John Hunter wrote:<br>
&gt;     &gt; Hi,<br>
&gt;     &gt;<br>
&gt;     &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> &lt;mailto:<a href="mailto:oourfali@redhat.com" target="_blank">oourfali@redhat.com</a>&gt;<br>
</span><div><div>&gt;     &gt; &lt;mailto:<a href="mailto:oourfali@redhat.com" target="_blank">oourfali@redhat.com</a> &lt;mailto:<a href="mailto:oourfali@redhat.com" target="_blank">oourfali@redhat.com</a>&gt;&gt;&gt; wrote:<br>
&gt;     &gt;<br>
&gt;     &gt;     Hi<br>
&gt;     &gt;<br>
&gt;     &gt;     I discussed it with Juan (cc-ed).<br>
&gt;     &gt;<br>
&gt;     &gt;     There used to be a bug in the JDBC authenticion extension that<br>
&gt;     &gt;     artificially delayed RESTAPI responses by 5 seconds:<br>
&gt;     &gt;<br>
&gt;     &gt;       brute force prevention login delay should not be applied to successful<br>
&gt;     &gt;     login requests<br>
&gt;     &gt;       <a href="https://bugzilla.redhat.com/1255814" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/1255814</a><br>
&gt;     &gt;<br>
&gt;     &gt;     That matches the description of the issue, but in theory it has been<br>
&gt;     &gt;     fixed. I would suggest him to check that he is using the right version<br>
&gt;     &gt;     of the extension.<br>
&gt;     &gt;<br>
&gt;     &gt; I did not use the extension ovirt-engine-extension-aaa-jdbc, and I don&#39;t<br>
&gt;     &gt; think this bug matches my problem, because even there is only one line<br>
&gt;     &gt; in the python script, it still cost like 3 seconds, I don&#39;t think this is a<br>
&gt;     &gt; reasonable time as when I import other package, it cost almost no time.<br>
&gt;     &gt;<br>
&gt;     &gt; Can you explain why this import line costs so much time?<br>
&gt;     &gt;<br>
&gt;<br>
&gt;     If you are using 3.6 then you are using ovirt-engine-extension-aaa-jdbc,<br>
&gt;     as it is enabled by default, but looks like it isn&#39;t related to your<br>
&gt;     problem.<br>
&gt;<br>
&gt;     That line takes a long time to execute because it has to process two<br>
&gt;     large Python modules: the &quot;params&quot; module that contains a class per each<br>
&gt;     type used by the API (393 classes) and the &quot;brokers&quot; module that<br>
&gt;     contains a class per each resource used by the API (358 classes). That<br>
&gt;     makes a total of 751 classes. In my environment it takes 0.9 seconds,<br>
&gt;     approx. You may want to use the python profile in your environment and<br>
&gt;     share the results:<br>
&gt;<br>
&gt;     $ cat &gt; profile.py &lt;&lt;.<br>
&gt;     import cProfile<br>
&gt;     cProfile.run(&quot;from ovirtsdk.api import API&quot;)<br>
&gt;     .<br>
&gt;<br>
&gt;     $ python profile.py<br>
&gt;<br>
&gt;     I won&#39;t be surprised to see this taking those 3 seconds in a slower<br>
&gt;     environment.<br>
&gt;<br>
&gt;     But even if this takes those 3 seconds it shouldn&#39;t be a big problem,<br>
&gt;     because you shouldn&#39;t be running that &quot;from ... import ...&quot; line<br>
&gt;     frequently. Your program should do this once only, when it starts.<br>
&gt;<br>
&gt; Assume that I have two functions to implement, one is to list all the<br>
&gt; vms belong<br>
&gt; to the user, and the other is to retrieve one vm&#39;s virt-viewer<br>
&gt; connection file, as<br>
&gt; far as I can see, I have to write two python scripts and import the<br>
&gt; ovirtsdk.api in both<br>
&gt; scripts, each script has to take the 3 seconds :(<br>
&gt;<br>
&gt; How can I run the &quot;from ... import ...&quot; just once ?<br>
&gt;<br>
<br>
</div></div>I don&#39;t know what technology or tools are you using to write that<br>
program, but if you are using Python then you don&#39;t need to import it twice.<br>
<br></blockquote><div>Yeah, I am just using Python scripts to access the RESTAPI, since I am</div><div>not skillful in python, I might have asked some stupid question.</div><div><br></div><div>I will try to learn more about Python.</div><div><br></div><div>Anyway, thanks for your patience.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
If for whatever the reason you decide to call external python scripts<br>
from another program then you will have to pay the price of the startup<br>
of the Python SDK. If that is unacceptable because of performance then<br>
you should look for a different way to access the RESTAPI, like sending<br>
XML or JSON directly, or using the Java SDK, or rbovirt, it all depends<br>
on the technology that you are using for your application.<br>
<span><br>
&gt;<br>
&gt;     &gt;<br>
&gt;     &gt;     In addition we also know that retrieving large lists of objects with the<br>
&gt;     &gt;     SDK is slow:<br>
&gt;     &gt;<br>
&gt;     &gt;        [RFE][performance] - generate large scale list running to slow.<br>
&gt;     &gt;        <a href="https://bugzilla.redhat.com/1221238" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/1221238</a><br>
&gt;     &gt;<br>
&gt;     &gt;     We don&#39;t have a solution for that yet.<br>
&gt;     &gt;<br>
&gt;     &gt;     CC-ing Juan in case you have additional questions.<br>
&gt;     &gt;<br>
&gt;     &gt;<br>
&gt;     &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> &lt;mailto:<a href="mailto:zhjwpku@gmail.com" target="_blank">zhjwpku@gmail.com</a>&gt;<br>
</span><div><div>&gt;     &gt;     &lt;mailto:<a href="mailto:zhjwpku@gmail.com" target="_blank">zhjwpku@gmail.com</a> &lt;mailto:<a href="mailto:zhjwpku@gmail.com" target="_blank">zhjwpku@gmail.com</a>&gt;&gt;&gt; wrote:<br>
&gt;     &gt;<br>
&gt;     &gt;         Hi guys,<br>
&gt;     &gt;<br>
&gt;     &gt;         I am using the ovirt-engine-sdk-python to communicate with the<br>
&gt;     &gt;         ovirt-engine,<br>
&gt;     &gt;         I am ok to list the vms but the processing time is too long,<br>
&gt;     &gt;         like 4.5 seconds,<br>
&gt;     &gt;         and this line:<br>
&gt;     &gt;             from ovirtsdk.api import API<br>
&gt;     &gt;         take almost 3 seconds.<br>
&gt;     &gt;<br>
&gt;     &gt;         This seems a little bit longer than I expected it to be, so I am<br>
&gt;     &gt;         asking is there<br>
&gt;     &gt;         a quicker way to communicate with the ovirt-engine?<br>
&gt;     &gt;<br>
&gt;<br>
<br>
--<br>
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>
</div></div></blockquote></div><br><br clear="all"><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>
</div></div>