apache/hadoop · error · NullRLESparseResourceAllocationException
Resource allocation for ${pipelineId} is null.
Error message
Resource allocation for ${pipelineId} is null. What it means
Error "Resource allocation for ${pipelineId} is null." thrown in apache/hadoop.
Source
Thrown at hadoop-tools/hadoop-resourceestimator/src/main/java/org/apache/hadoop/resourceestimator/skylinestore/validator/SkylineStoreValidator.java:115
}
}
/**
* Check if pipelineId is <em>null</em> or resourceOverTime is <em>null</em>.
*
* @param pipelineId the id of the recurring pipeline.
* @param resourceOverTime predicted {@code Resource} allocation to be added.
* @throws SkylineStoreException if input parameters are invalid.
*/
public final void validate(final String pipelineId,
final RLESparseResourceAllocation resourceOverTime)
throws SkylineStoreException {
validate(pipelineId);
if (resourceOverTime == null) {
StringBuilder sb = new StringBuilder();
sb.append("Resource allocation for " + pipelineId + " is null.");
LOGGER.error(sb.toString());
throw new NullRLESparseResourceAllocationException(sb.toString());
}
}
}
View on GitHub (pinned to 2add963021)
Solutions
- Ensure resource allocation data exists for the pipeline before querying it.
When it happens
Trigger: A skyline store update/delete is invoked with a null resource allocation for the given pipeline id, failing validation.
Common situations: See trigger scenarios.
AI-assisted analysis of apache/hadoop@2add963021 (2026-08-22).
Data as JSON: /api/errors/fa674282c5a0256f.
Report an issue: GitHub.