| 
6 | 6 | use super::{Message, Sink};  | 
7 | 7 | 
 
  | 
8 | 8 | use arrow_json::reader::{ReaderBuilder, infer_json_schema};  | 
9 |  | -use async_channel::{Receiver, Sender, bounded};  | 
 | 9 | +use async_channel::{Receiver, Sender, unbounded};  | 
10 | 10 | use async_compat::Compat;  | 
11 | 11 | use dipstick::InputQueueScope;  | 
12 | 12 | use object_store::ObjectStore;  | 
@@ -52,7 +52,7 @@ impl Sink for Parquet {  | 
52 | 52 |         schemas: &[crate::settings::Schema],  | 
53 | 53 |         _stats: InputQueueScope,  | 
54 | 54 |     ) -> Self {  | 
55 |  | -        let (tx, rx) = bounded(1024);  | 
 | 55 | +        let (tx, rx) = unbounded();  | 
56 | 56 |         // [object_store] largely expects environment variables to be all lowercased for  | 
57 | 57 |         // consideration as options  | 
58 | 58 |         let opts: HashMap<String, String> =  | 
@@ -136,7 +136,7 @@ impl Sink for Parquet {  | 
136 | 136 |                         destination,  | 
137 | 137 |                         payload,  | 
138 | 138 |                     } => {  | 
139 |  | -                        let _span = span!(Level::INFO, "Parquet sink recv");  | 
 | 139 | +                        let _span = span!(Level::DEBUG, "Parquet sink recv");  | 
140 | 140 | 
 
  | 
141 | 141 |                         if !buffer.contains_key(&destination) {  | 
142 | 142 |                             buffer.insert(destination.clone(), vec![]);  | 
 | 
0 commit comments