I’ve testet the functionality for store the whole data in SqlServer instead of MongoDB - conclusion: it works!
Good job, thank you for this option!
At the setup i ran into some issues:
-
in the appsettings.json are only two points mentioned for the availability of MongoDb or Sql (eventStore, store), but there is a 3rd option (messaging) which require the same value. If i leave messaging to MongoDb i ran into exception that mongo connections is missing.
-
At the first start, the system stopped at startup with an exception of abort in migration context:
Unhandled exception. System.Threading.Tasks.TaskCanceledException: A task was canceled.
at Squidex.Infrastructure.Migrations.DatabaseMigrator`1.InitializeAsync(CancellationToken ct) in ...\backend\src\Squidex.Data.EntityFramework\Infrastructure\Migrations\DatabaseMigrator.cs:line 30
- I tried the setting “migration: false” and after that i got the error message from the connection error (which was a misconfiguration in local SqlServer) - this info is missing at the migration step (which could confuse, the server just stop) - please provide the connection error message if available
After the startup problems my instance finally started up with data stored in the local SQL Server. I made a short benchmark:
- Restore a backup in MongoDB (localhost) ~2s
- Restore in MSSQLServer (localhost/Express) ~ 22s (tested twice)
- Backup size: Reading 3872/3872 events and 211 attachments
Due to the slower reaction i wouldn’t use it now for our current live environment, but for new developments i would give it a try.
Hint: if the SqlServer is a Azure SQL Database or Managed Instance the native JSON columns type could improve performance. Unfortunately the type is not available in SQL Server 2022 - haven’t tested the performance gain of the JSON field but maybe this could be configurable if it has a positive effect…
More info on this: JSON data type (preview) - SQL Server | Microsoft Learn
Cheers, Stefan