-
Notifications
You must be signed in to change notification settings - Fork 316
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
Reuse get SSH connection method in Slurm function agent #3189
Reuse get SSH connection method in Slurm function agent #3189
Conversation
Signed-off-by: JiangJiaWei1103 <[email protected]>
Code Review Agent Run #1cb8c9Actionable Suggestions - 1
Review Details
|
Changelist by BitoThis pull request implements the following key changes.
|
conn = await get_ssh_conn( | ||
ssh_config=resource_meta.ssh_config, slurm_cluster_to_ssh_conn=self.slurm_cluster_to_ssh_conn | ||
) |
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.
The return value from get_ssh_conn()
is not being properly unpacked. According to the function signature in ssh_utils.py
, get_ssh_conn()
returns a tuple of (SlurmCluster, SSHClientConnection)
, but only the connection is being used. Consider updating to unpack the tuple correctly: _, conn = await get_ssh_conn(...)
.
Code suggestion
Check the AI-generated fix before applying
conn = await get_ssh_conn( | |
ssh_config=resource_meta.ssh_config, slurm_cluster_to_ssh_conn=self.slurm_cluster_to_ssh_conn | |
) | |
slurm_cluster, conn = await get_ssh_conn( | |
ssh_config=resource_meta.ssh_config, slurm_cluster_to_ssh_conn=self.slurm_cluster_to_ssh_conn | |
) |
Code Review Run #1cb8c9
Should Bito avoid suggestions like this for future reviews? (Manage Rules)
- Yes, avoid them
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.
can you provide issue link in the Tracking Issue
section?
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.
Can the slurm function agent and slurm script agent used the same variable slurm_cluster_to_ssh_conn
?
Added! Apologies for the oversight. |
Are you asking if both the |
Signed-off-by: JiangJiaWei1103 <[email protected]>
Signed-off-by: JiangJiaWei1103 <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3189 +/- ##
==========================================
- Coverage 94.35% 93.20% -1.16%
==========================================
Files 64 42 -22
Lines 2799 2280 -519
==========================================
- Hits 2641 2125 -516
+ Misses 158 155 -3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Code Review Agent Run #13343dActionable Suggestions - 0Review Details
|
* refactor: Reuse get SSH connection method Signed-off-by: JiangJiaWei1103 <[email protected]> * Fix lint Signed-off-by: JiangJiaWei1103 <[email protected]> --------- Signed-off-by: JiangJiaWei1103 <[email protected]> Signed-off-by: chmod77 <[email protected]>
Tracking issue
flyteorg/flyte#5634
Why are the changes needed?
Reusing a shared method for obtaining an SSH connection object prevents code duplication and ensures consistency between
SlurmShellAgent
andSlurmFunctionAgent
.What changes were proposed in this pull request?
Reuse
get_ssh_conn
method inSlurmFunctionAgent
.How was this patch tested?
This patch is tested by running the following example:
Setup process
For agent local test, the setup process is summarized as follows:
Screenshots
Local machine (Flyte client)

The first task on the Slurm cluster

The second task on the Slurm cluster

Check all the applicable boxes
Related PRs
Docs link
N/A
Summary by Bito
This PR refactors the codebase from an agent-based to a connector-based architecture, focusing on SSH connection handling in the Slurm function agent by leveraging shared methods. It eliminates custom connection logic and redundant classes, improves error handling, enhances modularity, and introduces a geopandas plugin for GeoDataFrame transformations.Unit tests added: True
Estimated effort to review (1-5, lower is better): 5