apache/hadoop · error · NullPipelineIdException
pipelineId is null, please try again by specifying a valid p
Error message
pipelineId is null, please try again by specifying a valid pipelineId.
What it means
Error "pipelineId is null, please try again by specifying a valid pipelineId." thrown in apache/hadoop.
Source
Thrown at hadoop-tools/hadoop-resourceestimator/src/main/java/org/apache/hadoop/resourceestimator/skylinestore/validator/SkylineStoreValidator.java:74
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());
}
}
/**
* Check if recurrenceId is <em>null</em> or resourceSkylines is
* <em>null</em>.
*
* @param recurrenceId the id of the recurring pipeline job.
* @param resourceSkylines the list of {@link ResourceSkyline}s to be added.
* @throws SkylineStoreException if input parameters are invalid.
*/
public final void validate(final RecurrenceId recurrenceId,
final List<ResourceSkyline> resourceSkylines)
throws SkylineStoreException {
validate(recurrenceId);
if (resourceSkylines == null) {
StringBuilder sb = new StringBuilder();
sb.append("ResourceSkylines for " + recurrenceIdView on GitHub (pinned to 2add963021)
Solutions
- Pass a valid, non-null pipelineId to the skyline store operation.
When it happens
Trigger: A skyline store operation is invoked with a null pipeline id within a job skyline entry, failing validation.
Common situations: See trigger scenarios.
AI-assisted analysis of apache/hadoop@2add963021 (2026-08-22).
Data as JSON: /api/errors/6f86d1819eed1d42.
Report an issue: GitHub.