File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -86,60 +86,60 @@ EXECUTOR_CONFIG=${EXECUTOR_CONFIG:-"r5.xlarge"}
86
86
# NOTE:
87
87
# - step 1 (host link extraction) can be run on smaller instances
88
88
# or "compute optimized" instance types
89
- # - webgraph construction (esp. for merged graphs including multiple monthyl crawls)
89
+ # - webgraph construction (esp. for merged graphs including multiple monthly crawls)
90
90
# needs instances with sufficient amount of RAM (32 GB or more)
91
91
# - assigning IDs in multiple partitions
92
92
# (see hostlinks_to_graph.py --vertex_partitions)
93
93
# reduces the memory requirements significantly
94
94
95
95
96
96
case " $EXECUTOR_CONFIG " in
97
- c[34567 ]* .xlarge )
97
+ c[5678 ]* .xlarge )
98
98
EXECUTOR_CORES=3
99
99
EXECUTOR_MEM=5g
100
100
NODEMANAGER_MEM_MB=$(( 6 * 1024 ))
101
101
;;
102
- c[34567 ]* .2xlarge )
102
+ c[5678 ]* .2xlarge )
103
103
EXECUTOR_CORES=6
104
104
EXECUTOR_MEM=10g
105
105
NODEMANAGER_MEM_MB=$(( 11 * 1024 ))
106
106
;;
107
- c[34567 ]* .4xlarge )
107
+ c[5678 ]* .4xlarge )
108
108
EXECUTOR_CORES=12
109
109
EXECUTOR_MEM=22g
110
110
NODEMANAGER_MEM_MB=$(( 24 * 1024 ))
111
111
;;
112
- r[34567 ]* .xlarge )
113
- EXECUTOR_CORES=3
112
+ r[5678 ]* .xlarge )
113
+ EXECUTOR_CORES=4
114
114
EXECUTOR_MEM=23g
115
115
NODEMANAGER_MEM_MB=$(( 24 * 1024 ))
116
116
;;
117
- r[34567 ]* .2xlarge )
118
- EXECUTOR_CORES=6
117
+ r[5678 ]* .2xlarge )
118
+ EXECUTOR_CORES=7
119
119
EXECUTOR_MEM=46g
120
120
NODEMANAGER_MEM_MB=$(( 48 * 1024 ))
121
121
;;
122
- r[34567 ]* .4xlarge )
123
- EXECUTOR_CORES=12
122
+ r[5678 ]* .4xlarge )
123
+ EXECUTOR_CORES=15
124
124
EXECUTOR_MEM=94g
125
125
NODEMANAGER_MEM_MB=$(( 96 * 1024 ))
126
126
;;
127
- r[34567 ]* .8xlarge )
128
- EXECUTOR_CORES=24
127
+ r[5678 ]* .8xlarge )
128
+ EXECUTOR_CORES=30
129
129
EXECUTOR_MEM=190g
130
130
NODEMANAGER_MEM_MB=$(( 192 * 1024 ))
131
131
;;
132
- m[34567 ]* .2xlarge )
132
+ m[5678 ]* .2xlarge )
133
133
EXECUTOR_CORES=8
134
134
EXECUTOR_MEM=23g
135
135
NODEMANAGER_MEM_MB=$(( 24 * 1024 ))
136
136
;;
137
- m[34567 ]* .4xlarge )
137
+ m[5678 ]* .4xlarge )
138
138
EXECUTOR_CORES=16
139
139
EXECUTOR_MEM=46g
140
140
NODEMANAGER_MEM_MB=$(( 48 * 1024 ))
141
141
;;
142
- m[34567 ]* .8xlarge )
142
+ m[5678 ]* .8xlarge )
143
143
EXECUTOR_CORES=32
144
144
EXECUTOR_MEM=94g
145
145
NODEMANAGER_MEM_MB=$(( 98 * 1024 ))
You can’t perform that action at this time.
0 commit comments