Skip to content

Commit 115ed38

Browse files
authored
Merge branch 'master' into cwarren/contributing
2 parents 9f6a511 + 12d38f8 commit 115ed38

File tree

10 files changed

+84
-565
lines changed

10 files changed

+84
-565
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: Cadence Joins CNCF (Cloud Native Computing Foundation)
3+
4+
date: 2025-10-06
5+
authors: enderdemirkaya
6+
tags:
7+
- announcement
8+
---
9+
10+
# Cadence Joins the CNCF (Cloud Native Computing Foundation)
11+
12+
![using.png](./cncf/cadence-joins-cncf.png)
13+
14+
We’re proud to announce that [the Cadence project](https://cadenceworkflow.io/) has joined the [CNCF (Cloud Native Computing Foundation)](https://www.cncf.io/)®, the open-source foundation that hosts and maintains critical components of modern cloud-native infrastructure including Kubernetes®, Prometheus®, and Envoy® under the [Linux Foundation](https://www.linuxfoundation.org/)®.
15+
16+
Cadence is an open-source, fault-tolerant, and highly scalable workflow orchestration engine created at Uber to help developers build and run resilient applications. It’s been powering thousands of use cases at Uber and other companies. By managing distributed state, retries, scaling, and failure recovery, Cadence enables teams to focus on business logic rather than infrastructure complexity. Mission-critical applications across industries including finance, e-commerce, healthcare, and transportation depend on Cadence.
17+
18+
Joining CNCF marks a significant milestone for the Cadence project, emphasizing the project’s open source commitment. With its [open governance](https://cadenceworkflow.io/community/governance), companies can join as maintainers and help improve long-term confidence. Increased transparency in roadmap and execution make upcoming features predictable.
19+
20+
Since its inception, the Cadence project’s ecosystem has reached over 150 companies and counting. Partners like NetApp® Instaclustr adopted the project and have offered it as a managed solution at scale. With CNCF’s support, the project aims to further its mission of simplifying distributed service development while delivering production-grade reliability at scale.
21+
22+
In the last several years, Cadence has made significant investments in its scalability, reliability, multitenancy, deployment safety, and portability, laying the necessary foundation to build enterprise-level features at scale, efficiently and reliably. It’s now a great time to build those features together, and we invite anyone to be a part of this future. Especially in the era of AI, Cadence will play a crucial role in durable orchestration.
23+
24+
## What’s Changing in the Community?
25+
26+
We’ll stop using our Slack workspace ([uber-cadence.slack.com](http://uber-cadence.slack.com)). Going forward, we’ll use CNCF’s Slack workspace ([cloud-native.slack.com](https://cloud-native.slack.com/)). Join this new workspace using [Community Inviter](https://communityinviter.com/apps/cloud-native/cncf) and join the *\#cadence-users* channel to contact us.
27+
28+
Our website ([cadenceworkflow.io](http://cadenceworkflow.io)) and our GitHub org ([github.com/cadence-workflow](http://github.com/cadence-workflow)) will stay the same and we’ll continue sharing new features from there.
29+
30+
We’ll publish our roadmap at [https://github.com/orgs/cadence-workflow/projects](https://github.com/orgs/cadence-workflow/projects). We’ll hold community meetings to brainstorm about and prioritize upcoming features. Project tracking will move from internal tools to GitHub. Projects will have dedicated issues so you can track pull requests, updates, and timelines.
31+
32+
We’ll organize regular meetups (in-person and virtual) to showcase new features, have discussions, and learn from valuable guests.
33+
34+
For maintainers, we’ll hold regular meetings to update each other. If you’d like to become a maintainer, please contact us on Slack so we can help with starter tasks and larger projects as you gain experience.
35+
36+
## How to Become a Maintainer?
37+
38+
We invite companies that are already using Cadence, or plan to adopt it in the future, to become official maintainers and help shape this critical piece of infrastructure for your organization.
39+
40+
With this important milestone, we are prioritizing the addition of new maintainers and working to make the onboarding experience as smooth as possible. Our goal is to scale the project responsibly across all areas including development, decision making, efficiency, modernization, prioritization, and more.
41+
42+
If you are interested, please reach out to us in the #cadence-users channel mentioned above, and we will help you find suitable projects to contribute to. If you already have something in mind, feel free to open an issue in the appropriate repository under [github.com/cadence-workflow](http://github.com/cadence-workflow).
43+
44+
## Acknowledgments
45+
46+
*CNCF® and the CNCF logo design are registered trademarks of the Cloud Native Computing Foundation.*
47+
48+
*Envoy®, Kubernetes®, Prometheus®, and their logos are registered trademarks of The Linux Foundation® in the United States and other countries. No endorsement by The Linux Foundation is implied by the use of these marks.*
49+
50+
*Instaclustr® and NetApp® are trademarks of NetApp, Inc.*

blog/cncf/cadence-joins-cncf.png

62.2 KB
Loading

docs/03-concepts/09-search-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
layout: default
3-
title: Search workflows(Advanced visibility)
3+
title: Search workflows (Advanced visibility)
44
permalink: /docs/concepts/search-workflows
55
---
66

7-
# Searching Workflows(Advanced visibility)
7+
# Searching Workflows (Advanced visibility)
88

99
## Introduction
1010

docs/03-concepts/13-workflow-queries-formatted-data.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,38 @@ This would render as:
8282

8383
---
8484

85+
## UI Examples
86+
87+
The following screenshots demonstrate how formatted query responses appear in the Cadence Web UI:
88+
89+
### Employee Database Query Results
90+
91+
This example shows formatted data returned from an employee database query, demonstrating how tabular data can be presented:
92+
93+
![Employee Database Query Results](img/employee-database-query.png)
94+
95+
*Employee records displayed in a structured table format showing Employee name, Title, and description columns with sample data for multiple employees.*
96+
97+
### Hello World Workflow Query Results
98+
99+
Here's an example of how query results are displayed for a simple workflow:
100+
101+
![Hello World Workflow Query Results](img/hello-world-workflow-query.png)
102+
103+
*The Hello World Workflow query interface showing basic workflow concepts and activity execution information, including real-world use case details and sample code links.*
104+
105+
### Query Interface
106+
107+
The Queries tab provides an interface for executing workflow queries with various predefined options:
108+
109+
![Cadence Web Queries Interface](img/cadence-queries-interface.png)
110+
111+
*The Queries tab showing available query operations including `__open_sessions`, `get_runtime_data`, and other predefined queries, along with an "Operator Runbook" option.*
112+
113+
These examples illustrate how the formatted data feature enhances the user experience by providing rich, structured displays instead of raw JSON responses.
114+
115+
---
116+
85117
## Go Implementation
86118

87119
### Type Definition
203 KB
Loading
209 KB
Loading
324 KB
Loading

src/components/GrafanaSetupPopup/index.tsx

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/components/NewFeaturePopup/index.tsx

Lines changed: 0 additions & 155 deletions
This file was deleted.

0 commit comments

Comments
 (0)