RE: JAVA_MAX_MEM_RATIO greater than 60%

2018-06-15 Thread Karl Nicholas
To: Karl Nicholas ; users@lists.openshift.redhat.com Subject: Re: JAVA_MAX_MEM_RATIO greater than 60% Can you run the app with enough memory and check process memory usage from `oc rsh`? Perhaps it will give more insight. The container is not running a separate OS. It is just the process you

JAVA_MAX_MEM_RATIO greater than 60%

2018-06-12 Thread Karl Nicholas
I’m messing around with JAVA_MAX_MEM_RATIO to see about saving on memory. With every setting I also adjust the container memory so that I get the following JVM parameters. exec java -javaagent:/opt/jolokia/jolokia.jar=config=/opt/jolokia/etc/jolokia.properties -Xms512m -Xmx512m

RE: Posting to REST on same cluster?

2018-05-25 Thread Karl Nicholas
; Sent: Thursday, May 24, 2018 10:36 PM To: Karl Nicholas <karl.nicho...@outlook.com> Cc: users@lists.openshift.redhat.com Subject: Re: Posting to REST on same cluster? Hi Karl, OpenShift does not differentiate between post and get. Also 405 is a server error: "the request method is kn

Posting to REST on same cluster?

2018-05-24 Thread Karl Nicholas
In OPENSHIFT I have one application in a cluster attempting to access another REST application but I'm getting a HTTP 405 Method Not Allowed for a POST request. The GET requests seem to be okay, so I'm thinking it's a permission problem. This should be pretty typical micro-services