cctools
taskvine.h
Go to the documentation of this file.
1 /*
2 Copyright (C) 2022- The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef TASKVINE_H
8 #define TASKVINE_H
9 
10 #include <sys/types.h>
11 #include "timestamp.h"
12 #include "category.h"
13 #include "rmsummary.h"
14 
15 struct vine_manager;
16 struct vine_task;
17 struct vine_file;
18 
37 #define VINE_DEFAULT_PORT 9123
38 #define VINE_RANDOM_PORT 0
39 #define VINE_WAIT_FOREVER -1
43 typedef enum {
46  VINE_WATCH = 2,
53 
55 typedef enum {
61 
62 
64 typedef enum {
68 
69 
71 typedef enum {
79 
84 typedef enum {
89  VINE_RESULT_SIGNAL = 1 << 3,
101 } vine_result_t;
102 
105 typedef enum {
110 
119 
123 
126 
127  VINE_ALLOCATION_MODE_GREEDY_BUCKETING = CATEGORY_ALLOCATION_MODE_GREEDY_BUCKETING,
128 
129  VINE_ALLOCATION_MODE_EXHAUSTIVE_BUCKETING = CATEGORY_ALLOCATION_MODE_EXHAUSTIVE_BUCKETING
131 
134 struct vine_stats {
135  /* Stats for the current state of workers: */
142  /* Cumulative stats for workers: */
151  /* Stats for the current state of tasks: */
157  /* Cumulative stats for tasks: */
165  /* All times in microseconds */
166  /* A time_when_* refers to an instant in time, otherwise it refers to a length of time. */
167 
168  /* Master time statistics: */
180  /* Workers time statistics: */
185  /* BW statistics */
186  int64_t bytes_sent;
187  int64_t bytes_received;
188  double bandwidth;
190  /* resources statistics */
199  int64_t total_cores;
200  int64_t total_memory;
201  int64_t total_disk;
202  int64_t total_gpus;
204  int64_t committed_cores;
206  int64_t committed_disk;
207  int64_t committed_gpus;
209  int64_t max_cores;
210  int64_t max_memory;
211  int64_t max_disk;
212  int64_t max_gpus;
214  int64_t min_cores;
215  int64_t min_memory;
216  int64_t min_disk;
217  int64_t min_gpus;
219  int64_t inuse_cache;
220 };
221 
225 
234 struct vine_task *vine_task_create(const char *full_command);
235 
240 void vine_task_delete(struct vine_task *t);
241 
246 void vine_task_set_command( struct vine_task *t, const char *cmd );
247 
252 void vine_task_needs_library( struct vine_task *t, const char *name );
253 
258 void vine_task_provides_library( struct vine_task *t, const char *name );
259 
260 
265 void vine_task_set_function_slots( struct vine_task *t, int nslots );
266 
267 
276 int vine_task_add_input( struct vine_task *t, struct vine_file *f, const char *remote_name, vine_mount_flags_t flags );
277 
286 int vine_task_add_output( struct vine_task *t, struct vine_file *f, const char *remote_name, vine_mount_flags_t flags );
287 
293 void vine_task_set_retries( struct vine_task *t, int64_t max_retries );
294 
300 void vine_task_set_max_forsaken( struct vine_task *t, int64_t max_forsaken );
301 
307 void vine_task_set_memory( struct vine_task *t, int64_t memory );
308 
314 void vine_task_set_disk( struct vine_task *t, int64_t disk );
315 
321 void vine_task_set_cores( struct vine_task *t, int cores );
322 
328 void vine_task_set_gpus( struct vine_task *t, int gpus );
329 
337 void vine_task_set_time_end( struct vine_task *t, int64_t useconds );
338 
346 void vine_task_set_time_start( struct vine_task *t, int64_t useconds );
347 
355 void vine_task_set_time_max( struct vine_task *t, int64_t seconds );
356 
363 void vine_task_set_time_min( struct vine_task *t, int64_t seconds );
364 
371 void vine_task_set_tag(struct vine_task *t, const char *tag);
372 
378 void vine_task_set_category(struct vine_task *t, const char *category);
379 
384 void vine_task_add_feature(struct vine_task *t, const char *name);
385 
392 void vine_task_set_priority(struct vine_task *t, double priority );
393 
399 void vine_task_set_env_var( struct vine_task *t, const char *name, const char *value );
400 
406 void vine_task_set_scheduler(struct vine_task *t, vine_schedule_t algorithm);
407 
414 int vine_task_set_monitor_output(struct vine_task *t, const char *monitor_output);
415 
421 const char * vine_task_get_command( struct vine_task *t );
422 
428 const char * vine_task_get_tag( struct vine_task *t );
429 
435 const char * vine_task_get_category( struct vine_task *t );
436 
442 int vine_task_get_id( struct vine_task *t );
443 
455 vine_result_t vine_task_get_result( struct vine_task *t );
456 
461 const char *vine_result_string(vine_result_t result);
462 
463 
472 int vine_task_get_exit_code( struct vine_task *t );
473 
481 const char * vine_task_get_stdout( struct vine_task *t );
482 
490 const char * vine_task_get_addrport( struct vine_task *t );
491 
499 const char * vine_task_get_hostname( struct vine_task *t );
500 
519 int64_t vine_task_get_metric( struct vine_task *t, const char *name );
520 
526 void vine_task_set_resources(struct vine_task *t, const struct rmsummary *rm );
527 
534 const struct rmsummary *vine_task_get_resources( struct vine_task *t, const char *name );
535 
585 int vine_task_set_snapshot_file(struct vine_task *t, struct vine_file *monitor_snapshot_file);
586 
595 int vine_task_add_starch_package(struct vine_task *t, struct vine_file *f);
596 
605 int vine_task_add_poncho_package(struct vine_task *t, struct vine_file *f);
606 
622 int vine_task_add_execution_context(struct vine_task *t, struct vine_file *f);
623 
624 /* Deprecated alias for vine_task_add_execution_context. */
625 int vine_task_add_environment(struct vine_task *t, struct vine_file *f);
626 
628 
632 
641 const char * vine_file_contents( struct vine_file *f );
642 
647 size_t vine_file_size( struct vine_file *f );
648 
660 struct vine_file * vine_declare_file( struct vine_manager *m, const char *source, vine_cache_level_t cache, vine_file_flags_t flags );
661 
673 struct vine_file * vine_declare_url( struct vine_manager *m, const char *url, vine_cache_level_t cache, vine_file_flags_t flags );
674 
691 struct vine_file * vine_declare_xrootd( struct vine_manager *m, const char *source, struct vine_file *proxy, struct vine_file *env, vine_cache_level_t cache, vine_file_flags_t flags );
692 
708 struct vine_file * vine_declare_chirp( struct vine_manager *m, const char *server, const char *source, struct vine_file *ticket, struct vine_file *env, vine_cache_level_t cache, vine_file_flags_t flags );
709 
710 
717 struct vine_file * vine_declare_temp( struct vine_manager *m );
718 
731 struct vine_file * vine_declare_buffer( struct vine_manager *m, const char *buffer, size_t size, vine_cache_level_t cache, vine_file_flags_t flags );
732 
750 struct vine_file *vine_declare_mini_task( struct vine_manager *m, struct vine_task *mini_task, const char *name, vine_cache_level_t cache, vine_file_flags_t flags);
751 
765 struct vine_file * vine_declare_untar( struct vine_manager *m, struct vine_file *f, vine_cache_level_t cache, vine_file_flags_t flags);
766 
778 struct vine_file * vine_declare_poncho( struct vine_manager *m, struct vine_file *f, vine_cache_level_t cache, vine_file_flags_t flags );
779 
791 struct vine_file * vine_declare_starch( struct vine_manager *m, struct vine_file *f, vine_cache_level_t cache, vine_file_flags_t flags );
792 
802 const char * vine_fetch_file( struct vine_manager *m, struct vine_file *f );
803 
813 void vine_undeclare_file(struct vine_manager *m, struct vine_file *f );
814 
816 
820 
837 struct vine_manager *vine_create(int port);
838 
839 
848 struct vine_manager *vine_ssl_create(int port, const char *key, const char *cert);
849 
854 void vine_delete(struct vine_manager *m);
855 
864 int vine_submit(struct vine_manager *m, struct vine_task *t);
865 
872 void vine_manager_install_library( struct vine_manager *m, struct vine_task *t, const char *name );
873 
878 void vine_manager_remove_library( struct vine_manager *m, const char *name );
879 
894 struct vine_task *vine_wait(struct vine_manager *m, int timeout);
895 
896 
904 struct vine_task *vine_wait_for_tag(struct vine_manager *m, const char *tag, int timeout);
905 
913 struct vine_task *vine_wait_for_task_id(struct vine_manager *m, int task_id, int timeout);
914 
926 int vine_hungry(struct vine_manager *m);
927 
935 int vine_empty(struct vine_manager *m);
936 
943 int vine_port(struct vine_manager *m);
944 
949 void vine_set_name(struct vine_manager *m, const char *name);
950 
955 const char *vine_get_name(struct vine_manager *m);
956 
966 int vine_enable_monitoring(struct vine_manager *m, int watchdog, int time_series);
967 
969 int vine_enable_peer_transfers(struct vine_manager *m);
970 
972 int vine_disable_peer_transfers(struct vine_manager *m);
973 
984 int vine_set_task_id_min(struct vine_manager *m, int minid);
985 
990 void vine_block_host(struct vine_manager *m, const char *hostname);
991 
999 void vine_block_host_with_timeout(struct vine_manager *m, const char *hostname, time_t seconds);
1000 
1001 
1006 void vine_unblock_host(struct vine_manager *m, const char *hostname);
1007 
1011 void vine_unblock_all(struct vine_manager *m);
1012 
1017 void vine_get_stats(struct vine_manager *m, struct vine_stats *s);
1018 
1024 void vine_get_stats_category(struct vine_manager *m, const char *c, struct vine_stats *s);
1025 
1026 
1031 char *vine_get_status(struct vine_manager *m, const char *request);
1032 
1033 
1038 struct rmsummary **vine_summarize_workers(struct vine_manager *m);
1039 
1044 void vine_set_bandwidth_limit(struct vine_manager *m, const char *bandwidth);
1045 
1050 double vine_get_effective_bandwidth(struct vine_manager *m);
1051 
1062 int vine_enable_disconnect_slow_workers(struct vine_manager *m, double multiplier);
1063 
1064 
1073 int vine_enable_disconnect_slow_workers_category(struct vine_manager *m, const char *category, double multiplier);
1074 
1075 
1084 int vine_set_draining_by_hostname(struct vine_manager *m, const char *hostname, int drain_flag);
1085 
1092 int vine_set_category_mode(struct vine_manager *m, const char *category, vine_category_mode_t mode);
1093 
1099 void vine_set_category_max_concurrent(struct vine_manager *m, const char *category, int max_concurrent);
1100 
1108 int vine_enable_category_resource(struct vine_manager *m, const char *category, const char *resource, int autolabel);
1109 
1115 void vine_set_scheduler(struct vine_manager *m, vine_schedule_t algorithm);
1116 
1121 void vine_set_priority(struct vine_manager *m, int priority);
1122 
1131 void vine_set_tasks_left_count(struct vine_manager *m, int ntasks);
1132 
1137 void vine_set_catalog_servers(struct vine_manager *m, const char *hosts);
1138 
1139 /* Send updates to the catalog server.
1140 @param m A manager object
1141 */
1142 void vine_update_catalog(struct vine_manager *m);
1143 
1154 void vine_set_property( struct vine_manager *m, const char *name, const char *value );
1155 
1162 int vine_cancel_by_task_id(struct vine_manager *m, int id);
1163 
1170 int vine_cancel_by_task_tag(struct vine_manager *m, const char *tag);
1171 
1177 int vine_cancel_all(struct vine_manager *m);
1178 
1185 int vine_enable_debug_log( const char *logfile );
1186 
1192 int vine_enable_perf_log(struct vine_manager *m, const char *logfile);
1193 
1199 int vine_enable_transactions_log(struct vine_manager *m, const char *logfile);
1200 
1206 int vine_enable_taskgraph_log(struct vine_manager *m, const char *logfile);
1207 
1212 int vine_workers_shutdown(struct vine_manager *m, int n);
1213 
1214 
1220 void vine_set_password( struct vine_manager *m, const char *password );
1221 
1228 int vine_set_password_file( struct vine_manager *m, const char *file );
1229 
1234 void vine_set_keepalive_interval(struct vine_manager *m, int interval);
1235 
1240 void vine_set_keepalive_timeout(struct vine_manager *m, int timeout);
1241 
1247 void vine_set_manager_preferred_connection(struct vine_manager *m, const char *preferred_connection);
1248 
1278 int vine_tune(struct vine_manager *m, const char *name, double value);
1279 
1285 void vine_set_resources_max(struct vine_manager *m, const struct rmsummary *rm);
1286 
1292 void vine_set_resources_min(struct vine_manager *m, const struct rmsummary *rm);
1293 
1299 void vine_set_category_resources_max(struct vine_manager *m, const char *category, const struct rmsummary *rm);
1300 
1306 void vine_set_category_resources_min(struct vine_manager *m, const char *category, const struct rmsummary *rm);
1307 
1313 void vine_set_category_first_allocation_guess(struct vine_manager *m, const char *category, const struct rmsummary *rm);
1314 
1320 void vine_initialize_categories(struct vine_manager *m, struct rmsummary *max, const char *summaries_file);
1321 
1325 void vine_set_runtime_info_path(const char *path);
1326 
1327 
1332 void vine_log_debug_app(struct vine_manager *q, const char *entry);
1333 
1338 void vine_log_txn_app(struct vine_manager *q, const char *entry);
1339 
1340 
1341 
1343 
1344 #endif
vine_cancel_by_task_id
int vine_cancel_by_task_id(struct vine_manager *m, int id)
Cancel a submitted task using its task id.
vine_hungry
int vine_hungry(struct vine_manager *m)
Determine whether the manager is 'hungry' for more tasks.
vine_task_set_resources
void vine_task_set_resources(struct vine_task *t, const struct rmsummary *rm)
Set the expected resource consumption of a task before execution.
vine_stats::max_memory
int64_t max_memory
The largest memory size in MB observed among the connected workers.
Definition: taskvine.h:210
VINE_MOUNT_MKDIR
@ VINE_MOUNT_MKDIR
Create this empty output directory in the task sandbox prior to execution.
Definition: taskvine.h:51
category.h
vine_task_get_addrport
const char * vine_task_get_addrport(struct vine_task *t)
Get the address and port of the worker on which the task ran.
VINE_RESULT_SUCCESS
@ VINE_RESULT_SUCCESS
The task ran successfully, and its Unix exit code is given by vine_task_get_exit_code.
Definition: taskvine.h:85
vine_fetch_file
const char * vine_fetch_file(struct vine_manager *m, struct vine_file *f)
Fetch the contents of a file.
vine_task_set_gpus
void vine_task_set_gpus(struct vine_task *t, int gpus)
Specify the number of gpus required by a task.
vine_stats::time_scheduling
timestamp_t time_scheduling
Total time spend matching tasks to workers.
Definition: taskvine.h:178
VINE_FAILURE_ONLY
@ VINE_FAILURE_ONLY
Only return this output file if the task failed.
Definition: taskvine.h:47
vine_set_draining_by_hostname
int vine_set_draining_by_hostname(struct vine_manager *m, const char *hostname, int drain_flag)
Set the draining mode per worker hostname.
vine_stats::time_internal
timestamp_t time_internal
Total time the manager spents in internal processing.
Definition: taskvine.h:175
vine_block_host_with_timeout
void vine_block_host_with_timeout(struct vine_manager *m, const char *hostname, time_t seconds)
Block workers in hostname from a manager, but remove block after timeout seconds.
vine_empty
int vine_empty(struct vine_manager *m)
Determine whether the manager is empty.
vine_stats::workers_slow
int workers_slow
Total number of workers disconnected for being too slow.
Definition: taskvine.h:147
vine_stats::time_status_msgs
timestamp_t time_status_msgs
Total time spent sending and receiving status messages to and from workers, including workers' standa...
Definition: taskvine.h:174
vine_wait_for_task_id
struct vine_task * vine_wait_for_task_id(struct vine_manager *m, int task_id, int timeout)
Wait for a task with a given task_id to complete.
vine_task_create
struct vine_task * vine_task_create(const char *full_command)
Create a new task object.
vine_enable_perf_log
int vine_enable_perf_log(struct vine_manager *m, const char *logfile)
Add a performance log file that records cummulative statistics of the connected workers and submitted...
VINE_TRANSFER_ALWAYS
@ VINE_TRANSFER_ALWAYS
Always transfer this file when needed.
Definition: taskvine.h:44
VINE_MOUNT_SYMLINK
@ VINE_MOUNT_SYMLINK
Permit this directory to be mounted via symlink instead of hardlink.
Definition: taskvine.h:50
vine_declare_file
struct vine_file * vine_declare_file(struct vine_manager *m, const char *source, vine_cache_level_t cache, vine_file_flags_t flags)
Declare a file object from a local file.
vine_set_category_max_concurrent
void vine_set_category_max_concurrent(struct vine_manager *m, const char *category, int max_concurrent)
Set a maximum number of tasks of this category that can execute concurrently.
category
Definition: category.h:69
vine_enable_category_resource
int vine_enable_category_resource(struct vine_manager *m, const char *category, const char *resource, int autolabel)
Turn on or off first-allocation labeling for a given category and resource.
vine_declare_xrootd
struct vine_file * vine_declare_xrootd(struct vine_manager *m, const char *source, struct vine_file *proxy, struct vine_file *env, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object of a remote file accessible from an xrootd server.
VINE_UNLINK_WHEN_DONE
@ VINE_UNLINK_WHEN_DONE
Whether to delete the file when its reference count is 0.
Definition: taskvine.h:66
vine_enable_transactions_log
int vine_enable_transactions_log(struct vine_manager *m, const char *logfile)
Add a log file that records the states of the connected workers and tasks.
vine_stats::workers_joined
int workers_joined
Total number of worker connections that were established to the manager.
Definition: taskvine.h:143
vine_enable_disconnect_slow_workers
int vine_enable_disconnect_slow_workers(struct vine_manager *m, double multiplier)
Enable disconnect slow workers functionality for a given manager for tasks without an explicit catego...
vine_set_task_id_min
int vine_set_task_id_min(struct vine_manager *m, int minid)
Set the minimum task_id of future submitted tasks.
vine_stats::tasks_dispatched
int tasks_dispatched
Total number of tasks dispatch to workers.
Definition: taskvine.h:159
vine_wait
struct vine_task * vine_wait(struct vine_manager *m, int timeout)
Wait for a task to complete.
vine_stats::workers_released
int workers_released
Total number of worker connections that were asked by the manager to disconnect.
Definition: taskvine.h:145
vine_submit
int vine_submit(struct vine_manager *m, struct vine_task *t)
Submit a task to a manager.
VINE_RESULT_OUTPUT_TRANSFER_ERROR
@ VINE_RESULT_OUTPUT_TRANSFER_ERROR
The task failed because an output could be transfered to the manager (not enough disk space,...
Definition: taskvine.h:97
VINE_RESULT_LIBRARY_EXIT
@ VINE_RESULT_LIBRARY_EXIT
Task is a library that has terminated.
Definition: taskvine.h:100
vine_stats::total_memory
int64_t total_memory
Total memory in MB aggregated across the connected workers.
Definition: taskvine.h:200
vine_enable_peer_transfers
int vine_enable_peer_transfers(struct vine_manager *m)
Enable taskvine peer transfers to be scheduled by the manager.
vine_task_set_tag
void vine_task_set_tag(struct vine_task *t, const char *tag)
Attach a user defined string tag to the task.
vine_declare_untar
struct vine_file * vine_declare_untar(struct vine_manager *m, struct vine_file *f, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object by unpacking a tar archive.
VINE_RESULT_RESOURCE_EXHAUSTION
@ VINE_RESULT_RESOURCE_EXHAUSTION
The task used more resources than requested.
Definition: taskvine.h:90
vine_stats::time_application
timestamp_t time_application
Total time spent outside vine_wait.
Definition: taskvine.h:177
VINE_SCHEDULE_FCFS
@ VINE_SCHEDULE_FCFS
Select worker on a first-come-first-serve basis.
Definition: taskvine.h:73
vine_ssl_create
struct vine_manager * vine_ssl_create(int port, const char *key, const char *cert)
Create a new manager using SSL.
vine_result_string
const char * vine_result_string(vine_result_t result)
Explain result codes from tasks.
vine_stats::capacity_instantaneous
int capacity_instantaneous
The estimated number of tasks that this manager can support considering only the most recently comple...
Definition: taskvine.h:196
vine_set_resources_max
void vine_set_resources_max(struct vine_manager *m, const struct rmsummary *rm)
Sets the maximum resources a task without an explicit category ("default" category).
vine_stats::tasks_cancelled
int tasks_cancelled
Total number of tasks cancelled.
Definition: taskvine.h:162
vine_task_set_disk
void vine_task_set_disk(struct vine_task *t, int64_t disk)
Specify the amount of disk space required by a task.
vine_task_add_starch_package
int vine_task_add_starch_package(struct vine_task *t, struct vine_file *f)
Add a Starch package as an execution context.
vine_task_set_command
void vine_task_set_command(struct vine_task *t, const char *cmd)
Indicate the command to be executed.
CATEGORY_ALLOCATION_MODE_MAX_THROUGHPUT
@ CATEGORY_ALLOCATION_MODE_MAX_THROUGHPUT
As above, but maximizing throughput.
Definition: category.h:59
vine_set_resources_min
void vine_set_resources_min(struct vine_manager *m, const struct rmsummary *rm)
Sets the minimum resources a task without an explicit category ("default" category).
vine_cancel_all
int vine_cancel_all(struct vine_manager *m)
Cancel all submitted tasks and remove them from the manager.
vine_get_effective_bandwidth
double vine_get_effective_bandwidth(struct vine_manager *m)
Get current manager bandwidth.
vine_stats::tasks_waiting
int tasks_waiting
Number of tasks waiting to be dispatched.
Definition: taskvine.h:152
VINE_RESULT_MAX_RETRIES
@ VINE_RESULT_MAX_RETRIES
Currently unused.
Definition: taskvine.h:94
vine_workers_shutdown
int vine_workers_shutdown(struct vine_manager *m, int n)
Shut down workers connected to the manager.
vine_enable_monitoring
int vine_enable_monitoring(struct vine_manager *m, int watchdog, int time_series)
Enables resource monitoring for tasks.
vine_stats::inuse_cache
int64_t inuse_cache
Used disk space of declared files in MB aggregated across the connected workers.
Definition: taskvine.h:219
vine_unblock_host
void vine_unblock_host(struct vine_manager *m, const char *hostname)
Unblock host from a manager.
vine_task_add_input
int vine_task_add_input(struct vine_task *t, struct vine_file *f, const char *remote_name, vine_mount_flags_t flags)
Add a general file object as a input to a task.
VINE_RESULT_FORSAKEN
@ VINE_RESULT_FORSAKEN
The task failed, but it was not a task error.
Definition: taskvine.h:93
vine_task_set_retries
void vine_task_set_retries(struct vine_task *t, int64_t max_retries)
Specify the number of times this task is retried on worker errors.
CATEGORY_ALLOCATION_MODE_GREEDY_BUCKETING
@ CATEGORY_ALLOCATION_MODE_GREEDY_BUCKETING
Use the greedy bucketing algorithm to label resources.
Definition: category.h:61
vine_task_set_time_max
void vine_task_set_time_max(struct vine_task *t, int64_t seconds)
Specify the maximum time (in seconds) the task is allowed to run in a worker.
vine_declare_mini_task
struct vine_file * vine_declare_mini_task(struct vine_manager *m, struct vine_task *mini_task, const char *name, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object produced from a mini-task Attaches a task definition to produce an input file by...
VINE_PEER_NOSHARE
@ VINE_PEER_NOSHARE
Schedule this file to be shared between peers where available.
Definition: taskvine.h:65
VINE_SCHEDULE_FILES
@ VINE_SCHEDULE_FILES
Select worker that has the most data required by the task.
Definition: taskvine.h:74
vine_get_status
char * vine_get_status(struct vine_manager *m, const char *request)
Get manager information as json.
VINE_RESULT_OUTPUT_MISSING
@ VINE_RESULT_OUTPUT_MISSING
The task ran but failed to generate a specified output file.
Definition: taskvine.h:87
VINE_RETRACT_ON_RESET
@ VINE_RETRACT_ON_RESET
Remove this file from the mount lists if the task is reset.
Definition: taskvine.h:49
vine_enable_taskgraph_log
int vine_enable_taskgraph_log(struct vine_manager *m, const char *logfile)
Add an output log that produces the taskgraph in Grapvhiz Dot format.
vine_unblock_all
void vine_unblock_all(struct vine_manager *m)
Unblock all host.
VINE_RESULT_FIXED_LOCATION_MISSING
@ VINE_RESULT_FIXED_LOCATION_MISSING
The task failed because no worker could satisfy the fixed location input file requirements.
Definition: taskvine.h:98
vine_stats::capacity_cores
int capacity_cores
The estimated number of workers' cores that this manager can effectively support.
Definition: taskvine.h:192
vine_task_provides_library
void vine_task_provides_library(struct vine_task *t, const char *name)
Set the library name provided by this task.
vine_task_add_output
int vine_task_add_output(struct vine_task *t, struct vine_file *f, const char *remote_name, vine_mount_flags_t flags)
Add a general file object as a output of a task.
vine_stats::committed_cores
int64_t committed_cores
Committed number of cores aggregated across the connected workers.
Definition: taskvine.h:204
vine_stats::workers_idle
int workers_idle
Number of workers that are not running a task.
Definition: taskvine.h:138
vine_undeclare_file
void vine_undeclare_file(struct vine_manager *m, struct vine_file *f)
Un-declare a file that was created by vine_declare_file or similar functions.
VINE_SCHEDULE_TIME
@ VINE_SCHEDULE_TIME
Select worker that has the fastest execution time on previous tasks.
Definition: taskvine.h:75
vine_stats::time_workers_execute_exhaustion
timestamp_t time_workers_execute_exhaustion
Total time workers spent executing tasks that exhausted resources.
Definition: taskvine.h:183
vine_stats::workers_idled_out
int workers_idled_out
Total number of worker that disconnected for being idle.
Definition: taskvine.h:146
VINE_ALLOCATION_MODE_MAX
@ VINE_ALLOCATION_MODE_MAX
When monitoring is enabled, tasks are tried with maximum specified values of cores,...
Definition: taskvine.h:118
vine_task_set_cores
void vine_task_set_cores(struct vine_task *t, int cores)
Specify the number of cores required by a task.
VINE_RESULT_STDOUT_MISSING
@ VINE_RESULT_STDOUT_MISSING
The task ran but its stdout has been truncated.
Definition: taskvine.h:88
vine_stats::tasks_submitted
int tasks_submitted
Total number of tasks submitted to the manager.
Definition: taskvine.h:158
VINE_ALLOCATION_MODE_MIN_WASTE
@ VINE_ALLOCATION_MODE_MIN_WASTE
As above, but tasks are first tried with an automatically computed allocation to minimize resource wa...
Definition: taskvine.h:122
vine_stats::capacity_disk
int capacity_disk
The estimated number of workers' MB of disk that this manager can effectively support.
Definition: taskvine.h:194
vine_task_add_poncho_package
int vine_task_add_poncho_package(struct vine_task *t, struct vine_file *f)
Add a Poncho package as an execution context.
vine_stats::time_polling
timestamp_t time_polling
Total time blocking waiting for worker communications (i.e., manager idle waiting for a worker messag...
Definition: taskvine.h:176
vine_stats::total_cores
int64_t total_cores
Total number of cores aggregated across the connected workers.
Definition: taskvine.h:199
vine_create
struct vine_manager * vine_create(int port)
Create a new manager.
vine_manager_remove_library
void vine_manager_remove_library(struct vine_manager *m, const char *name)
Indicate the library to be removed from all connected workers.
vine_declare_buffer
struct vine_file * vine_declare_buffer(struct vine_manager *m, const char *buffer, size_t size, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object from a data buffer.
VINE_CACHE_LEVEL_TASK
@ VINE_CACHE_LEVEL_TASK
Do not cache file at worker.
Definition: taskvine.h:56
vine_task_get_stdout
const char * vine_task_get_stdout(struct vine_task *t)
Get the standard output of the task.
vine_set_manager_preferred_connection
void vine_set_manager_preferred_connection(struct vine_manager *m, const char *preferred_connection)
Set the preference for using hostname over IP address to connect.
vine_stats::time_when_started
timestamp_t time_when_started
Absolute time at which the manager started.
Definition: taskvine.h:169
vine_mount_flags_t
vine_mount_flags_t
Select optional handling for input and output files: caching, unpacking, watching,...
Definition: taskvine.h:43
VINE_SCHEDULE_UNSET
@ VINE_SCHEDULE_UNSET
Internal use only.
Definition: taskvine.h:72
vine_task_set_scheduler
void vine_task_set_scheduler(struct vine_task *t, vine_schedule_t algorithm)
Select the scheduling algorithm for a single task.
vine_stats::tasks_failed
int tasks_failed
Total number of tasks completed and returned to user with result other than VINE_RESULT_SUCCESS.
Definition: taskvine.h:161
vine_task_set_monitor_output
int vine_task_set_monitor_output(struct vine_task *t, const char *monitor_output)
Specify a custom name for the monitoring summary.
vine_set_password_file
int vine_set_password_file(struct vine_manager *m, const char *file)
Add a mandatory password file that each worker must present.
CATEGORY_ALLOCATION_MODE_FIXED
@ CATEGORY_ALLOCATION_MODE_FIXED
When monitoring is disabled, all tasks run as WORK_QUEUE_ALLOCATION_MODE_FIXED.
Definition: category.h:36
vine_stats::min_gpus
int64_t min_gpus
The smallest number of gpus observed among the connected workers.
Definition: taskvine.h:217
vine_enable_debug_log
int vine_enable_debug_log(const char *logfile)
Turn on the debugging log output and send to the named file.
vine_set_priority
void vine_set_priority(struct vine_manager *m, int priority)
Change the priority for a given manager.
vine_stats::max_cores
int64_t max_cores
The highest number of cores observed among the connected workers.
Definition: taskvine.h:209
vine_declare_starch
struct vine_file * vine_declare_starch(struct vine_manager *m, struct vine_file *f, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object by unpacking a starch package.
vine_task_set_time_start
void vine_task_set_time_start(struct vine_task *t, int64_t useconds)
Specify the minimum start time allowed for the task (in microseconds since the Epoch).
vine_set_category_resources_min
void vine_set_category_resources_min(struct vine_manager *m, const char *category, const struct rmsummary *rm)
Sets the minimum resources a task in the category may use.
vine_schedule_t
vine_schedule_t
Select overall scheduling algorithm for matching tasks to workers.
Definition: taskvine.h:71
VINE_CACHE_LEVEL_WORKER
@ VINE_CACHE_LEVEL_WORKER
File remains in cache of worker until worker terminates.
Definition: taskvine.h:58
vine_stats::bytes_sent
int64_t bytes_sent
Total number of file bytes (not including protocol control msg bytes) sent out to the workers by the ...
Definition: taskvine.h:186
vine_stats::capacity_gpus
int capacity_gpus
The estimated number of workers' GPUs that this manager can effectively support.
Definition: taskvine.h:195
vine_stats::time_receive_good
timestamp_t time_receive_good
Total time spent in sending data to workers for tasks with result VINE_RESULT_SUCCESS.
Definition: taskvine.h:173
vine_task_needs_library
void vine_task_needs_library(struct vine_task *t, const char *name)
Set the library name required by this task.
vine_enable_disconnect_slow_workers_category
int vine_enable_disconnect_slow_workers_category(struct vine_manager *m, const char *category, double multiplier)
Enable disconnect slow workers functionality for a given category.
vine_stats::tasks_exhausted_attempts
int tasks_exhausted_attempts
Total number of task executions that failed given resource exhaustion.
Definition: taskvine.h:163
vine_task_get_id
int vine_task_get_id(struct vine_task *t)
Get the unique ID of the task.
vine_stats::time_workers_execute
timestamp_t time_workers_execute
Total time workers spent executing done tasks.
Definition: taskvine.h:181
vine_file_flags_t
vine_file_flags_t
Control sharing and garbage collection behavior of file objects.
Definition: taskvine.h:64
vine_task_set_memory
void vine_task_set_memory(struct vine_task *t, int64_t memory)
Specify the amount of disk space required by a task.
VINE_FIXED_LOCATION
@ VINE_FIXED_LOCATION
Never transfer input files with this flag to a worker for execution.
Definition: taskvine.h:45
vine_stats::time_send
timestamp_t time_send
Total time spent in sending tasks to workers (tasks descriptions, and input files....
Definition: taskvine.h:170
rmsummary
Definition: rmsummary.h:26
buffer
Definition: buffer.h:26
vine_task_set_time_min
void vine_task_set_time_min(struct vine_task *t, int64_t seconds)
Specify the minimum time (in seconds) the task is expected to run in a worker.
vine_set_password
void vine_set_password(struct vine_manager *m, const char *password)
Add a mandatory password that each worker must present.
vine_declare_poncho
struct vine_file * vine_declare_poncho(struct vine_manager *m, struct vine_file *f, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object by unpacking a poncho package.
vine_stats::total_gpus
int64_t total_gpus
Total number of gpus aggregated across the connected workers.
Definition: taskvine.h:202
vine_stats::workers_busy
int workers_busy
Number of workers that are running at least one task.
Definition: taskvine.h:139
vine_stats::bandwidth
double bandwidth
Average network bandwidth in MB/S observed by the manager when transferring to workers.
Definition: taskvine.h:188
timestamp_t
UINT64_T timestamp_t
A type to hold the current time, in microseconds since January 1st, 1970.
Definition: timestamp.h:20
vine_set_scheduler
void vine_set_scheduler(struct vine_manager *m, vine_schedule_t algorithm)
Change the worker selection algorithm.
vine_stats::min_cores
int64_t min_cores
The lowest number of cores observed among the connected workers.
Definition: taskvine.h:214
vine_set_bandwidth_limit
void vine_set_bandwidth_limit(struct vine_manager *m, const char *bandwidth)
Limit the manager bandwidth when transferring files to and from workers.
vine_declare_url
struct vine_file * vine_declare_url(struct vine_manager *m, const char *url, vine_cache_level_t cache, vine_file_flags_t flags)
Declare a file object from a remote URL.
vine_task_set_time_end
void vine_task_set_time_end(struct vine_task *t, int64_t useconds)
Specify the maximum end time allowed for the task (in microseconds since the Epoch).
VINE_RESULT_MAX_WALL_TIME
@ VINE_RESULT_MAX_WALL_TIME
The task ran for more than the specified time (relative since running in a worker).
Definition: taskvine.h:95
vine_stats::workers_able
int workers_able
Number of workers on which the largest task can run.
Definition: taskvine.h:140
vine_manager_install_library
void vine_manager_install_library(struct vine_manager *m, struct vine_task *t, const char *name)
Indicate the library to be installed on all workers connected to the manager.
vine_task_add_feature
void vine_task_add_feature(struct vine_task *t, const char *name)
Label the task with a user-defined feature.
vine_stats::min_memory
int64_t min_memory
The smallest memory size in MB observed among the connected workers.
Definition: taskvine.h:215
vine_stats::workers_init
int workers_init
Number of workers connected, but that have not send their available resources report yet.
Definition: taskvine.h:137
vine_stats::total_disk
int64_t total_disk
Total disk space in MB aggregated across the connected workers.
Definition: taskvine.h:201
vine_stats::max_disk
int64_t max_disk
The largest disk space in MB observed among the connected workers.
Definition: taskvine.h:211
VINE_RESULT_UNKNOWN
@ VINE_RESULT_UNKNOWN
The result could not be classified.
Definition: taskvine.h:92
vine_set_keepalive_timeout
void vine_set_keepalive_timeout(struct vine_manager *m, int timeout)
Change the keepalive timeout for identifying dead workers for a given manager.
vine_stats::workers_removed
int workers_removed
Total number of worker connections that were terminated.
Definition: taskvine.h:144
vine_log_debug_app
void vine_log_debug_app(struct vine_manager *q, const char *entry)
Adds a custom APPLICATION entry to the debug log.
vine_stats::workers_blocked
int workers_blocked
Total number of workers blocked by the manager.
Definition: taskvine.h:148
vine_summarize_workers
struct rmsummary ** vine_summarize_workers(struct vine_manager *m)
Summary data for all workers in buffer.
vine_stats::capacity_weighted
int capacity_weighted
The estimated number of tasks that this manager can support placing greater weight on the most recent...
Definition: taskvine.h:197
vine_set_keepalive_interval
void vine_set_keepalive_interval(struct vine_manager *m, int interval)
Change the keepalive interval for a given manager.
vine_stats::tasks_running
int tasks_running
Number of tasks currently executing at some worker.
Definition: taskvine.h:154
CATEGORY_ALLOCATION_MODE_EXHAUSTIVE_BUCKETING
@ CATEGORY_ALLOCATION_MODE_EXHAUSTIVE_BUCKETING
Use the exhaustive bucketing algorithm to label resources.
Definition: category.h:64
vine_stats::tasks_with_results
int tasks_with_results
Number of tasks with retrieved results and waiting to be returned to user.
Definition: taskvine.h:155
vine_set_category_resources_max
void vine_set_category_resources_max(struct vine_manager *m, const char *category, const struct rmsummary *rm)
Sets the maximum resources a task in the category may use.
vine_initialize_categories
void vine_initialize_categories(struct vine_manager *m, struct rmsummary *max, const char *summaries_file)
Initialize first value of categories.
vine_port
int vine_port(struct vine_manager *m)
Get the listening port of the manager.
vine_task_get_exit_code
int vine_task_get_exit_code(struct vine_task *t)
Get the Unix exit code of the task.
vine_stats::workers_lost
int workers_lost
Total number of worker connections that were unexpectedly lost.
Definition: taskvine.h:149
vine_task_get_metric
int64_t vine_task_get_metric(struct vine_task *t, const char *name)
Get a performance metric of a completed task.
vine_stats::committed_gpus
int64_t committed_gpus
Committed number of gpus aggregated across the connected workers.
Definition: taskvine.h:207
vine_result_t
vine_result_t
Possible outcomes for a task, returned by vine_task_get_result.
Definition: taskvine.h:84
vine_task_delete
void vine_task_delete(struct vine_task *t)
Delete a task.
vine_wait_for_tag
struct vine_task * vine_wait_for_tag(struct vine_manager *m, const char *tag, int timeout)
Wait for a task with a given task to complete.
vine_set_runtime_info_path
void vine_set_runtime_info_path(const char *path)
Sets the path where runtime info directories (logs and staging) are created.
vine_task_set_function_slots
void vine_task_set_function_slots(struct vine_task *t, int nslots)
Set the number of concurrent functions a library can run.
vine_stats::committed_disk
int64_t committed_disk
Committed disk space in MB aggregated across the connected workers.
Definition: taskvine.h:206
VINE_ALLOCATION_MODE_FIXED
@ VINE_ALLOCATION_MODE_FIXED
When monitoring is disabled, all tasks run as VINE_ALLOCATION_MODE_FIXED.
Definition: taskvine.h:109
vine_stats::time_workers_execute_good
timestamp_t time_workers_execute_good
Total time workers spent executing done tasks with result VINE_RESULT_SUCCESS.
Definition: taskvine.h:182
vine_file_contents
const char * vine_file_contents(struct vine_file *f)
Get the contents of a vine file.
vine_category_mode_t
vine_category_mode_t
Select how to allocate resources for similar tasks with vine_set_category_mode.
Definition: taskvine.h:105
vine_task_set_priority
void vine_task_set_priority(struct vine_task *t, double priority)
Specify the priority of this task relative to others in the manager.
vine_get_stats
void vine_get_stats(struct vine_manager *m, struct vine_stats *s)
Get manager statistics (only from manager)
VINE_SUCCESS_ONLY
@ VINE_SUCCESS_ONLY
Only return this output file if the task succeeded.
Definition: taskvine.h:48
VINE_ALLOCATION_MODE_MAX_THROUGHPUT
@ VINE_ALLOCATION_MODE_MAX_THROUGHPUT
As above, but maximizing throughput.
Definition: taskvine.h:125
vine_delete
void vine_delete(struct vine_manager *m)
Delete a manager.
vine_stats::max_gpus
int64_t max_gpus
The highest number of gpus observed among the connected workers.
Definition: taskvine.h:212
vine_set_property
void vine_set_property(struct vine_manager *m, const char *name, const char *value)
Add a global property to the manager which will be included in periodic reports to the catalog server...
VINE_RESULT_SIGNAL
@ VINE_RESULT_SIGNAL
The task was terminated with a signal.
Definition: taskvine.h:89
vine_cache_level_t
vine_cache_level_t
Control caching and sharing behavior of file objects.
Definition: taskvine.h:55
VINE_RESULT_CANCELLED
@ VINE_RESULT_CANCELLED
The task was cancelled by the caller.
Definition: taskvine.h:99
vine_stats::bytes_received
int64_t bytes_received
Total number of file bytes (not including protocol control msg bytes) received from the workers by th...
Definition: taskvine.h:187
vine_task_get_result
vine_result_t vine_task_get_result(struct vine_task *t)
Get the end result of the task.
vine_stats::time_send_good
timestamp_t time_send_good
Total time spent in sending data to workers for tasks with result VINE_RESULT_SUCCESS.
Definition: taskvine.h:172
vine_tune
int vine_tune(struct vine_manager *m, const char *name, double value)
Tune advanced parameters for manager.
vine_task_set_snapshot_file
int vine_task_set_snapshot_file(struct vine_task *t, struct vine_file *monitor_snapshot_file)
When monitoring, indicates a json-encoded file that instructs the monitor to take a snapshot of the t...
vine_get_stats_category
void vine_get_stats_category(struct vine_manager *m, const char *c, struct vine_stats *s)
Get the task statistics for the given category.
VINE_WATCH
@ VINE_WATCH
Watch the output file and send back changes as the task runs.
Definition: taskvine.h:46
vine_set_category_mode
int vine_set_category_mode(struct vine_manager *m, const char *category, vine_category_mode_t mode)
Turn on or off first-allocation labeling for a given category.
CATEGORY_ALLOCATION_MODE_MAX
@ CATEGORY_ALLOCATION_MODE_MAX
When monitoring is enabled, tasks are tried with maximum specified values of cores,...
Definition: category.h:43
vine_stats::tasks_done
int tasks_done
Total number of tasks completed and returned to user.
Definition: taskvine.h:160
vine_task_set_env_var
void vine_task_set_env_var(struct vine_task *t, const char *name, const char *value)
Specify an environment variable to be added to the task.
VINE_SCHEDULE_WORST
@ VINE_SCHEDULE_WORST
Select the worst fit worker (the worker with more unused resources).
Definition: taskvine.h:77
VINE_RESULT_INPUT_MISSING
@ VINE_RESULT_INPUT_MISSING
The task cannot be run due to a missing input file.
Definition: taskvine.h:86
vine_task_get_tag
const char * vine_task_get_tag(struct vine_task *t)
Get the tag associated with the task.
vine_task_get_category
const char * vine_task_get_category(struct vine_task *t)
Get the category associated with the task.
vine_task_set_max_forsaken
void vine_task_set_max_forsaken(struct vine_task *t, int64_t max_forsaken)
Specify the total number of times this task can be return to the manager without being executed.
vine_task_get_command
const char * vine_task_get_command(struct vine_task *t)
Get the command line of the task.
vine_declare_temp
struct vine_file * vine_declare_temp(struct vine_manager *m)
Create a scratch file object.
vine_block_host
void vine_block_host(struct vine_manager *m, const char *hostname)
Block workers in hostname from working for manager q.
vine_cancel_by_task_tag
int vine_cancel_by_task_tag(struct vine_manager *m, const char *tag)
Cancel a submitted task using its tag and remove it from manager.
vine_set_category_first_allocation_guess
void vine_set_category_first_allocation_guess(struct vine_manager *m, const char *category, const struct rmsummary *rm)
Set the initial guess for resource autolabeling for the given category.
vine_stats
Statistics describing a manager.
Definition: taskvine.h:134
VINE_SCHEDULE_RAND
@ VINE_SCHEDULE_RAND
Select a random worker.
Definition: taskvine.h:76
vine_disable_peer_transfers
int vine_disable_peer_transfers(struct vine_manager *m)
Disable taskvine peer transfers to be scheduled by the manager.
VINE_RESULT_MAX_END_TIME
@ VINE_RESULT_MAX_END_TIME
The task ran after the specified (absolute since epoch) end time.
Definition: taskvine.h:91
vine_task_get_hostname
const char * vine_task_get_hostname(struct vine_task *t)
Get the hostname of the worker on which the task ran.
VINE_CACHE_LEVEL_WORKFLOW
@ VINE_CACHE_LEVEL_WORKFLOW
File remains in cache of worker until workflow ends.
Definition: taskvine.h:57
vine_set_catalog_servers
void vine_set_catalog_servers(struct vine_manager *m, const char *hosts)
Specify the catalog server(s) the manager should report to.
vine_task_add_execution_context
int vine_task_add_execution_context(struct vine_task *t, struct vine_file *f)
Adds an execution context to the task.
vine_set_tasks_left_count
void vine_set_tasks_left_count(struct vine_manager *m, int ntasks)
Specify the number of tasks not yet submitted to the manager.
timestamp.h
vine_stats::workers_connected
int workers_connected
Number of workers currently connected to the manager.
Definition: taskvine.h:136
VINE_RESULT_RMONITOR_ERROR
@ VINE_RESULT_RMONITOR_ERROR
The task failed because the monitor did not produce a summary report.
Definition: taskvine.h:96
vine_set_name
void vine_set_name(struct vine_manager *m, const char *name)
Change the project name for a given manager.
vine_log_txn_app
void vine_log_txn_app(struct vine_manager *q, const char *entry)
Adds a custom APPLICATION entry to the transactions log.
vine_stats::capacity_memory
int capacity_memory
The estimated number of workers' MB of RAM that this manager can effectively support.
Definition: taskvine.h:193
vine_stats::capacity_tasks
int capacity_tasks
The estimated number of tasks that this manager can effectively support.
Definition: taskvine.h:191
vine_stats::committed_memory
int64_t committed_memory
Committed memory in MB aggregated across the connected workers.
Definition: taskvine.h:205
vine_stats::tasks_on_workers
int tasks_on_workers
Number of tasks currently dispatched to some worker.
Definition: taskvine.h:153
vine_declare_chirp
struct vine_file * vine_declare_chirp(struct vine_manager *m, const char *server, const char *source, struct vine_file *ticket, struct vine_file *env, vine_cache_level_t cache, vine_file_flags_t flags)
Create a file object of a remote file accessible from a chirp server.
vine_file_size
size_t vine_file_size(struct vine_file *f)
Get the length of a vine file.
vine_stats::min_disk
int64_t min_disk
The smallest disk space in MB observed among the connected workers.
Definition: taskvine.h:216
VINE_CACHE_LEVEL_FOREVER
@ VINE_CACHE_LEVEL_FOREVER
File remains at execution site when worker terminates.
Definition: taskvine.h:59
vine_task_set_category
void vine_task_set_category(struct vine_task *t, const char *category)
Label the task with the given category.
vine_task_get_resources
const struct rmsummary * vine_task_get_resources(struct vine_task *t, const char *name)
Get resource information (e.g., cores, memory, and disk) of a completed task.
CATEGORY_ALLOCATION_MODE_MIN_WASTE
@ CATEGORY_ALLOCATION_MODE_MIN_WASTE
As above, but tasks are first tried with an automatically computed allocation to minimize resource wa...
Definition: category.h:55
vine_stats::time_receive
timestamp_t time_receive
Total time spent in receiving results from workers (output files.).
Definition: taskvine.h:171
vine_get_name
const char * vine_get_name(struct vine_manager *m)
Get the project name of the manager.