-
Notifications
You must be signed in to change notification settings - Fork 1
Add factory for config-backed AtumAgent #438
Copy link
Copy link
Labels
AgentIssues touching the agent part of the projectIssues touching the agent part of the projectServerIssues touching the server part of the projectIssues touching the server part of the projectdependentThe item depends on some other open item (Issue or PR)The item depends on some other open item (Issue or PR)enhancementNew feature or requestNew feature or requestinfrastructureProject setup and deploymentProject setup and deployment
Metadata
Metadata
Assignees
Labels
AgentIssues touching the agent part of the projectIssues touching the agent part of the projectServerIssues touching the server part of the projectIssues touching the server part of the projectdependentThe item depends on some other open item (Issue or PR)The item depends on some other open item (Issue or PR)enhancementNew feature or requestNew feature or requestinfrastructureProject setup and deploymentProject setup and deployment
Type
Projects
Status
👀 In review
Task:
Adds a factory method to create an
AtumAgentinstance backed by an explicitly providedTypesafe Config, enabling multiple agents with different dispatcher setups within the same JVM.Context:
The above PRs updates the deployment pipeline to extract, package, and publish the external TypeSafe config for the data-measurement Spark plugin and ensure it is shipped to Spark via
--files:This supports the “external first, classpath fallback” strategy within AUL: the plugin first attempts to load
application.confdistributed through Spark--files, and falls back to the classpath config if no external file is available.Essentially, we want to externalize all configuration files. So, it is easier for the Ops teams and Dev teams to make changes to the configuration files without a need to always release a new version of Atum-Services or Unify. But since Atum-Services is in the codebase of Unify, a small change is needed on Atum-Services to be able to externalize these config files.