Releases: Particular/ServiceControl
1.4.3
As part of this release we had 2 issues closed.
Fixed bugs
- #430 When the
SentTime
metadata is not present, then the GetAllErrors throws JsonSerialization exception - #429 When the
IsSystemMessage
metadata is not present, then the GetAllErrors throws JsonSerialization exception
Symptoms
ServicePulse is non-responsive after processing messages from non-NSB endpoints when failed messages are missing the TimeSent
metadata entry and/or the IsSystemMessage
metadata entry. This will affect the ServicePulse failed messages screen.
This results in ServiceControl throwing an exception when the GetAllErrors
API is invoked.
Who's affected
- Users of ServiceControl that consume messages from non-NServiceBus Endpoints. (third party integrations)
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.4.2
As part of this release we had 2 issues closed.
Fixed bugs
- #425 Missing (expired) FailedMessage documents cause ServiceControl to crash when trying to dispatch external integration events
- #423 External integrations fail and cause ServiceControl to crash when dispatching an event for a control message that failed processing
Symptoms
External integrations feature ceases to work after encountering either a control message that failed processing or a failed message whose data has been expired or deleted from ServiceControl database. Subsequent retries cause circuit breaker to trigger and cause ServiceControl to shutdown. The problem is persistent and restarting will not fix it.
In ServiceControl 1.3.0 the external integration feature just silently stops working without causing ServiceControl to crash.
Who's affected
- Users of ServiceControl 1.3.0, 1.4.0 or 1.4.1
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.4.1
As part of this release we had 3 issues closed.
This hotfix addresses two issues within ServiceControl that impacted the data presented to ServicePulse.
Bugs
#421 ServiceControl returns old results on /eventlogs
From google groups - https://groups.google.com/forum/#!topic/particularsoftware/6SxoYrHDjMA
New events are shown on the ServiceControl dashboard until a page refresh, then items are replaced with old results.
#416 Sometimes the error indicator count on the dashboard in ServicePulse may be out of sync
At the moment, ServiceControl publishes events and ServicePulse updates the UI with the appropriate counts on the dashboard.
However, sometimes the count that is published by ServiceControl may not be correct due to stale indexes. In this case, the dashboard count may be out of sync with the actual number.
Workaround
Refresh the page in ServicePulse, as refreshing will get query Raven for the data.
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.4.0
As part of this release we had 7 issues closed.
Overview
This release primarily addresses issues with the database growth and management of the embedded RavenDB database.
Once deployed this release will start deleting expired documents by running period batch deletes. The default values of the settings that control the document expiration process have changed in 1.4. The batch process will (by default) trigger a batch delete every 5 minutes of 65512 of expired documents. These settings can be adjusted via configuration settings - see Customizing ServiceControl configuration on the documentation site.
Deleted documents do not automatically reduce the size of the database. A manual procedure has been developed to compact the database so disk space can be reclaimed. These instructions are available on the documentation site here
Features
#414 Support compacting the embedded RavenDB database
Since RavenDB doesn't support compacting the database while its online we need to provide a maintenance mode where users can:
- Export the database
- Delete the DB file
- Import the database
Full instructions here:
http://docs.particular.net/servicecontrol/db-compaction
Bugs
#408 Error view in SP times out
This occurs when database is under load
#407 Re-import failed messages from error.log on a fresh db
If for some reason the user has deleted the RavenDB database and starting fresh and the user attempts to move messages from error.log back into the error queue for ServiceControl to rehydrate the error messages, in this case, we won't have a corresponding saga. Therefore we are using SingleOrDefault
instead of Single
.
#405 When a message that is sent by a SendOnly endpoint lands in the error queue when processing, SC does not import the error message properly.
When a send-only self hosted endpoint send a message to another NSB endpoint and handling of this message by this endpoint results in an error, then ServiceControl does not import the error message properly and gets added to the FailedErrorImports
collection and therefore does not raise proper notifications in ServicePulse.
#395 ServiceControl.Contracts.dll seems to be missing when doing a choco upgrade
Reported by @Bishbulb
"In my case the ServiceControl.Contracts.dll/pdb files were not present in that directory. I had to do a full uninstall/reinstall of ServiceControl in order to get things working.
I had previously upgraded from SC 1.2.0 to 1.3.0 by using Chocolatey cup ServiceControl.install which appears to have left things in a bad state. I used Chocolatey to upgrade SC to 1.3.0 on three different machines and each one had this same problem.
What ended up working for me was to uninstall SC (choco uninstall ServiceControl.install) and then reinstall (choco install ServiceControl.install)."
Full discussion: #372 (comment)
#387 Expiration fails for large ServiceControl instances
From Google Groups... (Desk Case 7173)
I created the following ServiceControl.exe.config and placed it in ServiceControl install directory:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<configuration>
<appSettings>
<add key="ServiceControl/DbPath" value="e:\Particular\ServiceControl\localhost-33333" />
<add key="ServiceControl/ExpirationProcessTimerInSeconds" value="120" />
<add key="ServiceControl/HoursToKeepMessagesBeforeExpiring" value="240" />
<add key="ServiceControl/ExposeRavenDB" value="true" />
Content trimmed. See full issue
#334 better error message for invalid transport on install
eg if someone does this
ServiceControl.exe --install -serviceName="Particular.ServiceControl" -displayName="Particular ServiceControl" -d="ServiceControl/TransportType==NServiceBus.Azure.Transports.WindowsAzureServiceBus" -d="NServiceBus/Transport=Endpoint=sb://<url>;SharedAccessKeyName=<keyname>;SharedAccessKey=<key>"
We get this
Unhandled Exception: System.ArgumentNullException: Value cannot be null.
at System.RuntimeType.MakeGenericType(Type[] instantiation)
at NServiceBus.TransportReceiverConfig.<>c__DisplayClass1.<CreateTransportConfigurer>b__0(Type t) in y:\BuildAgent\work\31f8c64a6e8a2d7c\src\NServiceBus.Core\Unicast\Transport\Config\TransportReceiverConfig.cs:line 80
at System.Linq.Enumerable.SingleOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
Content trimmed. See full issue
Known Issues
#415 Need to also expire and delete saga data
#416 Sometimes the error indicator count on the dashboard in ServicePulse may be out of sync
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.3.0
As part of this release we had 4 issues closed.
Features
#359 Expose a message failed event via the bus for external integrations
- Create a new event contract containing all relevant data (pretty much what you see in SI today for a given failure)
- Avoid using IEvent and instead have to users include the message in their conventions
- React to the internal MessageFailed event and queue up a event dispatch message
- Create a satellite to process the message
- Create an index in raven that matched 1-1 to the external event
- As dispatch request comes in query raven for data. Throw to retry if data is missing (index stale)
- Publish new event when data is available
Notes:
Content trimmed. See full issue
Bugs
#391 Service Pulse shows endpoint error indicators in dashboard for unselected endpoints
Moved from ServicePulse issue (Particular/ServicePulse#155)
This is from a support case: https://nservicebus.desk.com/agent/case/6257
In spite of the fact only one endpoint is selected in the endpoint configuration, you continue observing 2 error indicators for endpoints in the dashboard. (the one active, selected endpoint is working
correctly and actively sending heartbeats.)
Content trimmed. See full issue
#344 Audit URL incorrect
When accessing /api
this is shown:
audit_url: "http://host:33333/api/audit/{?page,per_page,direction,sort}",
However, there's no handler for /api/audit
endpoint.
#336 Latest Events message does not specify retried message type
Logged by @dannycohen - Moved from Particular/ServicePulse#131
Repro
- When you retry a message in SI / SP, the Latest event message does not include an indication of the message type (see image below)
- We should include the message type in the latest event message (same as other related events)
Content trimmed. See full issue
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.2.3
As part of this release we had 1 issue closed.
This patch addresses a bug with queue creation when installing multiple instances of ServiceControl on the same machine.
To fix this bug we have made some changes to the way the service is registered
Please refer to the following document on our documentation site if you are installing or upgrading a host with multiple instances of ServiceControl
Bugs
#375 Queue name is NOT the same as the endpoint on installation
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.2.2
This patch release address issues with the gzipping of content in ServiceControl which prevented large message bodies being shown in ServiceInsight
As part of this release we had 1 issue closed.
Bugs
#358 ServiceControl - Body Missing In Xml View - Unable to read data from the transport connection
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.2.1
As part of this release we had 4 issues closed.
This release patches a localization bug in the installer of v1.2 which prevented installation on Non-English versions of Windows. We've also changed ServiceControl to ensure different log folders and queues are used when running multiple instances on the same computer.
Improvements
#355 Log paths should be different per instance
If a user installs SC multiple times on the same machine with different hostname and/or port, the location for the log paths need to be different per instance.
At the moment is shared.
i would recommend using the same logic as the RavenDB path.
Bugs
#363 Localization error prevents SC 1.2 install on non-english OS
Adv Installler fails to install ServiceControl 1.2 due to localization of group names. This is almost identical to this issue in Particular/ServicePulse#150
#357 Queue names need to be different per instance
If a user installs SC multiple times on the same machine with different hostname and/or port, the queue names need to be different per instance.
At the moment they all share the same name "Particular.ServiceControl", we actually hard coding it, see https://github.com/Particular/ServiceControl/blob/25f51e76b1f9e4369420301b826d32e8d2c93d5b/src/ServiceControl/Bootstrapper.cs#L46
This causes issue because we have separate databases but the same queue.
Content changes
#356 Update installer license text
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.2.0
As part of this release we had 5 issues closed.
Improvements
#317 Attempt to re-import previously failed messages
If a audit or error messages fails to be imported we do a few things:
- Write to the event viewer
- Write a text file to disk with the id of the failed message and the stacktrace
- We add the messages to the database:
The last point is what this issue is about.
Currently we have bug in SC that fails to import SendOnly messages and those messages are being added to the database see point 3.
Once we release a fix we need a way to re-import those failed messages.
Content trimmed. See full issue
Bugs
#350 Call to /customchecks?status=fail returns passed custom checks
Calls to /customchecks?status=fail sometimes returns passed items. Appears to only happen just after the state is switched. This causes incorrect data to be displayed in Service Pulse under custom checks
#331 RegisterEndpointHandler assumes single match for Endpoint.Name and Endpoint.Host
So in RegisterEndpointHandler
we have
knownEndpoint = session.Query<KnownEndpoint, KnownEndpointIndex>()
.SingleOrDefault(e =>
e.EndpointDetails.Name == message.Endpoint.Name &&
e.EndpointDetails.Host == message.Endpoint.Host);
But because multiple endpoints can be deployed to the same host there could be multiple KnownEndpoint
with the same Endpoint.Name
and EndpointDetails.Host
. So the session.Query
returns more than 1 and SingleOrDefault
blows up
Content trimmed. See full issue
#324 Unable to start ServiceControl as a standard user
When attempting to run ServiceControl under a standard user by passing in install time parameters, the service does not start
Content trimmed. See full issue
Where to get it
You can download this release from:
- Our website
- Or chocolatey
1.1.0
As part of this release we had 16 commits which resulted in 2 issues being closed.