bobbai00 commented on code in PR #4077:
URL: https://github.com/apache/texera/pull/4077#discussion_r2561296266


##########
bin/single-node/docker-compose.yml:
##########
@@ -94,6 +94,54 @@ services:
       timeout: 3s
       retries: 10
 
+  # ConfigService provides endpoints for configuration management
+  config-service:
+    image: apache/texera-config-service:latest
+    container_name: texera-config-service
+    restart: always
+    depends_on:
+      postgres:
+        condition: service_healthy
+    env_file:
+      - .env
+    healthcheck:
+      test: ["CMD", "curl", "-sf", "http://localhost:9094/api/healthcheck";]
+      interval: 5s
+      timeout: 3s
+      retries: 10
+
+  # AccessControlService handles user permissions and access control
+  access-control-service:

Review Comment:
   Although it is not used currently, I think it is better to include it as in 
the future, this service will be used in the single node architecture.



-- 
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]

Reply via email to