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

(GH-180) Ensure instance_key respects full uniqueness of options #181

Merged
merged 1 commit into from
Aug 16, 2021
Merged

(GH-180) Ensure instance_key respects full uniqueness of options #181

merged 1 commit into from
Aug 16, 2021

Conversation

michaeltlombardi
Copy link
Contributor

Prior to this commit, the instance_key method for the PowerShell Manager only partially
respected the uniqueness of a possible instance; if there are any differences between
two declarations in the path to the executable, arguments passed to the executable, or
the debug option, the manager would treat the new instance as expected, spinning up an
additional instance of the manager.

However, it completely ignored the pipe_timeout option, meaning specifying an instance
with a default pipe_timeout and a second instance with a pipe_timeout of 45 would
actually result in the second instance declaration just reusing the existing instance
with the default timeout, which is unwanted an unexpected behavior.

This commit modifies the logic for the instance_key method slightly by making the key a
concatenation of the path to the executable, the arguments, and the full options hash
turned into a string.

This both ensures that instance declarations with two different pipe timeouts are actually
both spun up as separate instances and enables a workaround for multi-threading:

Users will be able to specify an arbitrary option, such as instance_guid, which can uniquely
identify the instance for that thread. This should help folks keep the instances separated
and prevent weird behavior when calling the manager from multiple threads (though, of course,
this does mean that the multi-threading still has a spinup cost for each thread).

Related to/discovered in #180.

@michaeltlombardi michaeltlombardi requested a review from a team as a code owner August 16, 2021 15:47
Prior to this commit, the instance_key method for the PowerShell Manager only partially
respected the uniqueness of a possible instance; if there are any differences between
two declarations in the path to the executable, arguments passed to the executable, or
the debug option, the manager would treat the new instance as expected, spinning up an
additional instance of the manager.

However, it completely ignored the pipe_timeout option, meaning specifying an instance
with a default pipe_timeout and a second instance with a pipe_timeout of 45 would
**actually** result in the second instance declaration just reusing the existing instance
with the default timeout, which is unwanted an unexpected behavior.

This commit modifies the logic for the instance_key method slightly by making the key a
concatenation of the path to the executable, the arguments, and the full options hash
turned into a string.

This both ensures that instance declarations with two different pipe timeouts are actually
both spun up as separate instances *and* enables a workaround for multi-threading:

Users will be able to specify an arbitrary option, such as instance_guid, which can uniquely
identify the instance for that thread. This should help folks keep the instances separated
and prevent weird behavior when calling the manager from multiple threads (though, of course,
this does mean that the multi-threading still has a spinup cost for each thread).

Related to/discovered in #180.
@da-ar da-ar merged commit 0940d89 into puppetlabs:main Aug 16, 2021
@michaeltlombardi michaeltlombardi deleted the gh-180/main/fix-instance_key-uniqueness branch August 16, 2021 16:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants