
, wedi'i gynllunio i gasglu, trawsnewid ac anfon data log, metrigau a digwyddiadau.
β
Wedi'i ysgrifennu yn yr iaith Rust, fe'i nodweddir gan berfformiad uchel a defnydd RAM isel o'i gymharu Γ’'i analogau. Yn ogystal, rhoddir llawer o sylw i swyddogaethau sy'n ymwneud Γ’ chywirdeb, yn arbennig, y gallu i arbed digwyddiadau nas anfonwyd i glustog ar ddisg a chylchdroi ffeiliau.
Yn bensaernΓ―ol, mae Vector yn llwybrydd digwyddiad sy'n derbyn negeseuon gan un neu fwy ffynonellau, yn ddewisol yn gwneud cais dros y negeseuon hyn trawsnewidiadau, a'u hanfon i un neu fwy draeniau.
Mae Vector yn disodli filebeat a logstash, gall weithredu yn y ddwy rΓ΄l (derbyn ac anfon logiau), mwy o fanylion amdanynt .
Os yn Logstash mae'r gadwyn wedi'i hadeiladu fel mewnbwn β hidlydd β allbwn yna yn Vector ydyw β β
Ceir enghreifftiau yn y ddogfennaeth.
Mae'r cyfarwyddyd hwn yn gyfarwyddyd diwygiedig gan . Mae'r cyfarwyddiadau gwreiddiol yn cynnwys prosesu geoip. Wrth brofi geoip o rwydwaith mewnol, rhoddodd fector wall.
Aug 05 06:25:31.889 DEBUG transform{name=nginx_parse_rename_fields type=rename_fields}: vector::transforms::rename_fields: Field did not exist field=Β«geoip.country_nameΒ» rate_limit_secs=30Os oes angen i unrhyw un brosesu geoip, yna cyfeiriwch at y cyfarwyddiadau gwreiddiol gan .
Byddwn yn ffurfweddu'r cyfuniad o Nginx (Logiau mynediad) β Vector (Cleient | Filebeat) β Vector (Gweinydd | Logstash) β ar wahΓ’n yn Clickhouse ac ar wahΓ’n yn Elasticsearch. Byddwn yn gosod 4 gweinydd. Er y gallwch ei osgoi gyda 3 gweinydd.

Rhywbeth fel hyn ywβr cynllun.
Analluoga Selinux ar eich holl weinyddion
sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
rebootRydym yn gosod efelychydd gweinydd HTTP + cyfleustodau ar bob gweinydd
Fel efelychydd gweinydd HTTP byddwn yn ei ddefnyddio o
Nid oes gan Nodejs-stub-server rpm. creu rpm ar ei gyfer. Bydd rpm yn cael ei lunio gan ddefnyddio
Ychwanegwch y storfa antonpatsev/nodejs-stub-server
yum -y install yum-plugin-copr epel-release
yes | yum copr enable antonpatsev/nodejs-stub-serverGosodwch nodejs-stub-server, meincnod Apache ac amlblecsydd terfynell sgrin ar bob gweinydd
yum -y install stub_http_server screen mc httpd-tools screenCywirais yr amser ymateb stub_http_server yn y ffeil /var/lib/stub_http_server/stub_http_server.js fel bod mwy o logiau.
var max_sleep = 10;Gadewch i ni lansio stub_http_server.
systemctl start stub_http_server
systemctl enable stub_http_serverar weinydd 3
Mae ClickHouse yn defnyddio set gyfarwyddiadau SSE 4.2, felly oni nodir yn wahanol, daw cefnogaeth ar ei gyfer yn y prosesydd a ddefnyddir yn ofyniad system ychwanegol. Dyma'r gorchymyn i wirio a yw'r prosesydd cyfredol yn cefnogi SSE 4.2:
grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not supported"Yn gyntaf mae angen i chi gysylltu'r ystorfa swyddogol:
sudo yum install -y yum-utils
sudo rpm --import https://repo.clickhouse.tech/CLICKHOUSE-KEY.GPG
sudo yum-config-manager --add-repo https://repo.clickhouse.tech/rpm/stable/x86_64I osod pecynnau mae angen i chi redeg y gorchmynion canlynol:
sudo yum install -y clickhouse-server clickhouse-clientCaniatΓ‘u i clickhouse-server wrando ar y cerdyn rhwydwaith yn y ffeil /etc/clickhouse-server/config.xml
<listen_host>0.0.0.0</listen_host>Newid lefel y logio o olrhain i ddadfygio
debug
Gosodiadau cywasgu safonol:
min_compress_block_size 65536
max_compress_block_size 1048576Er mwyn actifadu cywasgiad Zstd, fe'ch cynghorwyd i beidio Γ’ chyffwrdd Γ’'r ffurfwedd, ond yn hytrach i ddefnyddio DDL.

Ni allwn ddod o hyd i sut i ddefnyddio cywasgu zstd trwy DDL yn Google. Felly gadewais hi fel y mae.
Cydweithwyr sy'n defnyddio cywasgu zstd yn Clickhouse, rhannwch y cyfarwyddiadau.
I gychwyn y gweinydd fel daemon, rhedwch:
service clickhouse-server startNawr, gadewch i ni symud ymlaen i sefydlu Clickhouse
Ewch i Clickhouse
clickhouse-client -h 172.26.10.109 -m172.26.10.109 - IP y gweinydd lle mae Clickhouse wedi'i osod.
Gadewch i ni greu cronfa ddata fector
CREATE DATABASE vector;Gadewch i ni wirio bod y gronfa ddata yn bodoli.
show databases;Creu tabl vector.logs.
/* ΠΡΠΎ ΡΠ°Π±Π»ΠΈΡΠ° Π³Π΄Π΅ Ρ
ΡΠ°Π½ΡΡΡΡ Π»ΠΎΠ³ΠΈ ΠΊΠ°ΠΊ Π΅ΡΡΡ */
CREATE TABLE vector.logs
(
`node_name` String,
`timestamp` DateTime,
`server_name` String,
`user_id` String,
`request_full` String,
`request_user_agent` String,
`request_http_host` String,
`request_uri` String,
`request_scheme` String,
`request_method` String,
`request_length` UInt64,
`request_time` Float32,
`request_referrer` String,
`response_status` UInt16,
`response_body_bytes_sent` UInt64,
`response_content_type` String,
`remote_addr` IPv4,
`remote_port` UInt32,
`remote_user` String,
`upstream_addr` IPv4,
`upstream_port` UInt32,
`upstream_bytes_received` UInt64,
`upstream_bytes_sent` UInt64,
`upstream_cache_status` String,
`upstream_connect_time` Float32,
`upstream_header_time` Float32,
`upstream_response_length` UInt64,
`upstream_response_time` Float32,
`upstream_status` UInt16,
`upstream_content_type` String,
INDEX idx_http_host request_http_host TYPE set(0) GRANULARITY 1
)
ENGINE = MergeTree()
PARTITION BY toYYYYMMDD(timestamp)
ORDER BY timestamp
TTL timestamp + toIntervalMonth(1)
SETTINGS index_granularity = 8192;Rydym yn gwirio bod y tablau wedi'u creu. Gadewch i ni lansio clickhouse-client a gwneud cais.
Gadewch i ni fynd i'r gronfa ddata fector.
use vector;
Ok.
0 rows in set. Elapsed: 0.001 sec.Gadewch i ni edrych ar y byrddau.
show tables;
ββnameβββββββββββββββββ
β logs β
βββββββββββββββββββββββGosod elasticsearch ar y 4ydd gweinydd i anfon yr un data i Elasticsearch i'w gymharu Γ’ Clickhouse
Ychwanegu allwedd rpm cyhoeddus
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearchGadewch i ni greu 2 repo:
/etc/yum.repos.d/elasticsearch.repo
[elasticsearch]
name=Elasticsearch repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=0
autorefresh=1
type=rpm-md/etc/yum.repos.d/kibana.repo
[kibana-7.x]
name=Kibana repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-mdGosod elasticsearch a kibana
yum install -y kibana elasticsearchGan y bydd mewn 1 copi, mae angen i chi ychwanegu'r canlynol at y ffeil /etc/elasticsearch/elasticsearch.yml:
discovery.type: single-nodeFel y gall y fector hwnnw anfon data i elasticsearch o weinydd arall, gadewch i ni newid network.host.
network.host: 0.0.0.0I gysylltu Γ’ kibana, newidiwch y paramedr server.host yn y ffeil /etc/kibana/kibana.yml
server.host: "0.0.0.0"Hen ac yn cynnwys elasticsearch yn autostart
systemctl enable elasticsearch
systemctl start elasticsearcha kibana
systemctl enable kibana
systemctl start kibanaFfurfweddu Elasticsearch ar gyfer modd un nod 1 shard, 0 replica. Yn fwyaf tebygol, bydd gennych glwstwr o nifer fawr o weinyddion ac nid oes angen i chi wneud hyn.
Ar gyfer mynegeion yn y dyfodol, diweddarwch y templed rhagosodedig:
curl -X PUT http://localhost:9200/_template/default -H 'Content-Type: application/json' -d '{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}' Gosod yn lle Logstash ar weinydd 2
yum install -y https://packages.timber.io/vector/0.9.X/vector-x86_64.rpm mc httpd-tools screenGadewch i ni sefydlu Vector yn lle Logstash. Wrthi'n golygu'r ffeil /etc/vector/vector.toml
# /etc/vector/vector.toml
data_dir = "/var/lib/vector"
[sources.nginx_input_vector]
# General
type = "vector"
address = "0.0.0.0:9876"
shutdown_timeout_secs = 30
[transforms.nginx_parse_json]
inputs = [ "nginx_input_vector" ]
type = "json_parser"
[transforms.nginx_parse_add_defaults]
inputs = [ "nginx_parse_json" ]
type = "lua"
version = "2"
hooks.process = """
function (event, emit)
function split_first(s, delimiter)
result = {};
for match in (s..delimiter):gmatch("(.-)"..delimiter) do
table.insert(result, match);
end
return result[1];
end
function split_last(s, delimiter)
result = {};
for match in (s..delimiter):gmatch("(.-)"..delimiter) do
table.insert(result, match);
end
return result[#result];
end
event.log.upstream_addr = split_first(split_last(event.log.upstream_addr, ', '), ':')
event.log.upstream_bytes_received = split_last(event.log.upstream_bytes_received, ', ')
event.log.upstream_bytes_sent = split_last(event.log.upstream_bytes_sent, ', ')
event.log.upstream_connect_time = split_last(event.log.upstream_connect_time, ', ')
event.log.upstream_header_time = split_last(event.log.upstream_header_time, ', ')
event.log.upstream_response_length = split_last(event.log.upstream_response_length, ', ')
event.log.upstream_response_time = split_last(event.log.upstream_response_time, ', ')
event.log.upstream_status = split_last(event.log.upstream_status, ', ')
if event.log.upstream_addr == "" then
event.log.upstream_addr = "127.0.0.1"
end
if (event.log.upstream_bytes_received == "-" or event.log.upstream_bytes_received == "") then
event.log.upstream_bytes_received = "0"
end
if (event.log.upstream_bytes_sent == "-" or event.log.upstream_bytes_sent == "") then
event.log.upstream_bytes_sent = "0"
end
if event.log.upstream_cache_status == "" then
event.log.upstream_cache_status = "DISABLED"
end
if (event.log.upstream_connect_time == "-" or event.log.upstream_connect_time == "") then
event.log.upstream_connect_time = "0"
end
if (event.log.upstream_header_time == "-" or event.log.upstream_header_time == "") then
event.log.upstream_header_time = "0"
end
if (event.log.upstream_response_length == "-" or event.log.upstream_response_length == "") then
event.log.upstream_response_length = "0"
end
if (event.log.upstream_response_time == "-" or event.log.upstream_response_time == "") then
event.log.upstream_response_time = "0"
end
if (event.log.upstream_status == "-" or event.log.upstream_status == "") then
event.log.upstream_status = "0"
end
emit(event)
end
"""
[transforms.nginx_parse_remove_fields]
inputs = [ "nginx_parse_add_defaults" ]
type = "remove_fields"
fields = ["data", "file", "host", "source_type"]
[transforms.nginx_parse_coercer]
type = "coercer"
inputs = ["nginx_parse_remove_fields"]
types.request_length = "int"
types.request_time = "float"
types.response_status = "int"
types.response_body_bytes_sent = "int"
types.remote_port = "int"
types.upstream_bytes_received = "int"
types.upstream_bytes_send = "int"
types.upstream_connect_time = "float"
types.upstream_header_time = "float"
types.upstream_response_length = "int"
types.upstream_response_time = "float"
types.upstream_status = "int"
types.timestamp = "timestamp"
[sinks.nginx_output_clickhouse]
inputs = ["nginx_parse_coercer"]
type = "clickhouse"
database = "vector"
healthcheck = true
host = "http://172.26.10.109:8123" # ΠΠ΄ΡΠ΅Ρ Clickhouse
table = "logs"
encoding.timestamp_format = "unix"
buffer.type = "disk"
buffer.max_size = 104900000
buffer.when_full = "block"
request.in_flight_limit = 20
[sinks.elasticsearch]
type = "elasticsearch"
inputs = ["nginx_parse_coercer"]
compression = "none"
healthcheck = true
# 172.26.10.116 - ΡΠ΅ΡΠ²Π΅Ρ Π³Π΄Π΅ ΡΡΡΠ°Π½ΠΎΠ²Π΅Π½ elasticsearch
host = "http://172.26.10.116:9200"
index = "vector-%Y-%m-%d"Gallwch addasu'r adran transforms.nginx_parse_add_defaults.
Fel yn defnyddio'r ffurfweddau hyn ar gyfer CDN bach a gall fod sawl gwerth yn upstream_*
Er enghraifft:
"upstream_addr": "128.66.0.10:443, 128.66.0.11:443, 128.66.0.12:443"
"upstream_bytes_received": "-, -, 123"
"upstream_status": "502, 502, 200"Os nad dyma'ch sefyllfa chi, yna gellir symleiddio'r adran hon
Gadewch i ni greu gosodiadau gwasanaeth ar gyfer systemd /etc/systemd/system/vector.service
# /etc/systemd/system/vector.service
[Unit]
Description=Vector
After=network-online.target
Requires=network-online.target
[Service]
User=vector
Group=vector
ExecStart=/usr/bin/vector
ExecReload=/bin/kill -HUP $MAINPID
Restart=no
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=vector
[Install]
WantedBy=multi-user.targetAr Γ΄l creu'r tablau, gallwch chi redeg Vector
systemctl enable vector
systemctl start vectorGellir gweld logiau fector fel hyn:
journalctl -f -u vectorDylai fod cofnodion fel hyn yn y logiau
INFO vector::topology::builder: Healthcheck: Passed.
INFO vector::topology::builder: Healthcheck: Passed.Ar y cleient (gweinydd Gwe) - gweinydd 1af
Ar y gweinydd gyda nginx, mae angen i chi analluogi ipv6, gan fod y tabl logiau yn clickhouse yn defnyddio'r maes upstream_addr IPv4, gan nad wyf yn defnyddio ipv6 y tu mewn i'r rhwydwaith. Os na chaiff ipv6 ei ddiffodd, bydd gwallau:
DB::Exception: Invalid IPv4 value.: (while read the value of key upstream_addr)Efallai ddarllenwyr, ychwanegu cefnogaeth ipv6.
Creu'r ffeil /etc/sysctl.d/98-disable-ipv6.conf
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1Cymhwyso'r gosodiadau
sysctl --systemGadewch i ni osod nginx.
Ychwanegwyd ffeil ystorfa nginx /etc/yum.repos.d/nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=trueGosodwch y pecyn nginx
yum install -y nginxYn gyntaf, mae angen inni ffurfweddu'r fformat log yn Nginx yn y ffeil /etc/nginx/nginx.conf
user nginx;
# you must set worker processes based on your CPU cores, nginx does not benefit from setting more than that
worker_processes auto; #some last versions calculate it automatically
# number of file descriptors used for nginx
# the limit for the maximum FDs on the server is usually set by the OS.
# if you don't set FD's then OS settings will be used which is by default 2000
worker_rlimit_nofile 100000;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
# provides the configuration file context in which the directives that affect connection processing are specified.
events {
# determines how much clients will be served per worker
# max clients = worker_connections * worker_processes
# max clients is also limited by the number of socket connections available on the system (~64k)
worker_connections 4000;
# optimized to serve many clients with each thread, essential for linux -- for testing environment
use epoll;
# accept as many connections as possible, may flood worker connections if set too low -- for testing environment
multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
log_format vector escape=json
'{'
'"node_name":"nginx-vector",'
'"timestamp":"$time_iso8601",'
'"server_name":"$server_name",'
'"request_full": "$request",'
'"request_user_agent":"$http_user_agent",'
'"request_http_host":"$http_host",'
'"request_uri":"$request_uri",'
'"request_scheme": "$scheme",'
'"request_method":"$request_method",'
'"request_length":"$request_length",'
'"request_time": "$request_time",'
'"request_referrer":"$http_referer",'
'"response_status": "$status",'
'"response_body_bytes_sent":"$body_bytes_sent",'
'"response_content_type":"$sent_http_content_type",'
'"remote_addr": "$remote_addr",'
'"remote_port": "$remote_port",'
'"remote_user": "$remote_user",'
'"upstream_addr": "$upstream_addr",'
'"upstream_bytes_received": "$upstream_bytes_received",'
'"upstream_bytes_sent": "$upstream_bytes_sent",'
'"upstream_cache_status":"$upstream_cache_status",'
'"upstream_connect_time":"$upstream_connect_time",'
'"upstream_header_time":"$upstream_header_time",'
'"upstream_response_length":"$upstream_response_length",'
'"upstream_response_time":"$upstream_response_time",'
'"upstream_status": "$upstream_status",'
'"upstream_content_type":"$upstream_http_content_type"'
'}';
access_log /var/log/nginx/access.log main;
access_log /var/log/nginx/access.json.log vector; # ΠΠΎΠ²ΡΠΉ Π»ΠΎΠ³ Π² ΡΠΎΡΠΌΠ°ΡΠ΅ json
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}Er mwyn peidio Γ’ thorri'ch cyfluniad cyfredol, mae Nginx yn caniatΓ‘u ichi gael sawl cyfarwyddeb access_log
access_log /var/log/nginx/access.log main; # Π‘ΡΠ°Π½Π΄Π°ΡΡΠ½ΡΠΉ Π»ΠΎΠ³
access_log /var/log/nginx/access.json.log vector; # ΠΠΎΠ²ΡΠΉ Π»ΠΎΠ³ Π² ΡΠΎΡΠΌΠ°ΡΠ΅ jsonPeidiwch ag anghofio ychwanegu rheol i logrota ar gyfer logiau newydd (os nad yw'r ffeil log yn gorffen gyda .log)
Dileu default.conf o /etc/nginx/conf.d/
rm -f /etc/nginx/conf.d/default.confYchwanegu gwesteiwr rhithwir /etc/nginx/conf.d/vhost1.conf
server {
listen 80;
server_name vhost1;
location / {
proxy_pass http://172.26.10.106:8080;
}
}Ychwanegu gwesteiwr rhithwir /etc/nginx/conf.d/vhost2.conf
server {
listen 80;
server_name vhost2;
location / {
proxy_pass http://172.26.10.108:8080;
}
}Ychwanegu gwesteiwr rhithwir /etc/nginx/conf.d/vhost3.conf
server {
listen 80;
server_name vhost3;
location / {
proxy_pass http://172.26.10.109:8080;
}
}Ychwanegu gwesteiwr rhithwir /etc/nginx/conf.d/vhost4.conf
server {
listen 80;
server_name vhost4;
location / {
proxy_pass http://172.26.10.116:8080;
}
}Ychwanegu gwesteiwyr rhithwir (172.26.10.106 ip y gweinydd lle mae nginx wedi'i osod) i bob gweinydd i'r ffeil /etc/hosts:
172.26.10.106 vhost1
172.26.10.106 vhost2
172.26.10.106 vhost3
172.26.10.106 vhost4Ac os yw popeth yn barod wedyn
nginx -t
systemctl restart nginxNawr, gadewch i ni ei osod ein hunain
yum install -y https://packages.timber.io/vector/0.9.X/vector-x86_64.rpmGadewch i ni greu ffeil gosodiadau ar gyfer systemd /etc/systemd/system/vector.service
[Unit]
Description=Vector
After=network-online.target
Requires=network-online.target
[Service]
User=vector
Group=vector
ExecStart=/usr/bin/vector
ExecReload=/bin/kill -HUP $MAINPID
Restart=no
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=vector
[Install]
WantedBy=multi-user.targetA ffurfweddwch yr amnewidiad Filebeat yn y ffurfwedd /etc/vector/vector.toml. Cyfeiriad IP 172.26.10.108 yw cyfeiriad IP y gweinydd log (Vector-Server)
data_dir = "/var/lib/vector"
[sources.nginx_file]
type = "file"
include = [ "/var/log/nginx/access.json.log" ]
start_at_beginning = false
fingerprinting.strategy = "device_and_inode"
[sinks.nginx_output_vector]
type = "vector"
inputs = [ "nginx_file" ]
address = "172.26.10.108:9876"Peidiwch ag anghofio ychwanegu'r fector defnyddiwr at y grΕ΅p priodol fel y gall ddarllen ffeiliau log. Er enghraifft, nginx yn centos yn creu logiau gyda hawliau grΕ΅p adm.
usermod -a -G adm vectorGadewch i ni ddechrau'r gwasanaeth fector
systemctl enable vector
systemctl start vectorGellir gweld logiau fector fel hyn:
journalctl -f -u vectorDylai fod cofnod fel hwn yn y logiau
INFO vector::topology::builder: Healthcheck: Passed.Profi Straen
Rydym yn cynnal profion gan ddefnyddio meincnod Apache.
Gosodwyd y pecyn httpd-tools ar bob gweinydd
Rydyn ni'n dechrau profi gan ddefnyddio meincnod Apache o 4 gweinydd gwahanol ar y sgrin. Yn gyntaf, rydym yn lansio amlblecsydd terfynell sgrin, ac yna rydym yn dechrau profi gan ddefnyddio meincnod Apache. Sut i weithio gyda sgrin y gallwch chi ddod o hyd iddo yn .
O'r gweinydd 1af
while true; do ab -H "User-Agent: 1server" -c 100 -n 10 -t 10 http://vhost1/; sleep 1; doneO'r gweinydd 2af
while true; do ab -H "User-Agent: 2server" -c 100 -n 10 -t 10 http://vhost2/; sleep 1; doneO'r gweinydd 3af
while true; do ab -H "User-Agent: 3server" -c 100 -n 10 -t 10 http://vhost3/; sleep 1; doneO'r gweinydd 4af
while true; do ab -H "User-Agent: 4server" -c 100 -n 10 -t 10 http://vhost4/; sleep 1; doneGadewch i ni wirio'r data yn Clickhouse
Ewch i Clickhouse
clickhouse-client -h 172.26.10.109 -mGwneud ymholiad SQL
SELECT * FROM vector.logs;
ββnode_nameβββββ¬βββββββββββtimestampββ¬βserver_nameββ¬βuser_idββ¬βrequest_fullββββ¬βrequest_user_agentββ¬βrequest_http_hostββ¬βrequest_uriββ¬βrequest_schemeββ¬βrequest_methodββ¬βrequest_lengthββ¬βrequest_timeββ¬βrequest_referrerββ¬βresponse_statusββ¬βresponse_body_bytes_sentββ¬βresponse_content_typeββ¬βββremote_addrββ¬βremote_portββ¬βremote_userββ¬βupstream_addrββ¬βupstream_portββ¬βupstream_bytes_receivedββ¬βupstream_bytes_sentββ¬βupstream_cache_statusββ¬βupstream_connect_timeββ¬βupstream_header_timeββ¬βupstream_response_lengthββ¬βupstream_response_timeββ¬βupstream_statusββ¬βupstream_content_typeββ
β nginx-vector β 2020-08-07 04:32:42 β vhost1 β β GET / HTTP/1.0 β 1server β vhost1 β / β http β GET β 66 β 0.028 β β 404 β 27 β β 172.26.10.106 β 45886 β β 172.26.10.106 β 0 β 109 β 97 β DISABLED β 0 β 0.025 β 27 β 0.029 β 404 β β
ββββββββββββββββ΄ββββββββββββββββββββββ΄ββββββββββββββ΄ββββββββββ΄βββββββββββββββββ΄βββββββββββββββββββββ΄ββββββββββββββββββββ΄ββββββββββββββ΄βββββββββββββββββ΄βββββββββββββββββ΄βββββββββββββββββ΄βββββββββββββββ΄βββββββββββββββββββ΄ββββββββββββββββββ΄βββββββββββββββββββββββββββ΄ββββββββββββββββββββββββ΄ββββββββββββββββ΄ββββββββββββββ΄ββββββββββββββ΄ββββββββββββββββ΄ββββββββββββββββ΄ββββββββββββββββββββββββββ΄ββββββββββββββββββββββ΄ββββββββββββββββββββββββ΄ββββββββββββββββββββββββ΄βββββββββββββββββββββββ΄βββββββββββββββββββββββββββ΄βββββββββββββββββββββββββ΄ββββββββββββββββββ΄βββββββββββββββββββββββDarganfyddwch faint y byrddau yn Clickhouse
select concat(database, '.', table) as table,
formatReadableSize(sum(bytes)) as size,
sum(rows) as rows,
max(modification_time) as latest_modification,
sum(bytes) as bytes_size,
any(engine) as engine,
formatReadableSize(sum(primary_key_bytes_in_memory)) as primary_keys_size
from system.parts
where active
group by database, table
order by bytes_size desc;Dewch i ni ddarganfod faint o logiau gymerodd i fyny yn Clickhouse.

Maint y tabl logiau yw 857.19 MB.

Maint yr un data yn y mynegai yn Elasticsearch yw 4,5GB.
Os nad ydych yn nodi data yn y fector yn y paramedrau, mae Clickhouse yn cymryd 4500/857.19 = 5.24 gwaith yn llai nag yn Elasticsearch.
Mewn fector, defnyddir y maes cywasgu yn ddiofyn.
Telegram sgwrs gan
Telegram sgwrs gan
Sgwrs Telegram gan ""
Ffynhonnell: hab.com
