Bug 1707372 - Upload Disk Snapshots problems with iSCSI storage and python SDK
Summary: Upload Disk Snapshots problems with iSCSI storage and python SDK
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: ovirt-engine-sdk-python
Classification: oVirt
Component: Core
Version: 4.3.0
Hardware: Unspecified
OS: Unspecified
unspecified
high
Target Milestone: ovirt-4.4.1
: ---
Assignee: shani
QA Contact: Ilan Zuckerman
URL:
Whiteboard:
: 1707365 (view as bug list)
Depends On: 1677500 1728693 1879391
Blocks:
TreeView+ depends on / blocked
 
Reported: 2019-05-07 11:51 UTC by francisco.garcia
Modified: 2020-11-14 04:51 UTC (History)
11 users (show)

Fixed In Version: ovirt-engine-4.3.5
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2020-05-10 08:39:33 UTC
oVirt Team: Storage
Embargoed:
michal.skrivanek: ovirt-4.4?


Attachments (Terms of Use)
host-path.txt (374 bytes, text/plain)
2019-05-07 11:51 UTC, francisco.garcia
no flags Details
host-imageio.log (4.46 KB, text/plain)
2019-05-07 11:52 UTC, francisco.garcia
no flags Details
download_disk_snaps.py (7.42 KB, text/x-python)
2019-05-07 11:52 UTC, francisco.garcia
no flags Details
restore_disk.py (10.79 KB, text/x-python)
2019-05-07 11:53 UTC, francisco.garcia
no flags Details
python-NFS.log (12.00 KB, text/plain)
2019-05-07 11:53 UTC, francisco.garcia
no flags Details
python-iSCSI.log (6.93 KB, text/plain)
2019-05-07 11:54 UTC, francisco.garcia
no flags Details
Python log in fail upload diskSnapshot with more 1G size (14.57 KB, text/plain)
2019-06-06 11:23 UTC, francisco.garcia
no flags Details
Data of disks when script python failed (816 bytes, text/plain)
2019-06-06 11:24 UTC, francisco.garcia
no flags Details
Host Image IO Log (2.40 MB, text/plain)
2020-02-10 17:07 UTC, francisco.garcia
no flags Details
[REOPENED] Python log (1.07 MB, text/plain)
2020-02-10 17:08 UTC, francisco.garcia
no flags Details
[REOPENED] Engine log (7.69 MB, text/plain)
2020-02-10 17:09 UTC, francisco.garcia
no flags Details
[REOPENED] first-output.txt (2.18 KB, text/plain)
2020-02-10 17:10 UTC, francisco.garcia
no flags Details
[REOPENED] second-output.txt (11.75 KB, text/plain)
2020-02-10 17:10 UTC, francisco.garcia
no flags Details


Links
System ID Private Priority Status Summary Last Updated
oVirt gerrit 100351 0 master MERGED examples: upload_disk_snapshots - wait for finalize 2020-07-26 09:36:18 UTC
oVirt gerrit 100361 0 master MERGED core: image transfer - prevents simultaneous transfers 2020-07-26 09:36:18 UTC
oVirt gerrit 100505 0 ovirt-engine-4.3 MERGED core: image transfer - prevents simultaneous transfers 2020-07-26 09:36:18 UTC
oVirt gerrit 103103 0 sdk_4.3 MERGED examples: upload_disk_snapshots - wait for finalize 2020-07-26 09:36:18 UTC
oVirt gerrit 107082 0 master NEW restapi: Fixed attach disk before create snapshots. 2020-07-26 09:36:18 UTC

Description francisco.garcia 2019-05-07 11:51:29 UTC
Created attachment 1565149 [details]
host-path.txt

Description of the problem:
I am not able to restore (upload) a VM from a backup made using this code: https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/download_disk_snapshots.py. VM disks are allocated in an iSCSI storage, and snapshots are used. 

I use the python code downloaded from (https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/upload_disk_snapshots.py). I modified some values to restore in iSCSI Storage (DiskFormat and Sparse) and values for my own environment as: Storage, Cluster, disk_id and connection's parameters. 

This is not a problem with my specific Virtual Machine, this is happening for any VM with the same characteristics (iSCSI storage + snapshots). This is happening with thin provisioned disks, but also with thick provisioned disks.

The attached files are: 
The log of the restore: python-iSCSI.log
In the host, an error is showed in log: host-imageio.log, obtained from /var/log/ovirt-imageio-daemon/daemon.log
The path of host is showed in log: host-path.txt
The code employed to restore vm (with commented modifications) is: restore_disk.py
The code employed to backup vm is: download_disk_snaps.py

On the other hand, the same operation (backup and restore of a vm with snapshots), where disks are allocated in NFS storage, and using the same code (except for corresponding changes of ids and names), have a successfull result. I'm attaching the log of an example succesful restore under these conditions too: python-NFS.log

Version-Release number of selected component (if applicable):
Red Hat Virtualization Manager Version: 4.2.3.8-0.1.el7

How reproducible:
Backup and restore VM with snapshots in an iSCSI storage, using python SDK.

Steps to Reproduce:
1.- Execute "download_disk_snaps.py" with a vm with disks in iSCSI Storage.
2.- Execute "restore_disk.py" with dependents ids of result previous step.
3.- Notice an error in local console: "socket.error: [Errno 32] Broken pipe" (see attachment: python-iSCSI.log)
4.- Notice an error in /var/log/ovirt-imageio/daemon.log (see attachment: host-imageio.log)
5.- Access to path showed in error of "host-imageio.log"

Actual results:
Errors, vm is not able to restore

Expected results:
Restored vm

Comment 1 francisco.garcia 2019-05-07 11:52:22 UTC
Created attachment 1565151 [details]
host-imageio.log

Log of host obtained in /var/log/ovirt-imageio-daemon/daemon.log

Comment 2 francisco.garcia 2019-05-07 11:52:54 UTC
Created attachment 1565152 [details]
download_disk_snaps.py

Code employed to backup

Comment 3 francisco.garcia 2019-05-07 11:53:17 UTC
Created attachment 1565153 [details]
restore_disk.py

Code employed to restore

Comment 4 francisco.garcia 2019-05-07 11:53:41 UTC
Created attachment 1565154 [details]
python-NFS.log

Log with a success restore with the attached code. The virtual machine's disks are allocated in NFS Storage

Comment 5 francisco.garcia 2019-05-07 11:54:03 UTC
Created attachment 1565155 [details]
python-iSCSI.log

Log with a failed restore with the attached code. The virtual machine's disks are allocated in iSCSI Storage

Comment 6 francisco.garcia 2019-05-07 11:55:57 UTC
*** Bug 1707365 has been marked as a duplicate of this bug. ***

Comment 7 Daniel Erez 2019-05-29 08:24:08 UTC
Added a suggested fix to the 'upload_disk_snapshots' example in ovirt-engine-sdk:
https://gerrit.ovirt.org/#/c/100351/

The issue was the transfer_service.finalize called without waiting for it to complete
before creating the next image transfer. I.e. the fix is adding the following to
'upload_disk_snapshot' function:

    # Waiting for finalize to complete
    try:
        while transfer_service.get():
            time.sleep(1)
    except sdk.NotFoundError:
         pass

Comment 8 francisco.garcia 2019-06-06 11:17:19 UTC
Hello Daniel,
I have tested your modification and the upload process begins. However, it fails when it passes 1Gb in the transfer. In fact the situation is exactly the same than the discussed in ticket: https://bugzilla.redhat.com/show_bug.cgi?id=1707707

I'm attaching the logs I got with my test.

The problem, as it happens with Java SDK, is RHV seems not be considering the initialSize we are indicating in the snapshot creation operation. Even if we are setting a high value, only 1Gb is assigned, so the following upload process fails after that size.

How can we solve this?

Regards,
Fran

Comment 9 francisco.garcia 2019-06-06 11:23:52 UTC
Created attachment 1577873 [details]
Python log in fail upload diskSnapshot with more 1G size

Comment 10 francisco.garcia 2019-06-06 11:24:26 UTC
Created attachment 1577874 [details]
Data of disks when script python failed

Comment 11 Avihai 2019-06-18 10:53:00 UTC
(In reply to francisco.garcia from comment #8)
> Hello Daniel,
> I have tested your modification and the upload process begins. However, it
> fails when it passes 1Gb in the transfer. In fact the situation is exactly
> the same than the discussed in ticket:
> https://bugzilla.redhat.com/show_bug.cgi?id=1707707
> 
> I'm attaching the logs I got with my test.
> 
> The problem, as it happens with Java SDK, is RHV seems not be considering
> the initialSize we are indicating in the snapshot creation operation. Even
> if we are setting a high value, only 1Gb is assigned, so the following
> upload process fails after that size.
> 
> How can we solve this?
> 
> Regards,
> Fran

Daniel , I see Fran tried the fix and it failed for him.
Can this bug be verified or is this depends on bug 1707707 fix?

Comment 12 Daniel Erez 2019-06-18 11:19:25 UTC
(In reply to Avihai from comment #11)
> (In reply to francisco.garcia from comment #8)
> > Hello Daniel,
> > I have tested your modification and the upload process begins. However, it
> > fails when it passes 1Gb in the transfer. In fact the situation is exactly
> > the same than the discussed in ticket:
> > https://bugzilla.redhat.com/show_bug.cgi?id=1707707
> > 
> > I'm attaching the logs I got with my test.
> > 
> > The problem, as it happens with Java SDK, is RHV seems not be considering
> > the initialSize we are indicating in the snapshot creation operation. Even
> > if we are setting a high value, only 1Gb is assigned, so the following
> > upload process fails after that size.
> > 
> > How can we solve this?
> > 
> > Regards,
> > Fran
> 
> Daniel , I see Fran tried the fix and it failed for him.
> Can this bug be verified or is this depends on bug 1707707 fix?

There are actually two separate issues:
1. Simultaneous uploads, on same images chain, were allowed in the engine:
not supported yet, hence as part of this BZ, it was validated in engine
and the SDK example has been fixed accordingly. I.e. it can be verified
simply by trying to simultaneously upload disk-snapshots (from the same disk).
2. For block device, the user should be able to specify a custom initial size
(to allow uploading a disk snapshot bigger than 1GiB). It would be covered
as part of bug 1707707.

Comment 13 Avihai 2019-07-03 06:46:32 UTC
(In reply to Daniel Erez from comment #12)
> (In reply to Avihai from comment #11)
> > (In reply to francisco.garcia from comment #8)
> > > Hello Daniel,
> > > I have tested your modification and the upload process begins. However, it
> > > fails when it passes 1Gb in the transfer. In fact the situation is exactly
> > > the same than the discussed in ticket:
> > > https://bugzilla.redhat.com/show_bug.cgi?id=1707707
> > > 
> > > I'm attaching the logs I got with my test.
> > > 
> > > The problem, as it happens with Java SDK, is RHV seems not be considering
> > > the initialSize we are indicating in the snapshot creation operation. Even
> > > if we are setting a high value, only 1Gb is assigned, so the following
> > > upload process fails after that size.
> > > 
> > > How can we solve this?
> > > 
> > > Regards,
> > > Fran
> > 
> > Daniel , I see Fran tried the fix and it failed for him.
> > Can this bug be verified or is this depends on bug 1707707 fix?
> 
> There are actually two separate issues:
> 1. Simultaneous uploads, on same images chain, were allowed in the engine:
> not supported yet, hence as part of this BZ, it was validated in engine
> and the SDK example has been fixed accordingly. I.e. it can be verified
> simply by trying to simultaneously upload disk-snapshots (from the same
> disk).
> 2. For block device, the user should be able to specify a custom initial size
> (to allow uploading a disk snapshot bigger than 1GiB). It would be covered
> as part of bug 1707707.

OK to sum up:
1) This fix is to be verified by trying to simultaneously upload disk-snapshots (from the same disk).
2) Fran issue(specify a custom initial size to allow uploading a disk snapshot bigger than 1GiB) is handled at bug 1707707 and this bug fix is not dependant on it.

Please confirm

Comment 14 Daniel Erez 2019-07-03 11:20:06 UTC
(In reply to Avihai from comment #13)
> (In reply to Daniel Erez from comment #12)
> > (In reply to Avihai from comment #11)
> > > (In reply to francisco.garcia from comment #8)
> > > > Hello Daniel,
> > > > I have tested your modification and the upload process begins. However, it
> > > > fails when it passes 1Gb in the transfer. In fact the situation is exactly
> > > > the same than the discussed in ticket:
> > > > https://bugzilla.redhat.com/show_bug.cgi?id=1707707
> > > > 
> > > > I'm attaching the logs I got with my test.
> > > > 
> > > > The problem, as it happens with Java SDK, is RHV seems not be considering
> > > > the initialSize we are indicating in the snapshot creation operation. Even
> > > > if we are setting a high value, only 1Gb is assigned, so the following
> > > > upload process fails after that size.
> > > > 
> > > > How can we solve this?
> > > > 
> > > > Regards,
> > > > Fran
> > > 
> > > Daniel , I see Fran tried the fix and it failed for him.
> > > Can this bug be verified or is this depends on bug 1707707 fix?
> > 
> > There are actually two separate issues:
> > 1. Simultaneous uploads, on same images chain, were allowed in the engine:
> > not supported yet, hence as part of this BZ, it was validated in engine
> > and the SDK example has been fixed accordingly. I.e. it can be verified
> > simply by trying to simultaneously upload disk-snapshots (from the same
> > disk).
> > 2. For block device, the user should be able to specify a custom initial size
> > (to allow uploading a disk snapshot bigger than 1GiB). It would be covered
> > as part of bug 1707707.
> 
> OK to sum up:
> 1) This fix is to be verified by trying to simultaneously upload
> disk-snapshots (from the same disk).
> 2) Fran issue(specify a custom initial size to allow uploading a disk
> snapshot bigger than 1GiB) is handled at bug 1707707 and this bug fix is not
> dependant on it.
> 
> Please confirm

Right, that's correct.

Comment 15 Yosi Ben Shimon 2019-07-10 13:11:22 UTC
This bug cannot be verified due to the missing fix for download_disk_snapshot.py as reported in bug 1728693.

The scenario is:
1. download the VM's disk-snaphosts
2. upload the VM's disk-snapshots (restore)

currently, step 1 cannot be tested.

Comment 16 Yosi Ben Shimon 2019-07-10 13:15:23 UTC
Currently, only file domain is fixed (partially) and there is no fix for block domain.
The issue was opened on block domain as file domain worded fine.
Therefore, I cannot verify this bug now.

Comment 17 Daniel Erez 2019-07-14 08:04:04 UTC
(In reply to Yosi Ben Shimon from comment #16)
> Currently, only file domain is fixed (partially) and there is no fix for
> block domain.
> The issue was opened on block domain as file domain worded fine.
> Therefore, I cannot verify this bug now.

As discussed previously, the issue in block domain is covered by bug 1707707.
This bug address the validation of simultaneous uploads in the engine and the
fix for upload_disk_snapshots.py script - both issues can be verified in this version.
I suggest to fix the title of the BZ and verify accordingly. Moving back to ON_QA.

Comment 18 Yosi Ben Shimon 2019-07-14 08:49:04 UTC
(In reply to Daniel Erez from comment #17)
> (In reply to Yosi Ben Shimon from comment #16)
> > Currently, only file domain is fixed (partially) and there is no fix for
> > block domain.
> > The issue was opened on block domain as file domain worded fine.
> > Therefore, I cannot verify this bug now.
> 
> As discussed previously, the issue in block domain is covered by bug 1707707.
> This bug address the validation of simultaneous uploads in the engine and the
> fix for upload_disk_snapshots.py script - both issues can be verified in
> this version.
> I suggest to fix the title of the BZ and verify accordingly. Moving back to
> ON_QA.

Sure NP.
Can you please add the fix for download_disk_snapshot.py as well?
That way I can verify it using the steps according to the bug description?

Comment 19 Daniel Erez 2019-07-14 10:37:34 UTC
(In reply to Yosi Ben Shimon from comment #18)
> (In reply to Daniel Erez from comment #17)
> > (In reply to Yosi Ben Shimon from comment #16)
> > > Currently, only file domain is fixed (partially) and there is no fix for
> > > block domain.
> > > The issue was opened on block domain as file domain worded fine.
> > > Therefore, I cannot verify this bug now.
> > 
> > As discussed previously, the issue in block domain is covered by bug 1707707.
> > This bug address the validation of simultaneous uploads in the engine and the
> > fix for upload_disk_snapshots.py script - both issues can be verified in
> > this version.
> > I suggest to fix the title of the BZ and verify accordingly. Moving back to
> > ON_QA.
> 
> Sure NP.
> Can you please add the fix for download_disk_snapshot.py as well?
> That way I can verify it using the steps according to the bug description?

Sure, you can try this: https://gerrit.ovirt.org/#/c/101793/

Comment 20 Avihai 2019-07-15 12:10:46 UTC
Please retarget this bug to 4.3.6 as we are missing the MERGED code for upload/download disk snapshot in the official 4.3.5-6 build and can not verify this bug with hacks/unofficial code.

Comment 21 Avihai 2019-09-01 12:44:13 UTC
Please retarget this bug to 4.3.7 as we are missing the MERGED code for download disk snapshot in the official 4.3.6-6 build and can not verify this bug with hacks/unofficial code.

Missing patch in python-ovirt-engine-sdk4-4.3.2 :
https://gerrit.ovirt.org/gitweb?p=ovirt-engine-sdk.git;a=commit;h=2f198a09c24bcbeaaaaf8032e5e4fe28206b847c

These are the 4.3.2 ovirt-engine-sdk commits:
https://gerrit.ovirt.org/gitweb?p=ovirt-engine-sdk.git;a=shortlog;h=refs/tags/4.3.2

This was merged to master 7 weeks ago but was not merged to python-ovirt-engine-sdk4-4.3.2 which we use at 4.3.6-6.
Since this is the last build in 4.3.6 please retarget to 4.3.7.

Can you please make sure that the missing patch is merged in 4.3.7?

Comment 22 Avihai 2019-09-02 12:29:27 UTC
Daniel, can you please add the missing patch in the next python-ovirt-engine-sdk4-4.3.X build ?
We have an additional build in 4.3.6 due to blockers/depndancy issues.

If you can add this patch[1]to the next python-ovirt-engine-sdk4-4.3.X and add this to the new 4.3.6 downstream (rhv4.3.6-7) we can verify this bug in 4.3.6.


[1] https://gerrit.ovirt.org/gitweb?p=ovirt-engine-sdk.git;a=commit;h=2f198a09c24bcbeaaaaf8032e5e4fe28206b847c

Comment 23 Avihai 2019-09-04 08:42:37 UTC
I checked and both upload/download_disk_snapshots commits[1][2] which exist on sdk master branch but are missing from sdk_4.3 branch.
As these examples are critical for the customer/bug reproduction (step 1 and 2) they should be in either in this build(4.3.6) or the next one(4.3.7) for us to verify.

As was discussed yesterday, please backport upload/download_disk_snapshots commits[1][2] sdk-examples to sdk_4.3 branch.
As this bug is NOT urgent this can be done for 4.3.7 -> please retarget if this is the case.

[1] https://gerrit.ovirt.org/#/c/100351/   -> upload_disk_snapshots on master branch
[2] https://gerrit.ovirt.org/#/c/101793/   -> download disk snapshots on master branch

Comment 26 Yosi Ben Shimon 2019-10-28 13:00:31 UTC
Tested on ovirt-engine-4.3.7.0-0.1.el7.noarch

The backup-restore flow works fine using the steps in this bug description.

Moving to VERIFIED

Comment 27 Sandro Bonazzola 2019-11-21 12:44:31 UTC
This bugzilla is included in oVirt 4.3.7 release, published on November 21st 2019.

Since the problem described in this bug report should be
resolved in oVirt 4.3.7 release, it has been closed with a resolution of CURRENT RELEASE.

If the solution does not work for you, please open a new bug report.

Comment 28 francisco.garcia 2020-02-10 17:05:04 UTC
Hello,

I have installed Ovirt 4.3.8 to check if this problem was fixed. I'm sorry to tell you that it hasn't been. I re-opened this bug to try fix it.

Description of the problem:
As previous case, I have this environment(ENV):
	1.- A disk with 3GB allocated in iSCSI storage.
	2.- Vm has two snapshots: the first has OS system only (Debian 10), and the second has a file with 1.5 GB.
	3.- Backup of vm with code[Last modified: Nov 7, 2017]: https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/download_vm_ovf.py
  4.- Backup of disks snapshots with code[Last modified: Jul 14, 2019]: https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/download_disk_snapshots.py. 
	5.- Restore with code [Last modified: Sep 4, 2019]: https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/upload_disk_snapshots.py

As previous case, I follow these steps:
	1.- I backup the vm with disk(ENV 1), that contains two snapshots(ENV 2), with backup code (ENV 3) and (ENV 4). It works fine.
	2.- I move the disks snapshots of the backup to local path 'disks/'.
	3.- I run restore code (ENV5) and this restore code create the vm and disk, and after it fails because the disk isn't attached to vm. Pull request: https://github.com/oVirt/ovirt-engine-sdk/pull/23
	4.- I attach the disks manually.
	5.- I modify the code so that it doesn't create either the vm or the disk. And I put manually the vmId and diskId.
	6.- I run the restore code(ENV5) again and it fails when the data uploaded of second disk snapshot reaches 1GB.

The attached files are:
	1.- Host Image-io log(/var/log/ovirt-imageio-daemon/daemon.log): imageio.log
	2.- Engine of Manager(var/log/ovirt-engine/engine.log): engine.log
	3.- Output of the first python script call(Create vm and disk): first-output.txt
	4.- Output of the second python script call(Upload disk data): second-output.txt

Version-Release number of selected component (if applicable):
Ovirt Manager Version: 4.3.8.2-1.el7

Actual results:
Errors, vm is not able to restore

Expected results:
Restore a virtual machine containing a disk with several snapshots larger than 1GB.

Comment 29 francisco.garcia 2020-02-10 17:07:48 UTC
Created attachment 1662208 [details]
Host Image IO Log

Comment 30 francisco.garcia 2020-02-10 17:08:46 UTC
Created attachment 1662209 [details]
[REOPENED] Python log

Comment 31 francisco.garcia 2020-02-10 17:09:31 UTC
Created attachment 1662210 [details]
[REOPENED] Engine log

Comment 32 francisco.garcia 2020-02-10 17:10:30 UTC
Created attachment 1662211 [details]
[REOPENED] first-output.txt

Comment 33 francisco.garcia 2020-02-10 17:10:54 UTC
Created attachment 1662212 [details]
[REOPENED] second-output.txt

Comment 36 shani 2020-03-10 14:23:52 UTC
Hi Francisco,

On comment 13 Avihai mentioned that:
"Fran issue(specify a custom initial size to allow uploading a disk snapshot bigger than 1GiB) is handled at bug 1707707 and this bug fix is not dependant on it."

Therefore, I think that those updates should be on bug 1707707, and this one can be re-closed.

Also, I've noted this one:

> 5.- Restore with code [Last modified: Sep 4, 2019]:
> https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/upload_disk_snapshots.py
> 

It seems that the lastest modification date for that script is May 30, 2019.
Can you please compare it to the script you're using (Sep 4, 2019) and share the diffs?

Comment 38 francisco.garcia 2020-03-16 19:20:48 UTC
Hello  Shani,
Sorry for delay, I was on holidays and the Spain's situation for the COVID-19 is complicated.

In this moment, the test environment is off and I can't do tests until Wednesday.

In other hand, I don't think that those updates should be on bug 1707707 because I'm using the python code example to minimize the changes and compare behaviours with the same code.

By last, it seems that I mistook the latest modification for that script, sorry. So, the latest modification was May 30, 2019.
I requested a git pull in gerrit, this is the commit:
https://gerrit.ovirt.org/gitweb?p=ovirt-engine-sdk.git;a=commit;h=a9fa1e01dc44e38fa41264c1f04d05f07c2fefa7

On Wednesday I try update the upload with initial size > 1GB.

Thanks for your time :)
Fran

Comment 39 shani 2020-03-17 08:58:41 UTC
(In reply to francisco.garcia from comment #38)

Thanks, Fran, for your update.

> Sorry for delay, I was on holidays and the Spain's situation for the
> COVID-19 is complicated.
That's fine, hope you're well and keep safe!

> By last, it seems that I mistook the latest modification for that script,
> sorry. So, the latest modification was May 30, 2019.
> I requested a git pull in gerrit, this is the commit:
> https://gerrit.ovirt.org/gitweb?p=ovirt-engine-sdk.git;a=commit;
> h=a9fa1e01dc44e38fa41264c1f04d05f07c2fefa7
I'll comment on the commit :)

> 
> On Wednesday I try update the upload with initial size > 1GB.
As mentioned on comment 17:
"As discussed previously, the issue in block domain is covered by bug 1707707.
This bug address the validation of simultaneous uploads in the engine and the
fix for upload_disk_snapshots.py script"

So IIUC, specify a custom initial size to allow uploading a disk snapshot bigger than 1GiB is handled at bug 1707707, and not related to this fix.

Comment 40 shani 2020-04-19 09:36:24 UTC
Hi Fransisco,
Any updates on this one?

Comment 41 francisco.garcia 2020-04-22 07:28:36 UTC
Hi Shani,

No, sorry, I don't have any updates. I hope this weekend to have some.

Thanks for your time,
Fran

Comment 42 shani 2020-05-03 13:11:57 UTC
Hi Fran,
Any updates?

Comment 43 shani 2020-05-10 08:39:33 UTC
The discussion was moved to bug https://bugzilla.redhat.com/1707707.
Closing this bug as the original issue was already fixed and verified.
(https://bugzilla.redhat.com/show_bug.cgi?id=1707372#c27)


Note You need to log in before you can comment on or make changes to this bug.