GreptimeTeam/greptimedb-ingester-rust

Create a python client from rust client

Opened this issue · 5 comments

Create a python client from rust client

I have do some work with datafusion's python client and I think it should help, any plans here? I want to join.

@francis-du welcome! Currently this rust client has only writes ability. For reads, we are using Arrow Flight to get data.

You can check out this "how-to" docs first.

Our python client repo is here.

@francis-du welcome! Currently this rust client has only writes ability. For reads, we are using Arrow Flight to get data.

You can check out this "how-to" docs first.

Our python client repo is here.

Is Arrow Flight API unimplemented in the Rust client? Do we need to implement it for the Rust client first?

@francis-du right now the Arrow Flight get is implemented in the client embedded in GreptimeDB. Does not extract the related codes to this standalone rust client (it's in the todo list, though). I think we can impl it in py client first.

@francis-du right now the Arrow Flight get is implemented in the client embedded in GreptimeDB. Does not extract the related codes to this standalone rust client (it's in the todo list, though). I think we can impl it in py client first.

OK. I got it. Thank you.