How to manage many mobile device users at server side?

Posted by Rami on Programmers See other posts from Programmers or by Rami
Published on 2012-09-30T13:56:44Z Indexed on 2012/10/06 3:49 UTC
Read the original article Hit count: 233

I built a social Android application in which users can see other users around them by GPS location. At the beginning thing went well as I had low number of users, but now that I have increasing number of users (about 1500 +100 every day) it has revealed a major problem in my design.

In my Google App Engine servlet I have static HashMap that holds all the users profiles objects, currently 1500 and this number will increase as more users register.

Why I'm doing it?

Every user that requests for the users around him compares his GPS with other users and checks if they are in his 10km radius. This happens every five minutes on average. Consequently, I can't get the users from db every time because GAE read/write operation quota will tear me apart.

The problem with this design is?

As the number of users increases, the Hashmap turns to null every 4-6 hours, I think that this time is getting shorter, but I'm not sure. I'm fixing this by reloading the users from the db every time I detect that it becomes null, but this causes DOS to my users for 30 sec, so I'm looking for better solution.
I'm guessing that it happens because the size of the hashmap. Am I right?

I have been advised to use a spatial database, but that means that I can't work with GAE any more and it means that I need to build my big server all over again and lose my existing DB.

Is there something I can do with the existing tools?

Thanks.

© Programmers or respective owner

Related posts about architecture

Related posts about cloud-computing