type DataBatch struct {
Data interface{} // The actual data, e.g., Arrow Record, byte slice, etc. Metadata map[string]string// Metadata associated with the data, key-value pairs Error error// Error associated with the batch Schema *arrow.Schema// Schema associated with the data}