gavinchou commented on code in PR #52050:
URL: https://github.com/apache/doris/pull/52050#discussion_r2166509775
##########
cloud/src/meta-service/http_encode_key.cpp:
##########
@@ -427,9 +429,26 @@ HttpResponse process_http_set_value(TxnKv* txn_kv,
brpc::Controller* cntl) {
LOG(WARNING) << "set_value saved, key=" << hex(key);
std::stringstream final_json;
- final_json << "original_value_hex=" << hex(value.value()) << "\n"
- << "key_hex=" << hex(key) << "\n"
- << "original_value_json=" << original_value_json << "\n";
+ if (value.value().size() > 0 && value.value().size() < 1024) {
Review Comment:
make it 25000
https://github.com/google/glog/blob/master/src/logging.cc#L283
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]