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

Worker config updates to make path to jave.exe configurable #3210

Merged
merged 4 commits into from
Aug 1, 2018

Conversation

pragnagopa
Copy link
Member

@pragnagopa pragnagopa commented Jul 30, 2018

  • Added support to provide worker description profiles
  • Added support to override default worker process path by specifying app setting languageWorkers:language:defaultExecutablePath

Fixes #3187, Fixes #3048

@pragnagopa pragnagopa requested review from mathewc and fabiocav July 30, 2018 20:44
@pragnagopa
Copy link
Member Author

pragnagopa commented Jul 30, 2018

Sample worker.config.json with AppServiceEnvironment profile

{
    "Description":{
        "Language":"java",
        "Extension":".jar",
        "DefaultExecutablePath":"java",
        "DefaultWorkerPath":"azure-functions-java-worker.jar",
        "Arguments" : ["-jar"]
    },
	"profiles": {
		"AppServiceEnvironment": {
			"DefaultExecutablePath": "../../zulu8.23.0.3-jdk8.0.144-win_x64/bin/java"
		}
	}
}
  • When running in Azure, if AppServiceEnvironment profile is provided this overwrites defaualt description.
  • Users can specify AppSetting languageWorkers:language:defaultExecutablePath to override worker process path

PR Azure/azure-functions-java-worker#151 updates worker.config.json for java worker

@pragnagopa pragnagopa force-pushed the workerConfigUpdates branch from 31f8148 to 3c8e082 Compare July 31, 2018 19:11
@pragnagopa
Copy link
Member Author

Updated to Java worker.

Copy link
Member

@fabiocav fabiocav left a comment

Choose a reason for hiding this comment

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

Wondering if it would save us all some time (and avoid migration issues) if this was targeting the hosting branch instead. We're about to merge that in. What do you think?

@brettsam , thoughts?

@brettsam
Copy link
Member

brettsam commented Aug 1, 2018

Yes! and in fact, there's some issues with worker config today in hosting (some values aren't getting applied like I'd expect). It'd be good to get it all reconciled at once.

Copy link
Member

@fabiocav fabiocav left a comment

Choose a reason for hiding this comment

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

Couple of nit comments

@@ -341,10 +341,14 @@ internal void StartProcess(string workerId, Process process)
{
_logger.LogWarning(e.Data);
}
else
else if (e.Data.IndexOf("error", StringComparison.OrdinalIgnoreCase) > 0)
Copy link
Member

Choose a reason for hiding this comment

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

Should this > -1?

public const string JavaLanguageWorkerName = "java";
// Profiles
public const string WorkerDescriptionProfiles = "profiles";
public const string AppServiceEnvDescription = "AppServiceEnvironment";
Copy link
Member

Choose a reason for hiding this comment

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

Should this be something like WorkerProfileNameAppServiceEnvironment ?

@fabiocav
Copy link
Member

fabiocav commented Aug 1, 2018

@brettsam , just had a quick chat with @pragnagopa . Since we haven't changed that model for language workers in the hosting branch yet, I don't think what she is adding expands what we'd have to migrate too much, so it should be fine to go into dev. Thoughts?

@pragnagopa
Copy link
Member Author

Right. @brettsam - I will go ahead and merge this into dev and work with you and @fabiocav for specific changes we need to make to consume the new config model.

@pragnagopa pragnagopa merged commit 395b0c9 into Azure:dev Aug 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants