yahoNanJing commented on a change in pull request #1810: URL: https://github.com/apache/arrow-datafusion/pull/1810#discussion_r805451424
########## File path: ballista/rust/executor/src/standalone.rs ########## @@ -36,40 +37,43 @@ pub async fn new_standalone_executor( scheduler: SchedulerGrpcClient<Channel>, concurrent_tasks: usize, ) -> Result<()> { - let work_dir = TempDir::new()? - .into_path() - .into_os_string() - .into_string() - .unwrap(); - let executor = Arc::new(Executor::new(&work_dir)); - - let service = BallistaFlightService::new(executor.clone()); - - let server = FlightServiceServer::new(service); // Let the OS assign a random, free port let listener = TcpListener::bind("localhost:0").await?; let addr = listener.local_addr()?; info!( "Ballista v{} Rust Executor listening on {:?}", BALLISTA_VERSION, addr ); - tokio::spawn( - Server::builder().add_service(server).serve_with_incoming( - tokio_stream::wrappers::TcpListenerStream::new(listener), - ), - ); + let executor_meta = ExecutorRegistration { id: Uuid::new_v4().to_string(), // assign this executor a unique ID optional_host: Some(OptionalHost::Host("localhost".to_string())), port: addr.port() as u32, // TODO Make it configurable grpc_port: 50020, Review comment: It's mainly for unit test. For production execution, it's already configurable. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org