You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let writer_properties = WriterProperties::builder().set_writer_version(WriterVersion::PARQUET_2_0)
152
+
// TODO @TEDDY AND @WILLE THESE MAX SETTINGS DO NOTHING ?
153
+
let writer_properties = WriterProperties::builder().set_max_row_group_size(300).set_write_batch_size(300).set_writer_version(WriterVersion::PARQUET_2_0)
letmut writer = RecordBatchWriter::for_table(&table).expect("Failed to make RecordBatchWriter")
156
158
.with_writer_properties(writer_properties);
157
159
@@ -162,6 +164,7 @@ impl DeltaOut {
162
164
&metadata.schema().expect("failed to get schema"),
163
165
)
164
166
.expect("Failed to convert to arrow schema");
167
+
letmut adds_tot:usize=0;
165
168
166
169
'outer:loop{
167
170
letmut message = receiver.recv();
@@ -172,14 +175,14 @@ impl DeltaOut {
172
175
break'outer;
173
176
}
174
177
let nrb=rb.with_schema(Arc::new(arrow_schema.clone())).unwrap();
175
-
// let nrb=rb;
178
+
// let nrb=rb;
176
179
info!("nrb rows={} nrb col len {} batchcount={} usize={}",nrb.num_rows(),nrb.columns().len(),writer.buffered_record_batch_count(),writer.buffer_len());
0 commit comments