1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
use std::{
sync::{
mpsc::{sync_channel, Receiver, SyncSender},
Arc,
},
thread::{self, JoinHandle}, mem::swap,
};
use arrow::{
datatypes::SchemaRef,
error::ArrowError,
record_batch::{RecordBatch, RecordBatchReader},
};
use odbc_api::{buffers::ColumnarAnyBuffer, Cursor};
use crate::{arrow_schema_from, BufferAllocationOptions, Error};
use super::{
odbc_batch_stream::OdbcBatchStream, odbc_reader::next, to_record_batch::ToRecordBatch,
};
/// Arrow ODBC reader. Implements the [`arrow::record_batch::RecordBatchReader`] trait so it can be
/// used to fill Arrow arrays from an ODBC data source. Similar to [`crate::OdbcReader`], yet
/// [`ConcurrentOdbcReader`] fetches ODBC batches in a second transit buffer eagerly from the
/// database in a dedicated system thread. This allows the allocation of the Arrow arrays and your
/// application logic to run on the main thread, while fetching the batches from the source happens
/// concurrently. You need twice the memory for the transit buffer for this strategy, since one is
/// may be in use by the main thread in order to copy values into arrow arrays, while the other is
/// used to write values from the database.
///
/// # Example
///
/// ```no_run
/// use arrow_odbc::{odbc_api::{Environment, ConnectionOptions}, ConcurrentOdbcReader};
/// use std::sync::OnceLock;
///
/// static ENV: OnceLock<Environment> = OnceLock::new();
///
/// const CONNECTION_STRING: &str = "\
/// Driver={ODBC Driver 17 for SQL Server};\
/// Server=localhost;\
/// UID=SA;\
/// PWD=My@Test@Password1;\
/// ";
///
/// fn main() -> Result<(), anyhow::Error> {
///
/// let odbc_environment = ENV.get_or_init(|| {Environment::new().unwrap() });
///
/// // Connect with database.
/// let connection = odbc_environment.connect_with_connection_string(
/// CONNECTION_STRING,
/// ConnectionOptions::default()
/// )?;
///
/// // This SQL statement does not require any arguments.
/// let parameters = ();
///
/// // Execute query and create result set
/// let cursor = connection
/// .into_cursor("SELECT * FROM MyTable", parameters)?
/// .expect("SELECT statement must produce a cursor");
///
/// // Each batch shall only consist of maximum 10.000 rows.
/// let max_batch_size = 10_000;
///
/// // Read result set as arrow batches. Infer Arrow types automatically using the meta
/// // information of `cursor`.
/// let arrow_record_batches = ConcurrentOdbcReader::new(cursor, max_batch_size)?;
///
/// for batch in arrow_record_batches {
/// // ... process batch ...
/// }
/// Ok(())
/// }
/// ```
pub struct ConcurrentOdbcReader<C: Cursor> {
/// Converts the content of ODBC buffers into Arrow record batches
converter: ToRecordBatch,
/// Fetches values from the ODBC datasource using columnar batches. Values are streamed batch
/// by batch in order to avoid reallocation of the buffers used for tranistion.
batch_stream: ConcurrentBlockCursor<C>,
}
impl<C: Cursor + Send +'static> ConcurrentOdbcReader<C> {
/// This constructor infers the Arrow schema from the metadata of the cursor. If you want to set
/// it explicitly use [`Self::with_arrow_schema`].
///
/// # Parameters
///
/// * `cursor`: ODBC cursor used to fetch batches from the data source. The constructor will
/// bind buffers to this cursor in order to perform bulk fetches from the source. This is
/// usually faster than fetching results row by row as it saves roundtrips to the database.
/// The type of these buffers will be inferred from the arrow schema. Not every arrow type is
/// supported though.
/// * `max_batch_size`: Maximum batch size requested from the datasource.
pub fn new(mut cursor: C, max_batch_size: usize) -> Result<Self, Error> {
// Get number of columns from result set. We know it to contain at least one column,
// otherwise it would not have been created.
let schema = Arc::new(arrow_schema_from(&mut cursor)?);
Self::with_arrow_schema(cursor, max_batch_size, schema)
}
/// Construct a new [`crate::ConcurrentOdbcReader`] instance.
///
/// # Parameters
///
/// * `cursor`: ODBC cursor used to fetch batches from the data source. The constructor will
/// bind buffers to this cursor in order to perform bulk fetches from the source. This is
/// usually faster than fetching results row by row as it saves roundtrips to the database.
/// The type of these buffers will be inferred from the arrow schema. Not every arrow type is
/// supported though.
/// * `max_batch_size`: Maximum batch size requested from the datasource.
/// * `schema`: Arrow schema. Describes the type of the Arrow Arrays in the record batches, but
/// is also used to determine CData type requested from the data source.
pub fn with_arrow_schema(
cursor: C,
max_batch_size: usize,
schema: SchemaRef,
) -> Result<Self, Error> {
Self::with(
cursor,
max_batch_size,
Some(schema),
BufferAllocationOptions::default(),
)
}
/// Construct a new [`crate::ConcurrentOdbcReader`] instance. This method allows you full
/// control over what options to explicitly specify, and what options you want to leave to this
/// crate to automatically decide.
///
/// # Parameters
///
/// * `cursor`: ODBC cursor used to fetch batches from the data source. The constructor will
/// bind buffers to this cursor in order to perform bulk fetches from the source. This is
/// usually faster than fetching results row by row as it saves roundtrips to the database.
/// The type of these buffers will be inferred from the arrow schema. Not every arrow type is
/// supported though.
/// * `max_batch_size`: Maximum batch size requested from the datasource.
/// * `schema`: Arrow schema. Describes the type of the Arrow Arrays in the record batches, but
/// is also used to determine CData type requested from the data source. Set to `None` to
/// infer schema from the data source.
/// * `buffer_allocation_options`: Allows you to specify upper limits for binary and / or text
/// buffer types. This is useful support fetching data from e.g. VARCHAR(max) or
/// VARBINARY(max) columns, which otherwise might lead to errors, due to the ODBC driver
/// having a hard time specifying a good upper bound for the largest possible expected value.
pub fn with(
mut cursor: C,
max_batch_size: usize,
schema: Option<SchemaRef>,
buffer_allocation_options: BufferAllocationOptions,
) -> Result<Self, Error> {
let converter = ToRecordBatch::new(&mut cursor, schema.clone(), buffer_allocation_options)?;
let batch_stream = ConcurrentBlockCursor::new(cursor, || {
converter.allocate_buffer(
max_batch_size,
buffer_allocation_options.fallibale_allocations,
)
})?;
Ok(Self {
converter,
batch_stream,
})
}
/// Destroy the ODBC arrow reader and yield the underlyinng cursor object.
///
/// One application of this is to process more than one result set in case you executed a stored
/// procedure.
///
/// Due to the concurrent fetching of row groups you can not know how many row groups have been
/// extracted once the cursor is returned. Unless that is that the entire cursor has been
/// consumed i.e. [`Self::next`] returned `None`.
pub fn into_cursor(self) -> Result<C, odbc_api::Error> {
self.batch_stream.into_cursor()
}
}
impl<C> Iterator for ConcurrentOdbcReader<C>
where
C: Cursor,
{
type Item = Result<RecordBatch, ArrowError>;
fn next(&mut self) -> Option<Self::Item> {
next(&mut self.batch_stream, &mut self.converter)
}
}
impl<C> RecordBatchReader for ConcurrentOdbcReader<C>
where
C: Cursor,
{
fn schema(&self) -> SchemaRef {
self.converter.schema().clone()
}
}
pub struct ConcurrentBlockCursor<C> {
/// We currently only borrow these buffers to the converter, so we take ownership of them here.
buffer: ColumnarAnyBuffer,
/// In order to avoid reallocating buffers over and over again, we use this channel to send the
/// buffers back to the fetch thread after we copied their contents into arrow arrays.
send_buffer: SyncSender<ColumnarAnyBuffer>,
/// Receives filled batches from the fetch thread. Once the source is empty or if an error
/// occurs its associated sender is dropped, and receiving batches will return an error (which
/// we expect during normal operation and cleanup, and is not forwarded to the user).
receive_batch: Receiver<ColumnarAnyBuffer>,
/// We join with the fetch thread if we stop receiving batches (i.e. receive_batch.recv()
/// returns an error) or `into_cursor` is called. `None` if the thread has already been joined.
/// In this case either an error has been reported to the user, or the cursor is stored in
/// `cursor`.
fetch_thread: Option<JoinHandle<Result<C, odbc_api::Error>>>,
/// Only `Some`, if the cursor has been consumed succesfully and `fetch_thread` has been joined.
/// Can only be `Some` if `fetch_thread` is `None`. If both `fetch_thread` and `cursor` are
/// `None`, it is implied that `fetch_thread` returned an error joining.
cursor: Option<C>,
}
impl<C> ConcurrentBlockCursor<C>
where
C: Cursor + Send + 'static,
{
pub fn new(
mut cursor: C,
make_buffer: impl Fn() -> Result<ColumnarAnyBuffer, Error>,
) -> Result<Self, Error> {
let (send_buffer, receive_buffer) = sync_channel(1);
let (send_batch, receive_batch) = sync_channel(1);
let fetch_thread = thread::spawn(move || {
while let Ok(buffer) = receive_buffer.recv() {
let mut block_cursor = cursor.bind_buffer(buffer).unwrap();
match block_cursor.fetch_with_truncation_check(true) {
Ok(Some(_batch)) => {
match block_cursor.unbind() {
Ok((unbound_cursor, buffer)) => {
cursor = unbound_cursor;
if send_batch.send(buffer).is_err() {
return Ok(cursor);
}
}
// Error unbinding buffer from cursor
Err(odbc_error) => return Err(odbc_error),
}
}
Ok(None) => {
return block_cursor
.unbind()
.map(|(undbound_cursor, _buffer)| undbound_cursor);
}
Err(odbc_error) => {
drop(send_batch);
return Err(odbc_error);
}
}
}
Ok(cursor)
});
let _ = send_buffer.send(make_buffer()?);
let buffer = make_buffer()?;
Ok(Self {
buffer,
send_buffer,
receive_batch,
fetch_thread: Some(fetch_thread),
cursor: None,
})
}
pub fn into_cursor(self) -> Result<C, odbc_api::Error> {
// Fetch thread should never be blocked for a long time in receiving buffers. Yet it could
// wait for a long time on the application logic to receive an arrow buffer using next. We
// drop the receiver here explicitly in order to be always able to join the fetch thread,
// even if the iterator has not been consumed to completion.
drop(self.receive_batch);
if let Some(cursor) = self.cursor {
Ok(cursor)
} else {
self.fetch_thread.unwrap().join().unwrap()
}
}
}
impl<C> OdbcBatchStream for ConcurrentBlockCursor<C> {
type Cursor = C;
fn next(&mut self) -> Result<Option<&ColumnarAnyBuffer>, odbc_api::Error> {
match self.receive_batch.recv() {
// We successfully fetched a batch from the database.
Ok(mut batch) => {
swap(&mut self.buffer, &mut batch);
let _ = self.send_buffer.send(batch);
Ok(Some(&self.buffer))
}
// Fetch thread stopped sending batches. Either because we consumed the result set
// completly or we hit an error.
Err(_receive_error) => {
if let Some(join_handle) = self.fetch_thread.take() {
// If there has been an error returning the batch, or unbinding the buffer `?`
// will raise it.
self.cursor = Some(join_handle.join().unwrap()?);
// We ran out of batches in the result set. End the stream.
Ok(None)
} else {
// This only happen if `next` is called after it returned either a `None` or
// `Err` once. Let us just answer with `None`.
Ok(None)
}
}
}
}
}