How to upload data to dremio nessie iceberg table via apache arrow flight?

how to upload data to dremio nessie iceberg table via apache arrow flight?

i have python polars dataframe but need to upload that data to my dremio server.

any way to do that without spark or javahome?

because using INSERT query is too slow and i dont have permission to install spark or javahome on my server.

or any other faster way to inject data to dremio nessie iceberg table?

Fastest way we found is uploading our data as a file, and then using COPY INTO | Dremio Documentation

@ganbaatar If your table is already created and Iceberg on Nessie catalog, you should be able to see it in the Dremio UI under your sources. Also you should be able to insert into that table from Dremio either via UI or any other JDBC client or ODBC client (internally Dremio will only use Arrow flight)