github.com/polarismesh/polaris@v1.17.8/README-zh.md (about)

     1  # 北极星:服务发现和治理
     2  
     3  [![Build Status](https://github.com/polarismesh/polaris/actions/workflows/codecov.yaml/badge.svg)](https://github.com/PolarisMesh/polaris/actions/workflows/codecov.yaml)
     4  [![codecov.io](https://codecov.io/gh/polarismesh/polaris/branch/main/graph/badge.svg)](https://codecov.io/gh/polarismesh/polaris?branch=main)
     5  [![Go Report Card](https://goreportcard.com/badge/github.com/polarismesh/polaris)](https://goreportcard.com/report/github.com/polarismesh/polaris)
     6  [![Docker Pulls](https://img.shields.io/docker/pulls/polarismesh/polaris-server)](https://hub.docker.com/repository/docker/polarismesh/polaris-server/general)
     7  [![Contributors](https://img.shields.io/github/contributors/polarismesh/polaris)](https://github.com/polarismesh/polaris/graphs/contributors)
     8  [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
     9  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/polarismesh/polaris?style=flat-square)](https://github.com/polarismesh/polaris)
    10  
    11  <img src="logo.svg" width="10%" height="10%" />
    12  
    13  [English](./README.md) | 简体中文
    14  
    15  README:
    16  
    17  - [北极星:服务发现和治理](#北极星服务发现和治理)
    18    - [介绍](#介绍)
    19    - [如何安装](#如何安装)
    20    - [如何开发服务](#如何开发服务)
    21    - [如何集成服务网关](#如何集成服务网关)
    22    - [交流群](#交流群)
    23  
    24  更多文档请查看[北极星官网](https://polarismesh.cn)
    25  
    26  ## 介绍
    27  
    28  北极星是一个支持多语言和多框架的服务发现和治理平台,致力于解决分布式和微服务架构中的服务管理、流量管理、故障容错、配置管理和可观测性问题,针对不同的技术栈和环境提供服务治理的标准方案和最佳实践。
    29  
    30  <img src="https://raw.githubusercontent.com/polarismesh/website/main/content/zh-cn/docs/北极星是什么/图片/功能特性.png" width="80%" />
    31  
    32  **功能**:
    33  
    34  - 服务管理:服务注册、服务发现、健康检查
    35  - 流量控制:可自定义的流量路由、负载均衡、限频限流、访问控制
    36  - 故障容错:服务和接口熔断和降级、实例熔断和切换
    37  - 配置管理:版本管理、灰度发布、动态更新
    38  
    39  **亮点**:
    40  
    41  - 一站式服务治理平台,覆盖注册中心、服务网格和配置中心的能力
    42  - 提供 SDK、开发框架、Java agent 和 sidecar 等多种模式的数据面
    43  - 支持常用的开发框架,例如:Spring Cloud、Dubbo 和 gRPC 等
    44  - 支持 K8s 服务注册和 sidecar 自动注入,实现 Proxy 服务网格
    45  
    46  ## 如何安装
    47  
    48  更多文档请查看[安装指南](https://github.com/polarismesh/polaris/tree/main/release)
    49  
    50  ## 如何开发服务
    51  
    52  北极星提供 SDK、开发框架、Java agent 和 sidecar 等多种模式的数据面。用户可以根据业务需求使用一种或者多种模式的数据面。
    53  
    54  使用北极星多语言 SDK,直接调用北极星客户端 API:
    55  
    56  - [Polaris Java](https://github.com/polarismesh/polaris-java)
    57  - [Polaris Go](https://github.com/polarismesh/polaris-go)
    58  - [Polaris C/C++](https://github.com/polarismesh/polaris-cpp)
    59  - [Polaris PHP](https://github.com/polarismesh/polaris-php)
    60  - [Polaris Lua](https://github.com/polarismesh/polaris-lua)
    61  
    62  使用集成北极星 Java SDK 的 HTTP 和 RPC 框架:
    63  
    64  - [spring cloud](https://github.com/Tencent/spring-cloud-tencent)
    65  - [spring boot](https://github.com/polarismesh/spring-boot-polaris)
    66  - dubbo-java
    67    - [registry and discovery](https://github.com/apache/dubbo-spi-extensions/tree/master/dubbo-registry-extensions)
    68    - [routing and load balance](https://github.com/apache/dubbo-spi-extensions/tree/master/dubbo-cluster-extensions)
    69    - [circuit breaker and rate limiter](https://github.com/apache/dubbo-spi-extensions/tree/master/dubbo-filter-extensions)
    70  - [grpc-java](https://github.com/polarismesh/grpc-java-polaris)
    71  
    72  使用集成北极星 Go SDK 的 HTTP or RPC 框架:
    73  
    74  - dubbo-go
    75    - [registry and discovery](https://github.com/apache/dubbo-go/tree/main/registry)
    76    - [routing](https://github.com/apache/dubbo-go/tree/main/cluster/router)
    77    - [circuit breaker and rate limiter](https://github.com/apache/dubbo-go/tree/main/filter)
    78    - [examples](https://github.com/apache/dubbo-go-samples/tree/master/polaris)
    79  - [grpc-go](https://github.com/polarismesh/grpc-go-polaris)
    80  
    81  使用 K8s 服务注册和 sidecar 自动注入:
    82  
    83  - [Polaris Controller](https://github.com/polarismesh/polaris-controller)
    84  - [Polaris Sidecar](https://github.com/polarismesh/polaris-sidecar)
    85  
    86  ## 如何集成服务网关
    87  
    88  用户可以在多种服务网关里集成北极星的服务发现和治理能力。
    89  
    90  - [spring cloud gateway](https://github.com/Tencent/spring-cloud-tencent)
    91  - [nginx gateway](https://github.com/polarismesh/nginx-gateway)
    92  
    93  ## 交流群
    94  
    95  扫码二维码,加入北极星开源交流群。欢迎用户反馈使用问题和优化建议。
    96  
    97  <img src="./qrcode.png" width="20%" height="20%" />