Skip to content

SiloMessagingOptions

class

Namespace: Orleans.Configuration

Specifies global messaging options that are silo related.
public class SiloMessagingOptions : MessagingOptions

Constructors

Properties

  • AssumeHomogenousSilosForTesting Gets or sets a value indicating whether it is assumed that all hosts are identical in terms of the grain interfaces and classes which they support.
  • ClientDropTimeout Gets or sets the period of time a gateway will wait before dropping a disconnected client.
  • ClientGatewayShutdownNotificationTimeout Gets or sets the period of time a gateway will wait after notifying connected client before continuing the shutdown process
  • ClientRegistrationRefresh Gets or sets the interval in which the list of connected clients is refreshed.
  • GatewaySenderQueues Gets or sets the number of parallel queues and attendant threads used by the silo Gateway to send outbound messages (requests, responses, and notifications) to clients that are connected to it. If this attribute is not specified, then System.Environment.ProcessorCount is used.
  • GrainWorkloadAnalysisPeriod Gets or sets the period of time between analyzing currently executing activation workloads.
  • MaxEnqueuedRequestsHardLimit Gets or sets the per grain threshold for pending requests. Requests are rejected when exceeded.
  • MaxEnqueuedRequestsHardLimit_StatelessWorker Gets or sets the per grain threshold for pending requests for stateless workers. Requests are rejected when exceeded.
  • MaxEnqueuedRequestsSoftLimit Gets or sets the per grain threshold for pending requests. Generated warning when exceeded.
  • MaxEnqueuedRequestsSoftLimit_StatelessWorker Gets or sets the per grain threshold for pending requests for stateless workers. Generated warning when exceeded.
  • MaxForwardCount Gets or sets the maximal number of times a message is being forwarded from one silo to another. Forwarding is used internally by the runtime as a recovery mechanism when silos fail and the membership is unstable. In such times the messages might not be routed correctly to destination, and runtime attempts to forward such messages a number of times before rejecting them.
  • MaxRequestProcessingTime Gets or sets the maximum time that a request can take before the activation is reported as "blocked"
  • RequestProcessingWarningTime Gets or sets the period after which a currently executing request is deemed to be slow.
  • RequestQueueDelayWarningTime Gets or sets the period after which an enqueued request is deemed to be delayed.
  • ShutdownRerouteTimeout Gets or sets the period of time the silo will wait to reroute queued messages before it continues shutting down.
  • SiloSenderQueues Gets or sets the number of parallel queues and attendant threads used by the silo to send outbound messages (requests, responses, and notifications) to other silos. If this attribute is not specified, then System.Environment.ProcessorCount is used.
  • SystemResponseTimeout Gets or sets the default timeout before an internal system request is assumed to have failed.
  • WaitForMessageToBeQueuedForOutboundTime Gets or sets the time to wait for all queued message sent to OutboundMessageQueue before MessageCenter stop and OutboundMessageQueue stop.

Fields