-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDESCRIPTION
More file actions
executable file
·40 lines (40 loc) · 1.24 KB
/
DESCRIPTION
File metadata and controls
executable file
·40 lines (40 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Package: taskqueue
Type: Package
Title: Task Queue for Parallel Computing Based on PostgreSQL
Version: 0.2.0
Authors@R: person("Bangyou", "Zheng",
email = "bangyou.zheng@csiro.au",
role = c("aut", "cre"))
Description: Implements a task queue system for asynchronous parallel computing
using 'PostgreSQL' <https://www.postgresql.org/> as a backend. Designed for
embarrassingly parallel problems where tasks do not communicate with each other.
Dynamically distributes tasks to workers, handles uneven load balancing, and
allows new workers to join at any time. Particularly useful for running large
numbers of independent tasks on high-performance computing (HPC) clusters with
'SLURM' <https://slurm.schedmd.com/> job schedulers.
URL: https://taskqueue.bangyou.me/,
https://github.com/byzheng/taskqueue
BugReports: https://github.com/byzheng/taskqueue/issues
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.3.3
Depends:
R (>= 4.1.0)
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
Imports:
settings,
stats,
stringr,
RPostgres,
ggplot2,
whisker,
rlang,
shiny,
DBI,
ssh
Config/testthat/edition: 3
VignetteBuilder: knitr