GreptimeTeam / greptimedb-ingester-rust

A Rust ingester for GreptimeDB, which is compatible with GreptimeDB protocol and lightweight.
Apache License 2.0
13 stars 2 forks source link

Create a python client from rust client #5

Open killme2008 opened 1 year ago

francis-du commented 1 year ago

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

MichaelScofield commented 1 year ago

@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 commented 1 year ago

@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?

MichaelScofield commented 1 year ago

@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 commented 1 year ago

@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.