alamb commented on code in PR #1318:
URL: 
https://github.com/apache/datafusion-ballista/pull/1318#discussion_r2349064341


##########
ballista/executor/src/flight_service.rs:
##########
@@ -185,16 +189,68 @@ impl FlightService for BallistaFlightService {
     ) -> Result<Response<Self::DoActionStream>, Status> {
         let action = request.into_inner();
 
-        let _action = decode_protobuf(&action.body).map_err(|e| 
from_ballista_err(&e))?;
-
-        Err(Status::unimplemented("do_action"))
+        match action.r#type.as_str() {
+            // Block transfer will transfer arrow ipc file block by block
+            // without decoding or decompressing, this will provide less 
resource utilization
+            // as file are not decoded nor decompressed/compressed. Usually 
this would transfer less data across

Review Comment:
   Even better to remove an entirely redundant layer of compression 👍 



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