Nicola Ferraro
Nicola Ferraro
Hi @tejal29, the Dockerfile is simple: ``` FROM fabric8/s2i-java:3.0-java8 ADD . /deployments ``` I've extracted a verbose log. The problem is that after the snapshot there are no more logs,...
Thanks @astefanutti, yes snapshotting does not seem to be the problem, it's only referenced in last line printed in the logs. Kaniko takes a lot to push the image to...
Just checking it on a test cluster. I see values are correctly injected into the central config. Using the following snippet: ```yaml # ... cloudStorage: enabled: true accessKey: "anaccesskey" secretKeyRef:...
@jcsp the logs highlight a strange behavior of the configuration system in redpanda: ``` 2022-08-02T09:32:34.479154062Z stderr F 2022-08-02T09:32:34.479Z INFO controllers.redpanda.Cluster Applying patch to the cluster configuration {"redpandacluster": "kuttl-test-pretty-robin/centralized-configuration", "patch": "+append_chunk_size"}...
The information about which config is every node using comes from `/v1/cluster_config/status`, sent explicitly to the leader.
I remember we did some changes in the v22.1 branch to direct calls to the leader since it was supposed to apply the configuration before returning. The current operator code...
It should, but not tested on it. It would be awesome If you had time to check and report any issue.
It seems a project configuration error, as once you import the lib, it should be in the classpath. Maybe your IDE is causing the problem. Try to compile and launch...
This seems to happen when the application is running. Can you provide details on the launch environment and the scripts/arguments you used?
Hi, filters are not supported. Just scan parameters (i.e. filters on the row id) can be set in the query. You can perform filtering at spark level (using `filter`), obviously,...