Changes between Version 18 and Version 19 of CreditNew
- Timestamp:
- Nov 16, 2009, 12:59:18 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CreditNew
v18 v19 301 301 == Trickle credit == 302 302 303 CPDN breaks jobs into segments, 304 has the client send a trickle-up message on completion of each segment, 305 and grants credit in the trickle-up handler. 306 307 In this case, the trickle-up message should include 308 the incremental elapsed time of the the segment. 309 The trickle-up handler should then call {{{compute_claimed_credit()}}} 310 (see below) to determine the claimed credit. 311 In this case segments play the role of jobs in the credit-related DB fields. 303 312 304 313 == Job runtime estimates == … … 367 376 368 377 == Compatibility == 369 int pfc_n;370 double pfc_sum;371 double pfc_exp_avg;372 double pfc_scaling_factor;373 }}}374 375 New fields in '''app''':376 {{{377 int vnpfc_n;378 double vnpfc_sum;379 double vnpfc_exp_avg;380 }}}381 382 === New request message fields ===383 384 === New reply message fields ===385 386 === Scheduler changes ===387 388 === Client changes ===389 390 === Validator changes ===391 392 === Server APIs for computing and granting credit ===393 394 == Compatibility ==395