IMPALA-3324: Hive server does not start for S3 builds.

The hive server does not start for S3 builds because HDFS is marked
as an unsupported service in testdata/cluster/admin; and so HDFS is
not started at all, and so the Hive server is unable to start as well.
Due to this, all our S3 builds fail.
Currently our S3 builds need HDFS to run correctly.

(This has to be reverted once IMPALA-1850 goes in, because then S3 can
run as a default FS without HDFS)

Change-Id: Ibda9dc3ef895c2aa4d39eb5694ac5f2dbd83bee4
Reviewed-on: http://gerrit.cloudera.org:8080/2741
Reviewed-by: Casey Ching <[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/86fd262d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/86fd262d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/86fd262d

Branch: refs/heads/master
Commit: 86fd262dc91a638ddc18272c6c9f3d7b8e93b887
Parents: b085e31
Author: Sailesh Mukil <[email protected]>
Authored: Fri Apr 8 16:00:31 2016 -0700
Committer: Tim Armstrong <[email protected]>
Committed: Tue Apr 12 14:03:43 2016 -0700

----------------------------------------------------------------------
 testdata/cluster/admin | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/86fd262d/testdata/cluster/admin
----------------------------------------------------------------------
diff --git a/testdata/cluster/admin b/testdata/cluster/admin
index 692f0e5..e68abab 100755
--- a/testdata/cluster/admin
+++ b/testdata/cluster/admin
@@ -49,7 +49,8 @@ TEMPLATE_SUFFIX=".tmpl"
 # Each process should be marked with this so a "pkill -f" can be done to nuke 
everything.
 export KILL_CLUSTER_MARKER=IBelongToTheMiniCluster
 
-if [[ "$TARGET_FILESYSTEM" == "hdfs" ]]; then
+if [[ "$TARGET_FILESYSTEM" == "hdfs" || "$TARGET_FILESYSTEM" == "s3" ]]; then
+  #TODO: Remove S3 from this condition once IMPALA-1850 goes in.
   # The check above indicates that the regular mini-cluster is in use.
   SUPPORTED_SERVICES=(hdfs yarn llama kms)
 else

Reply via email to