Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public VMSnapshot takeVMSnapshot(VMSnapshot vmSnapshot) {
thawAnswer = (FreezeThawVMAnswer) agentMgr.send(hostId, thawCmd);
if (thawAnswer != null && thawAnswer.getResult()) {
s_logger.info(String.format(
"Virtual machne is thawed. The freeze of virtual machine took %s milliseconds.",
"Virtual machine is thawed. The freeze of virtual machine took %s milliseconds.",
TimeUnit.MILLISECONDS.convert(elapsedTime(startFreeze), TimeUnit.NANOSECONDS)));
}
} else {
Expand Down Expand Up @@ -429,9 +429,14 @@ protected SnapshotInfo createDiskSnapshot(VMSnapshot vmSnapshot, List<SnapshotIn
String snapshotName = vmSnapshot.getId() + "_" + vol.getUuid();
SnapshotVO snapshot = new SnapshotVO(vol.getDataCenterId(), vol.getAccountId(), vol.getDomainId(), vol.getId(), vol.getDiskOfferingId(),
snapshotName, (short) Snapshot.Type.GROUP.ordinal(), Snapshot.Type.GROUP.name(), vol.getSize(), vol.getMinIops(), vol.getMaxIops(), Hypervisor.HypervisorType.KVM, null);
VMSnapshotOptions options = ((VMSnapshotVO) vmSnapshot).getOptions();
boolean quiescevm = false;
if (options != null) {
quiescevm = options.needQuiesceVM();
}

snapshot = snapshotDao.persist(snapshot);
vol.addPayload(setPayload(vol, snapshot));
vol.addPayload(setPayload(vol, snapshot, quiescevm));
SnapshotInfo snapshotInfo = snapshotDataFactory.getSnapshot(snapshot.getId(), vol.getDataStore());
snapshotInfo.addPayload(vol.getpayload());
SnapshotStrategy snapshotStrategy = storageStrategyFactory.getSnapshotStrategy(snapshotInfo, SnapshotOperation.TAKE);
Expand All @@ -449,14 +454,14 @@ protected SnapshotInfo createDiskSnapshot(VMSnapshot vmSnapshot, List<SnapshotIn
return snapshotInfo;
}

protected CreateSnapshotPayload setPayload(VolumeInfo vol, SnapshotVO snapshotCreate) {
protected CreateSnapshotPayload setPayload(VolumeInfo vol, SnapshotVO snapshotCreate, boolean quiescevm) {
CreateSnapshotPayload payload = new CreateSnapshotPayload();
payload.setSnapshotId(snapshotCreate.getId());
payload.setSnapshotPolicyId(SnapshotVO.MANUAL_POLICY_ID);
payload.setLocationType(snapshotCreate.getLocationType());
payload.setAccount(accountService.getAccount(vol.getAccountId()));
payload.setAsyncBackup(false);
payload.setQuiescevm(false);
payload.setQuiescevm(quiescevm);
harikrishna-patnala marked this conversation as resolved.
Show resolved Hide resolved
return payload;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import org.apache.cloudstack.engine.subsystem.api.storage.SnapshotStrategy;
import org.apache.cloudstack.engine.subsystem.api.storage.SnapshotStrategy.SnapshotOperation;
import org.apache.cloudstack.engine.subsystem.api.storage.StorageStrategyFactory;
import org.apache.cloudstack.engine.subsystem.api.storage.VMSnapshotOptions;
import org.apache.cloudstack.engine.subsystem.api.storage.VolumeDataFactory;
import org.apache.cloudstack.engine.subsystem.api.storage.VolumeInfo;
import org.apache.cloudstack.framework.config.dao.ConfigurationDao;
Expand Down Expand Up @@ -151,7 +152,7 @@ public void setUp() throws Exception {

@Test
public void testCreateDiskSnapshotBasedOnStrategy() throws Exception {
VMSnapshot vmSnapshot = Mockito.mock(VMSnapshot.class);
VMSnapshotVO vmSnapshot = Mockito.mock(VMSnapshotVO.class);
List<SnapshotInfo> forRollback = new ArrayList<>();
VolumeInfo vol = Mockito.mock(VolumeInfo.class);
SnapshotInfo snapshotInfo = Mockito.mock(SnapshotInfo.class);
Expand All @@ -162,6 +163,7 @@ public void testCreateDiskSnapshotBasedOnStrategy() throws Exception {
SnapshotVO snapshot = new SnapshotVO(vol.getDataCenterId(), vol.getAccountId(), vol.getDomainId(),
vol.getId(),vol.getDiskOfferingId(), vmUuid + "_" + volUuid,(short) SnapshotVO.MANUAL_POLICY_ID,
"MANUAL",vol.getSize(),vol.getMinIops(),vol.getMaxIops(), Hypervisor.HypervisorType.KVM, null);
when(vmSnapshot.getOptions()).thenReturn(new VMSnapshotOptions(true));
when(vmSnapshot.getUuid()).thenReturn(vmUuid);
when(vol.getUuid()).thenReturn(volUuid);
when(_snapshotDao.persist(any())).thenReturn(snapshot);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ public SnapshotInfo takeSnapshot(VolumeInfo volume) throws ResourceAllocationExc
}
} catch (CloudRuntimeException cre) {
if (s_logger.isDebugEnabled()) {
s_logger.debug("Failed to create snapshot" + cre.getLocalizedMessage());
s_logger.debug("Failed to create snapshot - " + cre.getLocalizedMessage());
}
_resourceLimitMgr.decrementResourceCount(snapshotOwner.getId(), ResourceType.snapshot);
_resourceLimitMgr.decrementResourceCount(snapshotOwner.getId(), ResourceType.secondary_storage, new Long(volume.getSize()));
Expand Down
8 changes: 7 additions & 1 deletion 8 ui/src/config/section/compute.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,13 @@ export default {
label: 'label.action.vmsnapshot.create',
docHelp: 'adminguide/virtual_machines.html#virtual-machine-snapshots',
dataView: true,
args: ['virtualmachineid', 'name', 'description', 'snapshotmemory', 'quiescevm'],
args: (record, store) => {
var args = ['virtualmachineid', 'name', 'description', 'snapshotmemory']
if (['KVM', 'VMware'].includes(record.hypervisor)) {
args.push('quiescevm')
}
return args
},
show: (record) => {
return ((['Running'].includes(record.state) && record.hypervisor !== 'LXC') ||
(['Stopped'].includes(record.state) && ((record.hypervisor !== 'KVM' && record.hypervisor !== 'LXC') ||
Expand Down
13 changes: 10 additions & 3 deletions 13 ui/src/views/compute/CreateSnapshotWizard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@
v-model:value="form.name"
:placeholder="apiParams.name.description"/>
</a-form-item>
<a-form-item name="quiescevm" ref="quiescevm" v-if="isQuiesceVm">
<a-form-item name="quiescevm" ref="quiescevm" v-if="isQuiesceVm && hypervisorSupportsQuiesceVm">
<template #label>
<tooltip-label :title="$t('label.quiescevm')" :tooltip="apiParams.quiescevm.description"/>
</template>
<a-switch v-model:checked="form.quiescevm"/>
</a-form-item>
<a-form-item name="asyncbackup" ref="asyncbackup">
<a-form-item name="asyncbackup" ref="asyncbackup" v-if="!supportsStorageSnapshot">
<template #label>
<tooltip-label :title="$t('label.asyncbackup')" :tooltip="apiParams.asyncbackup.description"/>
</template>
Expand Down Expand Up @@ -98,6 +98,7 @@ export default {
return {
loading: false,
isQuiesceVm: false,
hypervisorSupportsQuiesceVm: false,
supportsStorageSnapshot: false,
listVolumes: []
}
Expand All @@ -119,6 +120,9 @@ export default {
},
fetchData () {
this.loading = true
if (['KVM', 'VMware'].includes(this.resource.hypervisor)) {
this.hypervisorSupportsQuiesceVm = true
}

api('listVolumes', { virtualMachineId: this.resource.id, listall: true })
.then(json => {
Expand All @@ -141,7 +145,10 @@ export default {
if (values.asyncbackup) {
params.asyncbackup = values.asyncbackup
}
params.quiescevm = values.quiescevm
params.quiescevm = false
if (values.quiescevm) {
params.quiescevm = values.quiescevm
}

const title = this.$t('label.action.vmstoragesnapshot.create')
const description = values.name || values.volumeid
Expand Down
9 changes: 7 additions & 2 deletions 9 ui/src/views/storage/TakeSnapshot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
</a-select-option>
</a-select>
</a-form-item>
<a-form-item :label="$t('label.asyncbackup')" name="asyncbackup" ref="asyncbackup">
<a-form-item :label="$t('label.asyncbackup')" name="asyncbackup" ref="asyncbackup" v-if="!supportsStorageSnapshot">
<a-switch v-model:checked="form.asyncbackup" />
</a-form-item>
<a-form-item :label="$t('label.quiescevm')">
<a-form-item :label="$t('label.quiescevm')" name="quiescevm" ref="quiescevm" v-if="quiescevm && hypervisorSupportsQuiesceVm">
<a-switch v-model:checked="form.quiescevm" />
</a-form-item>
<a-divider/>
Expand Down Expand Up @@ -152,6 +152,7 @@ export default {
return {
actionLoading: false,
quiescevm: false,
hypervisorSupportsQuiesceVm: false,
supportsStorageSnapshot: false,
inputValue: '',
inputKey: '',
Expand All @@ -168,6 +169,10 @@ export default {
created () {
this.initForm()
this.quiescevm = this.resource.quiescevm
if (['KVM', 'VMware'].includes(this.resource.hypervisor)) {
this.hypervisorSupportsQuiesceVm = true
}

this.supportsStorageSnapshot = this.resource.supportsstoragesnapshot
this.fetchZoneData()
},
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.