Linux by example – Creating test tooling
We talk about building the test tooling we later will use to test the compiler and build systems.
We look into how to download and build OpenJDK 13 from source. We talk about dependencies and commands for Linux and Windows.
We solve the day 16 challenges for the Advent of Code.
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.
We solve the day 1 challenges for the Advent of Code.
We look into setting up an RBD pool and running an SQLite database directly against the cluster. We check what languages have built-in support and how to work with the tools available.
I had a problem with some webservices connections timing out in our environments and I thought that the timeouts where a bit long. Most of our webservices run inline with a user request and some of the default timeouts didn’t make the cut. com.ibm.websphere.webservices.http.connectionTimeout=300 com.ibm.websphere.webservices.http.maxConnection=50 com.ibm.websphere.webservices.http.SocketTimeout=300 The settings above is the onces set in Websphere…