as you described your observations include starting/ending time and result size. First question: Is the result size specified by the user as a parameter of the query (like, for example, in a k-nearest neighbor query)?
Second question (about your prediction model): Do you have a system where a lot of queries can be asked at the same time and their processing might overlap (example: product-search on Amazon, etc):
- No, only single queries: Then I'd say the starting time of the query doesn't matter. Thus, your observations reduce to 'query duration' and 'result size'.
- Yes, account for server load during the day: Then just model your observations as the triple of 'query start', 'query duration' and 'result size'.
After gathering enough examples I'd first try linear regression on the data. You can then project any future queries on the regression function in order to estimate the query time.
PS: If you have knowledge on how the query processing is influenced by certain parameters you can probably benefit from including them into the regression.