Robert Lu
Robert Lu
https://youtrack.jetbrains.com/issue/KT-15454
实际上,目前有一个还在维护中的packagist镜像 。 但是这种镜像都有一个很严重的问题。 比如[apache/log4php](https://packagist.phpcomposer.com/p/apache/log4php%244773988716300ebe8a642fc87a1c892a197a5e506c19cfb170f23ecd5b78346c.json) 2.3.0版本的信息如下: ```json { "name": "apache/log4php", "description": "A versatile logging framework for PHP", "keywords": [ "log", "logging", "php" ], "homepage": "http://logging.apache.org/log4php/", "version": "2.3.0", "version_normalized": "2.3.0.0", "license": [...
@felixfbecker looks like one of CI(s) is broken...
@felixfbecker Yes, I tested this.
mvn命令直接在`src/frontend`目录下单独执行可能无法成功构建。 先在项目根目录,比如`alibabacloud-microservice-demo/`目录下执行`mvn clean compile package`,就能得到`.jar`文件。 然后在`src/frontend`执行`build.sh`就可以成功构建镜像。
同意这一点: > 创建一个新的主仓库(命名空间)例如 swoole-lib,主要负责归纳公共包 lib放在swoole-src不符合用户场景。 * 一般在机器部署时,编译扩展,这个过程不需要lib * lib一般都是composer包,把扩展的.c文件放到composer包里面,并没有用。
Kiali has [topology map](https://kiali.io/documentation/latest/features/#_graph), Could we suggest Kiali support Dapr?
Well, Kiali gets its data from metrics, specifically, [from Prometheus](https://github.com/kiali/kiali/blob/e603fa1c6262217573f046cd4cd4d48e3f73f07e/graph/telemetry/istio/istio.go#L92-L125). The Prometheus query from Kiali is like `sum(rate(istio_requests_total{reporter="source",source_workload_namespace="default"} [60s])) by (source_cluster,source_workload_namespace,source_workload,source_canonical_service,source_canonical_revision,destination_cluster,destination_service_namespace,destination_service,destination_service_name,destination_workload_namespace,destination_workload,destination_canonical_service,destination_canonical_revision,request_protocol,response_code,grpc_response_status,response_flags) > 0`. But the metric from Dapr is not...
Kiali [uses](https://github.com/kiali/kiali/blob/v1.39.0/graph/telemetry/istio/istio.go#L395-L396) `cluster, serviceNs, service, workloadNs, workload, app, version` to define a node in graph. I think we should add `{source,dest}_{cluster,serviceNs,service,workloadNs,workload,app,version}`(or equivalent label) to metric`dapr_http_server_request_count`. After that, Kiali can query...
The `CNI` is an interface. So in CNI, we could just define an interface and some methods, and plugin/runtime interaction. The CNI server could be implemented by others(containerd I think)....