[ 
https://issues.apache.org/jira/browse/SPARK-54547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-54547:
----------------------------------
    Summary: Rename `hostPort` variable to `host` in 
`TaskSchedulerImpl.(executorLost|logExecutorLoss)` methods  (was: Use host 
instead of hostPort)

> Rename `hostPort` variable to `host` in 
> `TaskSchedulerImpl.(executorLost|logExecutorLoss)` methods
> --------------------------------------------------------------------------------------------------
>
>                 Key: SPARK-54547
>                 URL: https://issues.apache.org/jira/browse/SPARK-54547
>             Project: Spark
>          Issue Type: Bug
>          Components: Spark Core
>    Affects Versions: 4.0.0
>            Reporter: duanshilong
>            Assignee: duanshilong
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 4.2.0
>
>
> Rename hostPort to host because executorIdToHost stores only the hostname (or 
> IP), not the host:port combination. This improves code clarity and prevents 
> potential misuse.
> {code:scala}
> // TaskSchedulerImpl.resourceOffers
> executorIdToHost(o.executorId) = o.host
> {code}
> so, when we get host from executorIdToHost, we should us host instead of 
> hostPort.
> {code:scala}
> // TaskSchedulerImpl.executorLost
> val hostPort = executorIdToHost(executorId)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to