Akka.Persistence.SqlServer | Akka.Persistence.SqlServer provider | SQL Database library
kandi X-RAY | Akka.Persistence.SqlServer Summary
kandi X-RAY | Akka.Persistence.SqlServer Summary
Akka Persistence journal and snapshot store backed by SQL Server database.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of Akka.Persistence.SqlServer
Akka.Persistence.SqlServer Key Features
Akka.Persistence.SqlServer Examples and Code Snippets
ALTER TABLE {your_journal_table_name} ADD COLUMN SerializerId INTEGER NULL
ALTER TABLE {your_snapshot_table_name} ADD COLUMN SerializerId INTEGER NULL
ALTER TABLE {your_journal_table_name} DROP CONSTRAINT PK_{your_journal_table_name};
ALTER TABLE {y
akka.persistence{
journal {
plugin = "akka.persistence.journal.sql-server"
sql-server {
# qualified type name of the SQL Server persistence journal actor
class = "Akka.Persistence.SqlServer.Journal.SqlServerJournal, Akka.Persistence
CREATE TABLE {your_journal_table_name} (
Ordering BIGINT IDENTITY(1,1) NOT NULL,
PersistenceID NVARCHAR(255) NOT NULL,
SequenceNr BIGINT NOT NULL,
Timestamp BIGINT NOT NULL,
IsDeleted BIT NOT NULL,
Manifest NVARCHAR(500) NOT NULL,
Paylo
Community Discussions
Trending Discussions on Akka.Persistence.SqlServer
QUESTION
I get above error when I'm trying to create a persisting actor with SQL server persistence.
EDIT: what's weird when I clone repositories akka and akka persistence sql server and attach then instead using nuget packages is working as expected. I'm using followinf versions: "Akka" Version="1.4.11" "Akka.Persistence.SqlServer" Version="1.4.10"
...ANSWER
Answered 2020-Nov-11 at 23:49You ran into this issue, which was the result of us changing some APIs inside the CircuitBreaker
as part of Akka.NET v1.4.11: https://github.com/akkadotnet/Akka.Persistence.SqlServer/issues/177
We just pushed Akka.Persistence.SqlServer 1.4.11 a couple of minutes ago: https://github.com/akkadotnet/Akka.Persistence.SqlServer/releases/tag/1.4.11 - upgrading to this version should resolve your issue.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install Akka.Persistence.SqlServer
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page