Replies: 1 comment
-
中文问题请在ask.selectdb.com 论坛提问 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
doris 2.1.7 docker compose部署 1fe 3be
fe 报错 notify new FE type transfer: UNKNOWN
be 报错 MASTER FE is not started. retry.
docker-compose
services: docker-fe-01: image: apache/doris:doris-fe-2.1.7 container_name: "doris-fe-01" hostname: "fe-01" environment: - FE_SERVERS=fe1:172.30.80.2:9010 - FE_ID=1 ports: - 8031:8030 - 9031:9030 volumes: - /data/fe-01/doris-meta:/opt/apache-doris/fe/doris-meta - /data/fe-01/log:/opt/apache-doris/fe/log - ./fe/fe.conf:/opt/doris/fe/conf/fe.conf networks: doris_net1fe_3be: ipv4_address: 172.30.80.2 docker-be-01: image: apache/doris:doris-be-2.1.7 container_name: "doris-be-01" hostname: "be-01" depends_on: - docker-fe-01 environment: - FE_SERVERS=fe1:172.30.80.2:9010 - BE_ADDR=172.30.80.5:9050 ports: - 8041:8040 volumes: - /data/be-01/storage:/opt/apache-doris/be/storage - /data/be-01/script:/docker-entrypoint-initdb.d - /data/be-01/log:/opt/apache-doris/be/log - ./be/be.conf:/opt/doris/fe/conf/fe.conf networks: doris_net1fe_3be: ipv4_address: 172.30.80.5 docker-be-02: image: apache/doris:doris-be-2.1.7 container_name: "doris-be-02" hostname: "be-02" depends_on: - docker-fe-01 environment: - FE_SERVERS=fe1:172.30.80.2:9010 - BE_ADDR=172.30.80.6:9050 ports: - 8042:8040 volumes: - /data/be-02/storage:/opt/apache-doris/be/storage - /data/be-02/script:/docker-entrypoint-initdb.d - /data/be-02/log:/opt/apache-doris/be/log - ./be/be.conf:/opt/doris/fe/conf/fe.conf networks: doris_net1fe_3be: ipv4_address: 172.30.80.6 docker-be-03: image: apache/doris:doris-be-2.1.7 container_name: "doris-be-03" hostname: "be-03" depends_on: - docker-fe-01 environment: - FE_SERVERS=fe1:172.30.80.2:9010 - BE_ADDR=172.30.80.7:9050 ports: - 8043:8040 volumes: - /data/be-03/storage:/opt/apache-doris/be/storage - /data/be-03/script:/docker-entrypoint-initdb.d - /data/be-03/log:/opt/apache-doris/be/log - ./be/be.conf:/opt/doris/fe/conf/fe.conf networks: doris_net1fe_3be: ipv4_address: 172.30.80.7 networks: doris_net1fe_3be: ipam: config: - subnet: 172.30.80.0/24
fe.conf
`# FE configuration file
The directory to store FE metadata
meta_dir = /opt/doris/fe/doris-meta
The directory to store FE log
log_dir = /opt/doris/fe/log
The directory to store FE audit log
audit_log_dir = /opt/doris/fe/audit_log
The FE's hostname or IP address
priority_networks = 172.30.80.0/24
The FE's MySQL port
mysql_port = 9030
The FE's HTTP port
http_port = 8030
The FE's RPC port
rpc_port = 9020
be.conf
# BE configuration fileThe directory to store BE storage
storage_root_path = /opt/doris/be/storage
The BE's hostname or IP address
priority_networks = 172.30.80.0/24
The BE's HTTP port
webserver_port = 8040
The BE's RPC port
brpc_port = 9050
The BE's MySQL port
be_port = 9060
`
fe日志
2025-01-15T07:47:17.578106931Z 2025-01-15T07:47:17+00:00 [Warn] [Entrypoint]: FE_SERVERS fe1:172.30.80.2:9010 2025-01-15T07:47:17.578800360Z 2025-01-15T07:47:17+00:00 [Warn] [Entrypoint]: FE_ID 1 2025-01-15T07:47:17.586789041Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: FE_IP_ARRAY = [172.30.80.2] 2025-01-15T07:47:17.587362091Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: FE_EDIT_LOG_PORT_ARRAY = [9010] 2025-01-15T07:47:17.587961958Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: MASTER_FE = 172.30.80.2:9010 2025-01-15T07:47:17.588494247Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: CURRENT_FE = 172.30.80.2:9010 2025-01-15T07:47:17.589123884Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: PRIORITY_NETWORKS = 172.30.80.0/24 2025-01-15T07:47:17.589721007Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: Current FE is Master FE! No need check fe status! 2025-01-15T07:47:17.590353955Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: the image is exsit! 2025-01-15T07:47:17.592524122Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: the priority_networks values is 172.30.80.0/24 2025-01-15T07:47:17.593144381Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: the conf file path is /opt/apache-doris/fe/conf/fe.conf 2025-01-15T07:47:17.593819709Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: start add_priority_networks 2025-01-15T07:47:17.594515025Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: add priority_networks 172.30.80.0/24 to /opt/apache-doris/fe/conf/fe.conf 2025-01-15T07:47:17.598429400Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: Current FE is Master FE! No need to register again! 2025-01-15T07:47:17.599157549Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: Current FE is Master FE! No need check fe status! 2025-01-15T07:47:17.599936126Z 2025-01-15T07:47:17+00:00 [Note] [Entrypoint]: Ready to start CURRENT_FE! 2025-01-15T07:47:17.599962933Z /usr/local/bin/init_fe.sh: line 470: [: ==: unary operator expected 2025-01-15T07:47:17.863511444Z StdoutLogger 2025-01-15 07:47:17,862 using java version 8 2025-01-15T07:47:17.864460175Z StdoutLogger 2025-01-15 07:47:17,863 -Dfile.encoding=UTF-8 -Djavax.security.auth.useSubjectCredsOnly=false -Xss4m -Xmx8192m -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:+PrintGCDateStamps -XX:+PrintGCDetails -Xloggc:/opt/apache-doris/fe/log/fe.gc.log.20250115-074717 -Dlog4j2.formatMsgNoLookups=true 2025-01-15T07:47:17.883642869Z StdoutLogger 2025-01-15 07:47:17,883 start time: Wed Jan 15 07:47:17 UTC 2025 2025-01-15T07:47:18.743261973Z StdoutLogger 2025-01-15 07:47:18,742 ===== 2025-01-15T07:47:18.743296594Z <?xml version="1.0" encoding="utf-8"?> 2025-01-15T07:47:18.743298696Z 2025-01-15T07:47:18.743299690Z <!-- Auto Generated. DO NOT MODIFY IT! --> 2025-01-15T07:47:18.743300934Z <Configuration status="info" packages="org.apache.doris.common"> 2025-01-15T07:47:18.743302091Z <Appenders> 2025-01-15T07:47:18.743303119Z <Console name="Console" target="SYSTEM_OUT"> 2025-01-15T07:47:18.743312039Z <PatternLayout charset="UTF-8"> 2025-01-15T07:47:18.743313244Z <Pattern>RuntimeLogger %d{yyyy-MM-dd HH:mm:ss,SSS} %p (%t|%tid) [%C{1}.%M():%L] %m%n</Pattern> 2025-01-15T07:47:18.743314458Z </PatternLayout> 2025-01-15T07:47:18.743315460Z </Console> 2025-01-15T07:47:18.743316439Z <Console name="AuditConsole" target="SYSTEM_OUT"> 2025-01-15T07:47:18.743317541Z <PatternLayout charset="UTF-8"> 2025-01-15T07:47:18.743318636Z <Pattern>AuditLogger %d{yyyy-MM-dd HH:mm:ss,SSS} [%c{1}] %m%n</Pattern> 2025-01-15T07:47:18.743319723Z </PatternLayout> 2025-01-15T07:47:18.743320652Z </Console> 2025-01-15T07:47:18.743321619Z <RollingFile name="Sys" fileName="/opt/apache-doris/fe/log/fe.log" filePattern="/opt/apache-doris/fe/log/fe.log.%d{yyyyMMdd}-%i" immediateFlush="true"> 2025-01-15T07:47:18.743322937Z <PatternLayout charset="UTF-8"> 2025-01-15T07:47:18.743323962Z <Pattern>RuntimeLogger %d{yyyy-MM-dd HH:mm:ss,SSS} %p (%t|%tid) [%C{1}.%M():%L] %m%n</Pattern> 2025-01-15T07:47:18.743325034Z </PatternLayout> 2025-01-15T07:47:18.743326013Z <Policies> 2025-01-15T07:47:18.743326981Z <TimeBasedTriggeringPolicy/> 2025-01-15T07:47:18.743327995Z <SizeBasedTriggeringPolicy size="1024MB"/> 2025-01-15T07:47:18.743329046Z </Policies> 2025-01-15T07:47:18.743329958Z <DefaultRolloverStrategy max="10" fileIndex="max"> 2025-01-15T07:47:18.743331318Z <Delete basePath="/opt/apache-doris/fe/log/" maxDepth="1"> 2025-01-15T07:47:18.743332476Z <IfFileName glob="fe.log.*" /> 2025-01-15T07:47:18.743333708Z <IfLastModified age="7d" /> 2025-01-15T07:47:18.743334971Z </Delete> 2025-01-15T07:47:18.743336072Z </DefaultRolloverStrategy> 2025-01-15T07:47:18.743337254Z </RollingFile> 2025-01-15T07:47:18.743338791Z <RollingFile name="SysWF" fileName="/opt/apache-doris/fe/log/fe.warn.log" filePattern="/opt/apache-doris/fe/log/fe.warn.log.%d{yyyyMMdd}-%i" immediateFlush="true"> 2025-01-15T07:47:18.743340187Z <PatternLayout charset="UTF-8"> 2025-01-15T07:47:18.743341212Z <Pattern>RuntimeLogger %d{yyyy-MM-dd HH:mm:ss,SSS} %p (%t|%tid) [%C{1}.%M():%L] %m%n</Pattern> 2025-01-15T07:47:18.743342300Z </PatternLayout> 2025-01-15T07:47:18.743343298Z <Policies> 2025-01-15T07:47:18.743344275Z <TimeBasedTriggeringPolicy/> 2025-01-15T07:47:18.743345248Z <SizeBasedTriggeringPolicy size="1024MB"/> 2025-01-15T07:47:18.743347530Z </Policies> 2025-01-15T07:47:18.743348496Z <DefaultRolloverStrategy max="10" fileIndex="max"> 2025-01-15T07:47:18.743349540Z <Delete basePath="/opt/apache-doris/fe/log/" maxDepth="1"> 2025-01-15T07:47:18.743350558Z <IfFileName glob="fe.warn.log.*" /> 2025-01-15T07:47:18.743351636Z <IfLastModified age="7d" /> 2025-01-15T07:47:18.743352664Z </Delete> 2025-01-15T07:47:18.743354077Z </DefaultRolloverStrategy> 2025-01-15T07:47:18.743355078Z </RollingFile> 2025-01-15T07:47:18.743356052Z <RollingFile name="AuditFile" fileName="/opt/apache-doris/fe/log/fe.audit.log" filePattern="/opt/apache-doris/fe/log/fe.audit.log.%d{yyyyMMdd}-%i"> 2025-01-15T07:47:18.743357229Z <PatternLayout charset="UTF-8"> 2025-01-15T07:47:18.743358240Z <Pattern>AuditLogger %d{yyyy-MM-dd HH:mm:ss,SSS} [%c{1}] %m%n</Pattern> 2025-01-15T07:47:18.743359328Z </PatternLayout> 2025-01-15T07:47:18.743360258Z <Policies> 2025-01-15T07:47:18.743361161Z <TimeBasedTriggeringPolicy/> 2025-01-15T07:47:18.743362121Z <SizeBasedTriggeringPolicy size="1024MB"/> 2025-01-15T07:47:18.743363086Z </Policies> 2025-01-15T07:47:18.743364118Z <DefaultRolloverStrategy max="90" fileIndex="max"> 2025-01-15T07:47:18.743365333Z <Delete basePath="/opt/apache-doris/fe/log/" maxDepth="1"> 2025-01-15T07:47:18.743366333Z <IfFileName glob="fe.audit.log.*" /> 2025-01-15T07:47:18.743367414Z <IfLastModified age="30d" /> 2025-01-15T07:47:18.743368431Z </Delete> 2025-01-15T07:47:18.743369348Z </DefaultRolloverStrategy> 2025-01-15T07:47:18.743370316Z </RollingFile> 2025-01-15T07:47:18.743371273Z </Appenders> 2025-01-15T07:47:18.743372238Z <Loggers> 2025-01-15T07:47:18.743373329Z <Root level="INFO" includeLocation="true"> 2025-01-15T07:47:18.743374481Z <AppenderRef ref="Sys"/> 2025-01-15T07:47:18.743375479Z 2025-01-15T07:47:18.743376339Z <AppenderRef ref="SysWF" level="WARN"/> 2025-01-15T07:47:18.743377418Z 2025-01-15T07:47:18.743378283Z <AppenderRef ref="Console"/> 2025-01-15T07:47:18.743379257Z 2025-01-15T07:47:18.743380120Z </Root> 2025-01-15T07:47:18.743381085Z <Logger name="audit" level="ERROR" additivity="false"> 2025-01-15T07:47:18.743382207Z <AppenderRef ref="AuditFile"/> 2025-01-15T07:47:18.743384376Z 2025-01-15T07:47:18.743385281Z <AppenderRef ref="AuditConsole"/> 2025-01-15T07:47:18.743386272Z 2025-01-15T07:47:18.743387385Z </Logger> 2025-01-15T07:47:18.743388359Z <Logger name='audit.slow_query' level='INFO'/><Logger name='audit.query' level='INFO'/><Logger name='audit.load' level='INFO'/><Logger name='audit.stream_load' level='INFO'/> 2025-01-15T07:47:18.743390234Z </Loggers> 2025-01-15T07:47:18.743391221Z </Configuration> 2025-01-15T07:47:18.743392198Z ===== 2025-01-15T07:47:18.743797981Z ============================== 2025-01-15T07:47:18.952047393Z RuntimeLogger 2025-01-15 07:47:18,950 INFO (main|1) [DorisFE.start():167] Doris FE starting... 2025-01-15T07:47:18.959750962Z RuntimeLogger 2025-01-15 07:47:18,959 INFO (main|1) [FrontendOptions.analyzePriorityCidrs():194] configured prior_cidrs value: 172.30.80.0/24 2025-01-15T07:47:18.962833294Z RuntimeLogger 2025-01-15 07:47:18,962 INFO (main|1) [FrontendOptions.initAddrUseIp():101] local address: /172.30.80.2. 2025-01-15T07:47:19.006899250Z RuntimeLogger 2025-01-15 07:47:19,006 ERROR (main|1) [Util.report():128] SLF4J: Class path contains multiple SLF4J bindings. 2025-01-15T07:47:19.007015312Z RuntimeLogger 2025-01-15 07:47:19,006 ERROR (main|1) [Util.report():128] SLF4J: Found binding in [jar:file:/opt/apache-doris/fe/lib/slf4j-reload4j-1.7.36.jar!/org/slf4j/impl/StaticLoggerBinder.class] 2025-01-15T07:47:19.007542837Z RuntimeLogger 2025-01-15 07:47:19,007 ERROR (main|1) [Util.report():128] SLF4J: Found binding in [jar:file:/opt/apache-doris/fe/lib/log4j-slf4j-impl-2.18.0.jar!/org/slf4j/impl/StaticLoggerBinder.class] 2025-01-15T07:47:19.007846438Z RuntimeLogger 2025-01-15 07:47:19,007 ERROR (main|1) [Util.report():128] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. 2025-01-15T07:47:19.016780433Z RuntimeLogger 2025-01-15 07:47:19,016 ERROR (main|1) [Util.report():128] SLF4J: Actual binding is of type [org.slf4j.impl.Reload4jLoggerFactory] 2025-01-15T07:47:19.193691369Z RuntimeLogger 2025-01-15 07:47:19,193 ERROR (main|1) [LogLog.warn():157] log4j:WARN No appenders could be found for logger (io.netty.util.internal.InternalThreadLocalMap). 2025-01-15T07:47:19.193767346Z RuntimeLogger 2025-01-15 07:47:19,193 ERROR (main|1) [LogLog.warn():157] log4j:WARN Please initialize the log4j system properly. 2025-01-15T07:47:19.193888478Z RuntimeLogger 2025-01-15 07:47:19,193 ERROR (main|1) [LogLog.warn():157] log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. 2025-01-15T07:47:19.231524560Z RuntimeLogger 2025-01-15 07:47:19,231 INFO (main|1) [ConsistencyChecker.initWorkTime():105] consistency checker will work from 23:00 to 23:00 2025-01-15T07:47:19.750628242Z RuntimeLogger 2025-01-15 07:47:19,750 INFO (main|1) [PrivTable.addEntry():89] add priv entry: Node_priv,Admin_priv 2025-01-15T07:47:19.750711487Z RuntimeLogger 2025-01-15 07:47:19,750 INFO (main|1) [PrivTable.addEntry():89] add priv entry: Admin_priv 2025-01-15T07:47:19.762602002Z RuntimeLogger 2025-01-15 07:47:19,762 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: information_schema, priv: Select_priv 2025-01-15T07:47:19.763003564Z RuntimeLogger 2025-01-15 07:47:19,762 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: mysql, priv: Select_priv 2025-01-15T07:47:19.763205998Z RuntimeLogger 2025-01-15 07:47:19,763 INFO (main|1) [PrivTable.addEntry():89] add priv entry: origWorkloadGroup:normal, priv:Usage_priv 2025-01-15T07:47:19.763443228Z RuntimeLogger 2025-01-15 07:47:19,763 INFO (main|1) [Auth.createUserInternal():503] finished to create user: 'root'@'%', is replay: true 2025-01-15T07:47:19.763728709Z RuntimeLogger 2025-01-15 07:47:19,763 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: information_schema, priv: Select_priv 2025-01-15T07:47:19.764034067Z RuntimeLogger 2025-01-15 07:47:19,763 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: mysql, priv: Select_priv 2025-01-15T07:47:19.764366375Z RuntimeLogger 2025-01-15 07:47:19,764 INFO (main|1) [PrivTable.addEntry():89] add priv entry: origWorkloadGroup:normal, priv:Usage_priv 2025-01-15T07:47:19.764429497Z RuntimeLogger 2025-01-15 07:47:19,764 INFO (main|1) [Auth.createUserInternal():503] finished to create user: 'admin'@'%', is replay: true 2025-01-15T07:47:19.766330614Z RuntimeLogger 2025-01-15 07:47:19,766 INFO (main|1) [AuthenticatorManager.<init>():42] authenticate type: DEFAULT 2025-01-15T07:47:19.889280597Z RuntimeLogger 2025-01-15 07:47:19,889 INFO (main|1) [MTMVService.registerHook():69] registerHook: MTMVJobManager 2025-01-15T07:47:19.889315815Z RuntimeLogger 2025-01-15 07:47:19,889 INFO (main|1) [MTMVService.registerHook():69] registerHook: MTMVRelationManager 2025-01-15T07:47:19.903217578Z RuntimeLogger 2025-01-15 07:47:19,902 INFO (main|1) [Env.getSelfHostPort():1392] get self node: HostInfo{host='172.30.80.2', port=9010} 2025-01-15T07:47:19.903465483Z RuntimeLogger 2025-01-15 07:47:19,903 INFO (main|1) [Env.getHelperNodes():1446] get helper nodes: [HostInfo{host='172.30.80.2', port=9010}] 2025-01-15T07:47:19.914945089Z RuntimeLogger 2025-01-15 07:47:19,914 INFO (main|1) [Env.getClusterIdAndRole():1317] finished to get cluster id: 1543964848, isElectable: true, role: FOLLOWER and node name: fe_ab1f5de1_e6b0_4117_97ca_331a756533b9 2025-01-15T07:47:19.928177124Z RuntimeLogger 2025-01-15 07:47:19,927 INFO (main|1) [MetaReader.read():72] start load image from /opt/apache-doris/fe/doris-meta/image/image.8207. is ckpt: false 2025-01-15T07:47:20.129708669Z RuntimeLogger 2025-01-15 07:47:20,129 INFO (main|1) [MetaHeader.read():74] Image header length: 21, format: COR1. 2025-01-15T07:47:20.130907482Z RuntimeLogger 2025-01-15 07:47:20,130 INFO (main|1) [MetaFooter.read():84] Image footer length: 778, indices: [header:29, masterInfo:50, frontends:107, backends:231, datasource:1774, db:1827, alterJob:1980, recycleBin:2016, globalVariable:2032, cluster:12953, broker:12953, resources:12957, exportJob:12982, syncJob:12986, backupHandler:12990, paloAuth:12998, transactionState:15444, colocateTableIndex:15460, routineLoadJobs:15468, loadJobV2:15472, smallFiles:15476, plugins:15480, deleteHandler:15484, sqlBlockRule:15484, policy:15516, globalFunction:15699, workloadGroups:15719, binlogs:15948, resourceGroups:15948, AnalysisMgrV2:16177, AsyncJobManager:16189, workloadSchedPolicy:16193, insertOverwrite:16214, plsql:16281] 2025-01-15T07:47:20.135394526Z RuntimeLogger 2025-01-15 07:47:20,135 INFO (main|1) [Env.loadHeaderCOR1():2018] finished replay header from image 2025-01-15T07:47:20.170385153Z RuntimeLogger 2025-01-15 07:47:20,170 INFO (main|1) [Env.loadMasterInfo():2027] finished replay masterInfo from image 2025-01-15T07:47:20.172706052Z RuntimeLogger 2025-01-15 07:47:20,172 INFO (main|1) [Env.replayAddFrontend():3953] replay add frontend: name: fe_ab1f5de1_e6b0_4117_97ca_331a756533b9, role: FOLLOWER, 172.20.80.2:9010, is alive: false 2025-01-15T07:47:20.172800831Z RuntimeLogger 2025-01-15 07:47:20,172 INFO (main|1) [Env.loadFrontends():2044] finished replay frontends from image 2025-01-15T07:47:20.351560508Z RuntimeLogger 2025-01-15 07:47:20,351 INFO (main|1) [Env.loadCatalog():2283] finished replay catalog from image 2025-01-15T07:47:20.357146383Z RuntimeLogger 2025-01-15 07:47:20,356 INFO (main|1) [InternalCatalog.loadDb():3631] finished replay databases from image 2025-01-15T07:47:20.357374417Z RuntimeLogger 2025-01-15 07:47:20,357 INFO (main|1) [Env.loadAlterJob():2087] finished replay alterJob from image 2025-01-15T07:47:20.357667305Z RuntimeLogger 2025-01-15 07:47:20,357 INFO (main|1) [Env.loadRecycleBin():2176] finished replay recycleBin from image 2025-01-15T07:47:20.366360853Z RuntimeLogger 2025-01-15 07:47:20,366 INFO (main|1) [Env.loadGlobalVariable():2183] finished replay globalVariable from image 2025-01-15T07:47:20.366396995Z RuntimeLogger 2025-01-15 07:47:20,366 INFO (main|1) [MetaReader.read():96] Skip cluster module since empty meta length. 2025-01-15T07:47:20.366449531Z RuntimeLogger 2025-01-15 07:47:20,366 INFO (main|1) [Env.loadBrokers():5452] finished replay brokerMgr from image 2025-01-15T07:47:20.366927430Z RuntimeLogger 2025-01-15 07:47:20,366 INFO (main|1) [Env.loadResources():2226] finished replay resources from image 2025-01-15T07:47:20.366979147Z RuntimeLogger 2025-01-15 07:47:20,366 INFO (main|1) [Env.loadExportJob():2070] finished replay exportJob from image 2025-01-15T07:47:20.367117377Z RuntimeLogger 2025-01-15 07:47:20,367 INFO (main|1) [Env.loadSyncJobs():2078] finished replay syncJobMgr from image 2025-01-15T07:47:20.367332017Z RuntimeLogger 2025-01-15 07:47:20,367 INFO (main|1) [Env.loadBackupHandler():2142] finished replay backupHandler from image 2025-01-15T07:47:20.370139833Z RuntimeLogger 2025-01-15 07:47:20,369 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: mysql, priv: Select_priv 2025-01-15T07:47:20.370335394Z RuntimeLogger 2025-01-15 07:47:20,370 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: information_schema, priv: Select_priv 2025-01-15T07:47:20.370457338Z RuntimeLogger 2025-01-15 07:47:20,370 INFO (main|1) [PrivTable.addEntry():89] add priv entry: origWorkloadGroup:normal, priv:Usage_priv 2025-01-15T07:47:20.370701517Z RuntimeLogger 2025-01-15 07:47:20,370 INFO (main|1) [PrivTable.addEntry():89] add priv entry: Admin_priv 2025-01-15T07:47:20.370970710Z RuntimeLogger 2025-01-15 07:47:20,370 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: mysql, priv: Select_priv 2025-01-15T07:47:20.371159789Z RuntimeLogger 2025-01-15 07:47:20,370 INFO (main|1) [PrivTable.addEntry():89] add priv entry: database privilege.ctl: internal, db: information_schema, priv: Select_priv 2025-01-15T07:47:20.371310368Z RuntimeLogger 2025-01-15 07:47:20,371 INFO (main|1) [PrivTable.addEntry():89] add priv entry: origWorkloadGroup:normal, priv:Usage_priv 2025-01-15T07:47:20.371626716Z RuntimeLogger 2025-01-15 07:47:20,371 INFO (main|1) [PrivTable.addEntry():89] add priv entry: Node_priv,Admin_priv 2025-01-15T07:47:20.373758358Z RuntimeLogger 2025-01-15 07:47:20,373 INFO (main|1) [Env.loadAuth():2155] finished replay auth from image 2025-01-15T07:47:20.373787545Z RuntimeLogger 2025-01-15 07:47:20,373 INFO (main|1) [Env.loadTransactionState():2163] finished replay transactionState from image 2025-01-15T07:47:20.373995985Z RuntimeLogger 2025-01-15 07:47:20,373 INFO (main|1) [Env.loadColocateTableIndex():2196] finished replay colocateTableIndex from image 2025-01-15T07:47:20.374224699Z RuntimeLogger 2025-01-15 07:47:20,374 INFO (main|1) [Env.loadRoutineLoadJobs():2202] finished replay routineLoadJobs from image 2025-01-15T07:47:20.374251512Z RuntimeLogger 2025-01-15 07:47:20,374 INFO (main|1) [Env.loadLoadJobsV2():2208] finished replay loadJobsV2 from image 2025-01-15T07:47:20.374398174Z RuntimeLogger 2025-01-15 07:47:20,374 INFO (main|1) [Env.loadSmallFiles():2250] finished replay smallFiles from image 2025-01-15T07:47:20.374566145Z RuntimeLogger 2025-01-15 07:47:20,374 INFO (main|1) [Env.loadPlugins():5824] finished replay plugins from image 2025-01-15T07:47:20.374939704Z RuntimeLogger 2025-01-15 07:47:20,374 INFO (main|1) [MetaReader.read():96] Skip deleteHandler module since empty meta length. 2025-01-15T07:47:20.375983748Z RuntimeLogger 2025-01-15 07:47:20,375 INFO (main|1) [Env.loadSqlBlockRule():2258] finished replay sqlBlockRule from image 2025-01-15T07:47:20.378219111Z RuntimeLogger 2025-01-15 07:47:20,378 INFO (main|1) [Env.loadPolicy():2269] finished replay policy from image 2025-01-15T07:47:20.378338069Z RuntimeLogger 2025-01-15 07:47:20,378 INFO (main|1) [Env.loadGlobalFunction():2292] finished replay global function from image 2025-01-15T07:47:20.380511940Z RuntimeLogger 2025-01-15 07:47:20,380 INFO (main|1) [Env.loadWorkloadGroups():2232] finished replay workload groups from image 2025-01-15T07:47:20.380562395Z RuntimeLogger 2025-01-15 07:47:20,380 INFO (main|1) [MetaReader.read():96] Skip binlogs module since empty meta length. 2025-01-15T07:47:20.380727297Z RuntimeLogger 2025-01-15 07:47:20,380 INFO (main|1) [Env.loadWorkloadGroups():2232] finished replay workload groups from image 2025-01-15T07:47:20.381276907Z RuntimeLogger 2025-01-15 07:47:20,381 INFO (main|1) [Env.loadAnalysisManager():2298] finished replay AnalysisMgr from image 2025-01-15T07:47:20.381316499Z RuntimeLogger 2025-01-15 07:47:20,381 INFO (main|1) [Env.loadAsyncJobManager():2214] finished replay asyncJobMgr from image 2025-01-15T07:47:20.383671791Z RuntimeLogger 2025-01-15 07:47:20,383 INFO (main|1) [Env.loadWorkloadSchedPolicy():2238] finished replay workload sched policy from image 2025-01-15T07:47:20.384473386Z RuntimeLogger 2025-01-15 07:47:20,384 INFO (main|1) [Env.loadInsertOverwrite():2304] finished replay iot from image 2025-01-15T07:47:20.385614321Z RuntimeLogger 2025-01-15 07:47:20,385 INFO (main|1) [Env.loadPlsqlProcedure():2244] finished replay plsql procedure from image 2025-01-15T07:47:20.385686584Z RuntimeLogger 2025-01-15 07:47:20,385 INFO (main|1) [MetaReader.read():136] finished to load image in 457 ms 2025-01-15T07:47:30.828482174Z RuntimeLogger 2025-01-15 07:47:30,827 WARN (UNKNOWN fe_ab1f5de1_e6b0_4117_97ca_331a756533b9(-1)|1) [Env.notifyNewFETypeTransfer():2699] notify new FE type transfer: UNKNOWN 2025-01-15T07:47:30.828504101Z RuntimeLogger 2025-01-15 07:47:30,828 INFO (UNKNOWN fe_ab1f5de1_e6b0_4117_97ca_331a756533b9(-1)|1) [LogUtils.stdout():50] StdoutLogger 2025-01-15 07:47:30,828 notify new FE type transfer: UNKNOWN 2025-01-15T07:47:30.836836335Z RuntimeLogger 2025-01-15 07:47:30,836 INFO (stateListener|98) [Env$5.runOneCycle():2722] begin to transfer FE type from INIT to UNKNOWN 2025-01-15T07:47:30.836864957Z RuntimeLogger 2025-01-15 07:47:30,836 INFO (stateListener|98) [Env$5.runOneCycle():2809] finished to transfer FE type to UNKNOWN 2025-01-15T07:47:30.938834131Z RuntimeLogger 2025-01-15 07:47:30,938 INFO (UNKNOWN fe_ab1f5de1_e6b0_4117_97ca_331a756533b9(-1)|1) [Env.waitForReady():1102] wait catalog to be ready. feType:UNKNOWN isReady:false, counter:1 reason: 2025-01-15T07:47:44.257394492Z RuntimeLogger 2025-01-15 07:47:44,257 INFO (UNKNOWN fe_ab1f5de1_e6b0_4117_97ca_331a756533b9(-1)|1) [Env.waitForReady():1102] wait catalog to be ready. feType:UNKNOWN isReady:false, counter:101 reason: 2025-01-15T07:47:54.264632917Z RuntimeLogger 2025-01-15 07:47:54,264 INFO (UNKNOWN fe_ab1f5de1_e6b0_4117_97ca_331a756533b9(-1)|1) [Env.waitForReady():1102] wait catalog to be ready. feType:UNKNOWN isReady:false, counter:201 reason: 2025-01-15T07:47:57.703483606Z 2025-01-15T07:47:57+00:00 [Note] [Entrypoint]: Container stopped, running stop_fe script 2025-01-15T07:47:57.828395592Z waiting fe to stop, pid: 595 2025-01-15T07:47:57.873923403Z /opt/apache-doris/fe/bin/start_fe.sh: line 277: 595 Killed ${LIMIT:+${LIMIT}} "${JAVA}" ${final_java_opt:+${final_java_opt}} -XX:-OmitStackTraceInFastThrow -XX:OnOutOfMemoryError="kill -9 %p" ${coverage_opt:+${coverage_opt}} org.apache.doris.DorisFE ${HELPER:+${HELPER}} ${OPT_VERSION:+${OPT_VERSION}} "${METADATA_FAILURE_RECOVERY}" "$@" < /dev/null 2025-01-15T07:47:59.829643676Z stop java, and remove pid file.
be 日志
`2025-01-15T07:47:18.200478303Z 2025-01-15T07:47:18+00:00 [Warn] [Entrypoint]: FE_SERVERS fe1:172.30.80.2:9010
2025-01-15T07:47:18.201365595Z 2025-01-15T07:47:18+00:00 [Warn] [Entrypoint]: BE_ADDR 172.30.80.5:9050
2025-01-15T07:47:18.212324744Z 2025-01-15T07:47:18+00:00 [Note] [Entrypoint]: MASTER_FE_IP 172.30.80.2
2025-01-15T07:47:18.213147156Z 2025-01-15T07:47:18+00:00 [Note] [Entrypoint]: CURRENT_BE_IP 172.30.80.5
2025-01-15T07:47:18.214491807Z 2025-01-15T07:47:18+00:00 [Note] [Entrypoint]: CURRENT_BE_PORT 9050
2025-01-15T07:47:18.215463927Z 2025-01-15T07:47:18+00:00 [Note] [Entrypoint]: PRIORITY_NETWORKS 172.30.80.0/24
2025-01-15T07:47:18.221510602Z 2025-01-15T07:47:18+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
2025-01-15T07:47:41.603354221Z 2025-01-15T07:47:41+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
2025-01-15T07:48:18.488414433Z 2025-01-15T07:48:18+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
2025-01-15T07:49:27.504107931Z 2025-01-15T07:49:27+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
2025-01-15T07:50:36.534805158Z 2025-01-15T07:50:36+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
2025-01-15T07:51:45.577200558Z 2025-01-15T07:51:45+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
2025-01-15T07:52:54.609019119Z 2025-01-15T07:52:54+00:00 [Note] [Entrypoint]: MASTER FE is not started. retry.
`
Beta Was this translation helpful? Give feedback.
All reactions