Running server with Simple Disk storage seems always to use volatile memory #584
alkampfergit
started this conversation in
Misc
Replies: 2 comments
-
I got the answer by myself, I need to add
for all configurations. This is the example, it seems that running "SimpleQueues": {
"Directory": "c:\\temp\\km\\queue",
"StorageType" : "Disk"
},
"SimpleFileStorage": {
"Directory": "c:\\temp\\km\\storage",
"StorageType" : "Disk"
}, |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context / Scenario
I configured the Server with this section for services. As you can see I uses simple queue on disk, file storage on disk and vector memory on disk. The server starts and works perfectly but all the services uses Volatile File system, not using file system on disk.
Question
What is wrong in the configuration above? I generated with dotnet run config and it seems to be correct, but nevertheless no data is persisted on disk.
Also if I download the project in a fresh folder or delete all non source controlled file
git clean -xdf
when I run dotnet run setup I got an error because it does not find the application.development.json.Beta Was this translation helpful? Give feedback.
All reactions