0

I am using pyarrow to connect to the Dremio cloud and query the datasets. Documentation - https://docs.dremio.com/cloud/client-applications/python/

My question is how can I close the connection to Dremio after I finish the job?

idkman
  • 169
  • 1
  • 15
  • 1
    Isn't it a matter of closing the FlightClient? https://arrow.apache.org/docs/python/generated/pyarrow.flight.FlightClient.html#pyarrow.flight.FlightClient.close – 0x26res Jul 30 '22 at 14:57
  • This is the documentation I was looking for. Thanks. – idkman Aug 10 '22 at 11:32

1 Answers1

0

You to call FlichtClient.close

0x26res
  • 11,925
  • 11
  • 54
  • 108