You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.
message.Partition = Partitions.None; // so that round robined msgs are re robined
if (Post(message))
{
MessageReEnqueued(message.Topic);
}
else
{
_cluster.Logger.LogWarning(string.Format(
"[Producer] Failed to reenqueue message, discarding message for topic '{0}'", message.Topic));
OnMessageDiscarded(message);
}
}
when send more message,such as 1000000 messages,error occurrs in this function,the reason is?
The text was updated successfully, but these errors were encountered:
private void ReEnqueueMessage(ProduceMessage message)
{
if (message.ExpirationDate < DateTime.UtcNow)
{
OnMessageExpired(message);
return;
}
when send more message,such as 1000000 messages,error occurrs in this function,the reason is?
The text was updated successfully, but these errors were encountered: