Our website is currently undergoing technical upgrades to serve you better. We’ll be back online shortly.
Home > Computing and Information Technology > Computer programming / software engineering > Microservices with Docker on Microsoft Azure: (Addison-Wesley Microsoft Technology Series)
10%
Microservices with Docker on Microsoft Azure: (Addison-Wesley Microsoft Technology Series)

Microservices with Docker on Microsoft Azure: (Addison-Wesley Microsoft Technology Series)

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Book + Content Update Program “Beyond just describing the basics, this book dives into best practices every aspiring microservices developer or architect should know.” —Foreword by Corey Sanders, Partner Director of Program Management, Azure Microservice-based applications enable unprecedented agility and ease of management, and Docker containers are ideal for building them. Microsoft Azure offers all the foundational technology and higher-level services you need to develop and run any microservices application. Microservices with Docker on Microsoft Azure brings together essential knowledge for creating these applications from the ground up, or incrementally deconstructing monolithic applications over time. The authors draw on their pioneering experience helping to develop Azure’s microservices features and collaborating with Microsoft product teams who’ve relied on microservices architectures for years. They illuminate the benefits and challenges of microservices development and share best practices all developers and architects should know. You’ll gain hands-on expertise through a detailed sample application, downloadable at github.com/flakio/flakio.github.io. Step by step, you’ll walk through working with services written in Node.js, Go, and ASP.NET 5, using diverse data stores (mysql, elasticsearch, block storage). The authors guide you through using Docker Hub as a service registry, and Microsoft Azure Container service for cluster management and service orchestration. Coverage includes: Recognizing how microservices architectures are different, and when they make sense Understanding Docker containers in the context of microservices architectures Building, pulling, and layering Docker images Working with Docker volumes, containers, images, tags, and logs Using Docker Swarm, Docker Compose, and Docker Networks Creating Docker hosts using the Azure portal, Azure Resource Manager, the command line, docker-machine, or locally via Docker toolbox Establishing development and DevOps environments to support microservices applications Making the most of Docker’s continuous delivery options Using Azure’s cluster and container orchestration capabilities to operate and scale containerized microservices applications with maximum resilience Monitoring microservices applications with Azure Diagnostics, Visual Studio Application Insights, and Microsoft Operations Management Suite Developing microservices applications faster and more effectively with Azure Service Fabric An extensive sample application demonstrating the microservices concepts discussed throughout the book is available online In addition, this book is part of InformIT’s exciting new Content Update Program, which provides content updates for major technology improvements! As significant updates are made to Docker and Azure, sections of this book will be updated or new sections will be added to match the updates to the technologies. As updates become available, they will be delivered to you via a free Web Edition of this book, which can be accessed with any Internet connection. To learn more, visit informit.com/cup. How to access the Web Edition: Follow the instructions inside to learn how to register your book to access the FREE Web Edition.  

Table of Contents:
Foreword     xi Preface     xiii Chapter 1  Microservices     1 What are Microservices?     2     Autonomous Services     4     Small Services     5 Benefits of Microservices     6     Independent Deployments     6     Continuous Innovation    8     Improved Scale and Resource Utilization    9     Technology Diversity     10     Small Focused Teams     12     Fault Isolation     12 Challenges     13     Complexity     14     Network Congestion and Latency     14     Data Consistency     15     Testing     16     Integration and Versioning     17     Service Discovery and Routing     17     Monitoring and Logging     18     Skillset and Experience     18     Uptime Service Level Agreement     18 Best Practices     19     Encapsulation     20     DevOps Principles and Culture     21     Automation     22     Monitoring     23     Fault Tolerance     23 Summary     26 Chapter 2  Containers on Azure Basics     29 VMs, Containers, and Processes     29     When Would We Use a Container Over a Virtual Machine or a Process?     30 Containers on Azure     34 Creating an Azure VM with Docker     35     Generating an SSH Public Key on Windows     37     Generating an SSH Public Key on Mac OS X     39     Choosing a Virtual Machine Image     40     Connecting to the VM Using SSH and Git Bash on Windows     44     Connecting to the VM Using SSH and Git Bash on Mac OS X     46     Docker Container Basics     47 Summary     68 Chapter 3  Designing the Application     69 Determining Where to Start     70     Coarse-Grained Services     70     Starting with Microservices     72 Defining Services and Interfaces     73     Decomposing the Application     74     Service Design     76 Service to Service Communication    78     Synchronous Request/Response     78     Asynchronous Messaging     79 Monolith to Microservices     80 Flak.io e-Commerce Sample     83     Flak.io     84     Requirements     84     Architecture Overview     85     Considerations     86 Summary     87 Chapter 4  Setting Up Your Development Environment     89 Using Docker for Local Development    89     Docker for Local Development    89     Docker for Production Validation    90     Docker as a Build/Test Host     90 Developer Configurations     90     Local Development     90     Local and Cloud     91     Cloud Only     91     Managing Docker Authentication    91     Choosing a Base Image    92     Build a Hierarchy of Images     95 Setting up your Local Dev Environment     101     Install Docker Tools     101     Install Developer Tools     102     Install Windows Utilities     102     Install OSX Utilities     103 Docker for Local Development     103     Local Development Settings     103     Starting your Local Docker Host     104     Connecting to a Docker Host     105     Cloning Samples     105     Enabling Live Reload in a Docker Container     107     Volumes     108     Preparing your Microservice for Production     110 Docker Compose     112 Debugging Docker Issues     116     Unable to Connect to the Docker Host     116     Containers That Won’t Start     117     Diagnosing a Running Container     118 Summary     118 Chapter 5  Service Orchestration and Connectivity     119 Orchestration     121 Provisioning     123     Infrastructure as Code     123     Azure Resource Manager     126     Azure Container Service     132     Multivendor Provisioning     135 Scheduling and Cluster Management     136     Challenges     136     A Scheduling Solution     138     Docker Swarm     141     Kubernetes     144     Apache Mesos     147     Using Apache Mesos to Run Diverse Workloads     150 Service Discovery     150     Service Registration     152     Service Lookup     153     Service Registry     155     Technologies     156 Other Technologies     158 Application/API Gateway     159 Overlay Networking     161 Summary     165 Chapter 6  DevOps and Continuous Delivery     167 DevOps Overview     167     Modern DevOps     169     DevOps Culture     170 Continuous Integration, Delivery, and Deployment     171     Creating Environments in Azure     173 Deploying a Microservice with Continuous Delivery     182     Application Configuration Changes Across Different Environments     184     Continuous Integration     185     Testing in a QA Environment     192     Deploying to Staging     195     Testing in Production     196 Choosing a Continuous Delivery Tool     200     On-Premises or Hosted?     200     On-Premises or Hosted Build Agents?     201     Best-of-breed or Integrated Solution?     201     Does the Tool Provide the Extensibility You Need?     202     Comparison of Jenkins, Team Services, Bamboo, and Tutum     205     Docker Cloud (Formerly Called Tutum)     206 Summary     207 Chapter 7  Monitoring     209 Monitoring the Host Machine     210 Monitoring Containers     212 Monitoring Services     216 Monitoring Solutions     222     Azure Diagnostics     222     Application Insights     227     Operations Management Suite (OMS)     231     Recommended Solutions by Docker     232 Summary     232 Chapter 8  Azure Service Fabric     233 Service Fabric Overview     234     Service Fabric Subsystems     234 Cluster Management     236 Resource Scheduling     240     Service Fabric Application     240     Custom Applications (Existing Applications)     242     Container Integration     243 Service Discovery     244 Programming Model     244     Stateless Services     244     Stateful Services     245     Reliable Actors     247     Reliable Services     249 Application Lifecycle     251     Service Updates     251     Application Upgrades     252     Testability Framework     253 Summary     254 Appendix A  ASP.NET Core 1.0 and Microservices     255 A New Version of ASP.NET     255     Getting Started     256     Choosing the Right ASP.NET Docker Image     262     Visual Studio 2015 Tooling     263     ASP.NET Microservices Best Practices     265 Index     275


Best Sellers


Product Details
  • ISBN-13: 9780134218212
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Language: English
  • Series Title: Addison-Wesley Microsoft Technology Series
  • ISBN-10: 0134218213
  • Publisher Date: 24 Jun 2016
  • Binding: Digital download
  • No of Pages: 320
  • Weight: 1 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Microservices with Docker on Microsoft Azure: (Addison-Wesley Microsoft Technology Series)
Pearson Education (US) -
Microservices with Docker on Microsoft Azure: (Addison-Wesley Microsoft Technology Series)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Microservices with Docker on Microsoft Azure: (Addison-Wesley Microsoft Technology Series)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA