Sossenbinder
Sossenbinder
CC#
Created by owlzyhoots on 3/31/2025 in #help
Relation Does not Exist when running Tests
I thought so 😄
8 replies
CC#
Created by owlzyhoots on 3/31/2025 in #help
Relation Does not Exist when running Tests
Did you already debug through whether that code is executed in your tests? Or are they built against Release, so they'd skip the development condition?
8 replies
CC#
Created by owlzyhoots on 3/31/2025 in #help
Relation Does not Exist when running Tests
Is it properly executing in some kind of startup hook?
8 replies
CC#
Created by owlzyhoots on 3/31/2025 in #help
Relation Does not Exist when running Tests
What does the migration code look like
8 replies
CC#
Created by jiheielf on 3/28/2025 in #help
Worker Service .NET8 how to gracefully shutdown as a docker container
I think the best ideal solution would be to design the app in a way which is not dependant on clean shutdown, which can't be guaranteed if there's some higher forces like power outage
13 replies
CC#
Created by jiheielf on 3/28/2025 in #help
Worker Service .NET8 how to gracefully shutdown as a docker container
Ah, right, it was renamed to IHostLifetime
13 replies
CC#
Created by jiheielf on 3/28/2025 in #help
Worker Service .NET8 how to gracefully shutdown as a docker container
13 replies
CC#
Created by jiheielf on 3/28/2025 in #help
Worker Service .NET8 how to gracefully shutdown as a docker container
Let me try to find a resource
13 replies
CC#
Created by jiheielf on 3/28/2025 in #help
Worker Service .NET8 how to gracefully shutdown as a docker container
Sounds like you're looking for IApplicationLifetime
13 replies
CC#
Created by neoptex on 3/27/2025 in #help
Kafka Streams .NET – Is this the right approach for merging product data from Debezium?
Do you know where the bottleneck is (As in, is it a hardware bottleneck)? I haven't used Kafka streams in .net, but looking at the library I've seen some configuration parameters which might be interesting for throughput optimization (NumStreamThreads, commit behavior etc). I've also read through https://lgouellec.github.io/streamiz/threading-model.html a bit
11 replies
CC#
Created by neoptex on 3/27/2025 in #help
Kafka Streams .NET – Is this the right approach for merging product data from Debezium?
If that's a concern, you could maybe also have a batch job transfer the current state for starters, and configure debezium to only capture future changes
11 replies
CC#
Created by neoptex on 3/27/2025 in #help
Kafka Streams .NET – Is this the right approach for merging product data from Debezium?
That doesn't sound too far off then, right? Not sure how quick the consumers are, maybe you can set up some metrics to get a feel? I haven't worked with Debezium for well over a year, but IIRC it would initially snapshot the database, so that might cause a lot of messages as well.
11 replies
CC#
Created by neoptex on 3/27/2025 in #help
Kafka Streams .NET – Is this the right approach for merging product data from Debezium?
On a side note, that's a very well prepared question, much appreciated 🙏
11 replies
CC#
Created by neoptex on 3/27/2025 in #help
Kafka Streams .NET – Is this the right approach for merging product data from Debezium?
When it comes to the volume of messages, how many entries are on the tables?
11 replies
CC#
Created by neoptex on 3/27/2025 in #help
Kafka Streams .NET – Is this the right approach for merging product data from Debezium?
I think the general idea sounds pretty solid, what's the overall plan for sunsetting the old application? Are clients expected to keep writing through the old system, so you need to keep supporting forwarding of old writes to the new DB?
11 replies
CC#
Created by Yuji on 3/23/2025 in #help
Implementing SignalR for Real-Time Notifications with Offline Fallback
Which is super easy to set up
52 replies
CC#
Created by Yuji on 3/23/2025 in #help
Implementing SignalR for Real-Time Notifications with Offline Fallback
52 replies
CC#
Created by Yuji on 3/23/2025 in #help
Implementing SignalR for Real-Time Notifications with Offline Fallback
Not too difficult to be honest
52 replies
CC#
Created by Yuji on 3/23/2025 in #help
Implementing SignalR for Real-Time Notifications with Offline Fallback
If you need to scale out, you can look for something called "SignalR Backplane"
52 replies
CC#
Created by Yuji on 3/23/2025 in #help
Implementing SignalR for Real-Time Notifications with Offline Fallback
In that case you can use an in-memory tracked approach
52 replies