Created on 01-05-2016 02:02 PM - edited 09-16-2022 02:55 AM
W0105 16:59:22.911566 28206 PlanNode.java:545] overflow when multiplying cardinalities: 9223372036854775807, 9 W0105 16:59:22.909112 28206 PlanNode.java:545] overflow when multiplying cardinalities: 86038345052864512, 75227480 W0105 16:59:22.897722 28206 PlanNode.java:545] overflow when multiplying cardinalities: 2389953856178920, 12537913 W0105 16:59:22.886450 28206 PlanNode.java:545] overflow when multiplying cardinalities: 2389953856178920, 12537913
Hell,
I started getting this message. How should I interpret this msg in log?
#udpated
I have found this from Google Group commented by Martin Grund.
"""
It happens when multiplying to Java long values results in an overflow, see https://github.com/cloudera/Impala/blob/cdh5-trunk/fe/src/main/java/com/cloudera/impala/planner/Plan....
"""
#Question:
Is there anything I need to do to prevent this issue?
Thank you
Gatsby
Created 01-06-2016 12:18 AM
At the moment you cannot really prevent this issue. It is a warning indicating that some calculations may not be accurate due to overflow (e.g., when multiplying very large cardinalities). The values will be capped at MAX_LONG.
If you don't have reason to believe that your query plans are bad because of this overflow, then I would not worry about those warnings.
Created 01-06-2016 12:18 AM
At the moment you cannot really prevent this issue. It is a warning indicating that some calculations may not be accurate due to overflow (e.g., when multiplying very large cardinalities). The values will be capped at MAX_LONG.
If you don't have reason to believe that your query plans are bad because of this overflow, then I would not worry about those warnings.
Created 01-06-2016 12:20 AM