Questions tagged [containerization]

13 questions
5
votes
1 answer

Is stateless mode necessary before containerizing a monolithic application?

In my team, we are maintaining a monolithic application that was started in 2003. It is written in Java and has seen several successive layers of technical changes, growing to a hefty 400k-line application. Recent business strategies decided by the…
AbVog
  • 159
  • 3
2
votes
0 answers

Determining when to use Serverless vs Containerized application (AWS Lambda vs ECS) - Is Java Spring dead?

I work for an organization that heavily leverages AWS. There is a strong push that every team move from containers deployed on ECS to leverage AWS Lambda and step functions for (almost) every project. I know that there are workflows for which…
greenJavaDev
  • 129
  • 2
1
vote
0 answers

Multi Tenancy and container support in Spring Webflow application

I have an application which is quite old (7 years back-2014) but well built using JSF, Spring Webflow and Hibernate. This application is critical as being deployed for 50 separate clients each with different box (with tomcat as web server). Now I…
Kush
  • 11
  • 1
1
vote
3 answers

How should I manage secrets for applications deployed on servers I do not control?

Problem description I have an IoT app that provides a server backend and browser UI client for interfacing with proprietary control systems. Some deployments of this application will require that the server is not publicly accessible on the…
1
vote
0 answers

Streaming File Storage in Distributed (and Containerized) Systems

I'm trying to implement a system that allows a user to upload files over HTTP, saves the file to object storage as well as any metadata surrounding the file that already exists to a NoSQL database (i.e. the groups who have access to it, it's name,…
1
vote
3 answers

Why should I use containers instead of deploying build artifacts directly to Azure App Services or AWS Elastic Beanstalk?

Recently, I have been told by others to look into containerization of my stateless web applications (in this case .NET Core 2.x and 3.1). All of my dependencies are retrieved from public and private Nuget feeds. For a few years, I have been…
Kyle J V
  • 226
  • 1
  • 8
0
votes
1 answer

How to check for docker specific code and APIs in an application for later migration to containerd?

So I have a couple of Java RESTful microservices, and since the past few years I have basically been using Docker to build them and deploy them over to a Kubernetes cluster. Our team is upgrading Kubernetes versions, and it was brought to attention…
dnak
  • 3
  • 3
0
votes
3 answers

Would it be possible to create a browser that runs container images?

My understanding of a "browser" as a means of consuming software over the web: Browsers isolate web application execution to an environment which greatly reduces end user vulnerability. Browsers provide an approximately standard environment which…
lmonninger
  • 103
  • 2
0
votes
3 answers

Is microservices architecture a good candidate for a pipeline?

I have a monolithic application which can be divided into multiple steps and different steps have variable scaling requirement, however the input of the next step is the output of the current step. Currently, we are not able to handle the no of…
0
votes
0 answers

Resource creation (users, secrets, etc) from monoliths to microservices

I'm part of an initiative where we are moving monolithic-ish applications, each running on their separate VMs and using a common database cluster, to a container architecture with the goal of eventually breaking down all the monoliths to…
tobier
  • 101
  • 2
-1
votes
1 answer

Scalable Web Data Service Approach

I'm looking to build a service that interacts with an existing web application's database. The service would retrieve data from an api for which the web application users own an account and warehouse/refresh this data for them. I'd like to make sure…
-1
votes
2 answers

Are there any advantages to using dockerfile dependencies over virtual environment for Python apps?

I am currently working solo on a very small simple python microservice. I started building this app, mostly by habit, in a virtual environment. As I started to get closer to the point where deployment considerations needed to be made, I started to…
-1
votes
1 answer

Containers Across Operating systems

Curious how containers are portable across development/testing/cloud environments with no worry needed about the underlying infrastructure. Does the Docker Engine essentially standardize operating systems to the point where the engine is able to…