cloud

What is the maximum file size which i can upload to azure blob uploadfile method

亡梦爱人 提交于 2019-12-23 07:46:37
问题 Please can i know what the maximum file size to upload to the azure storage blob using uploadfile api. 回答1: Block Blobs originally had a maximum size of 200GB (with 4MB block size), and now may be up to 4.77TB (with new 100MB block size). Maximum number of blocks per blob: 50,000. Take a look at operations on Block Blobs for more information about the REST API calls (including Put Block and Put Block List ) 回答2: Update: as of December 2016 the maximum size of a Block Blob has increased to

Android GCM error. Server returns Not Registered when client IS registered

人走茶凉 提交于 2019-12-23 07:07:09
问题 I followed the demo given at http://developer.android.com/google/gcm/gs.html and got a trial application, GCMTrial to work correctly. But, i tried to follow the same steps on an existing application but it didnot work. So I made an entirely new project. But even then , following the same exact steps, I couldnt get GCM to send a message successfully. So I tried renaming GCMTrial to the required name, and not that too does not work. I register for GCM via the main activity and get the following

Google Cloud documentation misleading

不想你离开。 提交于 2019-12-23 04:57:17
问题 On this link, under "Deploying, Downloading, and Running the Sample", point 6, it is stated this: "In the upper left, locate the two small dots under the sample app icon, and click the second dot to switch to the Mobile Backend sample". Following the steps so far, there is no "upper left two small dots" or "sample app icon".. Is the documentation obsolete with some changes that are being done on the Cloud Console or am I missing something here.. also there is no [easy] way to delete Projects,

SqlServerSpatial110.dll failed to copy on Windows Azure deployment

岁酱吖の 提交于 2019-12-23 04:53:29
问题 I have an exsting which is deployed on Windows Azure. But the deployment has been failed with following error. How to fix his Copying file SqlServerTypes\x64\SqlServerSpatial110.dll to C:\DWASFiles\Sites\<project>\Temp\b3d105f6-8fd0-4093-9957-8174422abded\SqlServerTypes\x64\SqlServerSpatial110.dll failed. Could not find file 'SqlServerTypes\x64\SqlServerSpatial110.dll'. How do I fix this issue? 回答1: I had this problem recently and found this blog post that solved it for me: http://blogs.msdn

socket.io over multiple servers w/o redis

强颜欢笑 提交于 2019-12-23 02:38:49
问题 my api endpoints are spread over multiple servers over multiple locations and i am trying to figure out how to deal with socket updates on connected clients. i would really like to avoid having a single redis db setup just to handle the connected clients over the many servers. i wont have to broadcast messages, socket messages will always be sent to a single user. while i know each connected clients channel id i am not sure if its possible to just emit a message to a single user when i just

Push Notifications without Azure service?

允我心安 提交于 2019-12-22 18:39:14
问题 We tried hard to manage using background services in WP8, but even with Location Tracking it has lot many limitations. So we chose to go for Push Notifications to work as background service . I have gone through lots of resources talking about Push Notifications with Windows Azure Mobile Service , is there any way we can use Push Notifications using our own server? Secondly, what is exactly MPNS (Microsoft Push Notification Service)? Is it some service running in my mobile? Is it free or paid

Why does IIS accept requests before RoleEntryPoint.OnStart returns?

送分小仙女□ 提交于 2019-12-22 18:37:40
问题 I'm playing with Azure sample from here on Compute Emulator and I found that if I make OnStart() in my class inherited from RoleEntryPoint rather slow to return the .aspx page in the web role accepts HTTP requests even before OnStart() returns. I find it rather confusing - why would IIS accept requests to the role that hasn't yet started? 回答1: The emulator does not emulate the load balancer 100%. For the cloud, when your role is in OnStart() you are reported to the LB as Busy and no traffic

Why does IIS accept requests before RoleEntryPoint.OnStart returns?

半腔热情 提交于 2019-12-22 18:37:13
问题 I'm playing with Azure sample from here on Compute Emulator and I found that if I make OnStart() in my class inherited from RoleEntryPoint rather slow to return the .aspx page in the web role accepts HTTP requests even before OnStart() returns. I find it rather confusing - why would IIS accept requests to the role that hasn't yet started? 回答1: The emulator does not emulate the load balancer 100%. For the cloud, when your role is in OnStart() you are reported to the LB as Busy and no traffic

Google sheet : REGEXREPLACE match everything except a particular pattern

蓝咒 提交于 2019-12-22 14:58:15
问题 I would try to replace everything inside this string : [JGMORGAN - BANK2] n° 10 NEWYORK, n° 222 CAEN, MONTELLIER, VANNES / TARARTA TIs 1303222074, 1403281851 & 1307239335 et Cloture TIs 1403277567, 1410315029 Except the following numbers : 1303222074 1403281851 1307239335 1403277567 1410315029 I have built a REGEX to match them : 1[0-9]{9} But I have not figured it out to do the opposite that is everything except all matches ... 回答1: google spreadsheet use the Re2 regex engine and doesn't

Google sheet : REGEXREPLACE match everything except a particular pattern

孤街醉人 提交于 2019-12-22 14:58:07
问题 I would try to replace everything inside this string : [JGMORGAN - BANK2] n° 10 NEWYORK, n° 222 CAEN, MONTELLIER, VANNES / TARARTA TIs 1303222074, 1403281851 & 1307239335 et Cloture TIs 1403277567, 1410315029 Except the following numbers : 1303222074 1403281851 1307239335 1403277567 1410315029 I have built a REGEX to match them : 1[0-9]{9} But I have not figured it out to do the opposite that is everything except all matches ... 回答1: google spreadsheet use the Re2 regex engine and doesn't