Reputation: 669
I am uploading a bitmap image in form of blob data to datastore via endpoints classes.The upload is taking too much time. is there some way i can improve performance.Are there different 'tires' with different ram and clock speed to choose from as it is in cloud SQL?
Upvotes: 0
Views: 256
Reputation: 41089
Look at the App Engine Dashboard. It offers information on CPU utilization, memory usage and latency. Run a few tests and see how they affect the stats. Then, look at the logs. See cpu ms versus total ms.
These are good places to start investigating the problem. Once you know what constrains your app performance, you can start looking for a solution.
Upvotes: 1