Wandb: Network error (ConnectTimeout), entering retry loop

my code :

import wandb
for x in range(10):
    run = wandb.init(settings=wandb.Settings(start_method="thread"))
    for y in range (100):
        wandb.log({"metric": x+y})
    run.finish()

output:

wandb: W&B API key is configured. Use `wandb login --relogin` to force relogin
wandb: Tracking run with wandb version 0.14.0
wandb: Run data is saved locally in /home/xyc/Code/RumorDG/method/CDCL/wandb/run-20230401_083434-fi3tttps
wandb: Run `wandb offline` to turn off syncing.
wandb: Syncing run clear-firebrand-1
wandb: ⭐️ View project at https://wandb.ai/moailaozi/uncategorized
wandb: 🚀 View run at https://wandb.ai/moailaozi/uncategorized/runs/fi3tttps
wandb: Waiting for W&B process to finish... (success).
wandb: Network error (ConnectTimeout), entering retry loop.

Hello! It looks like there is a Connection issue between your client and the wandb server. There a variety of reasons to why there would be a connection issues but common reasons are

  • a Proxy
  • VPN
  • a load balancer
  • weak internet connections

Are you behind a proxy, VPN, or a load balancer? If not, could you send the debug bundle for the run. They should be located in the wandb folder in the same directory as where the script was run. The wandb folder has folders formatted as run-DATETIME-ID associated with a single run. Could you retrieve the debug.log and debug-internal.log files from one of these folders specifically from the run that is having issues?

Hi there, I wanted to follow up on this request. Please let us know if we can be of further assistance or if your issue has been resolved.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.