Skip to content
Snippets Groups Projects
Commit a2b0a797 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Merge pull request #619 from woggling/adjust-sampling

Use ARRAY_SAMPLE_SIZE constant instead of hard-coded 100.0 in SizeEstimator
parents 66dac449 f350f140
No related branches found
No related tags found
No related merge requests found
......@@ -198,7 +198,7 @@ private[spark] object SizeEstimator extends Logging {
val elem = JArray.get(array, index)
size += SizeEstimator.estimate(elem, state.visited)
}
state.size += ((length / 100.0) * size).toLong
state.size += ((length / (ARRAY_SAMPLE_SIZE * 1.0)) * size).toLong
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment