Weiqing Yang

Results 61 comments of Weiqing Yang

For [the controller-runtime in go](https://github.com/kubernetes-sigs/controller-runtime/blob/1e4d87c9f9e15e4a58bb81909dd787f30ede7693/pkg/internal/controller/metrics/metrics.go#L45), seems they have the default exported metrics: https://github.com/kubernetes-sigs/kubebuilder/blob/c0a0bb6dc05e04332cb7b460bef5f155b53770cc/docs/book/src/reference/metrics-reference.md I wonder if the java client has the default exported metrics as well?

Thanks for the reply @brendandburns ! The metrics described https://github.com/kubernetes-sigs/kubebuilder/blob/c0a0bb6dc05e04332cb7b460bef5f155b53770cc/docs/book/src/reference/metrics-reference.md are useful. I wonder if they can be added to the Java client?

Hi @brendandburns , In https://github.com/kubernetes-client/java/blob/master/util/src/main/java/io/kubernetes/client/monitoring/PrometheusInterceptor.java, seems the following metrics are defined: ``` k8s_java_requests_total k8s_java_response_code_total k8s_java_resource_request_latency_seconds k8s_java__non_resource_request_latency_seconds ``` Besides the message put in the function `help()`, is there a wiki/doc about...

Hey @brendandburns and @yue9944882, Could you please help take a look at the questions above when you get a chance? Really appreciate. Thanks, Weiqing

Thanks for the reply @yue9944882 . You've answered my question. I'll update here if I have more questions.

@xinyuiscool Thanks for the reviewing. I'll update the PR to fix the comments soon.

Hi @mynameborat Yes, we are actively working on it, targeting Samza 1.5.

@rohitverma02 sorry for the late reply. Will update here about the release plan later. Thanks.

Hi @AtulKumVerma, Sorry for the late reply. I somehow missed your question. _Q: `=> I want to get the timestamp of each row from hbase using SHC. so what i...

Currently SHC doesnot support this case. It can read out the value of each column only. You may need to customize SHC [here](https://github.com/hortonworks-spark/shc/blob/master/core/src/main/scala/org/apache/spark/sql/execution/datasources/hbase/HBaseTableScan.scala#L291) and [here](https://github.com/hortonworks-spark/shc/blob/master/core/src/main/scala/org/apache/spark/sql/execution/datasources/hbase/HBaseTableScan.scala#L318) to support this.