Increase AllTags field length in TLogReady

This commit is contained in:
Zhe Wu 2022-07-20 11:54:32 -07:00
parent c066597af1
commit aa2740e21e
3 changed files with 12 additions and 6 deletions

View File

@ -2768,8 +2768,10 @@ ACTOR Future<Void> tLogStart(TLogData* self, InitializeTLogRequest req, Locality
req.reply.send(recruited);
TraceEvent("TLogReady", logData->logId)
.detail("AllTags", describe(req.allTags))
.detail("Locality", logData->locality);
.detail("Locality", logData->locality)
.setMaxEventLength(11000)
.setMaxFieldLength(10000)
.detail("AllTags", describe(req.allTags));
updater = Void();
wait(tLogCore(self, logData, recruited, pulledRecoveryVersions));

View File

@ -3259,8 +3259,10 @@ ACTOR Future<Void> tLogStart(TLogData* self, InitializeTLogRequest req, Locality
req.reply.send(recruited);
TraceEvent("TLogReady", logData->logId)
.detail("AllTags", describe(req.allTags))
.detail("Locality", logData->locality);
.detail("Locality", logData->locality)
.setMaxEventLength(11000)
.setMaxFieldLength(10000)
.detail("AllTags", describe(req.allTags));
updater = Void();
wait(tLogCore(self, logData, recruited, pulledRecoveryVersions));

View File

@ -3502,8 +3502,10 @@ ACTOR Future<Void> tLogStart(TLogData* self, InitializeTLogRequest req, Locality
req.reply.send(recruited);
TraceEvent("TLogReady", logData->logId)
.detail("AllTags", describe(req.allTags))
.detail("Locality", logData->locality);
.detail("Locality", logData->locality)
.setMaxEventLength(11000)
.setMaxFieldLength(10000)
.detail("AllTags", describe(req.allTags));
updater = Void();
wait(tLogCore(self, logData, recruited, pulledRecoveryVersions));