Serverless
Serverless architecture refers to apps that depend on third-party services (backend as a service, or BaaS) or custom code (functions as a service, or FaaS). Their goal is to free the developer and operator from managing the server their code runs on.
Here are 4,828 public repositories matching this topic...
Summary
Currently Kong supports writing configuration in a file, in YAML or JSON.
To provide a more flexible configuration, especially for those running Kong in different environments (dev, staging, production), an option to write configuration in lua can be very useful.
Additional Details
There are many use-cases that come to mind:
- Using environment variables inside the d
Feature Request
Is your feature request related to a problem? Please describe:
This is a really minor nit, but the EXPLAIN output on binary strings is different from what I expected:
CREATE TABLE t1 (
id INT NOT NULL PRIMARY KEY auto_increment,
b varchar(255) not null,
c varbinary(255) not null,
index (b),
index (c)
);
INSERT INTO t1 (b,c) VALUES ('a', 'a'),('b
Move all Dockerfile samples to non-root user
Expected Behaviour
As an OpenFaaS end-user, I want to run all samples on my OpenFaaS cluster, even with the new non-root feature enabled.
Current Behaviour
Describe the bug
Any attempt to test a subscription directly to the Prisma server via Playground returns the following error:
The provided query doesn't include any known model name. Please check for the latest subscriptions API.
In review of the WS transactions in the browser console, I can see I am receiving this response from the Prisma endpoint, but nothing is being logged by Pri
-
Updated
Nov 13, 2018 - TypeScript
The seccomp filters are tailored for the Firecracker musl build. We should specify how to run Firecracker when building it with gnu as well.
Requested by @rbrasga in firecracker-microvm/firecracker#1515 (comment)
The README at https://github.com/Miserlou/Zappa#custom-aws-iam-roles-and-policies-for-execution talks about using manage_roles: false to manually set a role for custom permissions.
This along with Miserlou/Zappa#244 led me down a rabbit hole.
However, if all you want to do is restrict the permissions of the Lambda itself, it seems that the partially documented `at
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
Niche Guides
Along with the General Guides, it might be helpful to add a niche guide section, which is broken down by AWS service. Happy to issue a PR with some quality tutorials as an example.
If I were to deploy cube.js using AWS serverless architecture, is athena required?
The docs https://cube.dev/docs/deployment#serverless do not mention whether Athena is optional or required. But when reading it, I assume it is required because there are athena keys in the serverless.yml config. I'm evaluating the idea of using Postgres RDS as the sole datasource for cubejs.
-
Updated
Apr 28, 2020 - Go
Clarify the readme?
I tried to install the dotnet example using:
install -u https://github.com/serverless/examples/tree/master/aws-dotnet-rest-api-with-dynamodb -n dotnet_example
but it responds with:
Serverless Error ---------------------------------------
serverless.yml not found in .../dotnet_example
So I think the "-n my-project" in the README is perhaps not what is actually needed he
Running Pulumi CLI commands in CI is failing with the following error:
error: could not get cloud url: unmarshalling credentials file: unexpected end of JSON input
The following scripts are representative of what was running when the error happened:
# prepare.sh
curl https://sdk.cloud.google.com | bash > /dev/null
export PATH=$PATH:/root/google-cloud-sdk/bin
KEY_FIhttps://github.com/kubeless/kubeless/blob/master/docs/runtimes.md
These default container images can be configured via Kubernetes environment variables on the Kubeless controller's deployment container. Or modifying the kubeless-config ConfigMap that is deployed along with the Kubeless controller. For more information about how to modify the Kubeless configuration check this guide.
Apar
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
Hi,
It would great if there was documentation on the steps taken by sam build. My concrete use case is that I'd like to know how it finds and installs packages for Python Lambda functions so I can figure out the best way to structure my project. More specifically, does it just do a pip install -r and copies the source files or does it build my package with setuptools?
Thanks!
(Edit
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-
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
[docs] what is bom?
I see various references to bom in the build file, docs, etc. E.g. the docs say "The no longer used group for Graal is no longer part of the bom". I'm not sure what this means. It would be useful to add a definition for bom (I'm guessing it's not the definition I know of "byte order mark"
- 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.
Currently, logging routes just uses console.log. Gets pretty annoying when you're trying to suppress serverless. (i.e. serverless.cli = { log: () => {} }
we want to use swagger integrated with API document under aws-serverless-express framework, so any document/guideline to follow?
if we follow some code rule to define the API method then generate the API document and show in swagger it is perfect
The documentation recommends using init_context over global variables. However, this only seems to be implemented for Go and Python. Would it be feasible to implement this for the other r
Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.
https://github.com/google/brotl
Knative intends to add as little overhead to pure HTTP as possible. As such, some of our components are exposed to the hot-path of just about each HTTP request coming
Feature Request
Add more configuration options for storage (IPFS). Command line arguments, for example.
Summary
For example, I want to develop my apps using IPFS. But I do not need to use it online. For example, running with --offline flag.
There two main ways to make it:
- Creating a variable called
argsinconfig/storage.jsthat would store extra argumens for the IPFS i
As a new custodian user, I'm trying to understand the usage of variables in policies. There seems to be multiple types of variables.
A non-exhaustive list for a beginner can be:
varsin a policy yaml- [standard runtime variables for in
- Wikipedia
- Wikipedia
I have created a serverless project for python on AWS, which works fine... until I try to re-use the project directly after checkout. Any CLI command exits with the following error: