Apache HttpClient库的日志级别设置原理

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: Apache HttpClient库的日志级别设置原理

在你的业务类的构造函数里调用下面这个enable方法,以启用日志image.png在SimpleLog的实现里,下列代码会从SystemProperty里读取用户用代码进行的设置:


[外链图片转存失败(img-GyXZAQlu-1566787773383)(https://user-images.githubusercontent.com/5669954/58316668-a9050600-7e46-11e9-89e6-63c8c26285ce.png)]


debug级别的日志输出很全:


2019/05/24 16:58:16:397 CST [DEBUG] RequestAddCookies - CookieSpec selected: default

2019/05/24 16:58:16:417 CST [DEBUG] RequestAuthCache - Auth cache not set in the context

2019/05/24 16:58:16:614 CST [DEBUG] PoolingHttpClientConnectionManager - Connection request: [route: {s}->https://hybris.com:443][total kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 20]

2019/05/24 16:58:21:265 CST [DEBUG] PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {s}->https://hybris.com:443][total kept alive: 0; route allocated: 1 of 2; total allocated: 1 of 20]

2019/05/24 16:58:21:271 CST [DEBUG] MainClientExec - Opening connection {s}->https://hybris.com:443

2019/05/24 16:58:21:271 CST [DEBUG] DefaultHttpClientConnectionOperator - Connecting to hybris.com/69.145.197.197:443

2019/05/24 16:58:21:271 CST [DEBUG] SSLConnectionSocketFactory - Connecting socket to hybris.com/69.145.197.197:443 with timeout 0

2019/05/24 16:58:21:521 CST [DEBUG] SSLConnectionSocketFactory - Enabled protocols: [TLSv1, TLSv1.1, TLSv1.2]

2019/05/24 16:58:21:521 CST [DEBUG] SSLConnectionSocketFactory - Enabled cipher suites:[TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_DSS_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA, TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,TLS_EMPTY_RENEGOTIATION_INFO_SCSV]

2019/05/24 16:58:21:521 CST [DEBUG] SSLConnectionSocketFactory - Starting handshake

2019/05/24 16:58:21:849 CST [DEBUG] SSLConnectionSocketFactory - Secure session established

2019/05/24 16:58:21:849 CST [DEBUG] SSLConnectionSocketFactory - negotiated protocol: TLSv1.2

2019/05/24 16:58:21:849 CST [DEBUG] SSLConnectionSocketFactory - negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256

2019/05/24 16:58:21:849 CST [DEBUG] SSLConnectionSocketFactory - peer principal: CN=gdm-acdo.apjdemo.hybris.com

2019/05/24 16:58:21:849 CST [DEBUG] SSLConnectionSocketFactory - peer alternative names: []

2019/05/24 16:58:21:849 CST [DEBUG] SSLConnectionSocketFactory - issuer principal: CN=Let’s Encrypt Authority X3, O=Let’s Encrypt, C=US

2019/05/24 16:58:21:849 CST [DEBUG] DefaultHttpClientConnectionOperator - Connection established 10.130.197.181:60875<->169.145.197.197:443

2019/05/24 16:58:21:849 CST [DEBUG] MainClientExec - Executing request GET /sap/opu/odata/sap/CUAN_CONTACT_SRV HTTP/1.1

2019/05/24 16:58:21:849 CST [DEBUG] MainClientExec - Proxy auth state: UNCHALLENGED

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> GET /sap/opu/odata/sap/CUAN_CONTACT_SRV HTTP/1.1

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> Authorization: basic bWt0X2R

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> Cache-Control: no-cache

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> content-type: application/json

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> Accept: application/json

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> x-csrf-token: fetch

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> Host: gdm-hybris.com

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> Connection: Keep-Alive

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.1 (Java/1.8.0_60)

2019/05/24 16:58:21:849 CST [DEBUG] headers - http-outgoing-0 >> Accept-Encoding: gzip,deflate

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “GET /sap/opu/odata/sap/CUAN_CONTACT_SRV HTTP/1.1[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “Authorization: basic bWt0X2[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “Cache-Control: no-cache[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “content-type: application/json[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “Accept: application/json[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “x-csrf-token: fetch[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “Host: gdm-acdo.apjdemo.hybris.com[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “Connection: Keep-Alive[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “User-Agent: Apache-HttpClient/4.5.1 (Java/1.8.0_60)[\r][\n]”2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “Accept-Encoding: gzip,deflate[\r][\n]”

2019/05/24 16:58:21:849 CST [DEBUG] wire - http-outgoing-0 >> “[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “HTTP/1.1 307 Temporary Redirect[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “Server: nginx/1.14.2[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “Date: Fri, 24 May 2019 08:58:22 GMT[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “Content-Length: 0[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “Connection: keep-alive[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “set-cookie: sap-usercontext=sap-client=100; path=/[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “set-cookie: SAP_SEhIHE%3d; path=/; secure; HttpOnly[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “x-csrf-token: kVwN39IxT6wSsOnjgeSGww==[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “location: https://hybris.com:443/sap/opu/odata/sap/CUAN_CONTACT_SRV/[\r][\n]

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “sap-processing-info: ODataBEP=,crp=,st=,MedCacheHub=,codeployed=X,softstate=[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “sap-server: true[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “sap-perf-fesrec: 42584.000000[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << HTTP/1.1 307 Temporary Redirect

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << Server: nginx/1.14.2

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << Date: Fri, 24 May 2019 08:58:22 GMT

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << Content-Length: 0

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << Connection: keep-alive

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << set-cookie: sap-usercontext=sap-client=100; path=/

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << set-cookie: SAP_SESSIONID_E4T_100=a-dtZMlUCPrNMQYUQYcL8RULy6l-AhHpqRECAAohIHE%3d; path=/; secure; HttpOnly

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << x-csrf-token: kVwSGww==

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << location: https://hybris.com:443/sap/opu/odata/sap/CUAN_CONTACT_SRV/

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << sap-processing-info: ODataBEP=,crp=,st=,MedCacheHub=,codeployed=X,softstate=

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << sap-server: true

2019/05/24 16:58:22:061 CST [DEBUG] headers - http-outgoing-0 << sap-perf-fesrec: 42584.000000

2019/05/24 16:58:22:061 CST [DEBUG] MainClientExec - Connection can be kept alive indefinitely2019/05/24 16:58:22:061 CST [DEBUG] PoolingHttpClientConnectionManager - Connection [id: 0][route: {s}->https://hybris.com:443] can be kept alive indefinitely

2019/05/24 16:58:22:061 CST [DEBUG] PoolingHttpClientConnectionManager - Connection released: [id: 0][route: {s}->https://hybris.com:443][total kept alive: 1; route allocated: 1 of 2; total allocated: 1 of 20]

2019/05/24 16:58:22:061 CST [DEBUG] ResponseProcessCookies - Cookie accepted [sap-usercontext=“sap-client=100”, version:0, domain:hybris.com, path:/, expiry:null]

2019/05/24 16:58:22:061 CST [DEBUG] ResponseProcessCookies - Cookie accepted [SAP_SESSIONID_E4T_100=“a-dtZMlUCPrNMQYUQYcL8RULy6l-AhHpqRECAAohIHE%3d”, version:0, domain:gdm-acdo.apjdemo.hybris.com, path:/, expiry:null]

2019/05/24 16:58:22:925 CST [DEBUG] DefaultRedirectStrategy - Redirect requested to location ‘https://hybris.com:443/sap/opu/odata/sap/CUAN_CONTACT_SRV/

2019/05/24 16:58:24:219 CST [DEBUG] RedirectExec - Redirecting to ‘https://hybris.com:443/sap/opu/odata/sap/CUAN_CONTACT_SRV/’ via {s}->https://gdm-acdo.apjdemo.hybris.com:443

2019/05/24 16:58:24:230 CST [DEBUG] RequestAddCookies - CookieSpec selected: default

2019/05/24 16:58:24:230 CST [DEBUG] RequestAddCookies - Cookie [version: 0][name: SAP_SESSIONID_E4T_100][value: a-dtZMlUCPrNMQYUQYcL8RULy6l-AhHpqRECAAohIHE%3d][domain: gdm-acdo.apjdemo.hybris.com][path: /][expiry: null] match [(secure)hybris.com:443/sap/opu/odata/sap/CUAN_CONTACT_SRV/]

2019/05/24 16:58:24:230 CST [DEBUG] RequestAddCookies - Cookie [version: 0][name: sap-usercontext][value: sap-client=100][domain: gdm-acdo.apjdemo.hybris.com][path: /][expiry: null] match [(secure)hybris.com:443/sap/opu/odata/sap/CUAN_CONTACT_SRV/]

2019/05/24 16:58:24:231 CST [DEBUG] RequestAuthCache - Auth cache not set in the context

2019/05/24 16:58:24:995 CST [DEBUG] PoolingHttpClientConnectionManager - Connection request: [route: {s}->https://hybris.com:443][total kept alive: 1; route allocated: 1 of 2; total allocated: 1 of 20]

2019/05/24 16:58:24:997 CST [DEBUG] wire - http-outgoing-0 << “[read] I/O error: Read timed out”

2019/05/24 16:58:24:997 CST [DEBUG] PoolingHttpClientConnectionManager - Connection leased: [id: 0][route: {s}->https://hybris.com:443][total kept alive: 0; route allocated: 1 of 2; total allocated: 1 of 20]

2019/05/24 16:58:24:998 CST [DEBUG] MainClientExec - Executing request GET /sap/opu/odata/sap/CUAN_CONTACT_SRV/ HTTP/1.1

2019/05/24 16:58:24:998 CST [DEBUG] MainClientExec - Proxy auth state: UNCHALLENGED

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> GET /sap/opu/odata/sap/CUAN_CONTACT_SRV/ HTTP/1.1

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Authorization: basic bWt0X2Rl5

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Cache-Control: no-cache

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> content-type: application/json

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Accept: application/json

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> x-csrf-token: fetch2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Host: gdm-acdo.apjdemo.hybris.com:443

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Connection: Keep-Alive

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.1 (Java/1.8.0_60)

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Cookie: SAP_SESSIONID_E4T_100=a-dtZMlUYcL8RULy6l-AhHpqRECAAohIHE%3d; sap-usercontext=sap-client=100

2019/05/24 16:58:24:998 CST [DEBUG] headers - http-outgoing-0 >> Accept-Encoding: gzip,deflate

2019/05/24 16:58:24:998 CST [DEBUG] wire - http-outgoing-0 >> “GET /sap/opu/odata/sap/CUAN_CONTACT_SRV/ HTTP/1.1[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Authorization: basic bWt0X2RldjpNWVdlbGNvbWU5[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Cache-Control: no-cache[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “content-type: application/json[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Accept: application/json[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “x-csrf-token: fetch[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Host: hybris.com:443[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Connection: Keep-Alive[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “User-Agent: Apache-HttpClient/4.5.1 (Java/1.8.0_60)[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Cookie: SAP_SESSIONID_E4T_100=a-dtZMlUCPrhIHE%3d; sap-usercontext=sap-client=100[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “Accept-Encoding: gzip,deflate[\r][\n]”

2019/05/24 16:58:24:999 CST [DEBUG] wire - http-outgoing-0 >> “[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “HTTP/1.1 500 Internal Server Error[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “Server: nginx/1.14.2[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “Date: Fri, 24 May 2019 08:58:25 GMT[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “Content-Type: text/html[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “Content-Length: 193[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “Connection: close[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:25:154 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] wire - http-outgoing-0 << “


500 Internal Server Error[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] wire - http-outgoing-0 << “

nginx/1.14.2

[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] wire - http-outgoing-0 << “[\r][\n]”

2019/05/24 16:58:25:155 CST [DEBUG] headers - http-outgoing-0 << HTTP/1.1 500 Internal Server Error

2019/05/24 16:58:25:155 CST [DEBUG] headers - http-outgoing-0 << Server: nginx/1.14.2

2019/05/24 16:58:25:155 CST [DEBUG] headers - http-outgoing-0 << Date: Fri, 24 May 2019 08:58:25 GMT

2019/05/24 16:58:25:155 CST [DEBUG] headers - http-outgoing-0 << Content-Type: text/html

2019/05/24 16:58:25:155 CST [DEBUG] headers - http-outgoing-0 << Content-Length: 193

2019/05/24 16:58:25:155 CST [DEBUG] headers - http-outgoing-0 << Connection: close

Status code: 500

reason: Internal Server Error


相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
相关文章
|
2月前
|
存储 消息中间件 Java
Apache Flink 实践问题之原生TM UI日志问题如何解决
Apache Flink 实践问题之原生TM UI日志问题如何解决
36 1
|
2月前
|
存储 消息中间件 人工智能
AI大模型独角兽 MiniMax 基于阿里云数据库 SelectDB 版内核 Apache Doris 升级日志系统,PB 数据秒级查询响应
早期 MiniMax 基于 Grafana Loki 构建了日志系统,在资源消耗、写入性能及系统稳定性上都面临巨大的挑战。为此 MiniMax 开始寻找全新的日志系统方案,并基于阿里云数据库 SelectDB 版内核 Apache Doris 升级了日志系统,新系统已接入 MiniMax 内部所有业务线日志数据,数据规模为 PB 级, 整体可用性达到 99.9% 以上,10 亿级日志数据的检索速度可实现秒级响应。
AI大模型独角兽 MiniMax 基于阿里云数据库 SelectDB 版内核 Apache Doris 升级日志系统,PB 数据秒级查询响应
|
2月前
|
前端开发 C语言 开发者
领导被我的花式console.log吸引了!直接写入公司公共库!
【8月更文挑战第23天】领导被我的花式console.log吸引了!直接写入公司公共库!
37 2
领导被我的花式console.log吸引了!直接写入公司公共库!
|
6天前
|
存储 运维 监控
超级好用的C++实用库之日志类
超级好用的C++实用库之日志类
12 0
|
2月前
|
Ubuntu Linux 测试技术
在Linux中,已知 apache 服务的访问日志按天记录在服务器本地目录/app/logs 下,由于磁盘空间紧张现在要求只能保留最近7天的访问日志,请问如何解决?
在Linux中,已知 apache 服务的访问日志按天记录在服务器本地目录/app/logs 下,由于磁盘空间紧张现在要求只能保留最近7天的访问日志,请问如何解决?
|
2月前
|
消息中间件 Java Kafka
【Azure 事件中心】开启 Apache Flink 制造者 Producer 示例代码中的日志输出 (连接 Azure Event Hub Kafka 终结点)
【Azure 事件中心】开启 Apache Flink 制造者 Producer 示例代码中的日志输出 (连接 Azure Event Hub Kafka 终结点)
|
24天前
|
SQL 消息中间件 关系型数据库
Apache Doris Flink Connector 24.0.0 版本正式发布
该版本新增了对 Flink 1.20 的支持,并支持通过 Arrow Flight SQL 高速读取 Doris 中数据。
|
2月前
|
消息中间件 监控 数据挖掘
基于RabbitMQ与Apache Flink构建实时分析系统
【8月更文第28天】本文将介绍如何利用RabbitMQ作为数据源,结合Apache Flink进行实时数据分析。我们将构建一个简单的实时分析系统,该系统能够接收来自不同来源的数据,对数据进行实时处理,并将结果输出到另一个队列或存储系统中。
108 2
|
2月前
|
消息中间件 分布式计算 Hadoop
Apache Flink 实践问题之Flume与Hadoop之间的物理墙问题如何解决
Apache Flink 实践问题之Flume与Hadoop之间的物理墙问题如何解决
37 3
|
2月前
|
消息中间件 运维 Kafka
Apache Flink 实践问题之达到网卡的最大速度如何解决
Apache Flink 实践问题之达到网卡的最大速度如何解决
36 2

推荐镜像

更多
下一篇
无影云桌面