Multiple choice technology

When you set the reject-threshold parameter of a component to Use limit/ramp, the limit and ramp parameters become available. The component stops the execution of the graph if the number of reject events exceeds the result of a formula. Which one of the following is the correct formula?

  1. (limit * ramp) + number_of_records_processed_so_far

  2. limit + (ramp * number_of_records_processed_so_far)

  3. number_of_records_processed_so_far - (limit * ramp)

  4. limit * (ramp * number_of_records_processed_so_far)

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The limit/ramp formula calculates a dynamic threshold: base limit plus ramp percentage multiplied by processed records. As more records flow through, more rejects are tolerated proportionally.