serverless-architecture Questions
2
Solved
I'm using the serverless framework in order to create a Cognito User Pool using the following CloudFormation configuration:
Resources:
CognitoUserPool:
Type: AWS::Cognito::UserPool
Properties:
...
Samala asked 20/6, 2019 at 16:26
6
Solved
I'd like to deploy an AWS Event Rule in Eventbridge which is triggered by all events, with no filtering whatsoever.
I've tried the following patterns with no luck.
{
source: ["*"]
}
According t...
Arnulfoarny asked 16/6, 2020 at 11:1
2
I'm using google cloud's "Hello World" demo for cloud functions but the URL it produces gives me an error:
Error: Page not found
The requested URL was not found on this server.
I follow ...
Daphie asked 9/2, 2022 at 22:7
4
Solved
I stupidly removed the s3 bucket for my serverless project. When I now try and deploy or remove my application I get this error: The specified bucket does not exist How can I recreate the s3 bucket...
Guffaw asked 25/7, 2017 at 12:19
4
I' am trying to deploy my NextJs app. I have been getting the same 2 errors the past few days:
1: // and will just error later on
2: Error: No serverless pages were built. Learn More: https://err.s...
Greta asked 30/7, 2022 at 15:31
1
Solved
serverless deploy throws spawn serverless ENOENT
Getting the below error when trying to deploy client-service, although before that all services are getting deployed.
Error: spawn serverless ENOEN...
Evadne asked 6/11, 2022 at 11:30
1
Solved
Can someone explain how RPUs are getting calculated by an example ?
Let's say I have a mongo collection that has 5 million documents. So if i do a findOne to the collection, the RPUs generated woul...
Offside asked 2/5, 2022 at 8:15
2
Solved
I am using AWS and using the serverless framework. My serverless lambda function gets triggered by event. Then I talk with Database and there is a limit in the number of connections I can open with...
Actinic asked 13/1, 2021 at 21:47
4
Solved
I am new to Durable function(Orchestration function) and seen sample application as per Microsoft documentation.So I have few doubts.
example:
public static async Task<HttpResponseMessage> ...
Lizalizabeth asked 17/10, 2017 at 13:49
4
Solved
You can easily debug your serverless application with the Serverless Framework and the Serverless Offline Plugin when you only have one, but how do you handle the case when you have multiple API Ga...
Viscount asked 6/6, 2017 at 17:38
3
Solved
I am creating NodeJS based crawler, which is working with node-cron package and I need to prevent entry script from exiting since application should run forever as cron and will execute crawlers at...
Unproductive asked 23/5, 2017 at 14:22
1
Solved
I was using serverless templates and all worked fine until suddenly all my deployments started ignoring .env files.
I searched through the documentation and it says that if I want to use the enviro...
Sines asked 18/2, 2021 at 5:34
1
Solved
I am trying some skeleton deployment using python. Here is my serverless.yaml
My folder structure is
serverless-test
|_lambdas
|____handler.py
|_layers
|____common
|_________somefunction.py
servic...
Barbbarba asked 1/2, 2021 at 22:40
4
I have tried to debug serverless application developed using serverless framework in VS code. I have followed this article.
But when I trying to debug the code I'm getting an error from VS code a...
Tendril asked 1/8, 2017 at 11:59
3
Solved
I am currently designing a simple Serverless Web App using Serverless.
My current expected stack is;
API Gateway
Lambda
DynamoDB
Static Single Page App
I have followed a few tutorials for buil...
Precautious asked 17/1, 2018 at 15:7
2
Solved
I am trying to use Sequelize js with Serverless, coming from traditional server background, I am confused where/how to run database migrations.
Should I create a dedicated function for running mig...
Sweyn asked 2/5, 2017 at 12:12
3
Solved
I want to create a package to deploy on AWS using serverless and webpack.
In serverless.yml I want to declare all the resources (mainly DynamoDb tables) and the functions. I want to use external n...
Kure asked 20/3, 2017 at 17:49
2
I'm building a serverless app using API Gateway and Lambda (Serverless Framework) and trying to find a way to provide multiple versions of our app's API.
Here's the way I can think of.
serverless...
Willett asked 22/4, 2018 at 6:19
1
When using the serverless framework (on a Mac OS X High Sierra), the SLS_DEBUG environmental variable was set to enable verbose debug info
export SLS_DEBUG=*
Question: Now how do you disable it ...
Seiber asked 18/9, 2018 at 2:59
1
I would like to be able to live stream video (or any other file that is large and continuously modified/appended) via dat.
Here it says,
The dat:// protocol doesn't support partial updates at ...
Embryectomy asked 30/7, 2018 at 6:5
5
Solved
How to rename an Azure Function?
I want to replace a default 'HttpTriggerCSharp1' name to my own. At the moment unfortunately this name is included in the function url and there is no option to c...
Atahualpa asked 17/11, 2016 at 13:47
2
Solved
A year ago I attended Munich meetup where I first saw hyperdrive project live, and found it impressive. I also recently stumpled upon IPFS –the InterPlanetary file system– and I wonder about the di...
Chicory asked 1/7, 2017 at 9:4
1
I am trying to implement an event-driven architecture using Amazon Kinesis as the central event log of the platform. The idea is pretty much the same to the one presented by Nordstrom's with the He...
Saks asked 12/12, 2017 at 11:36
1
Solved
I have a simple Lambda function which sends emails through SES. I can call it using a POST request with the required data and it will send an email. My question is, what are the methods I can use t...
Cohlette asked 26/6, 2017 at 14:4
4
Solved
Using AWS CLI
aws --version
aws-cli/1.11.21 Python/2.7.12 Darwin/15.3.0 botocore/1.4.78
Creating a POST method for API Gateway as explained at https://github.com/arun-gupta/serverless/tree/maste...
Shaveling asked 29/12, 2016 at 1:19
1 Next >
© 2022 - 2024 — McMap. All rights reserved.