mirror of
https://github.com/langchain-ai/datafusion.git
synced 2026-08-26 18:06:36 -04:00
142f5972d5
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #https://github.com/apache/datafusion/issues/19141. ## Rationale for this change <!-- Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed. Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes. --> ## What changes are included in this PR? <!-- There is no need to duplicate the description in the issue here but it is sometimes worth providing a summary of the individual changes in this PR. --> ## Are these changes tested? <!-- We typically require tests for all PRs in order to: 1. Prevent the code from being accidentally broken by subsequent changes 2. Serve as another way to document the expected behavior of the code If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? --> ## Are there any user-facing changes? <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. --> --------- Co-authored-by: Sergey Zhukov <szhukov@aligntech.com> Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
216 lines
8.1 KiB
Rust
216 lines
8.1 KiB
Rust
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
//! See `main.rs` for how to run it.
|
|
|
|
use std::sync::Arc;
|
|
|
|
use arrow::ipc::writer::{CompressionContext, DictionaryTracker, IpcDataGenerator};
|
|
use arrow_flight::{
|
|
Action, ActionType, Criteria, Empty, FlightData, FlightDescriptor, FlightInfo,
|
|
HandshakeRequest, HandshakeResponse, PutResult, SchemaResult, Ticket,
|
|
flight_service_server::FlightService, flight_service_server::FlightServiceServer,
|
|
};
|
|
use arrow_flight::{PollInfo, SchemaAsIpc};
|
|
use datafusion::arrow::error::ArrowError;
|
|
use datafusion::datasource::file_format::parquet::ParquetFormat;
|
|
use datafusion::datasource::listing::{ListingOptions, ListingTableUrl};
|
|
use datafusion::prelude::*;
|
|
use datafusion_examples::utils::{datasets::ExampleDataset, write_csv_to_parquet};
|
|
use futures::stream::BoxStream;
|
|
use tonic::transport::Server;
|
|
use tonic::{Request, Response, Status, Streaming};
|
|
|
|
#[derive(Clone)]
|
|
pub struct FlightServiceImpl {}
|
|
|
|
#[tonic::async_trait]
|
|
impl FlightService for FlightServiceImpl {
|
|
type HandshakeStream = BoxStream<'static, Result<HandshakeResponse, Status>>;
|
|
type ListFlightsStream = BoxStream<'static, Result<FlightInfo, Status>>;
|
|
type DoGetStream = BoxStream<'static, Result<FlightData, Status>>;
|
|
type DoPutStream = BoxStream<'static, Result<PutResult, Status>>;
|
|
type DoActionStream = BoxStream<'static, Result<arrow_flight::Result, Status>>;
|
|
type ListActionsStream = BoxStream<'static, Result<ActionType, Status>>;
|
|
type DoExchangeStream = BoxStream<'static, Result<FlightData, Status>>;
|
|
|
|
async fn get_schema(
|
|
&self,
|
|
request: Request<FlightDescriptor>,
|
|
) -> Result<Response<SchemaResult>, Status> {
|
|
let request = request.into_inner();
|
|
|
|
let listing_options = ListingOptions::new(Arc::new(ParquetFormat::default()));
|
|
let table_path =
|
|
ListingTableUrl::parse(&request.path[0]).map_err(to_tonic_err)?;
|
|
|
|
let ctx = SessionContext::new();
|
|
let schema = listing_options
|
|
.infer_schema(&ctx.state(), &table_path)
|
|
.await
|
|
.unwrap();
|
|
|
|
let options = arrow::ipc::writer::IpcWriteOptions::default();
|
|
let schema_result = SchemaAsIpc::new(&schema, &options)
|
|
.try_into()
|
|
.map_err(|e: ArrowError| Status::internal(e.to_string()))?;
|
|
|
|
Ok(Response::new(schema_result))
|
|
}
|
|
|
|
async fn do_get(
|
|
&self,
|
|
request: Request<Ticket>,
|
|
) -> Result<Response<Self::DoGetStream>, Status> {
|
|
let ticket = request.into_inner();
|
|
match std::str::from_utf8(&ticket.ticket) {
|
|
Ok(sql) => {
|
|
println!("do_get: {sql}");
|
|
|
|
// create local execution context
|
|
let ctx = SessionContext::new();
|
|
|
|
// Convert the CSV input into a temporary Parquet directory for querying
|
|
let dataset = ExampleDataset::Cars;
|
|
let parquet_temp = write_csv_to_parquet(&ctx, &dataset.path())
|
|
.await
|
|
.map_err(|e| {
|
|
Status::internal(format!("Error writing csv to parquet: {e}"))
|
|
})?;
|
|
let parquet_path = parquet_temp.path_str().map_err(|e| {
|
|
Status::internal(format!("Error getting parquet path: {e}"))
|
|
})?;
|
|
|
|
// register parquet file with the execution context
|
|
ctx.register_parquet("cars", parquet_path, ParquetReadOptions::default())
|
|
.await
|
|
.map_err(to_tonic_err)?;
|
|
|
|
// create the DataFrame
|
|
let df = ctx.sql(sql).await.map_err(to_tonic_err)?;
|
|
|
|
// execute the query
|
|
let schema = Arc::clone(df.schema().inner());
|
|
let results = df.collect().await.map_err(to_tonic_err)?;
|
|
if results.is_empty() {
|
|
return Err(Status::internal("There were no results from ticket"));
|
|
}
|
|
|
|
// add an initial FlightData message that sends schema
|
|
let options = arrow::ipc::writer::IpcWriteOptions::default();
|
|
let mut compression_context = CompressionContext::default();
|
|
let schema_flight_data = SchemaAsIpc::new(&schema, &options);
|
|
|
|
let mut flights = vec![FlightData::from(schema_flight_data)];
|
|
|
|
let encoder = IpcDataGenerator::default();
|
|
let mut tracker = DictionaryTracker::new(false);
|
|
|
|
for batch in &results {
|
|
let (flight_dictionaries, flight_batch) = encoder
|
|
.encode(batch, &mut tracker, &options, &mut compression_context)
|
|
.map_err(|e: ArrowError| Status::internal(e.to_string()))?;
|
|
|
|
flights.extend(flight_dictionaries.into_iter().map(Into::into));
|
|
flights.push(flight_batch.into());
|
|
}
|
|
|
|
let output = futures::stream::iter(flights.into_iter().map(Ok));
|
|
Ok(Response::new(Box::pin(output) as Self::DoGetStream))
|
|
}
|
|
Err(e) => Err(Status::invalid_argument(format!("Invalid ticket: {e:?}"))),
|
|
}
|
|
}
|
|
|
|
async fn handshake(
|
|
&self,
|
|
_request: Request<Streaming<HandshakeRequest>>,
|
|
) -> Result<Response<Self::HandshakeStream>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn list_flights(
|
|
&self,
|
|
_request: Request<Criteria>,
|
|
) -> Result<Response<Self::ListFlightsStream>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn get_flight_info(
|
|
&self,
|
|
_request: Request<FlightDescriptor>,
|
|
) -> Result<Response<FlightInfo>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn do_put(
|
|
&self,
|
|
_request: Request<Streaming<FlightData>>,
|
|
) -> Result<Response<Self::DoPutStream>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn do_action(
|
|
&self,
|
|
_request: Request<Action>,
|
|
) -> Result<Response<Self::DoActionStream>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn list_actions(
|
|
&self,
|
|
_request: Request<Empty>,
|
|
) -> Result<Response<Self::ListActionsStream>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn do_exchange(
|
|
&self,
|
|
_request: Request<Streaming<FlightData>>,
|
|
) -> Result<Response<Self::DoExchangeStream>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
|
|
async fn poll_flight_info(
|
|
&self,
|
|
_request: Request<FlightDescriptor>,
|
|
) -> Result<Response<PollInfo>, Status> {
|
|
Err(Status::unimplemented("Not yet implemented"))
|
|
}
|
|
}
|
|
|
|
#[expect(clippy::needless_pass_by_value)]
|
|
fn to_tonic_err(e: datafusion::error::DataFusionError) -> Status {
|
|
Status::internal(format!("{e:?}"))
|
|
}
|
|
|
|
/// This example shows how to wrap DataFusion with `FlightService` to support looking up schema information for
|
|
/// Parquet files and executing SQL queries against them on a remote server.
|
|
/// This example is run along-side the example `flight_client`.
|
|
pub async fn server() -> Result<(), Box<dyn std::error::Error>> {
|
|
let addr = "0.0.0.0:50051".parse()?;
|
|
let service = FlightServiceImpl {};
|
|
|
|
let svc = FlightServiceServer::new(service);
|
|
|
|
println!("Listening on {addr:?}");
|
|
|
|
Server::builder().add_service(svc).serve(addr).await?;
|
|
|
|
Ok(())
|
|
}
|