rtyler
03/25/2023, 11:07 PMrtyler
03/26/2023, 5:53 PMtake()
with MapArray
that unblocked yesterday's hacking to where I now have a very good Lambda streaming data from SQS into Delta tables in production 🥳 (production builds off master
branches yolo 🙂 )rtyler
03/27/2023, 5:55 AMrtyler
03/27/2023, 3:59 PMRawDecoder
will help some of the checkpoint memory pressure that @Christian Williams and I have identified in production #kafka-delta-ingest usagertyler
03/27/2023, 5:22 PMrtyler
03/28/2023, 4:27 AMOptimizeBuilder
tonight, and I'm curious why with_filters
takes PartitionFilter<&'a, &'a str>
where T = &'a str
rather than an allocated `String? Lifetimes are not my strength but I'm not sure how it would be possible to create PartitionFilter
with anything other than static strings for the partition values. I have tried a couple different options with no success, and I think the T
used for PartitionFIlter
is just too restrictive 🤔Ian
03/28/2023, 6:06 AMschema": {
"date": {
"data_type": "string",
"partition_column": true,
"nullable": false
},
"shift": {
"data_type": "string",
"partition_column": false,
"nullable": false
}
}
*the above is the schema of the table that we have created but when using deltaTable.sc*hema() it gives the below schema
schema": {
"date": {
"data_type": "string",
"partition_column": true,
"nullable": true
},
"shift": {
"data_type": "string",
"partition_column": false,
"nullable": true
}
}
nullable is returned true when we have set it to false
we are using spark to create the delta tableSlackbot
03/28/2023, 11:18 AMJim Hibbard
03/29/2023, 12:01 AMrtyler
03/29/2023, 5:01 PMrtyler
03/31/2023, 4:28 AMMatthew Powers
03/31/2023, 12:29 PMrtyler
04/03/2023, 8:01 PMMatthew Powers
04/03/2023, 10:37 PMrtyler
04/03/2023, 10:40 PMMatthew Powers
04/03/2023, 11:52 PMswest
04/04/2023, 3:35 PMwrite_deltalake()
, it seems like we can only specify schemas with pyarrow, which unfortunately doesn't preserve the metadata dictionary in the conversion to a deltalake.schema
.rtyler
04/05/2023, 3:40 PMrtyler
04/05/2023, 5:10 PMCreateBuilder
compared to some patterns we have floating around which use JSON for schema definition such as in kafka-delta-ingestLuis Vicente
04/06/2023, 3:53 PMrtyler
04/06/2023, 4:34 PMmain
right now because we have some dependency ranges that are unspecified and were upgraded upstream. I tried to fix the object_store deprecation warning but I do not really understand why the pyspark tests would suddenly start failing or what dependency might have changed to cause that 😕rtyler
04/08/2023, 6:31 AMfiles_matching_predicate
https://github.com/apache/arrow-datafusion/issues/4695Matthew Powers
04/09/2023, 2:02 PMIan Joiner
04/10/2023, 4:09 AMrtyler
04/11/2023, 5:48 PMrtyler
04/11/2023, 7:26 PMrtyler
04/11/2023, 7:27 PMChitral Verma
04/11/2023, 7:59 PMFrom today through April 16, we invite you to review the current draft of the updated Rust Trademark Policy and share any feedback you might have using this form.
Your responses will help us ensure the Rust Trademark Policy is useful for all! 🦀
<https://t.co/XMFKluoQVs|https://t.co/XMFKluoQVs>
Matthew Powers
04/12/2023, 6:07 PMrtyler
04/12/2023, 10:52 PM