mirror of https://github.com/apache/druid.git
Fix typo lage->large , improve warning message (#5890)
This commit is contained in:
parent
8c5ded0fad
commit
4b111929ec
|
@ -89,7 +89,7 @@ class StorageLocation
|
||||||
{
|
{
|
||||||
if (available() < segment.getSize()) {
|
if (available() < segment.getSize()) {
|
||||||
log.warn(
|
log.warn(
|
||||||
"Segment[%s:%,d] too lage for storage[%s:%,d].",
|
"Segment[%s:%,d] too large for storage[%s:%,d]. Check your druid.segmentCache.locations maxSize param",
|
||||||
segment.getIdentifier(), segment.getSize(), getPath(), available()
|
segment.getIdentifier(), segment.getSize(), getPath(), available()
|
||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue