Troubleshooting FlightUnavailableError in Arize Client
--------------------------------------------------------------------------- FlightUnavailableError Traceback (most recent call last) File ~/Desktop/Intern/MoniteringAgents/Monitering/lib/python3.11/site-packages/arize/experimental/datasets/core/client.py:582, in ArizeDatasetsClient.get_dataset(self, space_id, dataset_id, dataset_name, dataset_version, convert_json_str_to_dict) 581 try: --> 582 reader = flight_client.do_get(ticket, self.session.call_options) 583 df = reader.read_all().to_pandas() File ~/Desktop/Intern/MoniteringAgents/Monitering/lib/python3.11/site-packages/pyarrow/_flight.pyx:1708, in pyarrow._flight.FlightClient.do_get() File ~/Desktop/Intern/MoniteringAgents/Monitering/lib/python3.11/site-packages/pyarrow/_flight.pyx:68, in pyarrow._flight.check_flight_status() FlightUnavailableError: Flight returned unavailable error, with message: DNS resolution failed for flight.arize.com:443: C-ares status is not ARES_SUCCESS qtype=A name=flight.arize.com is_balancer=0: Timeout while contacting DNS servers. gRPC client debug context: UNKNOWN:DNS resolution failed for flight.arize.com:443: C-ares status is not ARES_SUCCESS qtype=A name=flight.arize.com is_balancer=0: Timeout while contacting DNS servers {grpc_status:14, created_time:"2025-06-16T14:13:30.555762+05:30"}. Client context: IOError: Server never sent a data message. Detail: Internal The above exception was the direct cause of the following exception: RuntimeError Traceback (most recent call last) Cell In[23], line 2 1 arize_client = ArizeDatasetsClient(api_key=API_KEY) ----> 2 dataset = arize_client.get_dataset(space_id=SPACE_ID, dataset_id="") 3 dataset.head() File ~/Desktop/Intern/MoniteringAgents/Monitering/lib/python3.11/site-packages/arize/experimental/datasets/core/client.py:585, in ArizeDatasetsClient.get_dataset(self, space_id, dataset_id, dataset_name, dataset_version, convert_json_str_to_dict) 583 df = reader.read_all().to_pandas() 584 except BaseException as exc: --> 585 raise RuntimeError( 586 f"Failed to get dataset name={dataset_name}, id={dataset_id} for space_id={space_id}" 587 ) from exc 588 else: 589 if convert_json_str_to_dict is True: RuntimeError: Failed to get dataset name=None, id== for space_id=== What is this error, how to fix it?
