Move actor table to primary redis context

This commit is contained in:
Eric Liang
2018-12-12 16:51:29 -08:00
committed by GitHub
parent 32473cf22e
commit 20c7fad4f4
+1 -1
View File
@@ -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));