-
Notifications
You must be signed in to change notification settings - Fork 331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azurite holds a lock on the two directories __blobstorage__
and __queuestorage__
#2356
Comments
Thanks for raising this issue! In VS Code, Azurite is running in VS code process, so close Azurite will close the http service but can't stop whole process. When Azurite read/save content in local disk, it will create Stream like
When create Stream Azurite will not set autoClose , and the autoClose default value is true (See link ). So Azurite depends on NodeJS to close the stream after finish using it. But currently it looks the stream is not closed and cause the related folder can't be deleted. One workaround is: If you would like to have the content always be cleaned up after close Azurite, you can try to save the content in memory by enable following setting. |
Thanks for mentioning the in-memory persisting option. This will work in most situations where I do not test crashes and replays. Would it not be possible to manually close the stream when the close command is issued? |
There are still not easy way to close the stream manually without changing the code, we need check all place to read the stream, and add code to close it after the last time using it. However, this might have regression risk, and we have other feature parity in hand, so this might won't be our recent priority. |
It may just be enough to close the stream when issuing the Azurite Close command. |
@blueww , Yes, still working on it, will need to resolve some test failures. |
Which service(blob, file, queue, table) does this issue concern?
blob, queue
Which version of the Azurite was used?
v3.29.0
Where do you get Azurite? (npm, DockerHub, NuGet, Visual Studio Code Extension)
Visual Studio Code Extension
What problem was encountered?
After starting and stopping Azurite in VSCode using the
>Azurite: Start
and>Azurite: Close
commands, The extension still holds a lock on the two directories__blobstorage__
and__queuestorage__
. Consequently, I am unable to delete these directories, for example to start anew, until I close VS Code. This makes that process unnecessary frustrating.Steps to reproduce the issue?
>Azurite: Start
>Azurite: Close
__blobstorage__
and__queuestorage__
in the project root. Will fail.__blobstorage__
and__queuestorage__
in the project root. Will succeed.Have you found a mitigation/solution?
No.
The text was updated successfully, but these errors were encountered: