dubbo-proxy
dubbo-proxy copied to clipboard
Apache dubbo
support nacos?
@qixiaobo 大佬这个东西还维护嘛?
dubbo 2.7.3 存在性能瓶颈。 org.apache.dubbo.config.ReferenceConfig#get 方法中,会调用org.apache.dubbo.config.ReferenceConfig#checkAndUpdateSubConfigs 方法,经过测试显示此方法每次调用时会花费较多的时间,不应当在每次调用get方法的时候都去调用此方法,而是应当在init方法中调用一次即可(在对象对创建时调用)。 升级dubbo版本到2.7.7可以解决此问题。
dubbo-proxy should consider about how to be a gateway~ If only json is accepted , we should pass through the json string from user. It's not user-friendly.
Compatible with Dubbo 2.7.3 get metadata
如标题,需要加强的安全机制包括两方面: 1、dubbo-proxy对内部服务的访问应当加以控制(安全策略配置),避免所有内部服务全通 2、增加对接口参数校验、IP黑白名单等初级到高级的安全策略
https://github.com/apache/dubbo/blob/master/dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java 对比2.7.4中release代码发现当前master(2.7.5-snapshot)存在bug, ` ConfigManager configManager = ConfigManager.getInstance(); ConfigCenterConfig cc = (ConfigCenterConfig)configManager.getConfigCenter().orElse(new ConfigCenterConfig()); if (rc.getParameters() != null) { Map configParams = cc.getParameters() == null ? new HashMap() : cc.getParameters(); ((Map)configParams).putAll(rc.getParameters()); cc.setParameters((Map)configParams);...