Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for MSMQ "native" SQL as timeout source #619

Open
ramonsmits opened this issue Jan 25, 2024 · 0 comments
Open

Add support for MSMQ "native" SQL as timeout source #619

ramonsmits opened this issue Jan 25, 2024 · 0 comments
Labels

Comments

@ramonsmits
Copy link
Member

Describe the feature.

MSMQ v1.2 introduced native timeouts to the MSMQ transport. It used SQL Server as storage and is almost identical to the table schema for NHibernare/SQLP.

create table {0} (
 	    Id nvarchar(250) not null primary key,
        Destination nvarchar(200),
        State varbinary(max),
        Time datetime,
        Headers varbinary(max) not null,
        RetryCount INT NOT NULL default(0)
        )

Source: https://github.com/Particular/NServiceBus.Transport.Msmq/blob/release-1.2/src/NServiceBus.Transport.Msmq/DelayedDelivery/Sql/SqlConstants.cs

It would help customers migrate away from MSMQ.

Additional Context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant