@@ -66,7 +66,7 @@ def stop_all_jobs(self) -> None:
6666 """Stop all running Arroyo jobs."""
6767 cmd = "python3 delete_pipeline.py --all_pipelines"
6868 cmd_dir = os .path .join (
69- self .provider .get_home_dir (), "code" , "asap-sketch -ingest"
69+ self .provider .get_home_dir (), "code" , "asap-summary -ingest"
7070 )
7171 self .provider .execute_command (
7272 node_idx = self .node_offset ,
@@ -160,7 +160,7 @@ def run_arroyosketch(
160160 if enable_optimized_remote_write :
161161 cmd += " --prometheus_remote_write_source optimized"
162162 cmd_dir = os .path .join (
163- constants .CLOUDLAB_HOME_DIR , "code" , "asap-sketch -ingest"
163+ constants .CLOUDLAB_HOME_DIR , "code" , "asap-summary -ingest"
164164 )
165165
166166 if avoid_long_ssh :
@@ -216,7 +216,7 @@ def stop_arroyosketch(self, pipeline_id: str) -> None:
216216 """
217217 cmd = "python3 delete_pipeline.py --pipeline_id {}" .format (pipeline_id )
218218 cmd_dir = os .path .join (
219- constants .CLOUDLAB_HOME_DIR , "code" , "asap-sketch -ingest"
219+ constants .CLOUDLAB_HOME_DIR , "code" , "asap-summary -ingest"
220220 )
221221 self .provider .execute_command (
222222 node_idx = self .node_offset ,
@@ -309,7 +309,7 @@ def is_healthy(self) -> bool:
309309 def _start_bare_metal (self , experiment_output_dir : str , ** kwargs ) -> None :
310310 """Start Arroyo cluster using bare metal deployment (original implementation)."""
311311 arroyo_config_file_path = os .path .join (
312- constants .CLOUDLAB_HOME_DIR , "code" , "asap-sketch -ingest" , "config.yaml"
312+ constants .CLOUDLAB_HOME_DIR , "code" , "asap-summary -ingest" , "config.yaml"
313313 )
314314 arroyo_bin_path = os .path .join (
315315 constants .CLOUDLAB_HOME_DIR , "code" , "arroyo" , "target" , "release" , "arroyo"
@@ -332,7 +332,7 @@ def _start_bare_metal(self, experiment_output_dir: str, **kwargs) -> None:
332332 def _start_containerized (self , experiment_output_dir : str , ** kwargs ) -> None :
333333 """Start Arroyo cluster using Docker container deployment."""
334334 arroyo_config_file_path = os .path .join (
335- constants .CLOUDLAB_HOME_DIR , "code" , "asap-sketch -ingest" , "config.yaml"
335+ constants .CLOUDLAB_HOME_DIR , "code" , "asap-summary -ingest" , "config.yaml"
336336 )
337337 arroyo_output_file = os .path .join (experiment_output_dir , "arroyo_cluster.out" )
338338
0 commit comments