You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by GitBox <gi...@apache.org> on 2020/11/27 18:53:21 UTC

[GitHub] [cloudstack] andrijapanicsb opened a new issue #4504: storage.template.OVAProcessor running on KVM templates

andrijapanicsb opened a new issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504


   <!--
   Verify first that your issue/request is not already reported on GitHub.
   Also test if the latest release and master branch are affected too.
   Always add information AFTER of these HTML comments, but no need to delete the comments.
   -->
   
   ##### ISSUE TYPE
   <!-- Pick one below and delete the rest -->
    * Bug Report (more like  "annoyance" then a bug, as nothing is broken, as far as I could see)
   
   
   ##### COMPONENT NAME
   <!--
   Categorize the issue, e.g. API, VR, VPN, UI, etc.
   -->
   ~~~
   SSVM
   ~~~
   
   ##### CLOUDSTACK VERSION
   <!--
   New line separated list of affected versions, commit ID for issues on master branch.
   -->
   
   ~~~
   4.13.1 tested, haven't tested newer ones (will update the issue once I test on other versions 4.14/4.15)
   ~~~
   
   ##### CONFIGURATION
   <!--
   Information about the configuration if relevant, e.g. basic network, advanced networking, etc.  N/A otherwise
   -->
   NA
   
   ##### OS / ENVIRONMENT
   <!--
   Information about the environment if relevant, N/A otherwise
   -->
   KVM hypervisor, but I'm sure is irrelevant
   
   ##### SUMMARY
   
   New KVM zone, default systemVM template 4.11.3 used (in my testing, the URL is different, but it's the same as the upstream one)
   
   When existing SSVM is desrtroyed, or cloud service restarted - SSVM will redownload the systemvm 4.11.3 KVM template (qcow2) and will properly install it (DB records were missing, thus the redownload which happens), but for some reason the VMware OVA processr is running, and being feeded the ID of the KVM template just downloaded.
   
   Nothing broken, but false error messages:
   
   `2020-11-27 18:19:09,057 INFO  [storage.template.HttpTemplateDownloader] (pool-1-thread-1:null) Starting download from http://sbjenkins-stagingrepo.jenkins.lon/systemvmtemplate/4.11/systemvmtemplate-4.11.3-kvm.qcow2.bz2 to /mnt/SecStorage/79708519-7cb6-31df-bb57-207255469f3f/template/tmpl/1/3/dnld1569384924462426839tmp_ remoteSize=304543275 , max size=53687091200
   
   2020-11-27 18:19:25,573 INFO  [storage.template.DownloadManagerImpl] (pool-1-thread-1:null) Download Completion for jobId: 781033bc-0d21-4d26-a902-12d4a569a948, status=**DOWNLOAD_FINISHED**
   2020-11-27 18:19:25,576 INFO  [storage.template.DownloadManagerImpl] (pool-1-thread-1:null) local: /mnt/SecStorage/79708519-7cb6-31df-bb57-207255469f3f/template/tmpl/1/3/dnld1569384924462426839tmp_, bytes=304543275, error=Downloaded 304543275 bytes (download complete remote=304543275bytes), pct=100
   2020-11-27 18:19:25,582 INFO  [storage.template.DownloadManagerImpl] (pool-1-thread-1:null) No checksum available for 'dnld1569384924462426839tmp_'
   2020-11-27 18:19:48,239 INFO  **[storage.template.OVAProcessor]** (pool-1-thread-1:null) Template processing. templatePath: /mnt/SecStorage/79708519-7cb6-31df-bb57-207255469f3f/template/tmpl/1/3, templateName: **d070cf34-fef5-37f9-b9b4-eca6a8b174fc**
   2020-11-27 18:19:48,249 INFO  [storage.template.OVAProcessor] (pool-1-thread-1:null) Unable to find the vmware template file: /mnt/SecStorage/79708519-7cb6-31df-bb57-207255469f3f/template/tmpl/1/3/d070cf34-fef5-37f9-b9b4-eca6a8b174fc.ova
   2020-11-27 18:19:48,250 INFO  [storage.template.VmdkProcessor] (pool-1-thread-1:null) Template processing. templatePath: /mnt/SecStorage/79708519-7cb6-31df-bb57-207255469f3f/template/tmpl/1/3, templateName: d070cf34-fef5-37f9-b9b4-eca6a8b174fc
   2020-11-27 18:19:48,256 INFO  [storage.template.VmdkProcessor] (pool-1-thread-1:null) Unable to find the vmware template file: /mnt/SecStorage/79708519-7cb6-31df-bb57-207255469f3f/template/tmpl/1/3/d070cf34-fef5-37f9-b9b4-eca6a8b174fc.vmdk`
   
   the "d070cf34-fef5-37f9-b9b4-eca6a8b174fc" mentioned is the QCOW2:
   ![image](https://user-images.githubusercontent.com/45762285/100477885-eb696c00-30e9-11eb-91d7-9ac2a03c874f.png)
   
   
   
   ##### STEPS TO REPRODUCE
   new KVM advanced zone running, restart cloud service inside the SSVM and observe logs


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [cloudstack] andrijapanicsb commented on issue #4504: storage.template.OVAProcessor running on KVM templates

Posted by GitBox <gi...@apache.org>.
andrijapanicsb commented on issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504#issuecomment-734993618


   🤦   copy, OK.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [cloudstack] andrijapanicsb commented on issue #4504: storage.template.OVAProcessor running on KVM templates

Posted by GitBox <gi...@apache.org>.
andrijapanicsb commented on issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504#issuecomment-734972369


   A simpler one
   
   Just registed another KVM template, and observer cloud.log for the same behaviour


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [cloudstack] andrijapanicsb edited a comment on issue #4504: storage.template.OVAProcessor running on KVM templates

Posted by GitBox <gi...@apache.org>.
andrijapanicsb edited a comment on issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504#issuecomment-734972369


   A simpler one
   
   Just registed another KVM template, and observe cloud.log for the same behaviour


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [cloudstack] DaanHoogland commented on issue #4504: storage.template.OVAProcessor running on KVM templates

Posted by GitBox <gi...@apache.org>.
DaanHoogland commented on issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504#issuecomment-769789776


   closing this as it is an architectural feature; for several processing units lists of backend specific code is presented the option to process. This is then assuming only one will respond with the "I can" and be left to dealing with it.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [cloudstack] DaanHoogland closed issue #4504: storage.template.OVAProcessor running on KVM templates

Posted by GitBox <gi...@apache.org>.
DaanHoogland closed issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [cloudstack] weizhouapache commented on issue #4504: storage.template.OVAProcessor running on KVM templates

Posted by GitBox <gi...@apache.org>.
weizhouapache commented on issue #4504:
URL: https://github.com/apache/cloudstack/issues/4504#issuecomment-734992464


   @andrijapanicsb this exists for many years. however as you said, nothing is broken. just some INFO logs


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org