Hi all, I uploaded full database in to the RDS instance and it works good for zoom levels greater than 5. But it is not rendering tiles for low zoom levels (eg: example.com/0/0/0.png). The screenshot attached here shows the output I get when I run
Please help me to find the reason behind this? Thanks Subin asked 16 Feb '18, 20:05 subinjp7 |
Perhaps it's worth explaining what typically happens when you ask for a tile to be rendered. The user makes a request for a tile. It doesn't exist, so Apache asks mod_tile for it (that "START TILE" above). If the tile can't be created fast enough the client will time out - that's normal. Creation of the tile continues. Some time (perhaps many minutes on a very slow system at low zooms) the tile will be created. The next time the the user requests the same time, the previously rendered tile will be returned, while in the background the new tile is created. So what happens in the syslog after the snippet that you posted? It could be one of a number of things - maybe the tile gets rendered after a minute or so, or maybe something gets killed because you run out of memory, or maybe "disk access" is so slow on your system that it's still trying to render that tile after many minutes (which was the diagnosis at https://help.openstreetmap.org/questions/62113/not-getting-output-from-tileserver-when-i-reduce-the-aws-rds-memory-size-to-16gb ). answered 16 Feb '18, 22:55 SomeoneElse ♦ |
This appears to be essentially a duplicate of this question. You're trying to use a cloud service for something it's not really designed for. answered 08 Mar '18, 10:52 SomeoneElse ♦ |