mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-29 09:38:59 +00:00
af46a61fde
Signed-off-by: houseme <housemecn@gmail.com> Co-authored-by: heihutu <heihutu@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
115 lines
4.7 KiB
Rust
115 lines
4.7 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed 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.
|
|
|
|
use crate::query::Context;
|
|
use crate::{QueryError, QueryResult, object_store::EcObjectStore};
|
|
use datafusion::{
|
|
execution::{SessionStateBuilder, context::SessionState, runtime_env::RuntimeEnvBuilder},
|
|
prelude::SessionContext,
|
|
};
|
|
use object_store::{ObjectStore, ObjectStoreExt, memory::InMemory, path::Path};
|
|
use std::sync::Arc;
|
|
use tracing::error;
|
|
|
|
#[derive(Clone)]
|
|
pub struct SessionCtx {
|
|
_desc: Arc<SessionCtxDesc>,
|
|
inner: SessionState,
|
|
}
|
|
|
|
impl SessionCtx {
|
|
pub fn inner(&self) -> &SessionState {
|
|
&self.inner
|
|
}
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct SessionCtxDesc {
|
|
// maybe we need some info
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct SessionCtxFactory {
|
|
pub is_test: bool,
|
|
}
|
|
|
|
impl SessionCtxFactory {
|
|
pub async fn create_session_ctx(&self, context: &Context) -> QueryResult<SessionCtx> {
|
|
let df_session_ctx = self.build_df_session_context(context).await?;
|
|
|
|
Ok(SessionCtx {
|
|
_desc: Arc::new(SessionCtxDesc {}),
|
|
inner: df_session_ctx.state(),
|
|
})
|
|
}
|
|
|
|
async fn build_df_session_context(&self, context: &Context) -> QueryResult<SessionContext> {
|
|
let path = format!("s3://{}", context.input.bucket);
|
|
let store_url = url::Url::parse(&path).unwrap();
|
|
let rt = RuntimeEnvBuilder::new().build()?;
|
|
let df_session_state = SessionStateBuilder::new()
|
|
.with_runtime_env(Arc::new(rt))
|
|
.with_default_features();
|
|
|
|
let df_session_state = if self.is_test {
|
|
let store: Arc<dyn ObjectStore> = Arc::new(InMemory::new());
|
|
|
|
// Choose test data format based on what the request serialization specifies.
|
|
let data_bytes: &[u8] = if context.input.request.input_serialization.json.is_some() {
|
|
// NDJSON: one JSON object per line — usable for both LINES and DOCUMENT
|
|
// requests (DOCUMENT inputs are converted to NDJSON by EcObjectStore, but
|
|
// in test mode we bypass EcObjectStore, so we put NDJSON here directly).
|
|
b"{\"id\":1,\"name\":\"Alice\",\"age\":25,\"department\":\"HR\",\"salary\":5000}\n\
|
|
{\"id\":2,\"name\":\"Bob\",\"age\":30,\"department\":\"IT\",\"salary\":6000}\n\
|
|
{\"id\":3,\"name\":\"Charlie\",\"age\":35,\"department\":\"Finance\",\"salary\":7000}\n\
|
|
{\"id\":4,\"name\":\"Diana\",\"age\":22,\"department\":\"Marketing\",\"salary\":4500}\n\
|
|
{\"id\":5,\"name\":\"Eve\",\"age\":28,\"department\":\"IT\",\"salary\":5500}\n\
|
|
{\"id\":6,\"name\":\"Frank\",\"age\":40,\"department\":\"Finance\",\"salary\":8000}\n\
|
|
{\"id\":7,\"name\":\"Grace\",\"age\":26,\"department\":\"HR\",\"salary\":5200}\n\
|
|
{\"id\":8,\"name\":\"Henry\",\"age\":32,\"department\":\"IT\",\"salary\":6200}\n\
|
|
{\"id\":9,\"name\":\"Ivy\",\"age\":24,\"department\":\"Marketing\",\"salary\":4800}\n\
|
|
{\"id\":10,\"name\":\"Jack\",\"age\":38,\"department\":\"Finance\",\"salary\":7500}\n"
|
|
} else {
|
|
b"id,name,age,department,salary
|
|
1,Alice,25,HR,5000
|
|
2,Bob,30,IT,6000
|
|
3,Charlie,35,Finance,7000
|
|
4,Diana,22,Marketing,4500
|
|
5,Eve,28,IT,5500
|
|
6,Frank,40,Finance,8000
|
|
7,Grace,26,HR,5200
|
|
8,Henry,32,IT,6200
|
|
9,Ivy,24,Marketing,4800
|
|
10,Jack,38,Finance,7500"
|
|
};
|
|
|
|
let path = Path::from(context.input.key.clone());
|
|
store.put(&path, data_bytes.into()).await.map_err(|e| {
|
|
error!("put data into memory failed: {}", e.to_string());
|
|
QueryError::StoreError { e: e.to_string() }
|
|
})?;
|
|
|
|
df_session_state.with_object_store(&store_url, Arc::new(store)).build()
|
|
} else {
|
|
let store: EcObjectStore =
|
|
EcObjectStore::new(context.input.clone()).map_err(|_| QueryError::NotImplemented { err: String::new() })?;
|
|
df_session_state.with_object_store(&store_url, Arc::new(store)).build()
|
|
};
|
|
|
|
let df_session_ctx = SessionContext::new_with_state(df_session_state);
|
|
|
|
Ok(df_session_ctx)
|
|
}
|
|
}
|