apache/openwhisk
仓库概览、指标与主题
简要分析
编辑推荐
社区关注度与协作度较高,适合实践与生产使用。
语言占比
Release
- v2.0.02024-04-07
相关仓库
Apache Spark - 一个用于大规模数据处理的统一分析引擎
Scala 2编译器和标准库。Scala 2 https://github.com/scala/bug bugs;斯卡拉3 at https://github.com/scala/scala3
它像 git-filter-branch 一样移除大块或麻烦的块状物,但更快。而且是在斯卡拉写的
CMAK 是一个用于管理 Apache Kafka 集群的工具
一个开源存储框架,支持构建包含 Spark、PrestoDB、Flink、Trino 和 Hive 等计算引擎及 API 的 Lakehouse 架构
开源高性能RISC-V处理器
README
OpenWhisk
OpenWhisk is a serverless functions platform for building cloud applications.
OpenWhisk offers a rich programming model for creating serverless APIs from functions,
composing functions into serverless workflows, and connecting events to functions using rules and triggers.
Learn more at http://openwhisk.apache.org.
- Quick Start (Deploy and Use OpenWhisk on your machine)
- Deploy to Kubernetes (For development and production)
- For project contributors and Docker deployments:
- Learn Concepts and Commands
- OpenWhisk Community and Support
- Project Repository Structure
Notice of Breaking Upgrade 10/17/2025
Apache Openwhisk has migrated to the Apache Pekko framework. The master branch as of 10/17/2025 uses Apache Pekko. This change results in a breaking change such that you must re-deploy new clusters and cutover traffic to the new cluster. All other changes should be transient to you other than instead of using Akka configuration overrides in your deployments, you would now need to update those to use the Pekko equivalent. A 3.x release branch will eventually follow this
change.
Quick Start
The easiest way to start using OpenWhisk is to install the “Standalone” OpenWhisk stack.
This is a full-featured OpenWhisk stack running as a Java process for convenience.
Serverless functions run within Docker containers. You will need Docker,
Java and Node.js available on your machine.
To get started:
git clone https://github.com/apache/openwhisk.git
cd openwhisk
./gradlew core:standalone:bootRun
-
When the OpenWhisk stack is up, it will open your browser to a functions Playground,
typically served from http://localhost:3232. The Playground allows you create and run functions directly from your browser. -
To make use of all OpenWhisk features, you will need the OpenWhisk command line tool called
wskwhich you can download from https://s.apache.org/openwhisk-cli-download.
Please refer to the CLI configuration for additional details. Typically you
configure the CLI for Standalone OpenWhisk as follows:
wsk property set \
--apihost 'http://localhost:3233' \
--auth '23bc46b1-71f6-4ed5-8c54-816aa4f8c502:123zO3xZCLrMN6v2BKK1dXYFpXlPkccOFqm12CdAsMgRU4VrNZ9lyGVCGuMDGIwP'
- Standalone OpenWhisk can be configured to deploy additional capabilities when that is desirable.
Additional resources are available here.
Deploy to Kubernetes
OpenWhisk can also be installed on a Kubernetes cluster. You can use
a managed Kubernetes cluster provisioned from a public cloud provider
(e.g., AKS, EKS, IKS, GKE), or a cluster you manage yourself.
Additionally for local development, OpenWhisk is compatible with Minikube,
and Kubernetes for Mac using the support built into Docker 18.06 (or higher).
To get started:
git clone https://github.com/apache/openwhisk-deploy-kube.git
Then follow the instructions in the OpenWhisk on Kubernetes README.md.
Learn Concepts and Commands
Browse the documentation to learn more. Here are some topics you may be
interested in:
- System overview
- Getting Started
- Create and invoke actions
- Create triggers and rules
- Use and create packages
- Browse and use the catalog
- OpenWhisk system details
- Implementing feeds
- Developing a runtime for a new language
OpenWhisk Community and Support
Report bugs, ask questions and request features here on GitHub.
You can also join the OpenWhisk Team on Slack https://openwhisk-team.slack.com and chat with developers. To get access to our public Slack team, request an invite https://openwhisk.apache.org/slack.html.
Project Repository Structure
The OpenWhisk system is built from a number of components. The picture below groups the components by their GitHub repos. Please open issues for a component against the appropriate repo (if in doubt just open against the main openwhisk repo).
What happens on an invocation?
This diagram depicts the steps which take place within Openwhisk when an action is invoked by the user:
评论