Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Add a metadata provider for average row size and column size (both in bytes).
This can be used, among other things, to determine the degree of parallelism and whether there is adequate memory to put multiple operators in the same process. (See email thread.)
I think this should be a single interface with two methods:
interface Volume { List<Double> averageColumnSize(); Double averageRowSize(); }