TDengine 产品组件:taosKeeper

news/2025/2/28 22:47:30/

taosKeeper 是 TDengine 3.0 版本监控指标的导出工具,通过简单的几项配置即可获取 TDengine 的运行状态。taosKeeper 使用 TDengine RESTful 接口,所以不需要安装 TDengine 客户端即可使用。

安装

taosKeeper 有两种安装方式:

  • 安装 TDengine 官方安装包的同时会自动安装 taosKeeper, 详情请参考TDengine 安装。

  • 单独编译 taosKeeper 并安装,详情请参考 taosKeeper 仓库。

配置

taosKeeper 需要在操作系统终端执行,该工具支持三种配置方式:命令行参数、环境变量 和 配置文件。优先级为:命令行参数、环境变量、配置文件参数。 一般我们推荐使用配置文件。

命令行参数和环境变量

命令行参数 和 环境变量说明可以参考命令 taoskeeper --help 的输出。下面是一个例子:

Usage of taoskeeper v3.3.3.0:-R, --RotationInterval string                      interval for refresh metrics, such as "300ms", Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". Env "TAOS_KEEPER_ROTATION_INTERVAL" (default "15s")-c, --config string                                config path default /etc/taos/taoskeeper.toml--drop string                                  run taoskeeper in command mode, only support old_taosd_metric_stables.--environment.incgroup                         whether running in cgroup. Env "TAOS_KEEPER_ENVIRONMENT_INCGROUP"--fromTime string                              parameter of transfer, example: 2020-01-01T00:00:00+08:00 (default "2020-01-01T00:00:00+08:00")--gopoolsize int                               coroutine size. Env "TAOS_KEEPER_POOL_SIZE" (default 50000)-h, --help                                         Print this help message and exit--instanceId int                               instance ID. Env "TAOS_KEEPER_INSTANCE_ID" (default 64)--log.compress                                 whether to compress old log. Env "TAOS_KEEPER_LOG_COMPRESS"--log.keepDays uint                            log retention days, must be a positive integer. Env "TAOS_KEEPER_LOG_KEEP_DAYS" (default 30)--log.level string                             log level (trace debug info warning error). Env "TAOS_KEEPER_LOG_LEVEL" (default "info")--log.path string                              log path. Env "TAOS_KEEPER_LOG_PATH" (default "/var/log/taos")--log.reservedDiskSize string                  reserved disk size for log dir (KB MB GB), must be a positive integer. Env "TAOS_KEEPER_LOG_RESERVED_DISK_SIZE" (default "1GB")--log.rotationCount uint                       log rotation count. Env "TAOS_KEEPER_LOG_ROTATION_COUNT" (default 5)--log.rotationSize string                      log rotation size(KB MB GB), must be a positive integer. Env "TAOS_KEEPER_LOG_ROTATION_SIZE" (default "1GB")--log.rotationTime duration                    deprecated: log rotation time always 24 hours. Env "TAOS_KEEPER_LOG_ROTATION_TIME" (default 24h0m0s)--logLevel string                              log level (trace debug info warning error). Env "TAOS_KEEPER_LOG_LEVEL" (default "info")--metrics.database.name string                 database for storing metrics data. Env "TAOS_KEEPER_METRICS_DATABASE" (default "log")--metrics.database.options.buffer int          database option buffer for audit database. Env "TAOS_KEEPER_METRICS_BUFFER" (default 64)--metrics.database.options.cachemodel string   database option cachemodel for audit database. Env "TAOS_KEEPER_METRICS_CACHEMODEL" (default "both")--metrics.database.options.keep int            database option buffer for audit database. Env "TAOS_KEEPER_METRICS_KEEP" (default 90)--metrics.database.options.vgroups int         database option vgroups for audit database. Env "TAOS_KEEPER_METRICS_VGROUPS" (default 1)--metrics.prefix string                        prefix in metrics names. Env "TAOS_KEEPER_METRICS_PREFIX"--metrics.tables stringArray                   export some tables that are not super table, multiple values split with white space. Env "TAOS_KEEPER_METRICS_TABLES"-P, --port int                                     http port. Env "TAOS_KEEPER_PORT" (default 6043)--tdengine.host string                         TDengine server's ip. Env "TAOS_KEEPER_TDENGINE_HOST" (default "127.0.0.1")--tdengine.password string                     TDengine server's password. Env "TAOS_KEEPER_TDENGINE_PASSWORD" (default "taosdata")--tdengine.port int                            TDengine REST server(taosAdapter)'s port. Env "TAOS_KEEPER_TDENGINE_PORT" (default 6041)--tdengine.username string                     TDengine server's username. Env "TAOS_KEEPER_TDENGINE_USERNAME" (default "root")--tdengine.usessl                              TDengine server use ssl or not. Env "TAOS_KEEPER_TDENGINE_USESSL"--transfer string                              run taoskeeper in command mode, only support old_taosd_metric. transfer old metrics data to new tables and exit-V, --version                                      Print the version and exit

配置文件

taosKeeper 支持用 taoskeeper -c <keeper config file> 命令来指定配置文件。
若不指定配置文件,taosKeeper 会使用默认配置文件,其路径为: /etc/taos/taoskeeper.toml
若既不指定 taosKeeper 配置文件,且 /etc/taos/taoskeeper.toml 也不存在,将使用默认配置。

下面是配置文件的示例:

# The ID of the currently running taoskeeper instance, default is 64.
instanceId = 64# Listening port, default is 6043.
port = 6043# Go pool size
gopoolsize = 50000# Interval for metrics
RotationInterval = "15s"[tdengine]
host = "127.0.0.1"
port = 6041
username = "root"
password = "taosdata"
usessl = false[metrics]
# Metrics prefix in metrics names.
prefix = "taos"# Export some tables that are not super table.
tables = []# Database for storing metrics data.
[metrics.database]
name = "log"# Database options for db storing metrics data.
[metrics.database.options]
vgroups = 1
buffer = 64
keep = 90
cachemodel = "both"[environment]
# Whether running in cgroup.
incgroup = false[log]
# The directory where log files are stored.
# path = "/var/log/taos"
level = "info"
# Number of log file rotations before deletion.
rotationCount = 30
# The number of days to retain log files.
keepDays = 30
# The maximum size of a log file before rotation.
rotationSize = "1GB"
# If set to true, log files will be compressed.
compress = false
# Minimum disk space to reserve. Log files will not be written if disk space falls below this limit.
reservedDiskSize = "1GB"

启动

在运行 taosKeeper 之前要确保 TDengine 集群与 taosAdapter 已经在正确运行。 并且 TDengine 已经开启监控服务,TDengine 配置文件 taos.cfg 中至少需要配置 monitormonitorFqdn

monitor 1
monitorFqdn localhost # taoskeeper 服务的 FQDN

TDengine 监控配置相关,具体请参考:TDengine 监控配置。

安装后,请使用 systemctl 命令来启动 taoskeeper 的服务进程。

systemctl start taoskeeper

检查服务是否正常工作:

systemctl status taoskeeper

如果服务进程处于活动状态,则 status 指令会显示如下的相关信息:

Active: active (running)

如果后台服务进程处于停止状态,则 status 指令会显示如下的相关信息:

Active: inactive (dead)

如下 systemctl 命令可以帮助你管理 taoskeeper 服务:

  • 启动服务进程:systemctl start taoskeeper

  • 停止服务进程:systemctl stop taoskeeper

  • 重启服务进程:systemctl restart taoskeeper

  • 查看服务状态:systemctl status taoskeeper

:::info

  • systemctl 命令需要 root 权限来运行,如果您非 root 用户,请在命令前添加 sudo
  • 如果系统中不支持 systemd,也可以用手动运行 /usr/local/taos/bin/taoskeeper 方式启动 taoskeeper 服务。
  • 故障排查:如果服务异常请查看日志获取更多信息。日志文件默认放在 /var/log/taos 下。

:::

安装后,可以运行 sudo launchctl start com.tdengine.taoskeeper 来启动 taoskeeper 服务进程。

如下 launchctl 命令用于管理 taoskeeper 服务:

  • 启动服务进程:sudo launchctl start com.tdengine.taoskeeper

  • 停止服务进程:sudo launchctl stop com.tdengine.taoskeeper

  • 查看服务状态:sudo launchctl list | grep taoskeeper

:::info

  • launchctl 命令管理com.tdengine.taoskeeper需要管理员权限,务必在前面加 sudo 来增强安全性。
  • sudo launchctl list | grep taoskeeper 指令返回的第一列是 taoskeeper 程序的 PID,若为 - 则说明 taoskeeper 服务未运行。
  • 故障排查:如果服务异常请查看日志获取更多信息。日志文件默认放在 /var/log/taos 下。

:::

健康检查

可以访问 taosKeeper 的 check_health 接口来判断服务是否存活,如果服务正常则会返回 HTTP 200 状态码:

curl -i http://127.0.0.1:6043/check_health

返回结果:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Date: Wed, 07 Aug 2024 06:19:50 GMT
Content-Length: 21{"version":"3.3.2.3"}

数据收集与监控

taosKeeper 作为 TDengine 监控指标的导出工具,可以将 TDengine 产生的监控数据记录在指定数据库中(默认的监控数据是 log),这些监控数据可以用来配置 TDengine 监控。

查看监控数据

可以查看 log 库下的超级表,每个超级表都对应一组监控指标,具体指标不再赘述。

taos> use log;
Database changed.taos> show stables;stable_name           |
=================================taosd_dnodes_status            |taosd_vnodes_info              |keeper_monitor                 |taosd_vgroups_info             |taos_sql_req                   |taos_slow_sql                  |taosd_mnodes_info              |taosd_cluster_info             |taosd_sql_req                  |taosd_dnodes_info              |adapter_requests               |taosd_cluster_basic            |taosd_dnodes_data_dirs         |taosd_dnodes_log_dirs          |
Query OK, 14 row(s) in set (0.006542s)

可以查看一个超级表的最近一条上报记录,如:

taos> select last_row(*) from taosd_dnodes_info;last_row(_ts)      |   last_row(disk_engine)   |  last_row(system_net_in)  |   last_row(vnodes_num)    | last_row(system_net_out)  |     last_row(uptime)      |    last_row(has_mnode)    |  last_row(io_read_disk)   | last_row(error_log_count) |     last_row(io_read)     |    last_row(cpu_cores)    |    last_row(has_qnode)    |    last_row(has_snode)    |   last_row(disk_total)    |   last_row(mem_engine)    | last_row(info_log_count)  |   last_row(cpu_engine)    |  last_row(io_write_disk)  | last_row(debug_log_count) |    last_row(disk_used)    |    last_row(mem_total)    |    last_row(io_write)     |     last_row(masters)     |   last_row(cpu_system)    | last_row(trace_log_count) |    last_row(mem_free)     |
======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================2024-08-07 14:54:09.174 |         0.000000000000000 |      3379.093240947399863 |        37.000000000000000 |      5265.998201139278535 |     64402.000000000000000 |         1.000000000000000 |      8323.261934108399146 |         6.000000000000000 |     40547.386655118425551 |        16.000000000000000 |         0.000000000000000 |         0.000000000000000 |     5.272955781120000e+11 |   2443032.000000000000000 |       423.000000000000000 |         0.556269622200215 |    677731.836503547732718 |    356380.000000000000000 |     4.997186764800000e+10 |  65557284.000000000000000 |    714177.054532129666768 |        37.000000000000000 |         2.642280705451021 |         0.000000000000000 |  11604276.000000000000000 |
Query OK, 1 row(s) in set (0.003168s)

使用 TDInsight 配置监控

收集到监控数据以后,就可以使用 TDInsight 来配置 TDengine 的监控,具体请参考 TDinsight 参考手册。

集成 Prometheus

taoskeeper 提供了 /metrics 接口,返回了 Prometheus 格式的监控数据,Prometheus 可以从 taoskeeper 抽取监控数据,实现通过 Prometheus 监控 TDengine 的目的。

导出监控指标

下面通过 curl 命令展示 /metrics 接口返回的数据格式:

$ curl http://127.0.0.1:6043/metrics

部分结果集:

# HELP taos_cluster_info_connections_total
# TYPE taos_cluster_info_connections_total counter
taos_cluster_info_connections_total{cluster_id="554014120921134497"} 8
# HELP taos_cluster_info_dbs_total
# TYPE taos_cluster_info_dbs_total counter
taos_cluster_info_dbs_total{cluster_id="554014120921134497"} 2
# HELP taos_cluster_info_dnodes_alive
# TYPE taos_cluster_info_dnodes_alive counter
taos_cluster_info_dnodes_alive{cluster_id="554014120921134497"} 1
# HELP taos_cluster_info_dnodes_total
# TYPE taos_cluster_info_dnodes_total counter
taos_cluster_info_dnodes_total{cluster_id="554014120921134497"} 1
# HELP taos_cluster_info_first_ep
# TYPE taos_cluster_info_first_ep gauge
taos_cluster_info_first_ep{cluster_id="554014120921134497",value="tdengine:6030"} 1
# HELP taos_cluster_info_first_ep_dnode_id
# TYPE taos_cluster_info_first_ep_dnode_id counter
taos_cluster_info_first_ep_dnode_id{cluster_id="554014120921134497"} 1

监控指标详情

taosd 集群
监控信息支持的标签
  • cluster_id: 集群 id
相关指标及其含义
指标名称类型含义
taos_cluster_info_connections_totalcounter总连接数
taos_cluster_info_dbs_totalcounter数据库总数
taos_cluster_info_dnodes_alivecounter存活的 dnode 数量
taos_cluster_info_dnodes_totalcounterdnode 总数
taos_cluster_info_first_epgauge第一个端点,标签 value 表示端点值
taos_cluster_info_first_ep_dnode_idcounter第一个端点的 dnode id
taos_cluster_info_master_uptimegauge主节点运行时间,单位天
taos_cluster_info_mnodes_alivecounter存活的 mnode 数量
taos_cluster_info_mnodes_totalcountermnode 总数
taos_cluster_info_stbs_totalcounter超级表总数
taos_cluster_info_streams_totalcounter流总数
taos_cluster_info_tbs_totalcounter表总数
taos_cluster_info_topics_totalcounter主题总数
taos_cluster_info_versiongauge版本信息,标签 value 表示版本号
taos_cluster_info_vgroups_alivecounter存活的虚拟组数量
taos_cluster_info_vgroups_totalcounter虚拟组总数
taos_cluster_info_vnodes_alivecounter存活的虚拟节点数量
taos_cluster_info_vnodes_totalcounter虚拟节点总数
taos_grants_info_expire_timecounter集群授权过期剩余时间(单位 秒)
taos_grants_info_timeseries_totalcounter集群授权允许使用 time series 的总数量
taos_grants_info_timeseries_usedcounter集群已拥有的 time series 的数量
dnode
监控信息支持的标签
  • cluster_id: 集群 id
  • dnode_ep: dnode 端点
  • dnode_id:dnode id
相关指标及其含义
指标名称类型含义
taos_d_info_statusgaugednode 状态,标签 value 表示状态, ready 表示正常, offline 表示下线, unknown 表示未知。
taos_dnodes_info_cpu_coresgaugeCPU 核心数
taos_dnodes_info_cpu_enginegauge该 dnode 的进程所使用的 CPU 百分比(取值范围 0~100)
taos_dnodes_info_cpu_systemgauge该 dnode 所在节点的系统使用的 CPU 百分比(取值范围 0~100)
taos_dnodes_info_disk_enginecounter该 dnode 的进程使用的磁盘容量(单位 Byte)
taos_dnodes_info_disk_totalcounter该 dnode 所在节点的磁盘总容量(单位 Byte)
taos_dnodes_info_disk_usedcounter该 dnode 所在节点的磁盘已使用的容量(单位 Byte)
taos_dnodes_info_has_mnodecounter是否有 mnode
taos_dnodes_info_has_qnodecounter是否有 qnode
taos_dnodes_info_has_snodecounter是否有 snode
taos_dnodes_info_io_readgauge该 dnode 所在节点的 io 读取速率(单位 Byte/s)
taos_dnodes_info_io_read_diskgauge该 dnode 所在节点的磁盘 io 写入速率(单位 Byte/s)
taos_dnodes_info_io_writegauge该 dnode 所在节点的 io 写入速率(单位 Byte/s)
taos_dnodes_info_io_write_diskgauge该 dnode 所在节点的磁盘 io 写入速率(单位 Byte/s)
taos_dnodes_info_masterscounter主节点数量
taos_dnodes_info_mem_enginecounter该 dnode 的进程所使用的内存(单位 KB)
taos_dnodes_info_mem_systemcounter该 dnode 所在节点的系统所使用的内存(单位 KB)
taos_dnodes_info_mem_totalcounter该 dnode 所在节点的总内存(单位 KB)
taos_dnodes_info_net_ingauge该 dnode 所在节点的网络传入速率(单位 Byte/s)
taos_dnodes_info_net_outgauge该 dnode 所在节点的网络传出速率(单位 Byte/s)
taos_dnodes_info_uptimegauge该 dnode 的启动时间(单位 秒)
taos_dnodes_info_vnodes_numcounter该 dnode 所在节点的 vnode 数量
数据目录
监控信息支持的标签
  • cluster_id: 集群 id
  • dnode_ep: dnode 端点
  • dnode_id:dnode id
  • data_dir_name:数据目录名
  • data_dir_level:数据目录级别
相关指标及其含义
指标名称类型含义
taos_taosd_dnodes_data_dirs_availgauge可用空间(单位 Byte)
taos_taosd_dnodes_data_dirs_totalgauge总空间(单位 Byte)
taos_taosd_dnodes_data_dirs_usedgauge已用空间(单位 Byte)
日志目录
监控信息支持的标签
  • cluster_id: 集群 id
  • dnode_ep: dnode 端点
  • dnode_id:dnode id
  • log_dir_name:日志目录名
相关指标及其含义
指标名称类型含义
taos_taosd_dnodes_log_dirs_availgauge可用空间(单位 Byte)
taos_taosd_dnodes_log_dirs_totalgauge总空间(单位 Byte)
taos_taosd_dnodes_log_dirs_usedgauge已用空间(单位 Byte)
日志数量
监控信息支持的标签
  • cluster_id: 集群 id
  • dnode_ep: dnode 端点
  • dnode_id:dnode id
相关指标及其含义
指标名称类型含义
taos_log_summary_debugcounter调试日志数量
taos_log_summary_errorcounter错误日志数量
taos_log_summary_infocounter信息日志数量
taos_log_summary_tracecounter跟踪日志数量
taosadapter
监控信息支持的标签
  • endpoint:端点
  • req_type:请求类型,0 表示 rest,1 表示 websocket
相关指标及其含义
指标名称类型含义
taos_adapter_requests_failcounter失败的请求数
taos_adapter_requests_in_processcounter正在处理的请求数
taos_adapter_requests_othercounter其他类型的请求数
taos_adapter_requests_other_failcounter其他类型的失败请求数
taos_adapter_requests_other_successcounter其他类型的成功请求数
taos_adapter_requests_querycounter查询请求数
taos_adapter_requests_query_failcounter查询失败请求数
taos_adapter_requests_query_in_processcounter正在处理的查询请求数
taos_adapter_requests_query_successcounter查询成功请求数
taos_adapter_requests_successcounter成功的请求数
taos_adapter_requests_totalcounter总请求数
taos_adapter_requests_writecounter写请求数
taos_adapter_requests_write_failcounter写失败请求数
taos_adapter_requests_write_in_processcounter正在处理的写请求数
taos_adapter_requests_write_successcounter写成功请求数
taoskeeper
监控信息支持的标签
  • identify: 节点 endpoint
相关指标及其含义
指标名称类型含义
taos_keeper_monitor_cpugaugetaoskeeper CPU 使用率(取值范围 0~1)
taos_keeper_monitor_memgaugetaoskeeper 内存使用率(取值范围 0~1)
其他 taosd 集群监控项
taos_m_info_role
  • 标签:
    • cluster_id: 集群 id
    • mnode_ep: mnode 端点
    • mnode_id: mnode id
    • value: 角色值(该 mnode 的状态,取值范围:offline, follower, candidate, leader, error, learner)
  • 类型: gauge
  • 含义: mnode 角色
taos_taos_sql_req_count
  • 标签:
    • cluster_id: 集群 id
    • result: 请求结果(取值范围: Success, Failed)
    • sql_type: SQL 类型(取值范围:select, insert,inserted_rows, delete)
    • username: 用户名
  • 类型: gauge
  • 含义: SQL 请求数量
taos_taosd_sql_req_count
  • 标签:
    • cluster_id: 集群 id
    • dnode_ep: dnode 端点
    • dnode_id: dnode id
    • result: 请求结果(取值范围: Success, Failed)
    • sql_type: SQL 类型(取值范围:select, insert,inserted_rows, delete)
    • username: 用户名
    • vgroup_id: 虚拟组 id
  • 类型: gauge
  • 含义: SQL 请求数量
taos_taosd_vgroups_info_status
  • 标签:
    • cluster_id: 集群 id
    • database_name: 数据库名称
    • vgroup_id: 虚拟组 id
  • 类型: gauge
  • 含义: 虚拟组状态。 0 为 unsynced,表示没有 leader 选出;1 为 ready。
taos_taosd_vgroups_info_tables_num
  • 标签:
    • cluster_id: 集群 id
    • database_name: 数据库名称
    • vgroup_id: 虚拟组 id
  • 类型: gauge
  • 含义: 虚拟组表数量
taos_taosd_vnodes_info_role
  • 标签:
    • cluster_id: 集群 id
    • database_name: 数据库名称
    • dnode_id: dnode id
    • value: 角色值(取值范围:offline, follower, candidate, leader, error, learner)
    • vgroup_id: 虚拟组 id
  • 类型: gauge
  • 含义: 虚拟节点角色

抽取配置

Prometheus 提供了 scrape_configs 配置如何从 endpoint 抽取监控数据,通常只需要修改 static_configs 中的 targets 配置为 taoskeeper 的 endpoint 地址,更多配置信息请参考 Prometheus 配置文档。

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:- job_name: "taoskeeper"# metrics_path defaults to '/metrics'# scheme defaults to 'http'.static_configs:- targets: ["localhost:6043"]

Dashboard

我们提供了 TaosKeeper Prometheus Dashboard for 3.x dashboard,提供了和 TDinsight 类似的监控 dashboard。

在 Grafana Dashboard 菜单点击 import,dashboard ID 填写 18587,点击 Load 按钮即可导入 TaosKeeper Prometheus Dashboard for 3.x dashboard。

taosKeeper 监控指标

taosKeeper 也会将自己采集的监控数据写入监控数据库,默认是 log 库,可以在 taoskeeper 配置文件中修改。

keeper_monitor 表

keeper_monitor 记录 taoskeeper 监控数据。

fieldtypeis_tagcomment
tsTIMESTAMPtimestamp
cpuDOUBLEcpu 使用率
memDOUBLE内存使用率
identifyNCHARTAG身份标识信息

访问官网

了解 TDengine 更多内容欢迎访问 TDengine 官网


http://www.ppmy.cn/news/1575613.html

相关文章

Elasticsearch:使用经过训练的 ML 模型理解稀疏向量嵌入

作者&#xff1a;来自 Elastic Dai Sugimori 了解稀疏向量嵌入&#xff0c;理解它们的作用/含义&#xff0c;以及如何使用它们实现语义搜索。 Elasticsearch 提供语义搜索功能&#xff0c;允许用户使用自然语言进行查询并检索相关信息。为此&#xff0c;目标文档和查询必须首先…

技术速递|增强 Razor 生产力的新功能!

作者&#xff1a;Leslie Richardson 排版&#xff1a;Alan Wang 如果您现在正在使用 Razor 构建 Web 应用&#xff0c;我们为您带来了一些令人兴奋的新功能&#xff0c;无论使用的是 Visual Studio 还是 Visual Studio Code&#xff0c;您都会爱上这些新功能&#xff01;现在&a…

React Server Components引擎的混合渲染架构:突破传统SPA的性能边际

引言&#xff1a;Web应用的性能困境 沃尔玛电商平台采用React Server Components (RSC)后&#xff0c;首屏渲染速度从2.4秒降至340ms&#xff0c;交互准备好时间(TTI)优化83%。在Turbopack加持下&#xff0c;冷启动构建速度比Webpack快18.7倍&#xff0c;内存占用降低32%。其创…

Unity 列表滚动到指定位置

使用场景 策划提出需求&#xff1a;当玩家打开领奖界面时&#xff0c;奖励列表需要自动滑动到可以领奖的奖励栏处或者正在进行的任务栏处。 思路 1、将Content设置好对齐方式和锚点 子物体的预制体和Content&#xff1a;pivot轴心点设置为(0,1),并且设置为左上角对齐。 2、主…

Idea编译项目很久之后,提示 Error:java:OutOfMemoryError:insufficient memory

项目挺老的的了&#xff0c;平常项目启动&#xff0c;也要挺久的&#xff0c;但是最起码能启动成功&#xff0c;今天下午的时候&#xff0c;项目启动了十几分&#xff0c;一直在转圈&#xff0c;后面控制台输出了这一行异常 Error:java:OutOfMemoryError:insufficient memory …

Unity XR-XR Interaction Toolkit开发使用方法(十一)组件介绍(XR Interactable)

目录 一、插件介绍 二、主要组件 XR Interaction Manager XR Controller XR Interactor XR Direct Interactor XR Ray Interactor XR Socket Interactor XR Gaze Interactor XR Interaction Group 三、XR Interactable 1、组件介绍 2、核心功能与特点 交互类型支…

DeepSeek-R1-Zero:基于基础模型的强化学习

注&#xff1a;此文章内容均节选自充电了么创始人&#xff0c;CEO兼CTO陈敬雷老师的新书《自然语言处理原理与实战》&#xff08;人工智能科学与技术丛书&#xff09;【陈敬雷编著】【清华大学出版社】 文章目录 DeepSeek大模型技术系列四DeepSeek大模型技术系列四》DeepSeek-…

机器学习数学基础:38.复相关系数

一、概念深度解读 复相关系数反映的是几个要素与某一个要素之间的复相关程度&#xff0c;其值介于0到1之间。可以将其类比为一把“尺子”&#xff0c;用来衡量多个因素作为一个整体&#xff0c;对某一特定结果的影响紧密程度。 完全相关情况&#xff1a;当复相关系数为1时&am…