riff is for functions

riff is for functions

  • Docs
  • Blog
  • GitHub
  • Slack

›Recent Posts

Recent Posts

  • 👋
  • Announcing riff v0.5.0
  • From Monolith to riff Functions at SpringOne Platform 2019
  • Mark Fisher and Cornelia Davis' Keynote at SpringOne Platform 2019
  • Announcing riff v0.4.0

👋

March 13, 2021

Project riff is complete. So Long, and Thanks for All the Fish

Announcing riff v0.5.0

February 10, 2020

We are happy to announce riff v0.5.0. Thanks to all riff, Cloud Native Buildpack, Knative, Liiklus, KEDA, Contour, k14s, and other contributors.

The riff CLI can be downloaded from our releases page on GitHub. The getting started guides will help you to run your first function.

riff v0.5 Streaming Architecture

Streaming

This release introduces a new experimental streaming capability. Functions deployed using the Streaming Runtime are able to consume and produce streams of events. The Node and Java function invokers have been extended to support a new streaming invoker specification.

Here is an example of a JavaScript streaming function interface with 2 input and 1 output stream, using the node function invoker.

module.exports = (inputStreams, outputStreams) => {
    const { impressions, orders } = inputStreams;
    const { conversions } = outputStreams;
    // do something
};
module.exports.$interactionModel = 'node-streams';
Read More

From Monolith to riff Functions at SpringOne Platform 2019

October 9, 2019

Mark Fisher and Cornelia Davis' Keynote at SpringOne Platform 2019

October 8, 2019

Announcing riff v0.4.0

August 21, 2019

We are happy to announce the release of riff v0.4.0. Thank you all riff, Cloud Native Buildpack, and Knative contributors.

The riff CLI can be downloaded from our releases page on GitHub. Please follow one of the getting started guides, to create a new cluster on GKE, Minikube, Docker Desktop for Mac, or Docker Desktop for Windows.

A lot has changed, buckle up.

Read More

Announcing riff v0.3.0

April 10, 2019

We are happy to announce the release of riff v0.3.0. Thank you all riff, Buildpacks, and Knative contributors.

Read More

Announcing riff v0.2.0

November 19, 2018

We are happy to announce the release of riff v0.2.0. Thank you once again, all riff, Buildpacks, and Knative contributors.

Read More

riffing on Knative at SpringOne Platform 2018

September 27, 2018

Knative and riff for Spring Developers at SpringOne Platform 2018

September 26, 2018

Introduction to Knative at SpringOne Platform 2018

September 26, 2018

Next →
riff is for functions
Docs
Versions
Community
BlogGitHubSlackKnativeTwitter
More
Privacy PolicyTerms of UseCode of Conduct
Deployed by Netlify
Copyright © 2021 VMware, Inc