0

I have an azure storage account and two web roles. The storage account is used for the web roles.

The other day I put a file in the storage account but the server couldn't see it. After lots of refresh attempts the server saw the file, only to go away again on the next refresh.

To fix that problem I re-deployed my config file from my computer. After that the files started showing up.

I just put a javascript file in my /js/ folder on my storage account. Normally, this file would show up right away. It's been about 10 minutes and I still can't see the file.

Is this expected behavior? I thought that once a file is deployed it is immediately available to all servers connected to that storage account. Anyone know how to fix this?

p.s. I'm using cloud berry to deploy

4

1 回答 1

1

运行提琴手 (http://fiddler2.com)。有时可以在那里看到问题。正确的是,一旦成功上传了 blob,所有后续请求都应该看到它。(应该没有滞后。)

这让我猜测上传失败(并且 CloudBerry 没有注意到/表明)或者正在寻找 blob 的代码失败。当然,任何一种都是可能的,但是 Fiddler 更容易发现这种事情,因为您应该看到 HTTP 流量来回移动并发现错误。

于 2011-07-16T02:09:01.027 回答