The Wayback Machine - https://web.archive.org/web/20200708203331/https://github.com/topics/faas
Skip to content
#

faas

Here are 471 public repositories matching this topic...

IlCallo
IlCallo commented Oct 14, 2019

I made up a guide to setup Firebase services into a real-world scenario with cutting-edge technologies. I think you could get some insights on DX of your services and how they are used out in the wild (or add it to this examples repository).
Tech used: Quasar (Vue), TypeScript, Jest (unit testing), Firebase Firestore, Cloud Functions, RxFire.

Inside the guide there are some helpers and code ma

fission
svenvNL
svenvNL commented Apr 16, 2020

Writing a function takes a lot of steps. In the case of a Java function, a Maven project needs to be created and the dependencies need to be added. For other languages, there is a simular experience.

After writing the function, specs need to be generated. These include a Package, Function and a trigger. Names need to match in multiple places, so a lot could go wrong. Below is a basic example fo

rabbah
rabbah commented Apr 2, 2020

The typescript runtime was recently added to openwhisk but we do not yet have docs for the runtime and it is missing from runtimes.json.

We need a doc like https://github.com/apache/incubator-openwhisk/blob/master/docs/actions-nodejs.md for typescript functions.

Adding the runtime to the runtime manifest can be done per https://github.com/apache/openwhisk/blob/master/docs/actions-new.md#the-

rdallman
rdallman commented Jun 13, 2018

this will very quickly get out of hand if we allow it, i realize we don't have principles written down anywhere but to date one of them has been that binaries 'just work' without having to do any configuration. currently a user must set FN_MAX_REQUEST_SIZE, FN_MAX_RESPONSE_SIZE -- neither of these should be required to run.

test case:

cd tests/fn-system-tests/
go test -v

this

keithwhor
keithwhor commented Jan 14, 2018
  • Main website searches through sourcecode OR public services
  • Dashboard searches through your services
  • Docs search through docs

More importantly, almost all widgets look the same.

I think we need consistency here: either give all widgets the same functionality (dropdown for public services, sourcecode, your services, and docs) or change how they look. I think first option is ideal.

bref
Nemo64
Nemo64 commented Jan 29, 2020

In the documentation it says that a disadvantage of using the api gateway directly is that there is no https redirect. Ref: https://bref.sh/docs/websites.html#architectures

I'm new to aws but I basically used the api gateway and configured a custom domain and I noticed that there is a https redirect. Try: curl -v 'http://symfony-bootstrap.marco.zone'

Now I'm questioning: is that new and no

abramvandergeest
abramvandergeest commented May 21, 2019

Current behavior:
All the SQL activities either don't support Insert or are specific to a usecase

Expected behavior:
to be able to insert to a sql database in an activity

What is the motivation / use case for changing the behavior?
many workflows/pipelines require logging to a database

Additional information you deem important (e.g. I need this tomorrow):

AngelaZhao
AngelaZhao commented Mar 25, 2019

Describe the bug
函数多instance及timeout特性不符合预期

To Reproduce
某python函数配置多个实例以及timeout,配置如下
image

向source topic中依次发送4条消息
消息1:异常消息,发送后能够触发函数除0错误
消息2:异常消息,发送后触发函数执行超时
消息3:异常消息,发送后触发函数执行超时
消息4:正常消息,发送后能有正常返回

Expected behavior
函数最大实例为3,预期发完4条消息后能立马收到消息1和消息4的执行结果
然后超时后,也就是10s

bug
FunctionScript
monis0395
monis0395 commented Sep 30, 2019

Hi,

I was using FunctionScript in stdlib, I had a hard time finding about the callback function definition and how to return caught errors properly in case of sync and async functions.

Ultimately looking at the testcases and code in lib/gateway.js I was able to confirm

  • callback definition is callback(error, body, header)
  • in async function there is no way to return error, we just
youngkin
youngkin commented Mar 7, 2020

In GUIDE.md, in the "Start up the Kubernetes dashboard" section, the kubectl apply ... command is referencing a resource that no longer exists. Here's the kubectl apply ... command from the guide along with the response:

$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/altern
alexellis
alexellis commented Mar 9, 2020

git-tar needs to clone with a unique path (including branch)

Expected Behaviour

git-tar should clone to a path like: /tmp/owner/repo/branch to avoid conflicts

Current Behaviour

It clones to:

func clone(pushEvent sdk.PushEvent) (string, error) {
	workDir := os.TempDir()
	destPath := path.Join(workDir, path.Join(pushEvent.Repository.Owner.Login, pushEvent.Repository.Nam
chrisvxd
chrisvxd commented Oct 14, 2019

JS Docs aren't extracted when using exporting default arrow functions

/**
 * This is an example description for an example function.
 *
 * @param foo - Example describing string `foo`.
 * @returns Description of return value.
 */
export default async (foo: string): Promise<string> => {
  return JSON.stringify({ foo })
}

Method description and params are missing from outpu

bug
jenkinsfile-runner
neosab
neosab commented Aug 21, 2018

Feature Request

Add a --context flag to dispatch CLI.

Detailed Description

You can have multiple contexts in the dispatch config file (~/.dispatch/config.json). Each context stores the location of a dispatch endpoint. Currently, to switch context you need to do `dispatch manage context --set <context_

Marak
Marak commented Sep 30, 2016

Our current configuration of babel for microservices is a bit hard-coded. We should respect the users .babelrc configuration / make babel configurable in the stack tool.

see: https://github.com/Stackvana/stack/blob/master/lib/compileServiceCode/babel/index.js#L7

I'm not personally using babel for development, so it any babel users can assist here, it would be much appreciated.

cc @

Improve this page

Add a description, image, and links to the faas topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the faas topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.