servicecomb-service-center icon indicating copy to clipboard operation
servicecomb-service-center copied to clipboard

A standalone service center to allow services to register their instance information and to discover providers of a given service

Results 156 servicecomb-service-center issues
Sort by recently updated
recently updated
newest added

外面选择时端口是20879,实际测试时又是2087 ( Error while sending request due to : Post http://10.63.185.117:2087/appServiceImpl2/queryApplicationFromInner: dial tcp 10.63.185.117:**2087**: connectex: No connection could be made because the target machine actively refused it.

help wanted

Issue raised by @lexkong my problem is, we have a api gateway, and now we want to find service from service center, which is from service center our api gateway...

help wanted

当前的订阅能力,只能是按服务与服务之间订阅的关系。 1、即一个订阅者的Group中的所有ws都会推送服务上下线事件。 2、当前我们需要做不同的实例订阅服务或特定的实例发生上线、下线、更新事件时进行推送,来减少整个环境上的消息量(比如我是主备场景等)。 当前SC的订阅推送模型无法支持。 1、SC提供插件定置能力,可支持第三方自定义订阅发布模型。然后我们再私有定制 2、可者直接支持按实例级订阅,我们直接使用。

help wanted

服务重新注册时,只要查到实例就不会再更新ttl导致,长时间出现实例实例下线;需要SC收到注册并返回成功前重置ttl func (s *InstanceService) Register(ctx context.Context, in *pb.RegisterInstanceRequest) (*pb.RegisterInstanceResponse, error) { remoteIP := util.GetIPFromContext(ctx) ........ instance := in.GetInstance() //允许自定义id //如果没填写 并且endpoints沒重復,則产生新的全局instance id oldInstanceId, checkErr := serviceUtil.InstanceExist(ctx, in.Instance) if checkErr !=...

bug

1000实例 2SC环境,实例心跳时间为30秒,SC 2天则日志打满,无法定位问题

help wanted

Process one job per 0.5 second, can we configure the interval to support us process more jobs? The 500 * time.Millisecond should to be a config( n * time.Millisecond, n...

help wanted

File: https://github.com/apache/servicecomb-service-center/blob/master/server/core/swagger/v4.yaml API: /v4/{project}/registry/microservices/{serviceId}/instances (getInstances) problems: 1. X-ConsumerId reqired should be false 2. "rev” query param is not mentioned.

bug
document

发布在k8s集群时,可有考虑etcd数据持久化。

document

apt.GenerateEndpointsIndexKey(domainProject, instance) 去掉后导致之前现网的存在已运行环境中,存在对endpoint顺序有依赖的功能出问题。 如果没有特殊要求,请在服务Register的时候给Endpoints排序。

help wanted

Hi guys, Our system has 20+ services, and each service has 2k instances at most. All the instances are grouped by some labels(in **Properties**). We are now querying all the...

Needs Discussion