meta-protocol-proxy
meta-protocol-proxy copied to clipboard
A data plane framework that supports any layer-7 protocols.
Currently, there's no auto testing for new PRs. We need to set up an appropriate github workflow with actions to run auto testing for PRs to avoid breaking existing functionalities....
赵老师,我这边自己按照awesome的那个例子完成了编码器的工作,我们的编解码比较简单,我仅用编解码后部获取一个路由信息后,防到medata里去就好了。 但是在压测的时候,就会出现Segment fault。 并且有两种情况 使用make release编译的,在envoy debug模式下能够接收一些请求才down掉。 而正常启动模式下貌似出现了解码器失效的情况,解析的头部全部不对了。非常奇怪。 寻求您的帮助,您是否做过相关的压力测试
i write a mysql codec admin: access_log_path: ./envoy_debug.log address: socket_address: address: 127.0.0.1 port_value: 8080 static_resources: listeners: name: listener_meta_protocol address: socket_address: address: 0.0.0.0 port_value: 3306 filter_chains: - filters: - name: aeraki.meta_protocol_proxy...
can we add a access_log for meta_protocol_proxy?it likes http's access log,it will record every request.
hello i want to write a mysql codec use meta-protocol-proxy MysqlCodec() { ENVOY_LOG(debug, "mysql: begin to construct "); transport_ = MysqlProxy::NamedTransportConfigFactory::getFactory(MysqlProxy::TransportType::Auto) .createTransport(); but MysqlProxy::NamedTransportConfigFactory::getFactory(MysqlProxy::TransportType::Auto) .createTransport(); this line get exection Thread...