How to run a web server using Java in 2022

2021-10-18 11:10:02 - No Comments

We will talk about how to start a web server using Java with the release of JDK 18 in Marsh of 2022. Java has not had an easy way to start a web server but there might be a change coming.

Read more →

Setting up a webserver with php and async operations in docker

2021-10-11 11:10:03 - No Comments

I had to setup a docker image that could handle request in an API using async jobs to do the actual workload. This means that I had to have something running in the background async while also having a docker image with web server and php.

Read more →

I make my first contribution to HacktoberFest 2021

2021-10-04 11:10:03 - No Comments

We will talk about what HacktoberFest is and how to contribute. The HacktoberFest 2021 is a really good way to get into open source, boost your CV and help out your fellow programmers.

Read more →

Setting up a new Ceph cache pool for better performance

2021-09-27 11:09:03 - No Comments

In this video, we talk about how to set up a Ceph cache pool and tier your cache in order to improve read and writes. There is a lot of cache settings that we could cover but I will talk about the most important values you can set on a pool to cache your data […]

Read more →

Using a directory in your cephfs on kubernetes

2021-09-19 23:09:02 - No Comments

We look into how to setup kubernetes easily on one machine and then get cephfs mounted into a pod. Using ceph you could balance workloads or share resources easily in your kubernetes cluster. Git repository ceph-kubernetes An example of how to setup ceph mounting on a kubernetes cluster. Ceph Packages First up after you have […]

Read more →

Moving cluster Ceph to Bullseye – The upgrade story

2021-09-17 19:09:02 - No Comments

I wanted to try out the newly released Debian version of Bullseye for my Ceph cluster, so I updated one of my hosts, which, in hindsight, might have been a bit too early. Reseting a Ceph Host after OS crash or failed update Preparing cluster First you need to set the cluster into a noout […]

Read more →

Disk failure prediction in your Ceph cluster using SMART.

2021-09-12 23:09:02 - No Comments

Keeping track of your disks in a Ceph cluster is important so you could replace them in time before data loss. In this video we look into how to use SMART data to run a machine learning prediction in order predict when a disk fails. SmartMonTools is used locally to fetch the data. The data […]

Read more →

Configure the prometheus alertmanager for you Ceph Cluster

2021-09-05 23:09:03 - No Comments

We will look into the Ceph dashboard and the different metrics you can find there. Then we will configure Prometheus Alertmanager to get timely alerts from the metrics in your Ceph Cluster.

Read more →

How to configure the Ceph Grafana dashboards manually

2021-08-29 23:08:02 - No Comments

I did not have Grafana dashboards that worked in my Ceph installation. Hence, I had to install Prometheus and Grafana manually and then configure the dashboards to show up in my Ceph cluster dashboard screens. NODE Setting up prometheus exporter in ceph. sudo ceph mgr module enable prometheus sudo ceph config set mgr mgr/prometheus/server_addr 0.0.0.0 […]

Read more →

I wrote a RabbitMQ executor service in Java.

2021-08-24 04:08:02 - No Comments

I show off an open-source project I started writing a RabbitMQ executor in Java. This little tool is something you can deploy on a machine in order to execute workloads from a RabbitMQ queue. The executor will run the commands defined by a file and return the result to another queue.

Read more →

How to solve the global id reclaim in your Ceph cluster

2021-08-15 23:08:02 - No Comments

We look into what the error about global id reclaim when you upgrade your Ceph cluster is all about. I got this error when I installed my new cluster and had to solve the issue. After reading about the reclaim of the global id I understood that it was a really bad practice and I’m […]

Read more →

How to use JReleaser and release to github

2021-08-08 23:08:03 - No Comments

We look into how to use jreleaser and deploy our code to Github and creating release documentation with some simple steps.

Read more →