Is there a significant issue to allocating all available cores to one VM if that is the only major task...
I have a one-off task that requires me to use a VM to fix a build bug a software project using SCons (Python). The testing cycle is fairly short, resulting in frequent rebuilds. I'm using a 4-core laptop to host the VM and doing little else (a handful of tabs in Firefox, one terminal window for vim) aside from the work in the VM itself. I'm considering increasing the hardware allotment to the VM from 2 to 4 cores, but this would give all of my cores to the VM. Is this a terrible idea?
More info in case it matters:
VirtualBox on Ubuntu 18.04 LTS
RAM: 2GB of 8GB used according to free
, 4GB allocated to the VM.
Storage: 256GB SSD (M.2)
memory virtual-machine cpu multi-core core
add a comment |
I have a one-off task that requires me to use a VM to fix a build bug a software project using SCons (Python). The testing cycle is fairly short, resulting in frequent rebuilds. I'm using a 4-core laptop to host the VM and doing little else (a handful of tabs in Firefox, one terminal window for vim) aside from the work in the VM itself. I'm considering increasing the hardware allotment to the VM from 2 to 4 cores, but this would give all of my cores to the VM. Is this a terrible idea?
More info in case it matters:
VirtualBox on Ubuntu 18.04 LTS
RAM: 2GB of 8GB used according to free
, 4GB allocated to the VM.
Storage: 256GB SSD (M.2)
memory virtual-machine cpu multi-core core
add a comment |
I have a one-off task that requires me to use a VM to fix a build bug a software project using SCons (Python). The testing cycle is fairly short, resulting in frequent rebuilds. I'm using a 4-core laptop to host the VM and doing little else (a handful of tabs in Firefox, one terminal window for vim) aside from the work in the VM itself. I'm considering increasing the hardware allotment to the VM from 2 to 4 cores, but this would give all of my cores to the VM. Is this a terrible idea?
More info in case it matters:
VirtualBox on Ubuntu 18.04 LTS
RAM: 2GB of 8GB used according to free
, 4GB allocated to the VM.
Storage: 256GB SSD (M.2)
memory virtual-machine cpu multi-core core
I have a one-off task that requires me to use a VM to fix a build bug a software project using SCons (Python). The testing cycle is fairly short, resulting in frequent rebuilds. I'm using a 4-core laptop to host the VM and doing little else (a handful of tabs in Firefox, one terminal window for vim) aside from the work in the VM itself. I'm considering increasing the hardware allotment to the VM from 2 to 4 cores, but this would give all of my cores to the VM. Is this a terrible idea?
More info in case it matters:
VirtualBox on Ubuntu 18.04 LTS
RAM: 2GB of 8GB used according to free
, 4GB allocated to the VM.
Storage: 256GB SSD (M.2)
memory virtual-machine cpu multi-core core
memory virtual-machine cpu multi-core core
edited Nov 25 '18 at 2:06
user3.1415927
asked Nov 25 '18 at 0:28
user3.1415927user3.1415927
116113
116113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This should not be a problem - worst case it will make your desktop sluggish. The biggest gotcha with resource allocation is oversubscribing RAM and causing the parent to swap, followed by disk IO bottlenecks in general (which can be somewhat mitigated by using an SSD)
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1378123%2fis-there-a-significant-issue-to-allocating-all-available-cores-to-one-vm-if-that%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This should not be a problem - worst case it will make your desktop sluggish. The biggest gotcha with resource allocation is oversubscribing RAM and causing the parent to swap, followed by disk IO bottlenecks in general (which can be somewhat mitigated by using an SSD)
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
add a comment |
This should not be a problem - worst case it will make your desktop sluggish. The biggest gotcha with resource allocation is oversubscribing RAM and causing the parent to swap, followed by disk IO bottlenecks in general (which can be somewhat mitigated by using an SSD)
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
add a comment |
This should not be a problem - worst case it will make your desktop sluggish. The biggest gotcha with resource allocation is oversubscribing RAM and causing the parent to swap, followed by disk IO bottlenecks in general (which can be somewhat mitigated by using an SSD)
This should not be a problem - worst case it will make your desktop sluggish. The biggest gotcha with resource allocation is oversubscribing RAM and causing the parent to swap, followed by disk IO bottlenecks in general (which can be somewhat mitigated by using an SSD)
answered Nov 25 '18 at 1:56
davidgodavidgo
44k75292
44k75292
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
add a comment |
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
I am using an SSD. Updated original question with that information. So if I keep memory allocation well within available RAM, processors are not as important? Would it be safer to allocate 3 instead of 4 processors?
– user3.1415927
Nov 25 '18 at 2:08
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
Processors are important, but you are unlikely to lick you system up by over subscribing the CPU. All of this us quite safe, and yes, allocating 3 CPUs may allow more responsiveness on the host, but it's not a big deal.
– davidgo
Nov 25 '18 at 2:10
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1378123%2fis-there-a-significant-issue-to-allocating-all-available-cores-to-one-vm-if-that%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown