Skip to content

cannot read blob message has been improved #15323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ydb/core/kqp/ut/olap/tiering_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ Y_UNIT_TEST_SUITE(KqpOlapTiering) {
auto it = tableClient.StreamExecuteScanQuery(selectQuery, NYdb::NTable::TStreamExecScanQuerySettings()).GetValueSync();
auto streamPart = it.ReadNext().GetValueSync();
UNIT_ASSERT(!streamPart.IsSuccess());
UNIT_ASSERT_STRING_CONTAINS(streamPart.GetIssues().ToString(), "cannot read blob range");
UNIT_ASSERT_STRING_CONTAINS(streamPart.GetIssues().ToString(), "reading blob range for data");
}

testHelper.CreateTier("tier1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bool TBlobsFetcherTask::DoOnError(const TString& storageId, const TBlobRange& ra
"storage_id", storageId);
NActors::TActorContext::AsActorContext().Send(
Context->GetCommonContext()->GetScanActorId(), std::make_unique<NColumnShard::TEvPrivate::TEvTaskProcessedResult>(
TConclusionStatus::Fail("cannot read blob range " + range.ToString())));
TConclusionStatus::Fail(TStringBuilder{} << "Error reading blob range for data: " << range.ToString() << ", error: " << status.GetErrorMessage() << ", status: " << NKikimrProto::EReplyStatus_Name(status.GetStatus()))));
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class TColumnsFetcherTask: public NBlobOperations::NRead::ITask, public NColumnS
"status_code", status.GetStatus())("storage_id", storageId);
NActors::TActorContext::AsActorContext().Send(Source->GetContext()->GetCommonContext()->GetScanActorId(),
std::make_unique<NColumnShard::TEvPrivate::TEvTaskProcessedResult>(
TConclusionStatus::Fail("cannot read blob range " + range.ToString())));
TConclusionStatus::Fail(TStringBuilder{} << "Error reading blob range for columns: " << range.ToString() << ", error: " << status.GetErrorMessage() << ", status: " << NKikimrProto::EReplyStatus_Name(status.GetStatus()))));
return false;
}

Expand Down
Loading