i'm trying to use geonames database (downloaded and loaded on a local mysql) to get all associated informations from a location (lowest level is cityname) using Java and JDBC drivers.

I have a big performance issue: each query takes something like 4-5 seconds, and i have to split the query in three parts before getting all the results i need.

Basically, i have loaded the allCountries database, the admin1codes and the admin2codes. Since admin1 and admin2 unique ids are composed by information retrieved from the query on allcountries, i had to do something like this to query the database:

String query = "SELECT DISTINCT "
             + "loc_geoname.name AS name,"
             + "loc_geoname.asciiname AS asciiname,"
             + "loc_geoname.alternatenames AS alternames,"
             + "loc_geoname.latitude AS latitude,"
             + "loc_geoname.longitude AS longitude,"
             + "loc_geoname.country AS country_code,"
             + "loc_geoname.admin1 AS admin1, "
             + "loc_geoname.admin2 AS admin2, "
             + "loc_countryinfo.name AS country, "
             + "loc_countryinfo.currency AS value "
             + "FROM loc_geoname, loc_countryinfo "
             + "WHERE loc_countryinfo.iso_alpha2=loc_geoname.country "
             + "AND loc_geoname.asciiname IN (" + search + ") "
             + "AND loc_geoname.country='" + countrycode + "' "
             + "AND loc_geoname.fcode like 'PP%' limit 10;"

and this is the query i'm using to fetch all the info for a city (search and countrycode are strings prebuild, they're not important)

now, to get the admin1 name and the admin2 name i have to launch two new queries:

String a1 = res.getString("admin1");
String query_area = "select name from loc_admin1Codes where code='" + countrycode + "." + a1 + "';";

String a2 = res.getString("admin2");
String query_district = "select name from loc_admin2Codes where code='" + countrycode + "." + a1 + "." + a2 + "';";

I'm sure its possible to combine the two queries into one (but not so sure) but i don't know how to create the admin1 and admin2 codes without getting them values from the first query and combining strings into the second and the third.

Also, i'm sure i can improve my first query to speed it up a bit (maybe using joins instead of a cross combination with a where clause...)

Table structure is the same as defined here and i didn't change anything from that. Thanks all in advance for the hints!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You shouldn't request it every time.

I did this by adding a colun "admin1NameƩ and "admin2Name" and I updated their value with a simple sql query.

This database is very large so you should think about calculated column.

EDIT : if you still want to do it every time

    SELECT locgeoname.*, loc_countryinfo.name, loc_admin1Codes.name, loc_admin2Codes.name, 
FROM loc_geoname 
INNER JOIN loc_countryinfo 
ON loc_countryinfo.iso_alpha2=loc_geoname.country
INNER JOIN loc_admin1Codes 
ON code=loc_countryinfo.iso_alpha2+'.'+admin1  
INNER JOIN loc_admin2Codes 
ON code=loc_countryinfo.iso_alpha2+'.'+admin1+'.'+admin2
link|improve this answer
ok, i'll try with your solution, but i think my problem stands in the first query, since the admin1 and admin2 tables are pretty small (compared to the bigger allCountries) so requesting the name isn't a big issue in terms of performance... btw thanks for your effort :) – Samuele Mattiuzzo Sep 6 '11 at 12:46
@Samuele, you can see my request in the edit, I'm juste using the JOIN clause. – remi bourgarel Sep 6 '11 at 13:33
thanks that was what i did before, but the problem is i still have to run the big query before, to get me the admin1 - admin2 codes and concatenate the strings... there's no other way around right? something like loc_countryinfo.iso_alpha2"."loc_geoname.admin1Code? the middle "." is the big issue, we cannot combine strings in mysql :( – Samuele Mattiuzzo Sep 6 '11 at 13:41
@Samuele dev.mysql.com/doc/refman/5.0/en/… , CONCAT_WS('.',iso_alpha2,admin1,admin2) no ? – remi bourgarel Sep 6 '11 at 14:01
well, why didn't i think about that before? this definetely solves the issue of linking the table, thanks! still thinking about performance issue on the big table... i was wandering what i could eliminate that doesn't fit my needs (which is searching throu a database of only inhabited places with at least 500-1000 inhabitants) edit: can you please update your answer with the CONCAT_WS instead of the +'.'+admin1 thingy on both rows? so i can accept that for future users :) – Samuele Mattiuzzo Sep 6 '11 at 14:17
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.