Skip to main content

Microsoft Azure: Always Free Services

Azure free services

After the trial expires, to get benefits from Always Free Services, you must activate at least Pay As You Go.

SHOULD check https://azure.microsoft.com/en-us/free/ for latest free services.

More details about Azure free account FAQ at https://azure.microsoft.com/en-us/free/free-account-faq/

  • Azure Cosmos DB: 400 request units per second provisioned throughput
  • Azure IoT Central includes up to 5 devices with 50,000 monthly messages per device
  • Azure Maps S0 account tiers offer 250,000 monthly map tile loads and 25,000 monthly service calls
  • 5 GB of bandwidth for outbound data transfer with free unlimited inbound transfer
  • 10 web, mobile, or API apps with Azure App Service with 1 GB storage
  • 1 million requests and 400,000 GBs of resource consumption with Azure Functions
  • 100,000 operations for event publishing and delivery with Event Grid
  • Free Azure Container service to cluster virtual machines
  • 50,000 stored objects with Azure Active Directory with single sign-on (SSO) for 10 apps per user
  • 50,000 active users per month (MAU) with Azure Active Directory B2C
  • Free Azure Service Fabric to build microservice apps
  • First 5 users free with Azure DevOps
  • Unlimited nodes (server or platform-as-a-service instance) with Application Insights and 1 GB of telemetry data included per month
  • Unlimited use of Azure DevTest Labs
  • Machine Learning with 100 modules and 1 hour per experiment with 10 GB included storage
  • Free policy assessment and recommendations with Azure Security Center
  • Unlimited recommendations and best practices with Azure Advisor
  • Free Azure IoT Hub edition includes 8,000 messages per day with 0.5 KB message meter size
  • Free public load-balanced IP with Azure Load Balancer
  • 5 free low frequency activities with Azure Data Factory
  • 50 MB storage for 10,000 hosted documents with Azure Cognitive Search including 3 indexes per service
  • Free namespace and 1 million push notifications with Azure Notification Hubs
  • Unlimited Azure Batch usage for job scheduling and cluster management
  • Free 500 minutes of job run time with Azure Automation
  • Unlimited users and 5,000 catalog objects with Azure Data Catalog
  • 30,000 transactions per month processing at 20 transactions per minute with Face API
  • Free 2 million characters included for Translator Text API
  • Free 5 GB per month analysis plus 31-day retention period with Log Analytics
  • 50 virtual networks free with Azure Virtual Network
  • Unlimited inbound Inter-VNet data transfer
Microsoft Azure Logo

Popular posts from this blog

Powershell: Enable Firewall Log

We sometimes need to enable Windows firewall's log to troubleshoot. Here is how.

Powershell: head and tail command

Use head or tail to skim the first or last 5 lines.

MySQL: Notes

Ways to check MySQL version mysql --version mysql -V dpkg -l 'mysql-sever' mysql -u root -p How to check MySQL version: mysql --version Database folder On Microsoft Windows, by default, MySQL save databases in this folder: %ProgramData%\MySQL\MySQL Server 5.5\data Check databases' size SELECT table_schema AS "Database name", SUM(data_length + index_length) / 1024 / 1024 AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema; Export database schema $ mysqldump -u root -p --no-data wordpress1001 > c:\backup\schema-wordpress1001.sql Enter password: **************** Create a dedicated user to backup databases Give credit to: http://www.fromdual.com/privileges-of-mysql-backup-user-for-mysqldump Create dedicated mysql user and grant privileges to run backup $ mysql -u root -p CREATE USER 'backupdb'@'localhost' IDENTIFIED BY 'passwordhere'; GRANT SELECT,SHOW VIEW,RELOAD,REPLICATION CLIENT...