| By Adam Grocholski | Article Rating: |
|
| November 14, 2013 11:00 AM EST | Reads: |
257 |
In my previous post (http://thinkfirstcodelater.com/blog/?p=3407) I showed you how to use the Windows Azure Cross Platform command line tools to view the scalability settings of a Windows Azure Mobile Service. In this post I’ll show you how to use the command line tools to change the scalability settings of a Windows Azure Mobile Service.
![]()
Once again, just a reminder that I’m using the command line tools on a MacBook Air with OSX (Mavericks) installed, and I’m using Google Chrome as my default browser. However, the experience should be identical on Windows and Linux as well.
Open an instance of your command line (Terminal, Bash, Command Prompt, etc.) and type the following:
azure mobile scale change -h
As you can see from the output, the azure mobile scale change command is the command to use to change the scalability settings of a Windows Azure Mobile Service. Besides the servicename parameter, there are two other options you can specify
- -t, —tier. The tier you want your Windows Azure Mobile Service to run in. Currently there are three tiers available
- free. In the free tier you can have up to 10 free services/month. You also get up to 500K API calls, 500 active devices, 1 scheduled job and one 20 MB database. In the free tier you do not have the ability to scale.
- standard. The standard tier currently costs $25/month/unit and includes 1.5M API calls, an unlimited number of active devices, 10 scheduled jobs and one 20 MB database. In the standard tier you have the ability to scale up to 6 units.
- premium. The premium tier costs $199/month/unit and includes 15M API calls, an unlimited number of active devices, 10 scheduled jobs and one 20 MB database. In the premium tier you have the ability to scale up to 10 units.
For full pricing details please see http://www.windowsazure.com/en-us/pricing/details/mobile-services/.
- -i, —numberOfInstances. The number of instances you want your Windows Azure Mobile Service to run on (only available for the standard and premium tiers).
Let’s proceed by moving an existing Windows Azure Mobile Service from the free to the standard tier by typing the following into your CLI, substituting where necessary:
azure mobile scale change -t standard ‘[YOUR MOBILE SERVICE NAME]‘
I used the following:
azure mobile scale change -t standard zumo-00005′
Once the command completes, you can use the azure mobile scale show command that I discussed in my previous post (http://thinkfirstcodelater.com/blog/?p=3407) to verify the changes.
You can also verify this by going to the Windows Azure Management Portal and looking at the SCALE page for you mobile service.
Now, let’s move this service to the premium tier and increase the instance count by one. Enter the following into your CLI, once again substituting where appropriate:
azure mobile scale change -t premium -i 2 ‘[YOUR MOBILE SERVICE NAME]‘
I used the following for my mobile service:
azure mobile scale change -t premium -i 2 ‘zumo-00005′
Once again, you can use the azure mobile scale show command to verify the changes.
That’s it. In my next post I’ll show you how to use the Windows Azure cross platform command line tools to restart a Windows Azure Mobile Service.
Did you know you can try Windows Azure for free for 30 days? Just go to http://aka.ms/thecloud and sign up.
Read the original blog entry...
Published November 14, 2013 Reads 257
Copyright © 2013 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Adam Grocholski
Hey there! My name is Adam Grocholski, and I'm a Technical Evangelist at Microsoft where I spend time focusing on Windows, Windows Phone, and Windows Azure. I live in the frozen tundra of Minnesota and run thinkfirstcodelater.com. You can also follow me on twitter at @codel8r.
- WebRTC Summit at Cloud Expo Agenda Announced
- Financial Results, New Appointments, and General Meetings - Research Report on Red Hat, Yelp, Sierra Wireless, Infinera, and Bitauto
- Cloud Security Alliance Releases Cloud Controls Matrix, Version 3.0
- Ubuntu-based Open Source Linux Mint Tests KDE Version
- Cloud Expo Silicon Valley: Overview of Windows Azure IaaS
- OpenStack for the Enterprise – Showcasing the OpenStack Ecosystem
- What Doesn't Kill You Makes You...Smarter
- AppliedMicro Announces General Availability of Its X-Gene System Development Kit for ARM 64-Bit Platforms
- AppliedMicro Announces General Availability of Its X-Gene System Development Kit for ARM 64-Bit Platforms
- Oracle Announces Latest MySQL 5.7 Development Milestone Release
- zvelo Announces General Availability of zveloCAT Content Categorization Engine
- Cisco Pioneers Real-Time Application Delivery in Global Data Centers and Clouds to Enable Greater Business Agility
- FoundationDB Announces General Availability of Unique ACID-Compliant NoSQL Database
- WebRTC Summit at Cloud Expo Agenda Announced
- Red Hat U.S. Public Sector Chief Technology Strategist to Speak at NC Datapolooza
- Azure CLI Day 1 – account download
- Financial Results, New Appointments, and General Meetings - Research Report on Red Hat, Yelp, Sierra Wireless, Infinera, and Bitauto
- Azure CLI Day 3 – account set
- Cloud Security Alliance Releases Cloud Controls Matrix, Version 3.0
- Measuring Business Impact and ROI in Red Hat Satellite Study
- Application Server Market
- Cloud Expo Silicon Valley: Ceph and DevOps in the Cloud
- Ubuntu-based Open Source Linux Mint Tests KDE Version
- Flashback: "I’m Doing a (Free) Operating System (Just a Hobby)" – Linus Torvalds
- The i-Technology Right Stuff
- After Ubuntu, Windows Looks Increasingly Bad, Increasingly Archaic, Increasingly Unfriendly
- Linux.SYS-CON.com Exclusive: Linus Discloses *Real* Fathers of Linux
- SCO CEO Posts Open Letter to the Open Source Community
- A Closer Look at Damn Small Linux
- Linus' Top Ten SCO Barbs
- Netscape Co-Founder's 12 Reasons for Growth of Open Source
- Where Are RIA Technologies Headed in 2008?
- *POINT - COUNTERPOINT SPECIAL* What's Wrong with the Open Source Community?
- Linux.SYS-CON.com Exclusive: What Would UserLinux Look Like?
- Introducing "Cooperative Linux" - Linux for Windows, No Less
- Why Recovering a Deleted Ext3 File Is Difficult . . .




























