Localhost unavailable: WSA error

未关闭
#729 1 条评论 1 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
4/5
预计耗时
3-5 天
新手友好度
25/100
Issue 类型
缺陷
描述清晰度
需要澄清
活跃度
停滞
技术栈
python
领域
databases

调研方向

首先,使用显示的 FIRESTORE_EMULATOR_HOST 值以及列出的 Python、Windows 和 emulator 版本,复现 main.py 中的失败。通过 google.api_core 和 grpc 阅读 traceback,然后将 Python 客户端对 emulator 连接的处理方式与正常工作的云配置进行比较。完成的标准是找出可复现的 SDK 或环境原因,并添加有针对性的回归测试或明确受支持的配置指南。

由索引模型根据 Issue 内容生成。

描述

api: emulators
[REQUIRED] Step 2: Describe your environment
  • Operating System version: Windows 10
  • Firebase SDK version: 12.4.2
  • Firebase Product: firestore (auth, database, storage, etc)
  • Python version: 3.10.13
  • Pip version: 23.2.1
[REQUIRED] Step 3: Describe the problem

I'm dealing with a Python+Emulator problem. My emulator works in Flutter, but not in Python, and it works in Python on Cloud Firestore. It's only the Python+Emulator combo that is giving me trouble.

It was working earlier today, but so far my backtracking attempts have been unsuccessful.

I've tried restarting my machine, and the emulator, but neither have worked so far.

Steps to reproduce:

What happened? How can we make the problem occur?
This could be a description, log/console output, etc.

Traceback (most recent call last):
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\grpc_helpers.py", line 162, in error_remapped_callable
    return _StreamingResponseIterator(
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\grpc_helpers.py", line 88, in __init__        
    self._stored_first_result = next(self._wrapped)
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\grpc\_channel.py", line 541, in __next__
    return self._next()
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\grpc\_channel.py", line 967, in _next
    raise self
grpc._channel._MultiThreadedRendezvous: <_MultiThreadedRendezvous of RPC that terminated with:
        status = StatusCode.UNAVAILABLE
        details = "DNS resolution failed for http://localhost:8080: UNAVAILABLE: WSA Error"
        debug_error_string = "UNKNOWN:DNS resolution failed for http://localhost:8080: UNAVAILABLE: WSA Error {created_time:"2023-10-07T20:33:00.4853876+00:00", grpc_status:14}"
>

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\retry.py", line 191, in retry_target
    return target()
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\timeout.py", line 120, in func_with_timeout   
    return func(*args, **kwargs)
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\grpc_helpers.py", line 166, in error_remapped_callable
    raise exceptions.from_grpc_error(exc) from exc
google.api_core.exceptions.ServiceUnavailable: 503 DNS resolution failed for http://localhost:8080: UNAVAILABLE: WSA Error        

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "d:\Projects\info_extractor\main.py", line 66, in <module>
    print(doc_ref.get())
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\cloud\firestore_v1\query.py", line 172, in get
    return list(result)
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\cloud\firestore_v1\query.py", line 287, in stream      
    response_iterator, expected_prefix = self._get_stream_iterator(
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\cloud\firestore_v1\query.py", line 221, in _get_stream_iterator
    response_iterator = self._client._firestore_api.run_query(
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\cloud\firestore_v1\services\firestore\client.py", line 
1309, in run_query
    response = rpc(
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\gapic_v1\method.py", line 113, in __call__    
    return wrapped_func(*args, **kwargs)
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\retry.py", line 349, in retry_wrapped_func    
    return retry_target(
  File "D:\Programs\anaconda3\envs\info_extractor\lib\site-packages\google\api_core\retry.py", line 207, in retry_target
    raise exceptions.RetryError(
google.api_core.exceptions.RetryError: Deadline of 300.0s exceeded while calling target function, last exception: 503 DNS resolution failed for http://localhost:8080: UNAVAILABLE: WSA Error

Also, this comes out of one of the emulator processes (unsure which):

Oct 07, 2023 8:54:35 PM io.gapi.emulators.netty.HttpVersionRoutingHandler channelRead
INFO: Detected non-HTTP/2 connection.
Relevant Code:

My .env:

FIRESTORE_EMULATOR_HOST=http://localhost:8080
STORAGE_EMULATOR_HOST=http://localhost:9199

When I remove http:// from the variables, I get instead that no connection adapters are available.

import firebase_admin


def initialize_firestore():
    app = firebase_admin.initialize_app()
    db = firestore.client()
    return app, db


if __name__ == "__main__":
    callback_done = threading.Event()

    app, db =initialize_firestore()
    doc_ref = db.collection('files').where(
        filter=FieldFilter('extractedText', '==', ''))
    print(doc_ref.get())
    print('Statement complete')

Code hangs on the second-to-last statement. It works fine on Google Cloud, it's only on emulator that it doesn't work, which is why I'm posting here.

主要语言
Python
星标
1.2k
派生
359
平均合并
5 天 6 分钟
30 天内合并 PR
2

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

firebase/firebase-admin-python 的其他 Issue

查看 firebase/firebase-admin-python 的全部 Issue

相似的 Issue

更多 Python Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。