Serverless architectures refer to applications that significantly depend on third-party services (knows as Backend as a Service or "BaaS") or on custom code that's run in ephemeral containers (Function as a Service or "FaaS"). By using these ideas, and by moving much behavior to the front end, such architectures remove the need for the traditional 'always on' server system sitting behind an application.
Questions tagged [serverless-architecture]
177 questions
0
votes
2 answers
C#-Azure function:How to log message to Queue storage when calling to "HTTP Trigger" azure function?
I have a azure function with "HTTP Trigger" in C#. I want to log a message to queue storage when I invoke azure function with "HTTP trigger".
When "HTTP trigger" is invoked it logs a message (log.info("C# Http trigger....");) somewhere else but I…

Kumari Dimple
- 343
- 2
- 4
- 14
0
votes
3 answers
Mixing Node.js API with AWS Lambda
I have a never ending discussion with my manager about the usage of AWS Lambda. I would like to get some help from one of you guys.
I am a bit hesitated to utilize serverless architecture for production level projects yet. First of all, its a bit…

supergentle
- 1,001
- 1
- 14
- 33
0
votes
1 answer
Serverless CQRS + EventSourcing ReadModel update with AWS Lambda
I'm trying to implement CQRS + Event Sourcing backend based on AWS serverless architecture.
The issue is with readmodel updating.
When event is saved to Event Store it is published to SNS. SNS then invokes UpdateReadModel lambda.
When several…

iokhotnikov
- 176
- 1
- 8
0
votes
1 answer
serverless with azure functions and webpack
I'm wondering if there is anyone using serverless framework with azure functions and how you handle sharing code across functions & bundling?
I'm converting hapi.js app to serverless + serverless-azure-functions and I'm trying to bundle my code…

JJ23
- 111
- 8
0
votes
1 answer
Serverless Execution Isolation
I am looking at serverless architecture to process some customer data. The process itself is probably quite quick, but for various reasons I would like the cloud service provider to gurantee executional isolation. So far, I've talked to a rep from…

Gleno
- 16,621
- 12
- 64
- 85
0
votes
0 answers
Serverless vs traditional web frameworks routing architecture
Just as a pure hobby side project, I am writing some code which is going to require the regular CRUD interaction from the users, via the web browser.
Naturally, to avoid reinventing the wheel, I am looking at various web frameworks and pretty much…

Lech Rzedzicki
- 435
- 6
- 17
0
votes
1 answer
Making HTTP request using Swift on OpenWhisk?
How can I make HTTP requests to retrieve and return data during a serverless Swift function running on Apache OpenWhisk?
Serverless cloud platforms restrict access to the runtime environment. This means you can't install extra libraries to help with…

James Thomas
- 4,303
- 1
- 20
- 26
0
votes
2 answers
Relation between Serverless Architecture and Microservices
Is the relation between Serverless Architecture and Microservices right?
Serverless Architecture(Azure Functions or Amazon Lambda) accesses several Microservices(Amazon Elasticache or Amazon Redis Cache).
Microservices provides functionalities…

Hyunjik Bae
- 2,721
- 2
- 22
- 32
0
votes
2 answers
Can I disable autocreate S3 Bucket in Zappa Init?
I want to get started with zappa framework, but when I'm running init zappa I got this notification:
How to disable autocreate s3 bucket?

Johannes Sitorus
- 61
- 1
- 5
0
votes
1 answer
Caching and invalidating AWS Lambda response
I am trying to implement a solution on AWS which is as follows:
I have a crawler that will run once a day to index certain sites. I want to cache this data and expose it the the form of an API since after crawling, this data will not change for an…

Salman Hasrat Khan
- 1,971
- 1
- 20
- 27
0
votes
1 answer
AWS API Gateway return HTML
I am using the AWS labs' serverless container (https://github.com/awslabs/aws-serverless-java-container) to handle the lambda entrypoint and response for a lambda that returns HTML. It appears that it calls the lambda and returns the HTML just fine…

FiguringThisOut
- 810
- 2
- 9
- 18
0
votes
4 answers
Is serverless in combination with event sourcing possible?
I've been wanting to implement a mobile app using a complete serverless architecture for some time now and finally started looking into the details. So far, I've discovered that AWS offers most of the services that would be required for such a setup…

Martijn
- 2,268
- 3
- 25
- 51
0
votes
3 answers
AWS Serverless application load time with the Spring framework
I am building a web application in AWS using the serverless architecture.
The purpose of the application is to expose a public API to upload files from around the world.
I use AWS API-Gateway and Lambda to execute my code and S3 as storage.
I know…

Yoaz Menda
- 1,555
- 2
- 21
- 43
0
votes
1 answer
Installing /whisk.system/messaging package in my local installation
I am doing my local openwhisk installtion on Ubuntu 16.04.
I was try to do my hands-on on the below sample
https://github.com/IBM/openwhisk-data-processing-message-hub
it using /whisk.system/messaging package
but when i check the installed…

Katiyman
- 827
- 2
- 12
- 32
0
votes
1 answer
aws-serverless-express via AWS API gateway asking for authentication even not setup for that
sorry for such 101 question but I'm kinda new with AWS, NodeJS and Express.
I'm setting up a basic serverless API Gateway:
index.js
import AwsServerlessExpress from 'aws-serverless-express';
import App from './src/app';
const server =…

Idemax
- 2,712
- 6
- 33
- 66