Hi,
is the replication broken? The following node can not be found in the database:
osm_mapnik=> select id from planet_osm_nodes where id=761462252; id ---- (0 rows)
osm_mapnik=> select osm_id from planet_osm_point where osm_id=761462252; osm_id -------- (0 rows)
But node is in DB since 1st June: http://api.openstreetmap.org/browse/node/761462252
It's also rendered on a tile: http://toolserver.org/tiles/osm/18/139510/90991.png Tile is clean. Last rendered at Mon Jun 14 21:02:34 2010
I'm a bit confused. Is there more than one database instance running? Why is the rendering there?
Stephan
Am 14.06.2010 23:10, schrieb Stephan Knauss:
I'm a bit confused. Is there more than one database instance running? Why is the rendering there?
There was an old set of tables (planet_osm_) which was not using the hstore column. I dropped it just now. Please use the new tables (planet_). Sorry for the confusion.
osm_mapnik=> select osm_id, tags from planet_point where osm_id=761462252; osm_id | tags -----------+------------------------------------------------------ 761462252 | "name"=>"Laab", "amenity"=>"restaurant", "addr:street"=>"SenftlstraÃe", "addr:housenumber"=>"9" (1 row)
Peter