ZFS Mirror over one large disk and a RAID0 of two small disks Announcing the arrival of Valued...
Is CEO the "profession" with the most psychopaths?
How does Belgium enforce obligatory attendance in elections?
Project Euler #1 in C++
Crossing US/Canada Border for less than 24 hours
Intuitive explanation of the rank-nullity theorem
Should a wizard buy fine inks every time he want to copy spells into his spellbook?
Maximum summed subsequences with non-adjacent items
Putting class ranking in CV, but against dept guidelines
Misunderstanding of Sylow theory
Karn the great creator - 'card from outside the game' in sealed
What is an "asse" in Elizabethan English?
How to report t statistic from R
Is multiple magic items in one inherently imbalanced?
What's the point of the test set?
Drawing spherical mirrors
If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?
How many time has Arya actually used Needle?
What would you call this weird metallic apparatus that allows you to lift people?
As Singapore Airlines (Krisflyer) Gold, can I bring my family into the lounge on a domestic Virgin Australia flight?
How does light 'choose' between wave and particle behaviour?
How does the math work when buying airline miles?
Do I really need to have a message in a novel to appeal to readers?
How long can equipment go unused before powering up runs the risk of damage?
Is it possible for SQL statements to execute concurrently within a single session in SQL Server?
ZFS Mirror over one large disk and a RAID0 of two small disks
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionZFS Mirror on same drive for redundancy?ZFS: Mirror required on backup system?Software RAID using network shares as drivesCombining SSD + HDD into single fast, large partition?ZFS - two pools, one root.Why ZFS scrub does not complete?btrfs on two physical drives: md raid 10 or btrfs raid 1Ubuntu: RAID 10 degrades to RAID 0 after reboot?How full is my ZFS pool? (not sure how to read command output)mdadm raid10 recovery - is this filesystem corrupted? Is it fixable?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
You have: two disks of size X and one of size 2X.
You want: zpool with mirror-like redundancy of size 2X
Concatenation of the two X drives is straightforward with ZFS. But I found no way to mirror the resulting vdev (size 2X) with another 2X disk with ZFS's in-house means.
These (more or less unelegant) solutions came to my mind:
- Use OS tools (mdadm for Linux, gstripe for FreeBSD) to connect the two X drives to a single physical device that can be mirrored with the 2X one. But I am uneasy with the additional complexity, platform-dependence, and losing bare-metal benefits of ZFS.
- Subdivide the 2X drive into two partitions and create a RAID10 equivalent with four members via
zpool create tank mirror /dev/Xone /dev/2Xpart1 mirror /dev/Xtwo /dev/2Xpart2
where the striped partitions are scattered over physically contiguous hardware.
raid zfs
add a comment |
You have: two disks of size X and one of size 2X.
You want: zpool with mirror-like redundancy of size 2X
Concatenation of the two X drives is straightforward with ZFS. But I found no way to mirror the resulting vdev (size 2X) with another 2X disk with ZFS's in-house means.
These (more or less unelegant) solutions came to my mind:
- Use OS tools (mdadm for Linux, gstripe for FreeBSD) to connect the two X drives to a single physical device that can be mirrored with the 2X one. But I am uneasy with the additional complexity, platform-dependence, and losing bare-metal benefits of ZFS.
- Subdivide the 2X drive into two partitions and create a RAID10 equivalent with four members via
zpool create tank mirror /dev/Xone /dev/2Xpart1 mirror /dev/Xtwo /dev/2Xpart2
where the striped partitions are scattered over physically contiguous hardware.
raid zfs
add a comment |
You have: two disks of size X and one of size 2X.
You want: zpool with mirror-like redundancy of size 2X
Concatenation of the two X drives is straightforward with ZFS. But I found no way to mirror the resulting vdev (size 2X) with another 2X disk with ZFS's in-house means.
These (more or less unelegant) solutions came to my mind:
- Use OS tools (mdadm for Linux, gstripe for FreeBSD) to connect the two X drives to a single physical device that can be mirrored with the 2X one. But I am uneasy with the additional complexity, platform-dependence, and losing bare-metal benefits of ZFS.
- Subdivide the 2X drive into two partitions and create a RAID10 equivalent with four members via
zpool create tank mirror /dev/Xone /dev/2Xpart1 mirror /dev/Xtwo /dev/2Xpart2
where the striped partitions are scattered over physically contiguous hardware.
raid zfs
You have: two disks of size X and one of size 2X.
You want: zpool with mirror-like redundancy of size 2X
Concatenation of the two X drives is straightforward with ZFS. But I found no way to mirror the resulting vdev (size 2X) with another 2X disk with ZFS's in-house means.
These (more or less unelegant) solutions came to my mind:
- Use OS tools (mdadm for Linux, gstripe for FreeBSD) to connect the two X drives to a single physical device that can be mirrored with the 2X one. But I am uneasy with the additional complexity, platform-dependence, and losing bare-metal benefits of ZFS.
- Subdivide the 2X drive into two partitions and create a RAID10 equivalent with four members via
zpool create tank mirror /dev/Xone /dev/2Xpart1 mirror /dev/Xtwo /dev/2Xpart2
where the striped partitions are scattered over physically contiguous hardware.
raid zfs
raid zfs
asked 2 hours ago
H. WeirauchH. Weirauch
161
161
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f513495%2fzfs-mirror-over-one-large-disk-and-a-raid0-of-two-small-disks%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f513495%2fzfs-mirror-over-one-large-disk-and-a-raid0-of-two-small-disks%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