Repository: incubator-impala Updated Branches: refs/heads/master 27b3b4d47 -> ac4f22b1b
IMPALA-3843: Update warning for non-SSSE3 CPUs As described in IMPALA-3843, the old message for non-SSSE3 CPUs implies that Impala will exit without SSSE3. This is no longer the case after IMPALA-1399 and IMPALA-1646 have been resolved. The new message merely warns that there might be problems (and SSSE3 might be the culprit). Change-Id: Id242b310715c7abea091a35e6a89647bded26c4b Reviewed-on: http://gerrit.cloudera.org:8080/3884 Reviewed-by: Tim Armstrong <[email protected]> Tested-by: Internal Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/b6934f0f Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/b6934f0f Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/b6934f0f Branch: refs/heads/master Commit: b6934f0fcd4cafc737ee44d9676657406511c162 Parents: 27b3b4d Author: Tomas Gavenciak <[email protected]> Authored: Wed Aug 3 07:16:25 2016 -0700 Committer: Internal Jenkins <[email protected]> Committed: Wed Aug 10 21:31:38 2016 +0000 ---------------------------------------------------------------------- be/src/util/cpu-info.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/b6934f0f/be/src/util/cpu-info.cc ---------------------------------------------------------------------- diff --git a/be/src/util/cpu-info.cc b/be/src/util/cpu-info.cc index 573b131..2a98102 100644 --- a/be/src/util/cpu-info.cc +++ b/be/src/util/cpu-info.cc @@ -137,8 +137,8 @@ void CpuInfo::Init() { void CpuInfo::VerifyCpuRequirements() { if (!CpuInfo::IsSupported(CpuInfo::SSSE3)) { - LOG(ERROR) << "CPU does not support the Supplemental SSE3 (SSSE3) instruction set, " - << "which is required. Exiting if Supplemental SSE3 is not functional..."; + LOG(ERROR) << "CPU does not support the Supplemental SSE3 (SSSE3) instruction set. " + << "This setup is generally unsupported and Impala might be unstable."; } }
