I want to create a statistical model which predicts the execution time of query from previous data. I will be having

query: Start time End time parameters query result size

I am thinking about using weka to do this task but I have not finalized it. Please let me know how should I proceed and complete this task.

link|improve this question

This may be better on the statistics SE site. In any case, statistical models would be most appropriate. Input variables can include measures of system load, query complexity, recent latency values, time since recent submissions, time since recent results (or recent lag values), and much more. – Iterator Sep 25 '11 at 23:43
feedback

closed as off topic by Jeff Atwood Sep 26 '11 at 7:36

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

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):

  1. 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'.
  2. 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.

link|improve this answer
feedback

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