A one-sentence summary
Higress is an open-source, AI-native API gateway developed on top of Istio and Envoy; it enables unified access to large-model APIs, AI Agents, MCP Servers, and Kubernetes inference services, and it handles routing, protocol conversion, quota management, security measures, caching, and monitoring functions at the entry layer.
Tool Introduction
Higress was originally developed within Alibaba to address issues such as the impact of gateway overload on long-term connections, as well as insufficient load balancing in gRPC and Dubbo. It was later placed in the CNCF Sandbox for open-source governance. It can function as an AI gateway, as well as a Kubernetes Ingress gateway, a microservices gateway, and a security protection gateway.
As of August 23, 2026, the latest stable version of the main warehouse is v2.2.4, and its source code is licensed under the Apache-2.0 license. This product is intended for use by platform engineering teams, those involved in cloud-native operations, AI infrastructure specialists, and development teams; it does not provide chat or content generation interfaces for ordinary users.
Core positioning
| Positioning | Connected object | Key capabilities | Typical user |
|---|---|---|---|
| LLM gateway | Business models, self-built models, and OpenAI-compatible interfaces | Unified protocol, load balancing, Fallback, Token management, and monitoring | AI Platform and Application Teams |
| MCP gateway | Native MCP services and existing REST APIs | Protocol conversion, authentication, rate limiting, auditing, and tool routing | Agent Platform and Tool Services Team |
| Model Gateway | Kubernetes inference workloads | Gateway API Inference Extension and endpoint selection | In-house inference cluster team |
| Ingress gateway | Kubernetes services and external traffic | Ingress API, Gateway API, certificates, and gradual rollout routing | Cloud-native platform team |
| Microservice gateway | Registration services such as Nacos, ZooKeeper, Consul, Eureka, etc. | Service discovery, routing, protocol adaptation, and governance | Microservices Architecture Team |
| Security gateway | Web, API, model, and tool traffic | WAF, authentication, rate limiting, data masking, and content detection | Security and Compliance Team |
Main functions
Unified proxy for over 100 models
Higress enables the consolidation of authentication methods, interface structures, and model names from different model providers into a single entry point; the product page indicates support for over 100 mainstream models. This approach helps reduce the need for vendor-specific code, but it is still necessary to address the differences among these models in terms of tool invocation, multi-modal functionality, context handling, and error formatting.
Multi-model routing and fault degradation
A team can configure multiple models or authentication tokens on the same route, and improve availability through polling, load balancing, health checks, and fallback mechanisms. Downgrading can only reduce the risk of single-point failures; it does not guarantee that the output quality, context length, and compliance policies of different models will be identical.
Adaptive model load balancing
Version 2.2.4 introduces the AdaptiveScore mode, which is based on real-time load; it allows Redis to detect the level of concurrency at the cluster level while still enabling local fallback strategies. This feature is suitable for clusters that handle high levels of concurrent processing, but the availability of Redis, metric latency, and policy parameters also influence the scheduling results.
API Key pool and token downgrade
The same model provider can configure multiple API Keys, and set exception thresholds and health recovery checks for each token. Key pools help with capacity management and failover, but they cannot be used to bypass the account restrictions imposed by the model provider or to violate the service terms.
Token throttling and quotas
Higress enables throttling not only based on QPS, but also using input and output tokens, the number of requests, concurrency levels, and consumer settings. Version 2.2.4 supports the simultaneous application of multiple matching rules; when upgrading, it is necessary to examine the logic used in the older version to avoid sudden changes in quotas.
Precise caching and semantic caching
Precise caching reuses the exact same results for requests, while semantic caching returns existing responses based on similarity, which helps to reduce the number of repeated model calls, as well as associated Token costs and latency. Caches can store sensitive information and answers; they may also return incorrect responses to questions that appear similar but are actually different. Therefore, it is necessary to implement tenant isolation, set expiration times, and define exclusion rules.
AI observability
Monitoring allows for the tracking of various metrics such as the number of tokens input and output per second, the usage of resources by suppliers and models, latency, as well as the number of successful and failed calls. Version 2.2.4 adds a count of failed LLM calls, filling in the gap in monitoring related to error responses in stream-based and non-stream-based scenarios when there is no token usage.
Prompt and request response processing
Plugins can modify prompts, apply templates, save historical conversations, identify intents, enforce JSON output, and transform requests or responses. Changes made at the entry layer affect all downstream applications; in a production environment, it is necessary to test template versions, field compatibility, and rollback procedures.
RAG and search enhancement
Higress can connect to knowledge bases, vector retrieval, and search services through plugins, and incorporate the results of those searches into model requests. The gateway is responsible for coordinating these processes, but it does not guarantee the quality of the documents, the accuracy of the retrieved results, the correctness of the references, or compliance with intellectual property rules.
AI data masking and content security
The data masking plugin can process sensitive fields before requests reach external models, while the content security plugin is used to check inputs and outputs. Some plugins rely on external security services or custom-built models; version 2.2.4 also includes integration with Qwen3Guard. The actual level of coverage depends on the rules, models, and deployment in use.
Stream-based request and response processing
The data plane of Envoy and Wasm extensions enable full streaming processing of request and response bodies, as well as support for protocols such as SSE. Streaming connections impose higher requirements in terms of timeout handling, connection cleanup, token tracking, and plugin memory management; therefore, they cannot be tested using ordinary short-lived connections.
Unified governance of MCP
Native MCP proxy
Higress can proxy the disparate MCP Servers to a unified entry point, enabling centralized handling of authentication, fine-grained rate limiting, tool discovery, call auditing, and monitoring. Clients only need to connect to the gateway; however, incorrect configuration of the gateway’s permissions can expose additional tools to users who should not have access to them.
Convert existing APIs to MCP
Through the MCP Bridge and OpenAPI conversion tools, existing REST or web services can be exposed as remote MCP tools without having to rewrite the business logic. After automatic conversion, manual review is still required for the tool names, parameter formats, authentication mechanisms, error handling, and any potentially risky operations.
Protocol version compatibility
Version 2.2.4 adds support for the MCP 2026-07-28 standard, including stateless request boundaries, deterministic tool discovery, typed parameter validation, Origin protection, and isolation between old and new protocols. Before upgrading, it is necessary to conduct end-to-end compatibility testing of the protocol versions on both the client and server sides.
MCP operation and maintenance interface
The Higress Ops MCP Server can be used to configure and manage gateways; in the new version, Basic authentication is required for sensitive debugging tasks as well as for managing Envoy. The operation-and-maintenance type MCP possesses high levels of permission, and it should be separated from regular business tools, using separate credentials, network boundaries, and audit mechanisms.
Kubernetes inference and Gateway API
Higress supports both the Ingress API and the Gateway API; it was upgraded to Gateway API v1.6.0 in version 2.2.4, and at the same time received the Inference Extension v1.4 runtime capabilities. It can direct Gateway routing resources to inference pools, and make selections and aggregations based on the status of the inference endpoints.
| Ability | Currently supported | Precautions |
|---|---|---|
| Ingress API | Can be used as a Kubernetes ingress controller | It is compatible with a large number of Nginx Ingress annotations, but not all of them are completely equivalent to each other. |
| Gateway API | Supports standard Gateway and routing resources, among others. | Check the CRD and controller versions during upgrading. |
| Inference Extension | Supported at runtime for v1.4 | It is necessary to match the inference pool, endpoint selector, and cluster resources. |
| Gateway API version | v2.2.4 uses v1.6.0 | Old clusters and old CRDs may be incompatible. |
| Route update | The configuration takes effect in milliseconds, without the need for a Nginx-style reload. | It is still necessary to verify control plane propagation and abnormal rollback. |
| Certificate | It can be integrated with Let’s Encrypt for automatic issuance and renewal. | DNS, challenge methods, and key storage need to be properly configured. |
Microservices and traditional API governance
- Service discovery: It can connect to registration centers such as Nacos, ZooKeeper, Consul, and Eureka.
- Protocols: It supports plain-text as well as encrypted transmission over web pages, and gRPC; it can also be used in conjunction with MCP Bridge to handle services such as Dubbo.
- Routing: Offers features such as rewriting, gradual deployment, traffic splitting, load balancing, and fault handling.
- Authentication: Offers various strategies such as Key Auth, JWT, Basic, HMAC, OIDC, OAuth2, and external authentication.
- Protection: CC protection at the WAF, IP, or Cookie level, along with local or cluster-based rate limiting, can be utilized.
- Migration: It is compatible with a large number of Nginx Ingress annotations, making it suitable for phased migration rather than a one-time replacement.
- Console: Provides a graphical interface for management, while still allowing access to Kubernetes resources and automated configuration.
Wasm plugin ecosystem
Higress relies on WebAssembly as its primary mechanism for extension; plugins can be developed using languages such as Go, Rust, and JavaScript, and sandbox isolation is used to reduce memory security risks. Plugin versions can be upgraded independently and updated in real time, without the need to restart the entire gateway.
| Plugin category | Representative capabilities | Common dependencies or risks |
|---|---|---|
| AI agent | Model protocol conversion, load balancing, and Fallback | Differences among model providers, key security, and error mapping |
| AI cache | Precise and semantic caching | Storage of sensitive data, tenant sharing, and expiration policies |
| Token governance | Token throttling, quotas, and consumer statistics | Differences in word segmentation and incomplete stream-based statistics |
| AI security | Desensitization, content detection, and protection against prompt-based attacks | False positives, false negatives, and costs related to external security services |
| AI orchestration | Agent, RAG, search, history, and intent recognition | Reliability of external services and prompt contamination |
| Authentication and authorization | Key, JWT, Basic, HMAC, OIDC, and OAuth2 | Credential rotation, clock skew, and excessive permissions |
| Web protection | ModSecurity WAF and OWASP CRS | Rule tuning, false positives, and resource overhead |
| Traffic management | Local or cluster-based throttling, grayscale deployment, and cache control | State dependence and policy conflicts such as those in Redis |
| Custom plugins | Processing specific business requests and responses | Supply chain, sandbox boundaries, performance, and upgrade compatibility |
Deployment method
| Deployment method | Operating environment | Main features | Suitable for users |
|---|---|---|---|
| Docker All-in-One | Single Linux, macOS, or Windows container environment | Startup of the console, gateway, and configuration settings occurs simultaneously; the experience is available within about 5 minutes. | Local learning, PoC, and simple sites |
| Independent deployment with Docker Compose | Virtual machine or bare metal | Components and data can be more easily separated and persisted. | Small deployments that are not Kubernetes-based |
| Helm for cloud-native deployment | Standard Kubernetes cluster | Utilize CRD, Ingress, Gateway APIs, and elastic capabilities | Platform team and production cluster |
| Local Kubernetes | Kind, Minikube, etc. | Close to the production resource model, facilitating joint debugging. | Development and integration testing |
| Alibaba Cloud Serverless | Fully managed cloud services | Leverage elastic capabilities and eliminate the need for maintenance of underlying resources. | Rapid trial and production for Serverless scenarios |
| Alibaba Cloud Instance Exclusive Edition | Exclusive cloud instance | Enhanced isolation, specifications, governance, and service levels | Core, high-concurrency, or strictly compliant services |
Docker port
| Port | Default purpose | Production suggestions |
|---|---|---|
| 8001 | Higress UI console | Do not expose it directly to the public internet; implement authentication and a network allowlist. |
| 8080 | Gateway plaintext entry point | In a production environment, prefer to redirect to or disable the plaintext entry points. |
| 8443 | Gateway encryption entry point | Configure trusted certificates, TLS policies, and key rotation. |
Getting started with Docker quickly
- Prepare a test host capable of supporting containers as well as a separate working directory, and ensure that ports 8001, 8080, and 8443 are not in use.
- Choose an Higress mirror repository that is located near the deployment area; in a production environment, use a specific version tag instead of sticking to the \"latest\" version.
- Mount the persistent directory and start the All-in-One container; the console ports are accessible only from trusted networks.
- As soon as you access the console for the first time, configure administrator authentication, access boundaries, and backup policies.
- Add a test model provider and a API key with minimal permissions; do not import all production keys at once.
- Create AI routes, and set up model mapping, consumer authentication, token throttling, and fault degradation.
- Use small-scale, non-sensitive requests to test normal and streaming responses, errors, timeouts, and Fallback.
- Check the Token, latency, error, and consumer metrics, then gradually add caching, security, and MCP plugins.
- Only after verifying configuration persistence and restoration should one consider migrating to Helm or a managed production version.
Kubernetes deployment process
- Check the version compatibility matrix for Kubernetes, Helm, Gateway API, and Higress, and back up the existing Ingress resources.
- Create a separate namespace, service account, network policies, and a controlled image repository for Higress.
- Install or upgrade the required CRDs, and check for warnings regarding version mismatches when the controller starts up.
- Use Helm to install a fixed version, set up image repositories by region, and restrict the exposure of the control plane and console.
- First, migrate a domain with low risk, and check the compatibility of the Nginx Ingress annotations one by one.
- Configure Gateway routing, backend services, certificates, and authentication plugins, and conduct rollback drills.
- Token quotas, timeouts, retries, circuit breaking, fallback options, and auditing are added for large model and MCP traffic.
- Integrate with Prometheus, logging, and alerting to monitor configuration propagation, data plane resources, and long connections.
- After completing capacity, failure, security, and upgrade tests, scale it up to production traffic.
AI gateway configuration process
- List the model providers, self-built inference services, Agents, and MCP Servers that need to be integrated, and indicate the level of data sensitivity for each.
- Create separate keys, consumer identities, and routing for each environment to prevent the use of the same resources for testing and production.
- Standardize the external invocation protocol, while retaining compatibility checks and fallback mechanisms for model-specific parameters.
- Set the QPS, concurrency, token limit, daily budget, and allowed models for each consumer.
- Configure the preferred model, backup model, health thresholds, timeout, and maximum number of retries.
- Caching is enabled only for requests that can be safely reused, with users, tenants, and permissions included in the cache keys.
- Enable minimization, data masking, and prompt protection at the input side, and conduct checks for content and data leaks at the output side.
- Logs the model, token, latency, failures, fallbacks, cache hits, and MCP tool calls.
- Use fault injection to verify the behavior of the model in cases of unavailability, Redis interruptions, plugin errors, and MCP service timeouts.
MCP online check
- Only the approved OpenAPI operations are imported; unnecessary interfaces for deletion, transfer, execution, and administration are removed.
- Define a clear name, description, typed parameters, required fields, and error structure for each tool.
- Separate read-only tools from write tools, and require manual confirmation for high-risk operations.
- Leverage consumer identities, minimum permissions, and tenant isolation to prevent models from sharing credentials with high privileges.
- Verify Origin, authentication, rate limiting, parameter injection, timeouts, retries, and idempotency.
- The logging tool captures the discovery details, parameters, user who initiated the operation, results, errors, and the audit ID for downstream processes.
- Test both the old and new MCP clients simultaneously to avoid implicit incompatibilities resulting from protocol upgrades.
- Place the Higress Ops management tool on a separate internal network and enable strong authentication.
Community version and Alibaba Cloud version
The community version of Higress is available freely and open-source; users are responsible for the costs related to servers, networking, storage, monitoring, upgrades, and maintenance. Alibaba Cloud AI Gateway builds on Higress to offer managed Serverless solutions as well as dedicated instance-based products, along with a cloud control panel, scalability, service level guarantees, and commercial support.
| Version | Current gateway fees | Core capabilities or limitations | Suitable scenarios |
|---|---|---|---|
| Higress Community Edition | Software license is free. | Complete core capabilities, with the option to customize Wasm plugins; infrastructure and model costs are to be borne by the user, and there is no commercial SLA. | Self-built, custom development, and multi-cloud |
| Serverless Standard Edition | During the beta test of the new version, the gateway itself costs 0 yuan. | The default value is 50 QPS, and the platform uses encryption by default; there is no separate public access point, and custom domain names, certificates, TLS policies, or second-generation web protocol settings are not supported. | Trial, PoC, development, and low-traffic services |
| Serverless Enterprise Edition | During the beta test of the new version, the gateway itself costs 0 yuan. | Default value: 500 QPS; separate entry point, custom domain name, certificates, TLS policies, second-generation web protocol, and 99.95% SLA. | Official production and external AI services |
| Old version of Serverless | Charging is based on the requested CU and public network traffic. | Existing instances will continue to be used with their original specifications, while new customers will be given priority for the newer version. | Existing customers have achieved a smooth transition. |
| Instance-based dedicated pay-as-you-go | An additional charge is applied for data processing and public network traffic, based on the hourly instance fee. | Exclusive resources, standardized performance, and comprehensive governance; they can be released once used. | Short-term high-specification, peak, or isolation requirements |
| Instance-based exclusive monthly subscription | A monthly prepaid fee for the instance, in addition to costs for data processing and public network usage. | Long-term use usually comes with higher discounts; specifications and location affect the price. | Long-term core production activities |
Free beta version limits
In the new version of Serverless available for beta testing, the free tier covers only the cost of the gateway itself; data transfer over the public network is still charged according to standard cloud data transmission rates. Model services, logging, monitoring, and other cloud services are billed separately. After the beta period ends, commercial pricing may come into effect, and the actual prices and any discounts will need to be confirmed again in the control panel.
Billing structure for the exclusive version
The dedicated instance version consists of a gateway instance, the amount of data processed for requests and responses, and public network traffic; the specific cost varies depending on specifications, location, network type, and purchase duration. There is no fixed price that applies to all deployment scenarios.
Open source, GitHub, and licenses
The main Higress repository is currently maintained by the higress-group organization; the previous Alibaba-related entry points now point to this new organization. The licensing for the core code is Apache-2.0. The main repository is under active maintenance, and version 2.2.4 was released on August 13, 2026.
| Project | Public status | License or instructions | Function |
|---|---|---|---|
| Higress main warehouse | Public | Apache-2.0 | Control plane, data plane integration, CRD, and core plugins |
| Wasm Go SDK | Public | Apache-2.0 | Developing the Higress plugin using Go |
| OpenAPI to MCP converter tool | Public | Apache-2.0 | Generate MCP service configurations from OpenAPI operations. |
| Console | Public warehouse | The specific permissions must be confirmed according to the warehouse documents. | Graphical management and configuration |
| Standalone | Public warehouse | The specific permissions must be confirmed according to the warehouse documents. | Independent deployment without Kubernetes |
| Project documentation | Public | CC-BY-4.0 | Usage, architecture, and plugin instructions |
| AliCloud AI Gateway | Commercial hosting services | Subject to the cloud service agreement | Serverless, dedicated instances, and SLA |
Open source does not mean zero cost.
Apache-2.0 permits the use, modification, and distribution of the core code, but companies still need to comply with the license terms and the NOTICE requirements; they are also responsible for covering the costs related to servers, model invocation, external plugins, monitoring, security, and personnel maintenance. Alibaba Cloud’s commercial version cannot be considered free or allow for the replication of its services just because an open-source kernel is used.
Safety and privacy
By using a self-built Higress, prompts, responses, keys, and audit data can remain within the network and storage under the company’s control; however, requests may still be forwarded to external models, search engines, vector databases, or security services. The actual boundaries of the data are determined by routing mechanisms, plugins, and upstream suppliers.
| Risk aspects | Possible problems | Suggestions |
|---|---|---|
| Model API Key | Costs arising from leaks or exposure of data | Use key management, principle of least privilege, rotation, and anomaly alerts. |
| Prompt and response logs | Contains personal, business, or code secrets | Default data masking, shortened retention period, and restricted query permissions. |
| Precise and semantic caching | Returning sensitive content across users or storing it for an extended period | Tenant isolation, permission-based access control, encryption, and expiration |
| MCP tool | The model induces the execution of high-risk business operations. | Tool allowlist, manual verification, parameter validation, and auditing |
| Wasm plugin | Supply chain issues, vulnerabilities, resource depletion, or logical manipulation | Fixed summary, signature verification, sandbox restrictions, and phased rollout |
| Console | The administrator portal has been attacked from the public internet. | Private network access, strong authentication, multi-factor verification, and network allowlist |
| External security plugins | The data is sent to a third-party testing service. | Sign the agreement and confirm the rules regarding the region, training, and retention. |
| Observation system | The tag carries a Token, user ID, or prompt text. | Restrict fields with high base values and remove sensitive tags. |
| Cloud Hosting Version | Data, logs, and traffic are affected by the cloud region and product terms. | Select a region and verify compliance, SLAs, and sub-services. |
Product advantages
- A single entry point handles LLM APIs, Agents, MCP, and Kubernetes inference workloads.
- Based on Istio and Envoy, it is suitable for long-lived connections, SSE, and high-bandwidth AI traffic.
- It supports over 100 mainstream models and offers a unified protocol, load balancing, and fallback options.
- Token throttling, quotas, caching, and observability are all designed with AI costs and stability in mind.
- The MCP proxy, the conversion of existing APIs to MCP format, and auditing functions help reduce the complexity associated with integrating tools from multiple teams.
- It is compatible with both Ingress API and Gateway API, allowing it to integrate with existing cloud-native entry systems.
- Wasm plugins can be developed in various languages, upgraded independently, and updated dynamically.
- It supports independent Docker deployment, Helm-based cloud-native deployment, and Alibaba Cloud-hosted versions.
- The main project is licensed under Apache-2.0 and is governed openly by the CNCF Sandbox community.
Usage restrictions and precautions
- Higress is an infrastructure; it is not a ready-to-use terminal chat or knowledge base product.
- Production deployment requires expertise in gateways, Kubernetes, networking, security, and observability.
- The community version does not come with any commercial SLAs; fault response, upgrades, and capacity management are handled by the team in charge of maintaining it.
- A unified interface cannot eliminate differences in model functionality, quality, context, and error format.
- Falling back to different models can change the responses, compliance outcomes, and costs.
- The semantic cache may return old answers that are not suitable for the current user or context.
- Token statistics depend on the supplier’s response and the way text is segmented, so they cannot be considered equivalent to invoices.
- The MCP tool connects the model to real-world business processes, and warnings about potential injection issues can turn into actual operational risks.
- Some plugins rely on Redis, vector databases, search functions, or external security services, which increases costs and the potential for failures.
- Custom Wasm plugins may still pose issues related to business logic, the supply chain, and resource consumption.
- When upgrading to v2.2.4, pay attention to changes in behaviors such as multi-rule throttling semantics.
- CNCF Sandbox indicates that it is in the early stage of project governance, and this does not equate to a mature Graduated level.
- The pricing and capabilities of the new version of Serverless in the beta phase may change once it becomes commercially available.
- The free scope of the cloud version does not include public network traffic, models, logs, monitoring, and related cloud services.
Basic information
| Project | Content |
|---|---|
| Tool name | Higress |
| Tool type | AI-native API gateway, MCP gateway, and cloud-native entry gateway |
| Project phase | CNCF Sandbox |
| Technical foundation | Istio, Envoy, WebAssembly, and Kubernetes API |
| Current stable version | v2.2.4, released on August 13, 2026 |
| Main warehouse license | Apache-2.0 |
| Document license | CC-BY-4.0 |
| Model scope | Over 100 mainstream models |
| MCP capabilities | Native proxy, existing API conversion, authentication, rate limiting, auditing, and tool routing |
| Deployment method | Docker, Docker Compose, Helm, Kubernetes, and Alibaba Cloud |
| Expansion method | Write Wasm plugins in languages such as Go, Rust, and JavaScript. |
| Price of the open-source version | Software licensing is free; infrastructure and upstream services must be provided by the user themselves. |
| Commercial version | Alibaba Cloud Serverless and Instance-Only Exclusive Edition |
| Is it open source? | Yes |
| Are public cloud services available? | Yes |
Frequently Asked Questions
Is Higress free?
The community moderator code is licensed under Apache-2.0, allowing free implementation, but the servers, network infrastructure, models, storage, and maintenance services are not free. During the beta phase of Alibaba Cloud’s Serverless version, the gateway itself costs nothing, but other cloud services and data transfer volumes may still incur fees.
Is Higress a large model?
No. It is located between applications and models, Agents, MCP tools, and inference services; its role is to handle connectivity and management tasks, and it does not replace the upstream models to generate content on its own.
Which models are supported?
The current product page states that it supports over 100 popular models, and can act as a proxy for OpenAI’s compatible interfaces as well as those of various domestic and international suppliers. As for multi-modal capabilities, tool calls, and parameter compatibility, these need to be tested using the suppliers’ plugins.
Is it possible to do without Kubernetes?
Yes. Docker All-in-One, Docker Compose, and Standalone can be used to operate independently of Kubernetes; however, for handling large-scale operations, ensuring persistence, and achieving high availability, additional design efforts are required.
Is it possible to turn a regular API into an MCP tool?
Yes, it is possible to generate remote MCP configurations using the MCP Bridge and OpenAPI conversion tools. After automatic generation, manual review is required for dangerous operations, parameters, authentication details, and tool instructions.
Is Higress the same as Alibaba Cloud AI Gateway?
They are not exactly the same. Higress is a project from the open-source community, while Alibaba Cloud AI Gateway builds upon its capabilities to offer managed Serverless services, dedicated instances, cloud integration, SLAs, and commercial support.
Can the Standard version of Serverless be used in production?
It is more suitable for low-traffic scenarios, testing, and development; it has a default rate of 50 QPS and lacks a separate entry point or custom domain name. For actual public services, it is advisable to consider the enterprise version or the dedicated instance version.
Will Higress reduce the cost of the model?
Caching, quotas, routing, and fallback mechanisms can help reduce waste or enable the selection of more appropriate models, but they do not guarantee a reduction in overall costs. It is also necessary to take into account the costs associated with gateways, caching, monitoring, and maintenance.
Is Higress open source?
Yes, the main repository uses Apache-2.0. The licensing terms and conditions for the relevant consoles, Standalone versions, plugins, and commercial cloud services need to be checked separately.
Summary
Higress is suitable for development and platform teams that need to manage multiple models, agents, MCP tools, and cloud-native APIs through a unified entry point. It handles token management, fallback mechanisms, caching, content security, stream-based monitoring, and MCP auditing at the gateway layer, while preserving the performance of Envoy, the standards of Gateway API, and the capabilities for Wasm extensions.
When making a selection, it is necessary to distinguish between the open-source version from the Apache community and the version hosted by Alibaba Cloud; moreover, the costs associated with model invocation, traffic, logging, Redis, plugins, and maintenance should all be taken into account in the total cost. Before going live, it is important to verify aspects such as cache isolation, key protection, minimum permissions via MCP, compatibility during version upgrades, and failover mechanisms, rather than focusing only on setting up a model proxy.
Guigong Network Security Registration No. 45132202000164