Skip to content

Commit ad609be

Browse files
dentinyangelinalg
authored andcommitted
[core] Fix all variable shadowing for core worker (ray-project#51672)
This PR fixes all variable shadowing for core worker. Variable shadowing is known to be error prune --- I personally just spent 20 minute debugging an issue caused by it. Need to address all issues before ray-project#51669 Signed-off-by: dentiny <[email protected]>
1 parent 8974a44 commit ad609be

File tree

7 files changed

+30
-29
lines changed

7 files changed

+30
-29
lines changed

src/ray/common/bundle_location_index.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ void BundleLocationIndex::AddBundleLocations(
3030
}
3131

3232
// Update `node_to_leased_bundles_`.
33-
for (auto iter : *bundle_locations) {
34-
const auto &node_id = iter.second.first;
33+
for (auto bundle_iter : *bundle_locations) {
34+
const auto &node_id = bundle_iter.second.first;
3535
if (!node_to_leased_bundles_.contains(node_id)) {
3636
node_to_leased_bundles_[node_id] = std::make_shared<BundleLocations>();
3737
}
38-
node_to_leased_bundles_[node_id]->emplace(iter.first, iter.second);
38+
node_to_leased_bundles_[node_id]->emplace(bundle_iter.first, bundle_iter.second);
3939
}
4040
}
4141

src/ray/common/ray_config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ template <>
5151
inline std::vector<std::string> ConvertValue<std::vector<std::string>>(
5252
const std::string &type_string, const std::string &value) {
5353
std::vector<std::string> split = absl::StrSplit(value, ',');
54-
for (auto &value : split) {
55-
boost::algorithm::trim(value);
54+
for (auto &part : split) {
55+
boost::algorithm::trim(part);
5656
}
5757
return split;
5858
}

src/ray/common/scheduling/cluster_resource_data.cc

+6-8
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,19 @@ NodeResources ResourceMapToNodeResources(
6363
float NodeResources::CalculateCriticalResourceUtilization() const {
6464
float highest = 0;
6565
for (const auto &i : {CPU, MEM, OBJECT_STORE_MEM}) {
66-
const auto &total = this->total.Get(ResourceID(i));
67-
if (total == 0) {
66+
const auto &cur_total = this->total.Get(ResourceID(i));
67+
if (cur_total == 0) {
6868
continue;
6969
}
70-
auto available = this->available.Get(ResourceID(i)).Double();
70+
auto cur_available = this->available.Get(ResourceID(i)).Double();
7171
// Gcs scheduler handles the `normal_task_resources` specifically. So when calculating
7272
// the available resources, we have to take one more step to take that into account.
7373
// For raylet scheduling, the `normal_task_resources` is always empty.
7474
if (this->normal_task_resources.Has(ResourceID(i))) {
75-
available -= this->normal_task_resources.Get(ResourceID(i)).Double();
76-
if (available < 0) {
77-
available = 0;
78-
}
75+
cur_available -= this->normal_task_resources.Get(ResourceID(i)).Double();
76+
cur_available = std::max<float>(0, cur_available);
7977
}
80-
float utilization = 1 - (available / total.Double());
78+
float utilization = 1 - (cur_available / cur_total.Double());
8179
if (utilization > highest) {
8280
highest = utilization;
8381
}

src/ray/common/scheduling/cluster_resource_data.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,9 @@ class TaskResourceInstances {
266266
buffer << resource[0];
267267
} else {
268268
buffer << "[";
269-
for (size_t i = 0; i < resource.size(); i++) {
270-
buffer << resource[i];
271-
if (i < resource.size() - 1) {
269+
for (size_t j = 0; j < resource.size(); j++) {
270+
buffer << resource[j];
271+
if (j < resource.size() - 1) {
272272
buffer << ", ";
273273
}
274274
}

src/ray/core_worker/actor_manager.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ std::vector<ObjectID> ActorManager::GetActorHandleIDsFromHandles() {
263263

264264
ActorID ActorManager::GetCachedNamedActorID(const std::string &actor_name) {
265265
{
266-
absl::MutexLock lock(&cache_mutex_);
266+
absl::MutexLock cache_lock(&cache_mutex_);
267267
auto it = cached_actor_name_to_ids_.find(actor_name);
268268
if (it != cached_actor_name_to_ids_.end()) {
269269
absl::MutexLock lock(&mutex_);

src/ray/core_worker/transport/normal_task_submitter.cc

+4-3
Original file line numberDiff line numberDiff line change
@@ -611,9 +611,10 @@ void NormalTaskSubmitter::PushNormalTask(
611611
get_task_failure_cause_reply_status,
612612
get_task_failure_cause_reply);
613613
};
614-
auto &lease_entry = worker_to_lease_entry_[addr];
615-
RAY_CHECK(lease_entry.lease_client);
616-
lease_entry.lease_client->GetTaskFailureCause(lease_entry.task_id, callback);
614+
auto &cur_lease_entry = worker_to_lease_entry_[addr];
615+
RAY_CHECK(cur_lease_entry.lease_client);
616+
cur_lease_entry.lease_client->GetTaskFailureCause(cur_lease_entry.task_id,
617+
callback);
617618
}
618619

619620
if (!status.ok() || !is_actor_creation || reply.worker_exiting()) {

src/ray/gcs/pubsub/gcs_pub_sub.cc

+11-9
Original file line numberDiff line numberDiff line change
@@ -358,10 +358,12 @@ Status PythonGcsSubscriber::DoPoll(int64_t timeout_ms, rpc::PubMessage *message)
358358
if (status.error_code() == grpc::StatusCode::DEADLINE_EXCEEDED ||
359359
status.error_code() == grpc::StatusCode::UNAVAILABLE) {
360360
return Status::OK();
361-
} else if (status.error_code() == grpc::StatusCode::CANCELLED) {
361+
}
362+
if (status.error_code() == grpc::StatusCode::CANCELLED) {
362363
// This channel was shut down via Close()
363364
return Status::OK();
364-
} else if (status.error_code() != grpc::StatusCode::OK) {
365+
}
366+
if (status.error_code() != grpc::StatusCode::OK) {
365367
return Status::Invalid(status.error_message());
366368
}
367369

@@ -376,18 +378,18 @@ Status PythonGcsSubscriber::DoPoll(int64_t timeout_ms, rpc::PubMessage *message)
376378
max_processed_sequence_id_ = 0;
377379
}
378380
last_batch_size_ = reply.pub_messages().size();
379-
for (auto &message : reply.pub_messages()) {
380-
if (message.sequence_id() <= max_processed_sequence_id_) {
381-
RAY_LOG(WARNING) << "Ignoring out of order message " << message.sequence_id();
381+
for (auto &cur_pub_msg : reply.pub_messages()) {
382+
if (cur_pub_msg.sequence_id() <= max_processed_sequence_id_) {
383+
RAY_LOG(WARNING) << "Ignoring out of order message " << cur_pub_msg.sequence_id();
382384
continue;
383385
}
384-
max_processed_sequence_id_ = message.sequence_id();
385-
if (message.channel_type() != channel_type_) {
386+
max_processed_sequence_id_ = cur_pub_msg.sequence_id();
387+
if (cur_pub_msg.channel_type() != channel_type_) {
386388
RAY_LOG(WARNING) << "Ignoring message from unsubscribed channel "
387-
<< message.channel_type();
389+
<< cur_pub_msg.channel_type();
388390
continue;
389391
}
390-
queue_.emplace_back(std::move(message));
392+
queue_.emplace_back(std::move(cur_pub_msg));
391393
}
392394
}
393395

0 commit comments

Comments
 (0)