Arroyo is a Rust-based stream processing engine that performs reliable computation on data across many supported sources and writes to a similar number of sinks. It has support for writing vanilla parquet to S3, as well as a Delta Lake integration. We'd like to also be able to write to Iceberg tables. Because of the consistency mechanisms of Arroyo, writes will be done separately from adding the files to the table, so we only need something like an "insert_table()" method on an existing table. It'd also be helpful to have some sort of "create table if not exist", but if that's more work we can tell users they have to make the table themselves.