Skip to main content

Posts

Showing posts from April 11, 2022

Micro Services Best Practices

  We are using monolithic of single code-based application for long. From when client-server solutions have been evolved. And it continues on internet solutions era as well. But the monolithic architecture of a big application has many difficulties as well. Most importantly for deployment and scalability. As it is tightly coupled with all the modules. Therefore the new way of application architecture evolved microservice architecture. Where the whole problem is divided into several small parts. Each part solves a small set of problem or implementations. And then comes this architecture’s complexities as well. Like how one microservice will talk to another microservice and so. Who are interested and .Net developer and architect can download open source microservices containers with whole application here  https://github.com/dotnet-architecture/eShopOnContainers I am trying to describing microservices architecture best practices with a small example. Which will help the beginner...

Coronavirus Pandemic Time Job Search Precautions

  Due to the current scenario, job losses. Many of us looking for immediate join jobs. But many fake and unethical companies may provide you with some offer. But be very careful before accepting any. Review them thoroughly. Ask, call to anybody may know about this company. Also, very important to know about the company general rules and regulations. E.g. Leave, probation period constraints, salary schedule, office schedule, timing, expected workload etc. I have found that some companies have changed their monthly salary calculation as well. E.g. they have made 20th to 21st every month. Means actually you will end up 24–26 days more working in a year. Some companies provide salary 10–11 days after end their month. Some want you to be working without any time boundary. So actually they want a slave, not a long term employee or consultant. Also, you need to check their ethics and work environment as well. This is not last there are many things which bad companies now used to get their...

How to start with Kubernetes for begginer

  Prior knowledge require:  Python  or any other language development knowledge. Knows about what is  GIT  and how it works. Good if you know about  Docker . What can Kubernetes do for you? With modern web services, users expect applications to be available 24/7, and developers expect to deploy new versions of those applications several times a day. Containerization helps package software to serve these goals, enabling applications to be released and updated in an easy and fast way without downtime. Kubernetes helps you make sure those containerized applications run where and when you want, and helps them find the resources and tools they need to work. Kubernetes is a production-ready, open source platform designed with Google’s accumulated experience in container orchestration, combined with best-of-breed ideas from the community. So in short, when you need to run your application all round the clock. You need to deploy and update release your application ...