zoukankan      html  css  js  c++  java
  • spring-cloud-netflix集成的服务

    1.Ribbon

    Ribbon is a client side IPC library that is battle-tested in cloud. It provides the following features

    • Load balancing
    • Fault tolerance
    • Multiple protocol (HTTP, TCP, UDP) support in an asynchronous and reactive model
    • Caching and batching

    2.Hystrix 

    Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable.What does it do?

    1) Latency and Fault Tolerance

    Stop cascading failures. Fallbacks and graceful degradation. Fail fast and rapid recovery.

    Thread and semaphore isolation with circuit breakers.

    2) Realtime Operations

    Realtime monitoring and configuration changes. Watch service and property changes take effect immediately as they spread across a fleet.

    Be alerted, make decisions, affect change and see results in seconds.

    3) Concurrency

    Parallel execution. Concurrency aware request caching. Automated batching through request collapsing.

    3.Atlas

    Backend for managing dimensional time series data.

    4. Spectator

    Simple library for instrumenting code to record dimensional time series.

    5.Eureka

    Eureka is a REST (Representational State Transfer) based service that is primarily used in the AWS cloud for locating services for the purpose of load balancing and failover of middle-tier servers.

    At Netflix, Eureka is used for the following purposes apart from playing a critical part in mid-tier load balancing.

    • For aiding Netflix Asgard - an open source service which makes cloud deployments easier, in

      • Fast rollback of versions in case of problems avoiding the re-launch of 100's of instances which could take a long time.
      • In rolling pushes, for avoiding propagation of a new version to all instances in case of problems.
    • For our cassandra deployments to take instances out of traffic for maintenance.

    • For our memcached caching services to identify the list of nodes in the ring.

    • For carrying other additional application specific metadata about services for various other reasons.

    6.Turbine

    SSE Stream Aggregator

    7.Archaius

    Archaius includes a set of configuration management APIs used by Netflix. It provides the following functionalities:

    • Dynamic, Typed Properties
    • High throughput and Thread Safe Configuration operations
    • A polling framework that allows obtaining property changes of a Configuration Source
    • A Callback mechanism that gets invoked on effective/"winning" property mutations (in the ordered hierarchy of Configurations)
    • A JMX MBean that can be accessed via JConsole to inspect and invoke operations on properties
    • Out of the box, Composite Configurations (With ordered hierarchy) for applications (and most web applications willing to use convention based property file locations)
    • Implementations of dynamic configuration sources for URLs, JDBC and Amazon DynamoDB
    • Scala dynamic property wrappers
  • 相关阅读:
    [原创]测试计划与测试方案区别
    [原创]什么是构建验证测试(BVT)
    [原创]什么是测试驱动开发?
    [原创]用TestDirector的测试管理的流程
    [原创]测试用例设计之"正面测试与和负面测试"
    [原创]测试用例设计之“因果图”法
    [原创]测试用例设计之“状态迁移图”法
    [转贴]测试工具自动化的最佳实践
    [原创]软件测试管理之“测试角色和职能”概述
    软件测试试题
  • 原文地址:https://www.cnblogs.com/davidwang456/p/6430149.html
Copyright © 2011-2022 走看看