2016-10-04 12:55:10 -07:00
|
|
|
#include <inttypes.h>
|
2016-10-05 18:07:08 -07:00
|
|
|
#include <signal.h>
|
2016-10-04 12:55:10 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "event_loop.h"
|
|
|
|
#include "io.h"
|
2016-12-08 19:14:10 -08:00
|
|
|
#include "object_info.h"
|
2016-10-04 12:55:10 -07:00
|
|
|
#include "photon.h"
|
2016-10-04 16:25:11 -07:00
|
|
|
#include "photon_scheduler.h"
|
2016-12-12 23:17:22 -08:00
|
|
|
#include "photon_algorithm.h"
|
2016-10-04 12:55:10 -07:00
|
|
|
#include "state/db.h"
|
2016-11-10 18:13:26 -08:00
|
|
|
#include "state/task_table.h"
|
|
|
|
#include "state/object_table.h"
|
2016-10-04 12:55:10 -07:00
|
|
|
#include "utarray.h"
|
2016-10-18 18:27:43 -07:00
|
|
|
#include "uthash.h"
|
2016-10-04 12:55:10 -07:00
|
|
|
|
2016-11-10 18:13:26 -08:00
|
|
|
UT_icd task_ptr_icd = {sizeof(task *), NULL, NULL, NULL};
|
2016-10-18 18:27:43 -07:00
|
|
|
UT_icd worker_icd = {sizeof(worker), NULL, NULL, NULL};
|
|
|
|
|
2016-11-04 00:41:20 -07:00
|
|
|
UT_icd byte_icd = {sizeof(uint8_t), NULL, NULL, NULL};
|
|
|
|
|
2016-12-04 17:08:16 -08:00
|
|
|
local_scheduler_state *init_local_scheduler(
|
|
|
|
event_loop *loop,
|
|
|
|
const char *redis_addr,
|
|
|
|
int redis_port,
|
|
|
|
const char *plasma_store_socket_name,
|
2016-12-12 23:17:22 -08:00
|
|
|
const char *plasma_manager_socket_name,
|
2016-12-13 17:21:38 -08:00
|
|
|
const char *plasma_manager_address,
|
2016-12-12 23:17:22 -08:00
|
|
|
bool global_scheduler_exists) {
|
2016-10-04 16:25:11 -07:00
|
|
|
local_scheduler_state *state = malloc(sizeof(local_scheduler_state));
|
2016-10-05 18:07:08 -07:00
|
|
|
state->loop = loop;
|
2016-10-18 18:27:43 -07:00
|
|
|
state->worker_index = NULL;
|
|
|
|
/* Add scheduler info. */
|
2016-12-04 15:51:03 -08:00
|
|
|
utarray_new(state->workers, &worker_icd);
|
2016-11-18 19:57:51 -08:00
|
|
|
/* Connect to Redis if a Redis address is provided. */
|
|
|
|
if (redis_addr != NULL) {
|
2016-12-13 17:21:38 -08:00
|
|
|
state->db = db_connect_extended(redis_addr, redis_port, "photon", "", -1,
|
|
|
|
plasma_manager_address);
|
2016-12-05 00:26:53 -08:00
|
|
|
db_attach(state->db, loop, false);
|
2016-11-18 19:57:51 -08:00
|
|
|
} else {
|
2016-12-04 15:51:03 -08:00
|
|
|
state->db = NULL;
|
2016-11-18 19:57:51 -08:00
|
|
|
}
|
2016-12-04 17:08:16 -08:00
|
|
|
/* Connect to Plasma. This method will retry if Plasma hasn't started yet.
|
|
|
|
* Pass in a NULL manager address and port. */
|
|
|
|
state->plasma_conn =
|
|
|
|
plasma_connect(plasma_store_socket_name, plasma_manager_socket_name,
|
|
|
|
PLASMA_DEFAULT_RELEASE_DELAY);
|
|
|
|
/* Subscribe to notifications about sealed objects. */
|
|
|
|
int plasma_fd = plasma_subscribe(state->plasma_conn);
|
|
|
|
/* Add the callback that processes the notification to the event loop. */
|
|
|
|
event_loop_add_file(loop, plasma_fd, EVENT_LOOP_READ,
|
|
|
|
process_plasma_notification, state);
|
2016-12-12 23:17:22 -08:00
|
|
|
/* Set the flag for whether there is a global scheduler. */
|
|
|
|
state->global_scheduler_exists = global_scheduler_exists;
|
2016-10-18 18:27:43 -07:00
|
|
|
/* Add scheduler state. */
|
2016-12-04 15:51:03 -08:00
|
|
|
state->algorithm_state = make_scheduling_algorithm_state();
|
2016-11-04 00:41:20 -07:00
|
|
|
utarray_new(state->input_buffer, &byte_icd);
|
2016-10-04 16:25:11 -07:00
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2016-12-12 23:17:22 -08:00
|
|
|
void free_local_scheduler(local_scheduler_state *state) {
|
|
|
|
if (state->db != NULL) {
|
|
|
|
db_disconnect(state->db);
|
2016-11-18 19:57:51 -08:00
|
|
|
}
|
2016-12-12 23:17:22 -08:00
|
|
|
plasma_disconnect(state->plasma_conn);
|
2016-10-26 23:23:46 -07:00
|
|
|
worker_index *current_worker_index, *temp_worker_index;
|
2016-12-12 23:17:22 -08:00
|
|
|
HASH_ITER(hh, state->worker_index, current_worker_index, temp_worker_index) {
|
|
|
|
HASH_DEL(state->worker_index, current_worker_index);
|
2016-10-26 23:23:46 -07:00
|
|
|
free(current_worker_index);
|
|
|
|
}
|
2016-12-12 23:17:22 -08:00
|
|
|
utarray_free(state->workers);
|
|
|
|
free_scheduling_algorithm_state(state->algorithm_state);
|
|
|
|
utarray_free(state->input_buffer);
|
|
|
|
event_loop_destroy(state->loop);
|
|
|
|
free(state);
|
2016-10-05 18:07:08 -07:00
|
|
|
}
|
|
|
|
|
2016-12-04 15:51:03 -08:00
|
|
|
void assign_task_to_worker(local_scheduler_state *state,
|
2016-11-10 18:13:26 -08:00
|
|
|
task_spec *spec,
|
2016-11-18 19:57:51 -08:00
|
|
|
int worker_index,
|
|
|
|
bool from_global_scheduler) {
|
2016-12-04 15:51:03 -08:00
|
|
|
CHECK(worker_index < utarray_len(state->workers));
|
|
|
|
worker *w = (worker *) utarray_eltptr(state->workers, worker_index);
|
2016-11-10 18:13:26 -08:00
|
|
|
write_message(w->sock, EXECUTE_TASK, task_spec_size(spec), (uint8_t *) spec);
|
2016-11-18 19:57:51 -08:00
|
|
|
/* Update the global task table. */
|
2016-12-04 15:51:03 -08:00
|
|
|
if (state->db != NULL) {
|
2016-11-19 12:19:49 -08:00
|
|
|
retry_info retry;
|
|
|
|
memset(&retry, 0, sizeof(retry));
|
|
|
|
retry.num_retries = 0;
|
|
|
|
retry.timeout = 100;
|
|
|
|
retry.fail_callback = NULL;
|
2016-11-18 19:57:51 -08:00
|
|
|
task *task =
|
2016-12-04 15:51:03 -08:00
|
|
|
alloc_task(spec, TASK_STATUS_RUNNING, get_db_client_id(state->db));
|
2016-11-18 19:57:51 -08:00
|
|
|
if (from_global_scheduler) {
|
2016-12-04 15:51:03 -08:00
|
|
|
task_table_update(state->db, task, (retry_info *) &retry, NULL, NULL);
|
2016-11-18 19:57:51 -08:00
|
|
|
} else {
|
2016-12-04 15:51:03 -08:00
|
|
|
task_table_add_task(state->db, task, (retry_info *) &retry, NULL, NULL);
|
2016-11-18 19:57:51 -08:00
|
|
|
}
|
|
|
|
}
|
2016-10-04 16:25:11 -07:00
|
|
|
}
|
2016-10-04 12:55:10 -07:00
|
|
|
|
2016-10-18 18:27:43 -07:00
|
|
|
void process_plasma_notification(event_loop *loop,
|
|
|
|
int client_sock,
|
|
|
|
void *context,
|
|
|
|
int events) {
|
2016-12-12 23:17:22 -08:00
|
|
|
local_scheduler_state *state = context;
|
2016-10-18 18:27:43 -07:00
|
|
|
/* Read the notification from Plasma. */
|
2016-12-08 19:14:10 -08:00
|
|
|
object_info object_info;
|
|
|
|
int error =
|
|
|
|
read_bytes(client_sock, (uint8_t *) &object_info, sizeof(object_info));
|
2016-12-02 18:51:50 -08:00
|
|
|
if (error < 0) {
|
|
|
|
/* The store has closed the socket. */
|
|
|
|
LOG_DEBUG(
|
|
|
|
"The plasma store has closed the object notification socket, or some "
|
|
|
|
"other error has occurred.");
|
|
|
|
event_loop_remove_file(loop, client_sock);
|
|
|
|
close(client_sock);
|
|
|
|
return;
|
|
|
|
}
|
2016-12-19 23:18:57 -08:00
|
|
|
|
|
|
|
if (object_info.is_deletion) {
|
|
|
|
handle_object_removed(state, object_info.obj_id);
|
|
|
|
} else {
|
|
|
|
handle_object_available(state, state->algorithm_state, object_info.obj_id);
|
|
|
|
}
|
2016-12-12 23:17:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void reconstruct_object_task_lookup_callback(object_id reconstruct_object_id,
|
|
|
|
task *task,
|
|
|
|
void *user_context) {
|
|
|
|
/* Recursively resubmit the task and its task lineage to the scheduler. */
|
|
|
|
CHECKM(task != NULL,
|
|
|
|
"No task information found for object during reconstruction");
|
|
|
|
local_scheduler_state *state = user_context;
|
|
|
|
/* If the task's scheduling state is WAITING or SCHEDULED, assume that
|
|
|
|
* reconstruction is already being taken care of and cancel this
|
|
|
|
* reconstruction operation. NOTE: This codepath is not responsible for
|
|
|
|
* detecting failure of the other reconstruction, or updating the
|
|
|
|
* scheduling_state accordingly. */
|
|
|
|
/* TODO(swang): Once we add code to modify the task table properly, this
|
|
|
|
* should also include TASK_STATUS_RUNNING. */
|
|
|
|
scheduling_state task_status = task_state(task);
|
|
|
|
if (task_status == TASK_STATUS_WAITING ||
|
|
|
|
task_status == TASK_STATUS_SCHEDULED) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Recursively reconstruct the task's inputs, if necessary. */
|
|
|
|
task_spec *spec = task_task_spec(task);
|
|
|
|
for (int64_t i = 0; i < task_num_args(spec); ++i) {
|
|
|
|
object_id arg_id = task_arg_id(spec, i);
|
|
|
|
reconstruct_object(state, arg_id);
|
|
|
|
}
|
|
|
|
handle_task_submitted(state, state->algorithm_state, spec);
|
|
|
|
}
|
|
|
|
|
2016-12-13 17:21:38 -08:00
|
|
|
void reconstruct_object_object_lookup_callback(object_id reconstruct_object_id,
|
|
|
|
int manager_count,
|
|
|
|
const char *manager_vector[],
|
|
|
|
void *user_context) {
|
2016-12-12 23:17:22 -08:00
|
|
|
/* Only continue reconstruction if we find that the object doesn't exist on
|
|
|
|
* any nodes. NOTE: This codepath is not responsible for checking if the
|
|
|
|
* object table entry is up-to-date. */
|
|
|
|
local_scheduler_state *state = user_context;
|
|
|
|
if (manager_count == 0) {
|
|
|
|
/* Look up the task that created the object in the result table. */
|
|
|
|
result_table_lookup(
|
|
|
|
state->db, reconstruct_object_id, (retry_info *) &photon_retry,
|
|
|
|
reconstruct_object_task_lookup_callback, (void *) state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void reconstruct_object(local_scheduler_state *state,
|
|
|
|
object_id reconstruct_object_id) {
|
|
|
|
LOG_DEBUG("Starting reconstruction");
|
|
|
|
/* TODO(swang): Track task lineage for puts. */
|
|
|
|
CHECK(state->db != NULL);
|
|
|
|
/* Determine if reconstruction is necessary by checking if the object exists
|
|
|
|
* on a node. */
|
|
|
|
object_table_lookup(
|
|
|
|
state->db, reconstruct_object_id, (retry_info *) &photon_retry,
|
|
|
|
reconstruct_object_object_lookup_callback, (void *) state);
|
2016-10-04 16:25:11 -07:00
|
|
|
}
|
2016-10-04 12:55:10 -07:00
|
|
|
|
2016-12-08 19:14:10 -08:00
|
|
|
void process_message(event_loop *loop,
|
|
|
|
int client_sock,
|
|
|
|
void *context,
|
2016-10-04 12:55:10 -07:00
|
|
|
int events) {
|
2016-12-12 23:17:22 -08:00
|
|
|
local_scheduler_state *state = context;
|
2016-10-04 12:55:10 -07:00
|
|
|
|
|
|
|
int64_t type;
|
2016-12-12 23:17:22 -08:00
|
|
|
read_buffer(client_sock, &type, state->input_buffer);
|
2016-10-04 12:55:10 -07:00
|
|
|
|
2016-10-18 18:27:43 -07:00
|
|
|
LOG_DEBUG("New event of type %" PRId64, type);
|
|
|
|
|
2016-10-04 12:55:10 -07:00
|
|
|
switch (type) {
|
|
|
|
case SUBMIT_TASK: {
|
2016-12-12 23:17:22 -08:00
|
|
|
task_spec *spec = (task_spec *) utarray_front(state->input_buffer);
|
|
|
|
handle_task_submitted(state, state->algorithm_state, spec);
|
2016-10-04 12:55:10 -07:00
|
|
|
} break;
|
|
|
|
case TASK_DONE: {
|
|
|
|
} break;
|
|
|
|
case GET_TASK: {
|
2016-10-18 18:27:43 -07:00
|
|
|
worker_index *wi;
|
2016-12-12 23:17:22 -08:00
|
|
|
HASH_FIND_INT(state->worker_index, &client_sock, wi);
|
|
|
|
handle_worker_available(state, state->algorithm_state, wi->worker_index);
|
|
|
|
} break;
|
|
|
|
case RECONSTRUCT_OBJECT: {
|
|
|
|
object_id *obj_id = (object_id *) utarray_front(state->input_buffer);
|
|
|
|
reconstruct_object(state, *obj_id);
|
2016-10-04 12:55:10 -07:00
|
|
|
} break;
|
|
|
|
case DISCONNECT_CLIENT: {
|
|
|
|
LOG_INFO("Disconnecting client on fd %d", client_sock);
|
|
|
|
event_loop_remove_file(loop, client_sock);
|
|
|
|
} break;
|
|
|
|
case LOG_MESSAGE: {
|
|
|
|
} break;
|
|
|
|
default:
|
|
|
|
/* This code should be unreachable. */
|
|
|
|
CHECK(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-08 19:14:10 -08:00
|
|
|
void new_client_connection(event_loop *loop,
|
|
|
|
int listener_sock,
|
|
|
|
void *context,
|
2016-10-04 12:55:10 -07:00
|
|
|
int events) {
|
2016-12-12 23:17:22 -08:00
|
|
|
local_scheduler_state *state = context;
|
2016-10-04 12:55:10 -07:00
|
|
|
int new_socket = accept_client(listener_sock);
|
2016-12-12 23:17:22 -08:00
|
|
|
event_loop_add_file(loop, new_socket, EVENT_LOOP_READ, process_message,
|
|
|
|
state);
|
2016-11-02 00:39:35 -07:00
|
|
|
LOG_DEBUG("new connection with fd %d", new_socket);
|
2016-10-18 18:27:43 -07:00
|
|
|
/* Add worker to list of workers. */
|
|
|
|
/* TODO(pcm): Where shall we free this? */
|
|
|
|
worker_index *new_worker_index = malloc(sizeof(worker_index));
|
|
|
|
new_worker_index->sock = new_socket;
|
2016-12-12 23:17:22 -08:00
|
|
|
new_worker_index->worker_index = utarray_len(state->workers);
|
|
|
|
HASH_ADD_INT(state->worker_index, sock, new_worker_index);
|
2016-11-22 17:04:24 -08:00
|
|
|
worker worker;
|
|
|
|
memset(&worker, 0, sizeof(worker));
|
|
|
|
worker.sock = new_socket;
|
2016-12-12 23:17:22 -08:00
|
|
|
utarray_push_back(state->workers, &worker);
|
2016-10-04 12:55:10 -07:00
|
|
|
}
|
|
|
|
|
2016-10-05 18:07:08 -07:00
|
|
|
/* We need this code so we can clean up when we get a SIGTERM signal. */
|
|
|
|
|
|
|
|
local_scheduler_state *g_state;
|
|
|
|
|
|
|
|
void signal_handler(int signal) {
|
|
|
|
if (signal == SIGTERM) {
|
|
|
|
free_local_scheduler(g_state);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* End of the cleanup code. */
|
|
|
|
|
2016-11-18 19:57:51 -08:00
|
|
|
void handle_task_scheduled_callback(task *original_task, void *user_context) {
|
2016-12-04 15:51:03 -08:00
|
|
|
handle_task_scheduled(g_state, g_state->algorithm_state,
|
2016-11-18 19:57:51 -08:00
|
|
|
task_task_spec(original_task));
|
|
|
|
}
|
|
|
|
|
2016-10-18 18:27:43 -07:00
|
|
|
void start_server(const char *socket_name,
|
|
|
|
const char *redis_addr,
|
|
|
|
int redis_port,
|
2016-12-04 17:08:16 -08:00
|
|
|
const char *plasma_store_socket_name,
|
2016-12-12 23:17:22 -08:00
|
|
|
const char *plasma_manager_socket_name,
|
2016-12-13 17:21:38 -08:00
|
|
|
const char *plasma_manager_address,
|
2016-12-12 23:17:22 -08:00
|
|
|
bool global_scheduler_exists) {
|
2016-11-02 00:09:04 -07:00
|
|
|
int fd = bind_ipc_sock(socket_name, true);
|
2016-10-04 16:25:11 -07:00
|
|
|
event_loop *loop = event_loop_create();
|
2016-12-13 17:21:38 -08:00
|
|
|
g_state =
|
|
|
|
init_local_scheduler(loop, redis_addr, redis_port,
|
|
|
|
plasma_store_socket_name, plasma_manager_socket_name,
|
|
|
|
plasma_manager_address, global_scheduler_exists);
|
2016-10-04 12:55:10 -07:00
|
|
|
|
2016-11-18 19:57:51 -08:00
|
|
|
/* Register a callback for registering new clients. */
|
2016-10-05 18:07:08 -07:00
|
|
|
event_loop_add_file(loop, fd, EVENT_LOOP_READ, new_client_connection,
|
|
|
|
g_state);
|
2016-11-18 19:57:51 -08:00
|
|
|
/* Subscribe to receive notifications about tasks that are assigned to this
|
|
|
|
* local scheduler by the global scheduler. TODO(rkn): we also need to get any
|
|
|
|
* tasks that were assigned to this local scheduler before the call to
|
|
|
|
* subscribe. */
|
2016-11-19 12:19:49 -08:00
|
|
|
retry_info retry;
|
|
|
|
memset(&retry, 0, sizeof(retry));
|
|
|
|
retry.num_retries = 0;
|
|
|
|
retry.timeout = 100;
|
|
|
|
retry.fail_callback = NULL;
|
2016-12-04 15:51:03 -08:00
|
|
|
if (g_state->db != NULL) {
|
|
|
|
task_table_subscribe(g_state->db, get_db_client_id(g_state->db),
|
2016-11-18 19:57:51 -08:00
|
|
|
TASK_STATUS_SCHEDULED, handle_task_scheduled_callback,
|
|
|
|
NULL, &retry, NULL, NULL);
|
|
|
|
}
|
|
|
|
/* Run event loop. */
|
2016-10-04 12:55:10 -07:00
|
|
|
event_loop_run(loop);
|
|
|
|
}
|
|
|
|
|
2016-12-12 23:17:22 -08:00
|
|
|
/* Only declare the main function if we are not in testing mode, since the test
|
|
|
|
* suite has its own declaration of main. */
|
|
|
|
#ifndef PHOTON_TEST
|
2016-10-04 12:55:10 -07:00
|
|
|
int main(int argc, char *argv[]) {
|
2016-10-05 18:07:08 -07:00
|
|
|
signal(SIGTERM, signal_handler);
|
2016-10-04 12:55:10 -07:00
|
|
|
/* Path of the listening socket of the local scheduler. */
|
|
|
|
char *scheduler_socket_name = NULL;
|
|
|
|
/* IP address and port of redis. */
|
|
|
|
char *redis_addr_port = NULL;
|
2016-10-18 18:27:43 -07:00
|
|
|
/* Socket name for the local Plasma store. */
|
2016-12-04 17:08:16 -08:00
|
|
|
char *plasma_store_socket_name = NULL;
|
|
|
|
/* Socket name for the local Plasma manager. */
|
|
|
|
char *plasma_manager_socket_name = NULL;
|
2016-12-13 17:21:38 -08:00
|
|
|
/* Address for the plasma manager associated with this Photon instance. */
|
|
|
|
char *plasma_manager_address = NULL;
|
2016-10-04 12:55:10 -07:00
|
|
|
int c;
|
2016-12-12 23:17:22 -08:00
|
|
|
bool global_scheduler_exists = true;
|
2016-12-13 17:21:38 -08:00
|
|
|
while ((c = getopt(argc, argv, "s:r:p:m:ga:")) != -1) {
|
2016-10-04 12:55:10 -07:00
|
|
|
switch (c) {
|
|
|
|
case 's':
|
|
|
|
scheduler_socket_name = optarg;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
redis_addr_port = optarg;
|
|
|
|
break;
|
2016-10-18 18:27:43 -07:00
|
|
|
case 'p':
|
2016-12-04 17:08:16 -08:00
|
|
|
plasma_store_socket_name = optarg;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
plasma_manager_socket_name = optarg;
|
2016-10-18 18:27:43 -07:00
|
|
|
break;
|
2016-12-12 23:17:22 -08:00
|
|
|
case 'g':
|
|
|
|
global_scheduler_exists = false;
|
|
|
|
break;
|
2016-12-13 17:21:38 -08:00
|
|
|
case 'a':
|
|
|
|
plasma_manager_address = optarg;
|
|
|
|
break;
|
2016-10-04 12:55:10 -07:00
|
|
|
default:
|
2016-11-10 18:13:26 -08:00
|
|
|
LOG_FATAL("unknown option %c", c);
|
2016-10-04 12:55:10 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!scheduler_socket_name) {
|
2016-11-10 18:13:26 -08:00
|
|
|
LOG_FATAL("please specify socket for incoming connections with -s switch");
|
2016-10-04 12:55:10 -07:00
|
|
|
}
|
2016-12-04 17:08:16 -08:00
|
|
|
if (!plasma_store_socket_name) {
|
|
|
|
LOG_FATAL(
|
|
|
|
"please specify socket for connecting to Plasma store with -p switch");
|
2016-10-18 18:27:43 -07:00
|
|
|
}
|
2016-11-18 19:57:51 -08:00
|
|
|
if (!redis_addr_port) {
|
|
|
|
/* Start the local scheduler without connecting to Redis. In this case, all
|
|
|
|
* submitted tasks will be queued and scheduled locally. */
|
2016-12-04 17:08:16 -08:00
|
|
|
if (plasma_manager_socket_name) {
|
|
|
|
LOG_FATAL(
|
|
|
|
"if a plasma manager socket name is provided with the -m switch, "
|
|
|
|
"then a redis address must be provided with the -r switch");
|
|
|
|
}
|
|
|
|
start_server(scheduler_socket_name, NULL, -1, plasma_store_socket_name,
|
2016-12-13 17:21:38 -08:00
|
|
|
NULL, plasma_manager_address, global_scheduler_exists);
|
2016-11-18 19:57:51 -08:00
|
|
|
} else {
|
|
|
|
/* Parse the Redis address into an IP address and a port. */
|
|
|
|
char redis_addr[16] = {0};
|
|
|
|
char redis_port[6] = {0};
|
2016-11-19 12:19:49 -08:00
|
|
|
int num_assigned =
|
|
|
|
sscanf(redis_addr_port, "%15[0-9.]:%5[0-9]", redis_addr, redis_port);
|
|
|
|
if (num_assigned != 2) {
|
2016-11-18 19:57:51 -08:00
|
|
|
LOG_FATAL(
|
|
|
|
"if a redis address is provided with the -r switch, it should be "
|
|
|
|
"formatted like 127.0.0.1:6379");
|
|
|
|
}
|
2016-12-04 17:08:16 -08:00
|
|
|
if (!plasma_manager_socket_name) {
|
|
|
|
LOG_FATAL(
|
|
|
|
"please specify socket for connecting to Plasma manager with -m "
|
|
|
|
"switch");
|
|
|
|
}
|
2016-11-18 19:57:51 -08:00
|
|
|
start_server(scheduler_socket_name, &redis_addr[0], atoi(redis_port),
|
2016-12-12 23:17:22 -08:00
|
|
|
plasma_store_socket_name, plasma_manager_socket_name,
|
2016-12-13 17:21:38 -08:00
|
|
|
plasma_manager_address, global_scheduler_exists);
|
2016-10-04 12:55:10 -07:00
|
|
|
}
|
|
|
|
}
|
2016-12-12 23:17:22 -08:00
|
|
|
#endif
|