mitja-p
mitja-p
I have the same issue as above. Any fix coming?
Also, is there any way to know which version is stable and functioning? It seems that version 5.0.x are not very stable despite being out of alpha/beta stage.
I tried running .Checkpoint() manually on startup with connection parameters "Filename=...;Mode=Exclusive;Upgrade=true" (Upgrade flag is not important as I tried both with and without). It works fine on local computer. Running...
Yes, it happens consistently. I tried a few times. Including stopping the server. Waiting a minute and then starting in case something would be still locking the file.
I now initialized it with var db = new LiteDatabase(Filename); db.Checkpoint(); The exception stack is the same as above.
Also tried rebuild - same thing: System.UnauthorizedAccessException: Access to the path 'D:\home\AppData\db\files.db' is denied. at System.IO.FileStream.FlushOSBuffer() at System.IO.FileStream.Flush(Boolean flushToDisk) at LiteDB.StreamExtensions.FlushToDisk(Stream stream) at LiteDB.Engine.DiskService.Write(IEnumerable`1 pages, FileOrigin origin) at LiteDB.Engine.WalIndexService.CheckpointInternal() at...
We are talking about Azure web app. D:\home is the only folder you have access to. It could be permission issue or the nature of the storage on Azure as...
Can we expect any progress on this? When log file gets to around 10Mb the database stops working.
I have made a very simple reproducible example (fails on Azure only): ``` public class TestItem { public int Id { get; set; } /// /// Instrument id /// public...
Yes, of course. I am using an App service on F1(Free) plan. It is an ASP.NET Core 2.1 app with latest LiteDB version 5.0.7. Do you need anything else?