Skip to content
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

Allow Users to set Erlang VM parameters #758

Merged
merged 1 commit into from
Mar 26, 2025

Conversation

humaite
Copy link
Collaborator

@humaite humaite commented Mar 20, 2025

This commit fixes a regression with the new entry-point. Users in some case needed to modify VM parameters
directly from the command line (and not from vm.args).

see: https://github.com/ArweaveTeam/arweave-dev/issues/842

This commit fixes a regression with the new entry-point.
Users in some case needed to modify VM parameters
directly from the command line (and not from vm.args).

see: https://github.com/ArweaveTeam/arweave-dev/issues/842
@JamesPiechota
Copy link
Collaborator

@humaite if the new recommended procedure is to modify vm.args.src rather than use -- then I think that's great. WE don't need to re-add --, we can just document the new procedure

@humaite
Copy link
Collaborator Author

humaite commented Mar 25, 2025

@humaite if the new recommended procedure is to modify vm.args.src rather than use -- then I think that's great. WE don't need to re-add --, we can just document the new procedure

I think it will be required anyway if one wants to start more than one nodes. It will be easier using these parameters than using vm.args - at least until we find a better way.

while test "${*}"
do
local arg="${1}"
if test "${arg}" = ${separator}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suck at reading bash scripts ... and so can't really understand if this works. (i.e. naively I don't see how we differentiate the args from before the separator from those after the separation). So I'll just approve the PR and trust that we hit any issues intesting!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah. Shell scripting is not really a great language, even more when we are not using POSIX. Bash or zsh scripts are not compatible together for example, that's quite a mess. Anyway, I'm trying to write only POSIX script, this is the reason why I'm using test command in instead of [ or [[ (available only on bash IIRC) for example.

The function will read all the argument from a list of parameters ${*} until this list is empty. All parameters are pushed on the variable params, but when -- is found, then the content of this variable is moved to vm_params. This is done for all arguments, one by one (see shift). When the loop is over, then two environment variables are set: VM_PARAMS containing only the parameters for the VM and LOCAL_PARAMS mainly used for arweave.

Here the code in action:

######################################################################
# Ensure VM_PARAMS and LOCAL_PARAMS environment variables are unset
######################################################################
echo vm_params: ${VM_PARAMS}
echo local_params ${LOCAL_PARAMS}
# vm_params: 
# local_params:

######################################################################
# let parse "test 1 2 3". Only LOCAL_PARAMS variables should be set,
# by default, we only want to set arweave arguments, not the VM.
######################################################################
parse_args test 1 2 3
echo vm_params: ${VM_PARAMS}
echo local_params ${LOCAL_PARAMS}
# vm_params: 
# local_params: test 1 2 3

######################################################################
# let parse "-a -b -c -- 1 2 3 test", the first part, before "--"
# are the arguments for the VM and the rest (after "--") are arguments
# for arweave
######################################################################
parse_args -a -b -c -- 1 2 3 test
echo vm_params: ${VM_PARAMS}
echo local_params ${LOCAL_PARAMS}
# vm_params: -a -b -c
# local_params 1 2 3 test

######################################################################
# let try to see what's happening if we put more "--" separators.
# Only the last arguments are being used for arweave, the rest is 
# for the vm parameters.
######################################################################
parse_args -a -b -c -- 1 -- 2 -- 3 test
echo vm_params: ${VM_PARAMS}
echo local_params ${LOCAL_PARAMS}
# vm_params: -a -b -c 1 2
# local_params 3 test

@humaite humaite merged commit 96fdc7c into master Mar 26, 2025
115 of 142 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants