Replies: 1 comment 2 replies
-
@yuhangch thanks for the question. I have 0 knowledge in windows, so I'm not sure I have an answer. If I were you I will start first by profiling the function https://docs.python.org/3.8/library/profile.html and then also make sure the GDAL environment variable a set to maximize performances! (e.g https://github.com/developmentseed/titiler/blob/master/deployment/AWS/cdk/app.py#L21-L26) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I originally wanted to discuss it here, but I didn't find the entrance. Thank you for providing this link.
I made a simple application based on rio-viz, to provide
services for multiple local cog data, I create new COGReader in each request as following:
I deployed it on our windows platform server, found that the performance drops a lot in a windows environment.
With wsl(ubuntu 18.04) env:
processing time for each tile is about +-100 millisecond
With windows env:
processing time (same image) for each tile is about +-500 millisecond
My question is, Is there some suggestions to improve the performance in the windows environment?
We prefer it to be deployed in the windows environment because it is easy to manage, or we have to deploy it in the ubuntu environment.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions