<package id="NHibernate" version="4.0.1.4000" targetFramework="net45" />
<package id="NServiceBus" version="5.2.9" targetFramework="net45" />
<package id="NServiceBus.Autofac" version="5.0.0" targetFramework="net45" />
<package id="NServiceBus.NHibernate" version="6.2.5" targetFramework="net45" />
<package id="NServiceBus.Serilog" version="2.0.1.1" targetFramework="net45" />
<package id="NServiceBus.SqlServer" version="2.2.0" targetFramework="net45" />WITH message AS (SELECT TOP(1) * FROM [dbo].[WorkerQueue.TimeoutsDispatcher] WITH (UPDLOCK, READPAST, ROWLOCK) ORDER BY [RowVersion] ASC)
DELETE FROM message
OUTPUT deleted.Id, deleted.CorrelationId, deleted.ReplyToAddress,
deleted.Recoverable, deleted.Expires, deleted.Headers, deleted.Body;WITH message AS (SELECT TOP(1) * FROM [dbo].[WorkerQueue.Retries] WITH (UPDLOCK, READPAST, ROWLOCK) ORDER BY [RowVersion] ASC)
DELETE FROM message
OUTPUT deleted.Id, deleted.CorrelationId, deleted.ReplyToAddress,
deleted.Recoverable, deleted.Expires, deleted.Headers, deleted.Body;WITH message AS (SELECT TOP(1) * FROM [dbo].[WorkerQueue.Timeouts] WITH (UPDLOCK, READPAST, ROWLOCK) ORDER BY [RowVersion] ASC)
DELETE FROM message
OUTPUT deleted.Id, deleted.CorrelationId, deleted.ReplyToAddress,
deleted.Recoverable, deleted.Expires, deleted.Headers, deleted.Body;LogManager.Use<SerilogFactory>();
var configuration = new BusConfiguration();
configuration.CustomConfigurationSource(new ConfigurationProvider(_queueName));
configuration.EndpointName(_queueName);
configuration.UsePersistence<NHibernatePersistence>()
.ConnectionString(connectionString);
configuration.UseTransport<SqlServerTransport>()
.DisableCallbackReceiver()
.ConnectionString(connectionString);
configuration.UseSerialization<JsonSerializer>();
configuration.Transactions().DisableDistributedTransactions();
configuration.UseContainer<AutofacBuilder>(c => c.ExistingLifetimeScope(container));
public class OrderSaga : Saga<OrderSagaData>,
IAmStartedByMessages<ProcessOrder>,
IHandleMessages<ProcessFailedOrder>,
....more handle messages...
{
public OrderSaga(....dependencies...) {}
protected override void ConfigureHowToFindSaga(SagaPropertyMapper<OrderSagaData> mapper)
{
mapper.ConfigureMapping<ProcessOrder>(m => m.OrderId).ToSaga(s => s.OrderId);
..more similar mappings...
}
public void Handle(ProcessOrder message) {
...do work....
}
... more handlers
}--
You received this message because you are subscribed to the Google Groups "Particular Software" group.
To unsubscribe from this group and stop receiving emails from it, send an email to particularsoftw...@googlegroups.com.
To post to this group, send email to particula...@googlegroups.com.
Visit this group at http://groups.google.com/group/particularsoftware.
To view this discussion on the web visit https://groups.google.com/d/msgid/particularsoftware/3d3defac-a854-4d53-b33e-6bf89171259c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to particularsoftware+unsub...@googlegroups.com.
2015-11-25 14:31:43.918 +10:00 [Information] Starting "WorkerQueue" queue.
2015-11-25 14:31:44.429 +10:00 [Information] Activating persistence '"NHibernatePersistence"' to provide storage for 'NServiceBus.Persistence.StorageType+GatewayDeduplication' storage.
2015-11-25 14:31:44.431 +10:00 [Information] Activating persistence '"NHibernatePersistence"' to provide storage for 'NServiceBus.Persistence.StorageType+Timeouts' storage.
2015-11-25 14:31:44.437 +10:00 [Information] Activating persistence '"NHibernatePersistence"' to provide storage for 'NServiceBus.Persistence.StorageType+Sagas' storage.
2015-11-25 14:31:44.440 +10:00 [Information] Activating persistence '"NHibernatePersistence"' to provide storage for 'NServiceBus.Persistence.StorageType+Subscriptions' storage.
2015-11-25 14:31:44.442 +10:00 [Information] Activating persistence '"NHibernatePersistence"' to provide storage for 'NServiceBus.Persistence.StorageType+Outbox' storage.
2015-11-25 14:31:44.753 +10:00 [Debug] Error queue retrieved from <MessageForwardingInCaseOfFaultConfig> element in config file.
2015-11-25 14:31:44.773 +10:00 [Debug] Associated 'NServiceBus.Scheduling.Messages.ScheduledTask' message with 'NServiceBus.Scheduling.ScheduledTaskMessageHandler' handler
2015-11-25 14:31:44.780 +10:00 [Debug] Associated 'Worker.Messages.ProcessOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.781 +10:00 [Debug] Associated 'Core.OrderProcessing.ProcessFailedOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.783 +10:00 [Debug] Associated 'Worker.Messages.NotifyCustomerAboutFailedOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.784 +10:00 [Debug] Associated 'Worker.Messages.FinishFailedOrderProcessing' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.786 +10:00 [Debug] Associated 'Core.OrderProcessing.ProcessRejectedOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.788 +10:00 [Debug] Associated 'Core.OrderProcessing.ProcessExpiredOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.789 +10:00 [Debug] Associated 'Core.OrderProcessing.ProcessAcceptedOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.791 +10:00 [Debug] Associated 'Worker.Messages.NotifyCustomerAboutSuccessfulOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.792 +10:00 [Debug] Associated 'Worker.Messages.FinishSuccesfulOrderProcessing' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.797 +10:00 [Debug] Associated 'Worker.Messages.ProcessStalledOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.798 +10:00 [Debug] Associated 'Worker.Messages.ProcessGiftCardForAcceptedOrder' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.800 +10:00 [Debug] Associated 'Worker.Messages.UpdateStoreStock' message with 'Worker.Sagas.OrderSaga' handler
2015-11-25 14:31:44.804 +10:00 [Information] Using license in current folder ("C:\dev\Worker\bin\Debug\NServiceBus\License.xml").
2015-11-25 14:31:44.819 +10:00 [Information] Expires on 11/16/2016 00:00:00
2015-11-25 14:31:44.908 +10:00 [Debug] Routing for message: Worker.Messages.FinishFailedOrderProcessing set to "WorkerQueue@devpc"
2015-11-25 14:31:44.909 +10:00 [Debug] Routing for message: Worker.Messages.FinishSuccesfulOrderProcessing set to "WorkerQueue@devpc"
2015-11-25 14:31:44.910 +10:00 [Debug] Routing for message: Worker.Messages.NotifyCustomerAboutFailedOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.911 +10:00 [Debug] Routing for message: Worker.Messages.NotifyCustomerAboutSuccessfulOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.912 +10:00 [Debug] Routing for message: Worker.Messages.ProcessGiftCardForAcceptedOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.913 +10:00 [Debug] Routing for message: Worker.Messages.ProcessStalledOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.914 +10:00 [Debug] Routing for message: Worker.Messages.UpdateStoreStock set to "WorkerQueue@devpc"
2015-11-25 14:31:44.915 +10:00 [Debug] Routing for message: Worker.Messages.ProcessOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.916 +10:00 [Debug] Routing for message: Core.OrderProcessing.ProcessAcceptedOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.917 +10:00 [Debug] Routing for message: Core.OrderProcessing.ProcessExpiredOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.918 +10:00 [Debug] Routing for message: Core.OrderProcessing.ProcessFailedOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.918 +10:00 [Debug] Routing for message: Core.OrderProcessing.ProcessRejectedOrder set to "WorkerQueue@devpc"
2015-11-25 14:31:44.924 +10:00 [Information] Number of messages found: 13
2015-11-25 14:31:44.925 +10:00 [Debug] Message definitions:
"MessageType: Core.OrderProcessing.ProcessAcceptedOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Core.OrderProcessing.ProcessAcceptedOrder
MessageType: Core.OrderProcessing.ProcessExpiredOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Core.OrderProcessing.ProcessExpiredOrder
MessageType: Core.OrderProcessing.ProcessFailedOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Core.OrderProcessing.ProcessFailedOrder
MessageType: Core.OrderProcessing.ProcessRejectedOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Core.OrderProcessing.ProcessRejectedOrder
MessageType: NServiceBus.Scheduling.Messages.ScheduledTask, Recoverable: True, TimeToBeReceived: Not set , Parent types: NServiceBus.Scheduling.Messages.ScheduledTask
MessageType: Worker.Messages.FinishFailedOrderProcessing, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.FinishFailedOrderProcessing
MessageType: Worker.Messages.FinishSuccesfulOrderProcessing, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.FinishSuccesfulOrderProcessing
MessageType: Worker.Messages.NotifyCustomerAboutFailedOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.NotifyCustomerAboutFailedOrder
MessageType: Worker.Messages.NotifyCustomerAboutSuccessfulOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.NotifyCustomerAboutSuccessfulOrder
MessageType: Worker.Messages.ProcessGiftCardForAcceptedOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.ProcessGiftCardForAcceptedOrder
MessageType: Worker.Messages.ProcessStalledOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.ProcessStalledOrder
MessageType: Worker.Messages.UpdateStoreStock, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.UpdateStoreStock
MessageType: Worker.Messages.ProcessOrder, Recoverable: True, TimeToBeReceived: Not set , Parent types: Worker.Messages.ProcessOrder
"
2015-11-25 14:31:45.456 +10:00 [Debug] Error queue retrieved from <MessageForwardingInCaseOfFaultConfig> element in config file.
2015-11-25 14:31:45.659 +10:00 [Information] ------------- FEATURES ----------------
Name: CriticalErrorHandling
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: CustomIDataBus
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [DataBus]
Name: DataBus
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-No databus properties was found in available messages
Name: Encryptor
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-No encryption properties was found in available messages
Name: ErrorSubscribers
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: ForwarderFaultManager
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: InMemoryFaultManager
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: InstallationSupport
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: CriticalTimeMonitoring
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: Audit
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: AutoSubscribe
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: ApplySubscriptions
Name: MsmqSubscriptionPersistence
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: Scheduler
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: CustomSerialization
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-CustomSerialization not enable since serialization definition not detected.
Name: ForwardReceivedMessages
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-No forwarding address was defined in the unicastbus config
Name: RegisterHandlersInOrder
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: SLAMonitoring
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: LicenseReminder
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: Outbox
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: InMemoryGatewayPersistence
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [Gateway]
Name: InMemoryOutboxPersistence
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [Outbox]
Name: InMemorySagaPersistence
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [Sagas]
Name: InMemorySubscriptionPersistence
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [MessageDrivenSubscriptions]
Name: InMemoryTimeoutPersistence
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [TimeoutManager]
Name: TimeoutManagerBasedDeferral
Version: 5.2.10
Enabled by Default: No
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: UnicastBus
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: BinarySerialization
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-BinarySerialization not enable since serialization definition not detected.
Name: BsonSerialization
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-BsonSerialization not enable since serialization definition not detected.
Name: JsonSerialization
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: XmlSerialization
Version: 5.2.10
Enabled by Default: Yes
Status: Disabled
Deactivation reason: Did not fulfill its Prerequisites:
-XmlSerialization not enable since serialization definition not detected.
Name: MsmqTransportConfigurator
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies:
Name: TimeoutManager
Version: 5.2.10
Enabled by Default: No
Status: Enabled
Dependencies: [TimeoutManagerBasedDeferral]
Startup Tasks: None
Name: Sagas
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: SecondLevelRetries
Version: 5.2.10
Enabled by Default: Yes
Status: Enabled
Dependencies: [ForwarderFaultManager]
Startup Tasks: None
Name: DataBusFileBased
Version: 5.2.10
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [DataBus]
Name: StorageDrivenPublishing
Version: 5.2.10
Enabled by Default: No
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: MessageDrivenSubscriptions
Version: 5.2.10
Enabled by Default: No
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: NHibernateGatewayDeduplication
Version: 6.2.5
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [Gateway]
Name: NHibernateDBConnectionProvider
Version: 6.2.5
Enabled by Default: No
Status: Enabled
Dependencies: None
Startup Tasks: None
Name: NHibernateOutboxStorage
Version: 6.2.5
Enabled by Default: No
Status: Disabled
Deactivation reason: Did not meet one of the dependencies: [Outbox]
Name: NHibernateSagaStorage
Version: 6.2.5
Enabled by Default: No
Status: Enabled
Dependencies: [Sagas]
Startup Tasks: None
Name: NHibernateStorageSession
Version: 6.2.5
Enabled by Default: No
Status: Enabled
Dependencies: [NHibernateDBConnectionProvider]
Startup Tasks: None
Name: NHibernateSubscriptionStorage
Version: 6.2.5
Enabled by Default: No
Status: Enabled
Dependencies: [StorageDrivenPublishing]
Startup Tasks: None
Name: NHibernateTimeoutStorage
Version: 6.2.5
Enabled by Default: No
Status: Enabled
Dependencies: [TimeoutManager],[NHibernateDBConnectionProvider]
Startup Tasks: None
Name: ValidateOutboxOrAmbientTransactionsEnabled
Version: 2.2.0
Enabled by Default: Yes
Status: Enabled
Dependencies: None
Startup Tasks: ValiateTask
Name: SqlServerTransport
Version: 2.2.0
Enabled by Default: No
Status: Enabled
Dependencies: None
Startup Tasks: None
2015-11-25 14:31:45.796 +10:00 [Information] Registration 'OutboxDeduplication' specified in the insertbefore of the 'OpenSqlConnection' step does not exist!
2015-11-25 14:31:45.797 +10:00 [Information] Registration 'OutboxRecorder' specified in the insertbefore of the 'OpenNHibernateSession' step does not exist!
2015-11-25 14:31:45.802 +10:00 [Information] Registration 'OutboxDeduplication' specified in the insertafter of the 'OpenNHibernateSession' step does not exist!
2015-11-25 14:31:45.824 +10:00 [Debug] '"# of msgs successfully processed / sec"' counter initialized for '"WorkerQueue"'
2015-11-25 14:31:45.826 +10:00 [Debug] '"# of msgs pulled from the input queue /sec"' counter initialized for '"WorkerQueue"'
2015-11-25 14:31:45.830 +10:00 [Debug] '"# of msgs failures / sec"' counter initialized for '"WorkerQueue"'
2015-11-25 14:31:45.835 +10:00 [Information] Receiver for queue '"WorkerQueue"' started with maximum concurrency '1'
2015-11-25 14:31:45.839 +10:00 [Debug] Starting a new receive task for '"WorkerQueue"'. Total count current/max 1/1
2015-11-25 14:31:45.847 +10:00 [Debug] Starting 3/3 "NServiceBus.SecondLevelRetries.SecondLevelRetriesProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" satellite
2015-11-25 14:31:45.847 +10:00 [Debug] Starting 1/3 "NServiceBus.Timeout.Hosting.Windows.TimeoutMessageProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" satellite
2015-11-25 14:31:45.847 +10:00 [Debug] Starting 2/3 "NServiceBus.Timeout.Hosting.Windows.TimeoutDispatcherProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" satellite
2015-11-25 14:31:45.850 +10:00 [Debug] Starting satellite "NServiceBus.SecondLevelRetries.SecondLevelRetriesProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" for "WorkerQueue.Retries".
2015-11-25 14:31:45.852 +10:00 [Debug] Starting satellite "NServiceBus.Timeout.Hosting.Windows.TimeoutDispatcherProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" for "WorkerQueue.TimeoutsDispatcher".
2015-11-25 14:31:45.855 +10:00 [Debug] '"# of msgs successfully processed / sec"' counter initialized for '"WorkerQueue.TimeoutsDispatcher"'
2015-11-25 14:31:45.853 +10:00 [Debug] '"# of msgs successfully processed / sec"' counter initialized for '"WorkerQueue.Retries"'
2015-11-25 14:31:45.851 +10:00 [Debug] Starting satellite "NServiceBus.Timeout.Hosting.Windows.TimeoutMessageProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" for "WorkerQueue.Timeouts".
2015-11-25 14:31:45.856 +10:00 [Debug] '"# of msgs pulled from the input queue /sec"' counter initialized for '"WorkerQueue.TimeoutsDispatcher"'
2015-11-25 14:31:45.859 +10:00 [Debug] '"# of msgs successfully processed / sec"' counter initialized for '"WorkerQueue.Timeouts"'
2015-11-25 14:31:45.862 +10:00 [Debug] '"# of msgs pulled from the input queue /sec"' counter initialized for '"WorkerQueue.Timeouts"'
2015-11-25 14:31:45.861 +10:00 [Debug] '"# of msgs failures / sec"' counter initialized for '"WorkerQueue.TimeoutsDispatcher"'
2015-11-25 14:31:45.865 +10:00 [Information] Receiver for queue '"WorkerQueue.TimeoutsDispatcher"' started with maximum concurrency '1'
2015-11-25 14:31:45.864 +10:00 [Debug] '"# of msgs failures / sec"' counter initialized for '"WorkerQueue.Timeouts"'
2015-11-25 14:31:45.857 +10:00 [Debug] '"# of msgs pulled from the input queue /sec"' counter initialized for '"WorkerQueue.Retries"'
2015-11-25 14:31:45.872 +10:00 [Information] Receiver for queue '"WorkerQueue.Timeouts"' started with maximum concurrency '1'
2015-11-25 14:31:45.867 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:31:45.880 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:31:45.883 +10:00 [Information] Started 1/3 "NServiceBus.Timeout.Hosting.Windows.TimeoutMessageProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" satellite
2015-11-25 14:31:45.874 +10:00 [Debug] '"# of msgs failures / sec"' counter initialized for '"WorkerQueue.Retries"'
2015-11-25 14:31:45.886 +10:00 [Information] Receiver for queue '"WorkerQueue.Retries"' started with maximum concurrency '1'
2015-11-25 14:31:45.884 +10:00 [Debug] Polling for timeouts at 11/25/2015 14:31:45.
2015-11-25 14:31:45.888 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:31:45.882 +10:00 [Information] Started 2/3 "NServiceBus.Timeout.Hosting.Windows.TimeoutDispatcherProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" satellite
2015-11-25 14:31:45.890 +10:00 [Information] Started 3/3 "NServiceBus.SecondLevelRetries.SecondLevelRetriesProcessor, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c" satellite
2015-11-25 14:31:45.900 +10:00 [Information] "WorkerQueue" queue started.
2015-11-25 14:31:45.909 +10:00 [Debug] Started "NServiceBus.Features.FeatureActivator+Runner, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c".
2015-11-25 14:31:46.051 +10:00 [Debug] Started "NServiceBus.Unicast.Subscriptions.MessageDrivenSubscriptions.StorageInitializer, NServiceBus.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c".
2015-11-25 14:31:46.064 +10:00 [Debug] Polling next retrieval is at 11/25/2015 14:32:46.2015-11-25 14:31:48.614 +10:00 [Information] Failed to process message
2015-11-25 14:31:49.453 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:31:49.454 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:31:49.455 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:31:49.456 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:31:49.456 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:31:49.456 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:31:49.682 +10:00 [Information] Failed to process message
2015-11-25 14:31:51.864 +10:00 [Warning] "Message with 'af96f2d8-0823-440d-88d3-a55b00dd5d3c' id has failed FLR and" will be handed over to SLR for retry attempt 2.
2015-11-25 14:31:51.867 +10:00 [Debug] Ignoring start task request for '"WorkerQueue"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:31:52.013 +10:00 [Debug] Defer message and send it to "WorkerQueue"
2015-11-25 14:31:53.012 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:31:53.013 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:31:53.015 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:31:53.017 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:31:55.428 +10:00 [Debug] Stopping a receive task for '"WorkerQueue"'. Total count current/max 0/1
2015-11-25 14:31:55.430 +10:00 [Debug] Starting a new receive task for '"WorkerQueue"'. Total count current/max 1/1
2015-11-25 14:31:55.575 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:31:55.576 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:31:56.573 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:31:56.575 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:31:56.630 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:31:56.631 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:31:58.989 +10:00 [Debug] Stopping a receive task for '"WorkerQueue"'. Total count current/max 0/1
2015-11-25 14:31:58.990 +10:00 [Debug] Starting a new receive task for '"WorkerQueue"'. Total count current/max 1/1
2015-11-25 14:31:59.135 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:31:59.137 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:32:00.133 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:32:00.134 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:32:00.189 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:32:00.190 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/12015-11-25 14:32:06.106 +10:00 [Debug] Stopping a receive task for '"WorkerQueue"'. Total count current/max 0/1
2015-11-25 14:32:06.109 +10:00 [Debug] Starting a new receive task for '"WorkerQueue"'. Total count current/max 1/1
2015-11-25 14:32:06.254 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:32:06.257 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:32:06.413 +10:00 [Warning] An exception occurred when connecting to the configured SQLServer instance
System.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) ---> System.ComponentModel.Win32Exception (0x80004005): No process is on the other end of the pipe
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
at System.Data.SqlClient.TdsParserStateObject.ReadSniSyncOverAsync()
at System.Data.SqlClient.TdsParserStateObject.TryReadNetworkPacket()
at System.Data.SqlClient.TdsParser.ConsumePreLoginHandshake(SqlAuthenticationMethod authType, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean& marsCapable, Boolean& fedAuthRequired)
at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover, SqlAuthenticationMethod authType)
at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover)
at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer timeout)
at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance)
at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken)
at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NServiceBus.Transports.SQLServer.ConnectionFactory.<>c.<Default>b__3_0(String cs)
at NServiceBus.Transports.SQLServer.ConnectionFactory.OpenNewConnection(String connectionString)
at NServiceBus.Transports.SQLServer.NativeTransactionReceiveStrategy.TryReceiveFrom(TableBasedQueue queue)
at NServiceBus.Transports.SQLServer.AdaptivePollingReceiver.Try(Boolean& success)
at NServiceBus.Transports.SQLServer.AdaptiveExecutor`1.ReceiveLoop(Object obj)
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:c22b0fdc-aa12-4d42-b0ea-7d3b51ea7343
Error Number:233,State:0,Class:20
2015-11-25 14:32:06.424 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now in the armed state
2015-11-25 14:32:06.463 +10:00 [Warning] An exception occurred when connecting to the configured SQLServer instance
System.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) ---> System.ComponentModel.Win32Exception (0x80004005): No process is on the other end of the pipe
at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NServiceBus.Transports.SQLServer.ConnectionFactory.<>c.<Default>b__3_0(String cs)
at NServiceBus.Transports.SQLServer.ConnectionFactory.OpenNewConnection(String connectionString)
at NServiceBus.Transports.SQLServer.NativeTransactionReceiveStrategy.TryReceiveFrom(TableBasedQueue queue)
at NServiceBus.Transports.SQLServer.AdaptivePollingReceiver.Try(Boolean& success)
at NServiceBus.Transports.SQLServer.AdaptiveExecutor`1.ReceiveLoop(Object obj)
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:c22b0fdc-aa12-4d42-b0ea-7d3b51ea7343
Error Number:233,State:0,Class:20
2015-11-25 14:32:06.466 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now in the armed state
2015-11-25 14:32:07.253 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:32:07.254 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:32:07.254 +10:00 [Warning] An exception occurred when connecting to the configured SQLServer instance
System.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) ---> System.ComponentModel.Win32Exception (0x80004005): No process is on the other end of the pipe
at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NServiceBus.Transports.SQLServer.ConnectionFactory.<>c.<Default>b__3_0(String cs)
at NServiceBus.Transports.SQLServer.ConnectionFactory.OpenNewConnection(String connectionString)
at NServiceBus.Transports.SQLServer.NativeTransactionReceiveStrategy.TryReceiveFrom(TableBasedQueue queue)
at NServiceBus.Transports.SQLServer.AdaptivePollingReceiver.Try(Boolean& success)
at NServiceBus.Transports.SQLServer.AdaptiveExecutor`1.ReceiveLoop(Object obj)
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:c22b0fdc-aa12-4d42-b0ea-7d3b51ea7343
Error Number:233,State:0,Class:20
2015-11-25 14:32:07.258 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now in the armed state
2015-11-25 14:32:07.307 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:32:07.308 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:32:07.309 +10:00 [Warning] An exception occurred when connecting to the configured SQLServer instance
System.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) ---> System.ComponentModel.Win32Exception (0x80004005): No process is on the other end of the pipe
at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NServiceBus.Transports.SQLServer.ConnectionFactory.<>c.<Default>b__3_0(String cs)
at NServiceBus.Transports.SQLServer.ConnectionFactory.OpenNewConnection(String connectionString)
at NServiceBus.Transports.SQLServer.NativeTransactionReceiveStrategy.TryReceiveFrom(TableBasedQueue queue)
at NServiceBus.Transports.SQLServer.AdaptivePollingReceiver.Try(Boolean& success)
at NServiceBus.Transports.SQLServer.AdaptiveExecutor`1.ReceiveLoop(Object obj)
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:c22b0fdc-aa12-4d42-b0ea-7d3b51ea7343
Error Number:233,State:0,Class:20
2015-11-25 14:32:07.313 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now in the armed state
2015-11-25 14:32:15.866 +10:00 [Debug] Ignoring start task request for '"WorkerQueue"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:15.925 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.TimeoutsDispatcher"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:15.925 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.Timeouts"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:15.925 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.Retries"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:15.943 +10:00 [Debug] Resolving job
2015-11-25 14:32:16.427 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:32:16.429 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:32:16.468 +10:00 [Debug] Stopping a receive task for '"WorkerQueue"'. Total count current/max 0/1
2015-11-25 14:32:16.469 +10:00 [Debug] Starting a new receive task for '"WorkerQueue"'. Total count current/max 1/1
2015-11-25 14:32:17.259 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:32:17.261 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:32:17.314 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:32:17.316 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:32:25.879 +10:00 [Debug] Ignoring start task request for '"WorkerQueue"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:25.926 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.TimeoutsDispatcher"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:25.926 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.Timeouts"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:25.926 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.Retries"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:32:30.482 +10:00 [Warning] An exception occurred when connecting to the configured SQLServer instance
System.Data.SqlClient.SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) ---> System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NServiceBus.Transports.SQLServer.ConnectionFactory.<>c.<Default>b__3_0(String cs)
at NServiceBus.Transports.SQLServer.ConnectionFactory.OpenNewConnection(String connectionString)
at NServiceBus.Transports.SQLServer.NativeTransactionReceiveStrategy.TryReceiveFrom(TableBasedQueue queue)
at NServiceBus.Transports.SQLServer.AdaptivePollingReceiver.Try(Boolean& success)
at NServiceBus.Transports.SQLServer.AdaptiveExecutor`1.ReceiveLoop(Object obj)
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:00000000-0000-0000-0000-000000000000
Error Number:2,State:0,Class:20
2015-11-25 14:32:32.099 +10:00 [Information] The circuit breaker for "TimeoutStorageConnectivity" is now in the armed state
2015-11-25 14:32:33.101 +10:00 [Debug] Polling for timeouts at 11/25/2015 14:32:33.
2015-11-25 14:32:33.104 +10:00 [Warning] Failed to fetch timeouts from the timeout storage
System.Data.SqlClient.SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) ---> System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NHibernate.Connection.DriverConnectionProvider.GetConnection()
at NServiceBus.Persistence.NHibernate.ISessionFactoryExtensions.GetConnection(ISessionFactory sessionFactory) in C:\BuildAgent\work\5135de308b2f3016\src\NServiceBus.NHibernate\Internal\ISessionFactoryExtensions.cs:line 13
at NServiceBus.TimeoutPersisters.NHibernate.TimeoutPersister.GetNextChunk(DateTime startSlice, DateTime& nextTimeToRunQuery) in C:\BuildAgent\work\5135de308b2f3016\src\NServiceBus.NHibernate\TimeoutPersisters\TimeoutPersister.cs:line 30
at NServiceBus.Timeout.Hosting.Windows.TimeoutPersisterReceiver.Poll(Object obj) in C:\BuildAgent\work\3206e2123f54fce4\src\NServiceBus.Core\Timeout\Hosting\Windows\TimeoutPersisterReceiver.cs:line 90
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:00000000-0000-0000-0000-000000000000
Error Number:2,State:0,Class:20
2015-11-25 14:32:34.111 +10:00 [Debug] Polling for timeouts at 11/25/2015 14:32:34.
2015-11-25 14:32:34.112 +10:00 [Warning] Failed to fetch timeouts from the timeout storage
System.Data.SqlClient.SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) ---> System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NHibernate.Connection.DriverConnectionProvider.GetConnection()
at NServiceBus.Persistence.NHibernate.ISessionFactoryExtensions.GetConnection(ISessionFactory sessionFactory) in C:\BuildAgent\work\5135de308b2f3016\src\NServiceBus.NHibernate\Internal\ISessionFactoryExtensions.cs:line 13
at NServiceBus.TimeoutPersisters.NHibernate.TimeoutPersister.GetNextChunk(DateTime startSlice, DateTime& nextTimeToRunQuery) in C:\BuildAgent\work\5135de308b2f3016\src\NServiceBus.NHibernate\TimeoutPersisters\TimeoutPersister.cs:line 30
at NServiceBus.Timeout.Hosting.Windows.TimeoutPersisterReceiver.Poll(Object obj) in C:\BuildAgent\work\3206e2123f54fce4\src\NServiceBus.Core\Timeout\Hosting\Windows\TimeoutPersisterReceiver.cs:line 90
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:00000000-0000-0000-0000-000000000000
Error Number:2,State:0,Class:20
2015-11-25 14:33:05.038 +10:00 [Debug] Stopping a receive task for '"WorkerQueue"'. Total count current/max 0/1
2015-11-25 14:33:05.039 +10:00 [Debug] Starting a new receive task for '"WorkerQueue"'. Total count current/max 1/1
2015-11-25 14:33:05.040 +10:00 [Warning] An exception occurred when connecting to the configured SQLServer instance
System.Data.SqlClient.SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) ---> System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at NServiceBus.Transports.SQLServer.ConnectionFactory.<>c.<Default>b__3_0(String cs)
at NServiceBus.Transports.SQLServer.ConnectionFactory.OpenNewConnection(String connectionString)
at NServiceBus.Transports.SQLServer.NativeTransactionReceiveStrategy.TryReceiveFrom(TableBasedQueue queue)
at NServiceBus.Transports.SQLServer.AdaptivePollingReceiver.Try(Boolean& success)
at NServiceBus.Transports.SQLServer.AdaptiveExecutor`1.ReceiveLoop(Object obj)
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
ClientConnectionId:00000000-0000-0000-0000-000000000000
Error Number:2,State:0,Class:202015-11-25 14:43:45.323 +10:00 [Debug] Polling for timeouts at 11/25/2015 14:43:45.
2015-11-25 14:43:50.294 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:43:50.295 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:43:50.304 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:43:50.306 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:43:50.309 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:43:50.310 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:43:56.479 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.Timeouts"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:43:56.479 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.Retries"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:43:56.479 +10:00 [Debug] Ignoring start task request for '"WorkerQueue.TimeoutsDispatcher"' because of maximum concurrency limit of 1 has been reached.
2015-11-25 14:43:59.870 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now disarmed
2015-11-25 14:43:59.871 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now disarmed
2015-11-25 14:43:59.873 +10:00 [Information] The circuit breaker for "SqlTransportConnectivity" is now disarmed
2015-11-25 14:43:59.878 +10:00 [Debug] Polling next retrieval is at 11/25/2015 14:32:32.
2015-11-25 14:43:59.878 +10:00 [Information] The circuit breaker for "TimeoutStorageConnectivity" is now disarmed
2015-11-25 14:43:59.879 +10:00 [Debug] Polling for timeouts at 11/25/2015 14:43:59.
2015-11-25 14:43:59.883 +10:00 [Debug] Polling next retrieval is at 11/25/2015 14:44:59.
2015-11-25 14:44:03.428 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:44:03.429 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:44:03.431 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:44:03.431 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:44:03.682 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:44:03.683 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:44:06.989 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:44:06.990 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:44:06.989 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:44:06.992 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:44:07.242 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:44:07.243 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1
2015-11-25 14:44:10.549 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Timeouts"'. Total count current/max 0/1
2015-11-25 14:44:10.549 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.Retries"'. Total count current/max 0/1
2015-11-25 14:44:10.550 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Timeouts"'. Total count current/max 1/1
2015-11-25 14:44:10.551 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.Retries"'. Total count current/max 1/1
2015-11-25 14:44:10.802 +10:00 [Debug] Stopping a receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 0/1
2015-11-25 14:44:10.803 +10:00 [Debug] Starting a new receive task for '"WorkerQueue.TimeoutsDispatcher"'. Total count current/max 1/1--
You received this message because you are subscribed to the Google Groups "Particular Software" group.
To unsubscribe from this group and stop receiving emails from it, send an email to particularsoftw...@googlegroups.com.
To post to this group, send email to particula...@googlegroups.com.
Visit this group at http://groups.google.com/group/particularsoftware.
To view this discussion on the web visit https://groups.google.com/d/msgid/particularsoftware/018b5604-9585-4157-97f5-b989bb26408c%40googlegroups.com.
...
--
You received this message because you are subscribed to the Google Groups "Particular Software" group.
To unsubscribe from this group and stop receiving emails from it, send an email to particularsoftw...@googlegroups.com.
To post to this group, send email to particula...@googlegroups.com.
Visit this group at http://groups.google.com/group/particularsoftware.
To view this discussion on the web visit https://groups.google.com/d/msgid/particularsoftware/6b0aa5be-e8fe-4862-8158-3ddb97ca6ffb%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/particularsoftware/CA%2BFW%2BejN9R_aD6X1Km1R39KcsUSVUjdvA3rRRqzUOUQ1Ga1-Eg%40mail.gmail.com.
I don't see it in the github repo?
You received this message because you are subscribed to a topic in the Google Groups "Particular Software" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/particularsoftware/cj8PjSoUJyY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to particularsoftw...@googlegroups.com.
To post to this group, send email to particula...@googlegroups.com.
Visit this group at http://groups.google.com/group/particularsoftware.
To view this discussion on the web visit https://groups.google.com/d/msgid/particularsoftware/CAE87Yxpj5OxOW93czpLDGNYFqSjbT08fd94%2BmCM8-9P_PbrFxA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/particularsoftware/CAHA1e3apkHSvpj81rYFq48-WhRJUtKB_-Kgd38XK0XgvAhv-9Q%40mail.gmail.com.