cloud

Is it a good idea to reuse an Azure web role for backend processing?

偶尔善良 提交于 2019-11-28 07:55:54
问题 I'm porting a huge application to Windows Azure. It will have a web service frontend and a processing backend. So far I thought I would use web roles for servicing client requests and worker roles for backend processing. Managing two kinds of roles seems problematic - I'll need to decide how to scale two kinds of roles and also I'll need several (at least two) instances of each to ensure reasonable fault tolerance and this will slightly increase operational costs. Also in my application

How to turn on/off cloud instances during office hours

安稳与你 提交于 2019-11-28 05:55:15
I've got my head around creating cloud instances in AWS, Azure and Rackspace. However, I need to turn my instances off at the end of the day and on in the morning as this will half my hosting cost (they are for development). I've looked at a few management services but they blew my brains out. Is there a simple way to do this? Steffen Opel Approach You could always roll your own solution, insofar most cloud providers offer a respective API to start/stop instances on demand (or even on schedule), which is what those management services are actually using as well of course - the AmazonEC2 Java

How to get more than 1000 results Parse [duplicate]

徘徊边缘 提交于 2019-11-28 05:03:40
问题 This question already has answers here : How to retrieve more than 1000 rows from Parse.com? (7 answers) Closed 3 years ago . I have a cloud code which returns sometimes more than 1000 results , I am not getting how to chain query to get more than 1000 results in following code. var User = Parse.Object.extend("Journal"); var mainQuery = new Parse.Query(User); mainQuery.equalTo("user",username); mainQuery.limit(1000); mainQuery.find({ success: function(results) { count = 0; var avg = 0;

anonymous read with amazon simpledb

狂风中的少年 提交于 2019-11-28 04:46:32
问题 I would like to query simpledb directly from the client using javascript. My application is read-heavy and I rather not route the request through my application server. Is it possible to perform a select request without authentication? I could set up an authentication server, but this is rather inelegant as it will just be saying yes to every read request and would introduce another bottleneck/speedbump/point of failure. Do the other cloud db solutions (microsoft, google) have this

What alternatives are there to Google App Engine? [closed]

我只是一个虾纸丫 提交于 2019-11-28 03:08:29
What alternatives are there to GAE, given that I already have a good bit of code working that I would like to keep. In other words, I'm digging python. However, my use case is more of a low number of requests, higher CPU usage type use case, and I'm worried that I may not be able to stay with App Engine forever. I have heard a lot of people talking about Amazon Web Services and other sorts of cloud providers, but I am having a hard time seeing where most of these other offerings provide the range of services (data querying, user authentication, automatic scaling) that App Engine provides. What

Is there a business proven cloud store / Key=>Value Database? (Open Source) [closed]

无人久伴 提交于 2019-11-28 03:06:35
I have been looking for cloud computing / storage solutions for a long time (inspired by the Google Bigtable). But I can't find a easy-to-use, business-ready solution. I'm searching a simple, fault tolerant, distributed Key=>Value DB like SimpleDB from Amazon. I've seen things like: The CouchDB Project : Simple and distributed, fault-tolerant Database. But it understands only JSON. No XML connectors etc. Eucalyptus : Nice Amazon EC2 interfaces. Open Standards & XML. But less distributed and less fault-tolerant? There are also a lot of open tickets with XEN/VMWare issues. Cloudstore / Kosmosfs

What is Cloud computing? [closed]

北城以北 提交于 2019-11-28 02:55:19
Could anybody explain in plain words how Cloud computing works? I have read the Wikipedia article , but still not sure that I understand how cloud actually works. Aside from the latest marketing term? Basically all the resources your program needs are held "somewhere" on the internet. You interact with them via a defined service contract; SOAP, REST, POX or whatever and what happens after that is up to the service provider. You don't care about how your information is stored or how the service is provided, just that it is. If, for example, you wanted to store files, you may choose to use

Force CloudFront distribution/file update

巧了我就是萌 提交于 2019-11-28 02:37:22
I'm using Amazon's CloudFront to serve static files of my web apps. Is there no way to tell a cloudfront distribution that it needs to refresh it's file or point out a single file that should be refreshed? Amazon recommend that you version your files like logo_1.gif, logo_2.gif and so on as a workaround for this problem but that seems like a pretty stupid solution. Is there absolutely no other way? Good news. Amazon finally added an Invalidation Feature. See the API Reference . This is a sample request from the API Reference: POST /2010-08-01/distribution/[distribution ID]/invalidation HTTP/1

Options for cloud based MS Access backend

♀尐吖头ヾ 提交于 2019-11-28 01:53:58
问题 Our company has used Access for its database needs. It wants to stick with the current database frontend, but migrate the tables to some cloud based solution. We do not want to host SharePoint or pay a monthly fee for Office 365. I have used MySql as a backend, but we had to install drivers. We will also be gathering data from Google Forms on a regular basis. Can anyone suggest possible options for this combination? Data from Google Forms, Access frontend, and cloud based backend. Thanks! 回答1

How to edit files in AWS S3 in the browser?

时光总嘲笑我的痴心妄想 提交于 2019-11-28 00:40:33
I have hosted my Homepage over Amazon's S3 system. In order to change information on the page, currently, I have to change the file on my computer and upload the new version. However, I would like to directly change the file in the S3 bucket within a browser (to change it anywhere). Is there a cloud-based text editor that can use S3 as a "file system" and would allow me to change text files (e.g., html, css, js, etc.)? I would use S3 Sync from the awscli to download the files and edit them locally before syncing them back to their original location and updating the originals. Documentation on