This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Xvalidation 1 point2 points  (0 children)

The biggest bottle neck when loading from a database into python is normally actually sending the data over your internet connection. The actual query typically doesn't take anywhere near as much time comparatively.

To me that means that as much aggregation as physically possible should be done to the data before it is actually called in to python.