-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(script): Support script flags of Eval script and Function #2446
Conversation
Just ping me if ready for code review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think inside the lua vm we can have such global variables:
f_<sha>_flags -> <flags (encoded to integer)>
__redis_registered_flags_<func name> -> <flags (encoded to integer)>
and we can construct ctx quickly when the lua function is called.
The converting integer part uses the
What do you think, or is there a better solution? @PragmaTwice |
I think maybe we can just use |
This API seems to be supported by lua 5.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, this PR is in good shape.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mapleFU To see if you have further comments? or we can merge this PR to avoid pending too long. |
|
fix: #1884, #2133
a part of: #2414
This PR is designed to support three script flags within Eval Script and Function:
no-writes
,no-cluster
, andallow-cross-slot-keys
.Implementation Details
Focus on
ScriptRunCtx
. I use it to pass context between Lua and C++. Before executing the Lua script,SaveOnRegistry
stores the parsed flags inREGISTRY_SCRIPT_RUN_CTX_NAME
. During the execution of the Lua script,GetFromRegistry
retrieves the flags of the currently executing script. After the script execution ends, it should be set tonil
.For APIs like
EVAL
,SCRIPT LOAD
, andFUNCTION LOAD
, the flags parsed from the Eval Script will be stored in Lua's global variablef_<sha>_flags_
. The flags parsed by FUNCTIONregister_function()
will be stored in the Lua global variable_registered_flags_<funcname>
.Testing
#!
in the EVAL Script.name=
and EVAL Script’sflags=
which will not appear simultaneously.#!lua
andname=
.allow-cross-slot-keys
, pre-defined Keys are still prohibited from crossing Slots.Different slots on different nodes are still prohibited from crossing Slots. However, slots on the same node are allowed to cross slots when this flag is enabled (generally not recommended).
read_only
ofEVAL_RO
,EVALSHA_RO
, andFCALL_RO
will be added to the script flags, and even if theno-writes
flag is not set, checks will still be performed.Note
Since I am not very familiar with Lua, the rationality and safety of related operations need to be reviewed.