Skip to content

Commit

Permalink
Set max pending mesages per client to 1000 (#2096)
Browse files Browse the repository at this point in the history
Set max pending mesages per client to 1000.
  • Loading branch information
chkr1011 authored Oct 26, 2024
1 parent 6417baa commit 0506857
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 25 deletions.
45 changes: 21 additions & 24 deletions Source/MQTTnet.Server/Options/MqttServerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,35 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
namespace MQTTnet.Server;

namespace MQTTnet.Server
public sealed class MqttServerOptions
{
public sealed class MqttServerOptions
{
public TimeSpan DefaultCommunicationTimeout { get; set; } = TimeSpan.FromSeconds(100);
public TimeSpan DefaultCommunicationTimeout { get; set; } = TimeSpan.FromSeconds(100);

public MqttServerTcpEndpointOptions DefaultEndpointOptions { get; } = new MqttServerTcpEndpointOptions();
public MqttServerTcpEndpointOptions DefaultEndpointOptions { get; } = new();

public bool EnablePersistentSessions { get; set; }
public bool EnablePersistentSessions { get; set; }

public MqttServerKeepAliveOptions KeepAliveOptions { get; } = new MqttServerKeepAliveOptions();
public MqttServerKeepAliveOptions KeepAliveOptions { get; } = new();

public int MaxPendingMessagesPerClient { get; set; } = 250;
public int MaxPendingMessagesPerClient { get; set; } = 1000;

public MqttPendingMessagesOverflowStrategy PendingMessagesOverflowStrategy { get; set; } = MqttPendingMessagesOverflowStrategy.DropOldestQueuedMessage;
public MqttPendingMessagesOverflowStrategy PendingMessagesOverflowStrategy { get; set; } = MqttPendingMessagesOverflowStrategy.DropOldestQueuedMessage;

public MqttServerTlsTcpEndpointOptions TlsEndpointOptions { get; } = new MqttServerTlsTcpEndpointOptions();
public MqttServerTlsTcpEndpointOptions TlsEndpointOptions { get; } = new();

/// <summary>
/// Gets or sets the default and initial size of the packet write buffer.
/// It is recommended to set this to a value close to the usual expected packet size * 1.5.
/// Do not change this value when no memory issues are experienced.
/// </summary>
public int WriterBufferSize { get; set; } = 4096;
/// <summary>
/// Gets or sets the default and initial size of the packet write buffer.
/// It is recommended to set this to a value close to the usual expected packet size * 1.5.
/// Do not change this value when no memory issues are experienced.
/// </summary>
public int WriterBufferSize { get; set; } = 4096;

/// <summary>
/// Gets or sets the maximum size of the buffer writer. The writer will reduce its internal buffer
/// to this value after serializing a packet.
/// Do not change this value when no memory issues are experienced.
/// </summary>
public int WriterBufferSizeMax { get; set; } = 65535;
}
/// <summary>
/// Gets or sets the maximum size of the buffer writer. The writer will reduce its internal buffer
/// to this value after serializing a packet.
/// Do not change this value when no memory issues are experienced.
/// </summary>
public int WriterBufferSizeMax { get; set; } = 65535;
}
3 changes: 2 additions & 1 deletion Source/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
* Changed code signing and nuget certificate
* Namespace changes **(BREAKING CHANGE)**
* Removal of Managed Client **(BREAKING CHANGE)**
* Client: MQTT 5.0.0 is now the default version when connecting with a server **(BREAKING CHANGE)**
* Client: MQTT 5.0.0 is now the default version when connecting with a server **(BREAKING CHANGE)**
* Server: Set default for "MaxPendingMessagesPerClient" to 1000 **(BREAKING CHANGE)**

0 comments on commit 0506857

Please sign in to comment.