mirror of
https://github.com/wassname/ray.git
synced 2026-07-19 11:27:32 +08:00
Move actor table to primary redis context
This commit is contained in:
@@ -106,13 +106,13 @@ AsyncGcsClient::AsyncGcsClient(const std::string &address, int port,
|
||||
/*password=*/password));
|
||||
}
|
||||
|
||||
actor_table_.reset(new ActorTable({primary_context_}, this));
|
||||
client_table_.reset(new ClientTable({primary_context_}, this, client_id));
|
||||
error_table_.reset(new ErrorTable({primary_context_}, this));
|
||||
driver_table_.reset(new DriverTable({primary_context_}, this));
|
||||
heartbeat_batch_table_.reset(new HeartbeatBatchTable({primary_context_}, this));
|
||||
// Tables below would be sharded.
|
||||
object_table_.reset(new ObjectTable(shard_contexts_, this, command_type));
|
||||
actor_table_.reset(new ActorTable(shard_contexts_, this));
|
||||
raylet_task_table_.reset(new raylet::TaskTable(shard_contexts_, this, command_type));
|
||||
task_reconstruction_log_.reset(new TaskReconstructionLog(shard_contexts_, this));
|
||||
task_lease_table_.reset(new TaskLeaseTable(shard_contexts_, this));
|
||||
|
||||
Reference in New Issue
Block a user