I have CDR file contain 100K rows.
Some of the columns in that CDR file contain ID columns.
I need to do a lookup and fetch the description of those ID columns.
For columns that has small set of ID`s descriptions , i haved added the following entry in the config file
translate {
field => "P10"
destination => "CALL_TYPE_DESC"
dictionary => {
"0" => "Unknown"
"1" => "Local"
....
"100" => "End"
}
}
What are my options when i need to fetch ID description from files/db tables that contain 20,000 rows or more