How does TensorRT 8.2 work?

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

In this video we look into how TensorRT 8.2 works. Talk about the improvements made in TensorRT and also what’s new in 8.2.

Read more →

Manual install of Ceph part 2 – Add OSD and use Rados

2021-11-01 12:11:02 - No Comments

We go through how to manually install a Ceph cluster. We will add Object storage devices and play around with Rados. Rados (Reliable autonomic distributed object storage) is a great way to store data in a secure and efficient way. Adding storage When the cluster is up and running and all monitors are in qourum […]

Read more →

Manual install of Ceph part 1 – Cluster backbone

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

We will walk through the process of manually installing a Ceph cluster. This gives you a better overview of how Ceph works, and we will discuss different concepts used when running a cluster. Fetching software. First of I want to check that I have all the latest packages in my debian system. apt update apt […]

Read more →

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 - 1 Comment

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 →