apache/hadoop · error · NullRecurrenceIdException
Recurrence id is null, please try again by specifying a vali
Error message
Recurrence id is null, please try again by specifying a valid Recurrence id.
What it means
Error "Recurrence id is null, please try again by specifying a valid Recurrence id." thrown in apache/hadoop.
Source
Thrown at hadoop-tools/hadoop-resourceestimator/src/main/java/org/apache/hadoop/resourceestimator/skylinestore/validator/SkylineStoreValidator.java:57
*/
public class SkylineStoreValidator {
private static final Logger LOGGER =
LoggerFactory.getLogger(SkylineStoreValidator.class);
/**
* Check if recurrenceId is <em>null</em>.
*
* @param recurrenceId the id of the recurring pipeline job.
* @throws SkylineStoreException if input parameters are invalid.
*/
public final void validate(final RecurrenceId recurrenceId)
throws SkylineStoreException {
if (recurrenceId == null) {
StringBuilder sb = new StringBuilder();
sb.append("Recurrence id is null, please try again by specifying"
+ " a valid Recurrence id.");
LOGGER.error(sb.toString());
throw new NullRecurrenceIdException(sb.toString());
}
}
/**
* Check if pipelineId is <em>null</em>.
*
* @param pipelineId the id of the recurring pipeline job.
* @throws SkylineStoreException if input parameters are invalid.
*/
public final void validate(final String pipelineId)
throws SkylineStoreException {
if (pipelineId == null) {
StringBuilder sb = new StringBuilder();
sb.append("pipelineId is null, please try again by specifying"
+ " a valid pipelineId.");
LOGGER.error(sb.toString());
throw new NullPipelineIdException(sb.toString());
}View on GitHub (pinned to 2add963021)
Solutions
- Pass a valid, non-null recurrence id to the skyline store operation.
When it happens
Trigger: A skyline store operation is invoked with a null recurrence id, failing validation before the operation is executed.
Common situations: See trigger scenarios.
AI-assisted analysis of apache/hadoop@2add963021 (2026-08-22).
Data as JSON: /api/errors/2690b86bbad437b9.
Report an issue: GitHub.