(no title)
tkejser | 13 days ago
With that clarified, the logging not as large as you might think (see my other response).
Think of web servers - they routinely store much larger log streams than this with metadata about each hit. You rely on that stream to do various forms of web analytics - yet you would not dream of rolling your own - nor worry about the small overhead you are already paying.
Example:
SELECT x, y FROM foo JOIN bar USING (k)
In a query like this, you will have these operators:
SCAN of foo
SCAN of bar
JOIN (on k between Foo and Bar)
Hope that clarifies the point... That's 3 operators, and we log the row counts of each. That in turn allows you answer questions about your data model and how it is being used.
No comments yet.