joni-jones
joni-jones
The OW uses old versions of the Kamon bundle (https://mvnrepository.com/artifact/io.kamon) that causes errors for Standalone mode in the local environment. ## Environment details: * local deployment, MacOS, standalone mode *...
# Summary The project that I'm working on uses Akka 2.6.20 and Scala 2.13.9 after monitoring JVM metrics I noticed that g1-old heap size is constantly growing with the constant...
# Summary I'm working on upgrading OpenWhisk to Akka 2.6.20 and Scala 2.13 and experienced the issue with OpenWhisk invokers consuming all available g1-old heap size after running for a...
The origin of the issue is iteration through the config keys [here](https://github.com/apache/openwhisk/blob/master/common/scala/src/main/scala/org/apache/openwhisk/common/Config.scala#L145) and [here](https://github.com/apache/openwhisk/blob/master/common/scala/src/main/scala/org/apache/openwhisk/common/Config.scala#L156) and at the same time properties [change](https://github.com/apache/openwhisk/blob/master/common/scala/src/main/scala/org/apache/openwhisk/common/Config.scala#L150) in the loop which can lead to skipping some...
I'm trying to create a heat map using points sourced from a database. This is my code: ``` java JsArray points = JsArray.createArray().cast(); for(int i = 0; i < count;...