deniskuzZ commented on code in PR #6390:
URL: https://github.com/apache/hive/pull/6390#discussion_r3020692193


##########
packaging/src/docker/docker-compose.yml:
##########
@@ -88,14 +101,125 @@ services:
       - '10002:10002'
     volumes:
       - warehouse:/opt/hive/data/warehouse
+      - scratch:/opt/hive/scratch
       # Mount local jars to a temporary staging area (Read-Only)
       - ./jars:/tmp/ext-jars:ro
     networks:
       - hive
 
+  zookeeper:
+    profiles:
+      - llap
+    image: zookeeper:3.8.4
+    container_name: zookeeper
+    hostname: zookeeper
+    restart: unless-stopped
+    ports:
+      - '2181:2181'
+    networks:
+      - hive
+    volumes:
+      - zookeeper_data:/data
+      - zookeeper_datalog:/datalog
+      - zookeeper_logs:/logs
+
+  #TODO Tez AM container (in the meantime, the HS2(with local Tez AM) + LLAP 
daemon setup is working properly)
+    # 1. Define and use a Tez AM image from HIVE-29419 or TEZ-4682
+    # 2. Configure TezAM to use Zookeeper Llap Registry to discover the LLAP 
daemon
+    # 3. Configure HiveServer2 to use the Tez AM Zookeeper Registry to 
discover the Tez AM
+    #   Prerequisites:
+    #     - tez-api 1.0.0-SNAPSHOT jar injected into HiveSever2 until Tez 
1.0.0 is released
+    #     - make HIVE-29477 happen to let HiveServer2 use Tez external sessions
+    # 4. Define hadoop components here to be used by all the containers 
(working example can be found at TEZ-4682), currently a local volume
+
+  llapdaemon1:

Review Comment:
   could we create and reuse template for the llap daemons?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to