forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OpenZFS 8677 - Open-Context Channel Programs
Authored by: Serapheim Dimitropoulos <[email protected]> Reviewed by: Matt Ahrens <[email protected]> Reviewed by: Chris Williamson <[email protected]> Reviewed by: Pavel Zakharov <[email protected]> Approved by: Robert Mustacchi <[email protected]> Ported-by: Don Brady <[email protected]> We want to be able to run channel programs outside of synching context. This would greatly improve performance for channel programs that just gather information, as they won't have to wait for synching context anymore. === What is implemented? This feature introduces the following: - A new command line flag in "zfs program" to specify our intention to run in open context. (The -n option) - A new flag/option within the channel program ioctl which selects the context. - Appropriate error handling whenever we try a channel program in open-context that contains zfs.sync* expressions. - Documentation for the new feature in the manual pages. === How do we handle zfs.sync functions in open context? When such a function is found by the interpreter and we are running in open context we abort the script and we spit out a descriptive runtime error. For example, given the script below ... arg = ... fs = arg["argv"][1] err = zfs.sync.destroy(fs) msg = "destroying " .. fs .. " err=" .. err return msg if we run it in open context, we will get back the following error: Channel program execution failed: [string "channel program"]:3: running functions from the zfs.sync submodule requires passing sync=TRUE to lzc_channel_program() (i.e. do not specify the "-n" command line argument) stack traceback: [C]: in function 'destroy' [string "channel program"]:3: in main chunk === What about testing? We've introduced new wrappers for all channel program tests that run each channel program as both (startard & open-context) and expect the appropriate behavior depending on the program using the zfs.sync module. OpenZFS-issue: https://www.illumos.org/issues/8677 OpenZFS-commit: openzfs/openzfs@17a49e15 Closes openzfs#6558
- Loading branch information
Showing
26 changed files
with
422 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
/* | ||
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. | ||
* Copyright (c) 2013, Joyent, Inc. All rights reserved. | ||
* Copyright (c) 2011, 2016 by Delphix. All rights reserved. | ||
* Copyright (c) 2011, 2017 by Delphix. All rights reserved. | ||
* Copyright (c) 2012 DEY Storage Systems, Inc. All rights reserved. | ||
* Copyright (c) 2012 Pawel Jakub Dawidek <[email protected]>. | ||
* Copyright (c) 2013 Martin Matuska. All rights reserved. | ||
|
@@ -2506,7 +2506,7 @@ zcp_check(zfs_handle_t *zhp, zfs_prop_t prop, uint64_t intval, | |
fnvlist_add_string(argnvl, "dataset", zhp->zfs_name); | ||
fnvlist_add_string(argnvl, "property", zfs_prop_to_name(prop)); | ||
|
||
error = lzc_channel_program(poolname, program, | ||
error = lzc_channel_program_nosync(poolname, program, | ||
10 * 1000 * 1000, 10 * 1024 * 1024, argnvl, &outnvl); | ||
|
||
if (error == 0) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
.\" | ||
.\" Copyright (c) 2009 Sun Microsystems, Inc. All Rights Reserved. | ||
.\" Copyright 2011 Joshua M. Clulow <[email protected]> | ||
.\" Copyright (c) 2011, 2016 by Delphix. All rights reserved. | ||
.\" Copyright (c) 2011, 2017 by Delphix. All rights reserved. | ||
.\" Copyright (c) 2013 by Saso Kiselkov. All rights reserved. | ||
.\" Copyright (c) 2014, Joyent, Inc. All rights reserved. | ||
.\" Copyright (c) 2014 by Adam Stevko. All rights reserved. | ||
|
@@ -272,6 +272,7 @@ | |
.Ar snapshot Ar snapshot Ns | Ns Ar filesystem | ||
.Nm | ||
.Cm program | ||
.Op Fl n | ||
.Op Fl t Ar timeout | ||
.Op Fl m Ar memory_limit | ||
.Ar pool script | ||
|
@@ -4042,6 +4043,7 @@ Display the path's inode change time as the first column of output. | |
.It Xo | ||
.Nm | ||
.Cm program | ||
.Op Fl n | ||
.Op Fl t Ar timeout | ||
.Op Fl m Ar memory_limit | ||
.Ar pool script | ||
|
@@ -4063,6 +4065,14 @@ For full documentation of the ZFS channel program interface, see the manual | |
page for | ||
.Xr zfs-program 8 . | ||
.Bl -tag -width "" | ||
.It Fl n | ||
Executes a read-only channel program, which runs faster. | ||
The program cannot change on-disk state by calling functions from | ||
the zfs.sync submodule. | ||
The program can be used to gather information such as properties and | ||
determining if changes would succeed (zfs.check.*). | ||
Without this flag, all pending changes must be synced to disk before | ||
a channel program can complete. | ||
.It Fl t Ar timeout | ||
Execution time limit, in milliseconds. | ||
If a channel program executes for longer than the provided timeout, it will | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.