基于Prometheus的监控系统实践

news/2024/11/27 8:47:42/

监控作为底层基础设施的一环,是保障生产环境服务稳定性不可或缺的一部分,线上问题从发现到定位再到解决,通过监控和告警手段可以有效地覆盖了「发现」和「定位」,甚至可以通过故障自愈等手段实现解决,服务开发和运维人员能及时有效地发现服务运行的异常,从而更有效率地排查和解决问题。

一个典型的监控(如白盒监控),通常会关注于目标服务的内部状态,例如:

  • 单位时间接收到的请求数量

  • 单位时间内请求的成功率/失败率

  • 请求的平均处理耗时

白盒监控很好地描述了系统的内部状态,但缺少从外部角度看到的现象,比如:白盒监控只能看到已经接收的请求,并不能看到由于DNS故障导致没有发送成功的请求,而黑盒监控此时便可以作为补充手段,由探针(probe)程序来探测目标服务是否成功返回,更好地反馈系统的当前状态。

某日需要为服务搭建一个监控系统来采集应用埋点上报的指标,经过一番对比,最终选择了Prometheus来作为我们的业务监控,因为它具有以下优点:

  • 支持PromQL(一种查询语言),可以灵活地聚合指标数据

  • 部署简单,只需要一个二进制文件就能跑起来,不需要依赖分布式存储

  • Go语言编写,组件更方便集成在同样是Go编写项目代码中

  • 原生自带WebUI,通过PromQL渲染时间序列到面板上

  • 生态组件众多,Alertmanager,Pushgateway,Exporter……

Prometheus的架构图如下:

在上面流程中,Prometheus通过配置文件中指定的服务发现方式来确定要拉取监控指标的目标(Target),接着从要拉取的目标(应用容器和Pushgateway)发起HTTP请求到特定的端点(Metric Path),将指标持久化至本身的TSDB中,TSDB最终会把内存中的时间序列压缩落到硬盘,除此之外,Prometheus会定期通过PromQL计算设置好的告警规则,决定是否生成告警到Alertmanager,后者接收到告警后会负责把通知发送到邮件或企业内部群聊中。

Prometheus的指标名称只能由 ASCII 字符、数字、下划线以及冒号组成,而且有一套命名规范:

  • 使用基础Unit(如seconds而非milliseconds)

  • 指标名以application namespace作为前缀,如:

    • process_cpu_seconds_total

    • http_request_duration_seconds

  • 用后缀来描述Unit,如:

    • http_request_duration_seconds

    • node_memory_usage_bytes

    • http_requests_total

    • process_cpu_seconds_total

    • foobar_build_info

Prometheus提供了以下基本的指标类型:

  • Counter:代表一种样本数据单调递增的指标,即只增不减,通常用来统计如服务的请求数,错误数等。

  • Gauge:代表一种样本数据可以任意变化的指标,即可增可减,通常用来统计如服务的CPU使用值,内存占用值等。

  • Histogram和Summary:用于表示一段时间内的数据采样和点分位图统计结果,通常用来统计请求耗时或响应大小等。

Prometheus是基于时间序列存储的,首先了解一下什么是时间序列,时间序列的格式类似于(timestamp,value)这种格式,即一个时间点拥有一个对应值,例如生活中很常见的天气预报,如:[(14:00, 27℃),(15:00,28℃),(16:00,26℃)],就是一个单维的时间序列,这种按照时间戳和值存放的序列也被称之为向量(vector)。

再来举另一个例子,如上图所示,假如有一个指标http_requests,它的作用是统计每个时间段对应的总请求量是多少,这时候它即为上面提到的是一个单维矩阵,而当我们给这个指标加上一个维度:主机名,这时候这个指标的作用就变成了统计每个时间段各个主机名对应的请求量是多少,这时候这个矩阵区域就变成拥有多列向量(每一列对应一个主机名)的时间序列,当给这个时间序列再添加多个标签(key=value)时,这个矩阵就相应会变成一个多维矩阵。

每一组唯一的标签集合对应着一个唯一的向量(vector),也可叫做一个时间序列(Time Serie),当在某一个时间点来看它时,它是一个瞬时向量(Instant Vector),瞬时向量的时序只有一个时间点以及它对于的一个值,比如:今天 12:05:30 时服务器的 CPU 负载;而在一个时间段来看它时,它是一个范围向量(Range Vector),范围向量对于着一组时序数据,比如:今天11:00到12:00时服务器的CPU负载。

类似的,可以通过指标名和标签集来查询符合条件的时间序列:

http_requests{host="host1",service="web",code="200",env="test"}

查询结果会是一个瞬时向量:

http_requests{host="host1",service="web",code="200",env="test"} 10
http_requests{host="host2",service="web",code="200",env="test"} 0
http_requests{host="host3",service="web",code="200",env="test"} 12

而如果给这个条件加上一个时间参数,查询一段时间内的时间序列:

http_requests{host="host1",service="web",code="200",env="test"}[:5m]

结果将会是一个范围向量:

http_requests{host="host1",service="web",code="200",env="test"} 0 4 6 8 10
http_requests{host="host2",service="web",code="200",env="test"} 0 0 0 0 0
http_requests{host="host3",service="web",code="200",env="test"} 0 2 5 9 12

拥有了范围向量,我们是否可以针对这些时间序列进行一些聚合运算呢?没错,PromQL就是这么干的,比如我们要算最近5分钟的请求增长速率,就可以拿上面的范围向量加上聚合函数来做运算:

rate(http_requests{host="host1",service="web",code="200",env="test"}[:5m])

比如要求最近5分钟请求的增长量,可以用以下的PromQL:

increase(http_requests{host="host1",service="web",code="200",env="test"}[:5m])

要计算过去10分钟内第90个百分位数:

histogram_quantile(0.9, rate(employee_age_bucket_bucket[10m]))

在Prometheus中,一个指标(即拥有唯一的标签集的metric)和一个(timestamp,value)组成了一个样本(sample),Prometheus将采集的样本放到内存中,默认每隔2小时将数据压缩成一个block,持久化到硬盘中,样本的数量越多,Prometheus占用的内存就越高,因此在实践中,一般不建议用区分度(cardinality)太高的标签,比如:用户IP,ID,URL地址等等,否则结果会造成时间序列数以指数级别增长(label数量相乘)。除了控制样本数量和大小合理之外,还可以通过降低storage.tsdb.min-block-duration来加快数据落盘时间和增加scrape interval的值提高拉取间隔来控制Prometheus的占用内存。

通过声明配置文件中的scrape_configs来指定Prometheus在运行时需要拉取指标的目标,目标实例需要实现一个可以被Prometheus进行轮询的端点,而要实现一个这样的接口,可以用来给Prometheus提供监控样本数据的独立程序一般被称作为Exporter,比如用来拉取操作系统指标的Node Exporter,它会从操作系统上收集硬件指标,供Prometheus来拉取。

在开发环境,往往只需要部署一个Prometheus实例便可以满足数十万指标的收集。但在生产环境中,应用和服务实例数量众多,只部署一个Prometheus实例通常是不够的,比较好的做法是部署多个Prometheus实例,每个实例通过分区只拉取一部分指标,例如Prometheus Relabel配置中的hashmod功能,可以对拉取目标的地址进行hashmod,再将结果匹配自身ID的目标保留:

relabel_configs:
- source_labels: [__address__]modulus:       3target_label:  __tmp_hashaction:        hashmod
- source_labels: [__tmp_hash]regex:         $(PROM_ID)action:        keep

或者说,我们想让每个Prometheus拉取一个集群的指标,一样可以用Relabel来完成:

relabel_configs:
- source_labels:  ["__meta_consul_dc"]regex: "dc1"action: keep

现在每个Prometheus都有各自的数据了,那么怎么把他们关联起来,建立一个全局的视图呢?官方提供了一个做法:联邦集群(federation),即把Prometheuse Server按照树状结构进行分层,根节点方向的Prometheus将查询叶子节点的Prometheus实例,再将指标聚合返回。

联邦集群

不过显然易见的时,使用联邦集群依然不能解决问题,首先单点问题依然存在,根节点挂了的话查询将会变得不可用,如果配置多个父节点的话又会造成数据冗余和抓取时机导致数据不一致等问题,而且叶子节点目标数量太多时,更加会容易使父节点压力增大以至打满宕机,除此之外规则配置管理也是个大麻烦。

还好社区出现了一个Prometheus的集群解决方案:Thanos,它提供了全局查询视图,可以从多台Prometheus查询和聚合数据,因为所有这些数据均可以从单个端点获取。

Thanos

  • Querier收到一个请求时,它会向相关的Sidecar发送请求,并从他们的Prometheus服务器获取时间序列数据。

  • 它将这些响应的数据聚合在一起,并对它们执行PromQL查询。它可以聚合不相交的数据也可以针对Prometheus的高可用组进行数据去重。

有了Thanos之后,Prometheus的水平扩展就能变得更加简单,不仅如此,Thanos还提供了可靠的数据存储方案,可以监听和备份prometheus本地数据到远程存储。另外,由于Thanos提供了Prometheus集群的全局视图,那么针对全局Prometheus的记录规则也不是问题,Thanos提供的Ruler组件,会基于Thanos Querier执行规则并发出告警。

再来说到存储,Prometheus查询的高可用可以通过水平扩展+统一查询视图的方式解决,那么存储的高可用要怎么解决呢?在Prometheus的设计中,数据是以本地存储的方式进行持久化的,虽然本地持久化方便,当也会带来一些麻烦,比如节点挂了或者Prometheus被调度到其他节点上,就会意味着原节点上的监控数据在查询接口中丢失,本地存储导致了Prometheus无法弹性扩展,为此Prometheus提供了Remote Read和Remote Write功能,支持把Prometheus的时间序列远程写入到远端存储中,查询时可以从远端存储中读取数据。

其中一个例子中就是M3DB,M3DB是一个分布式的时间序列数据库,它提供了Prometheus的远程读写接口,当一个时间序列写入到M3DB集群后会按照分片(Shard)和复制(Replication Factor)参数把数据复制到集群的其他节点上,实现存储高可用。除了M3DB外,Prometheus目前还支持InfluxDB、OpenTSDB等作为远程写的端点。

解决了Prometheus的高可用,再来关注一下Prometheus如何对监控目标进行采集,当监控节点数量较小时,可以通过Static Config将目标主机列表写到Prometheus的拉取配置中,但如果目标节点一多的话这种方式管理便有很大问题了,而且在生产环境中,服务实例的IP通常不是固定的,这时候用静态配置就没办法对目标节点进行有效管理,这时候Prometheus提供的服务发现功能便可以有效解决监控节点状态变化的问题,在这种模式下,Prometheus会到注册中心监听查询节点列表,定期对节点进行指标的拉取。如果对服务发现有更灵活的需求,Prometheus也支持基于文件的服务发现功能,这时候我们可以从多个注册中心中获取节点列表,再通过自己的需求进行过滤,最终写入到文件,这时候Prometheus检测到文件变化后便能动态地替换监控节点,再去拉取目标了。

前面看到Prometheus都是以拉模式定期对目标节点进行抓取的,那假如有一种情况是一些任务节点还没来得及被拉取就运行完退出了,这时候监控数据就会丢失,为了应对这种情况,Prometheus提供了一个工具:Pushgateway,用来接收来自服务的主动上报,它适用于那些短暂存活的批量任务来将指标推送并暂存到自身上,借着再由Prometheus来拉取自身,以防止指标还没来得及被Prometheus拉取便退出。除此以外Pushgateway也适用于在Prometheus与应用节点运行在异构网络或被防火墙隔绝时,无法主动拉取节点的问题,在这种情况下应用节点可以通过使用Pushgateway的域名将指标推送到Pushgateway实例上,Prometheus就可以拉取同网络下的Pushgateway节点了,另外配置拉取Pushgateway时要注意一个问题:Prometheus会把每个指标赋予job和instance标签,当Prometheus拉取Pushgateway时,job和instance则可能分别是Pushgateway和Pushgateway主机的IP,当pushgateway上报的指标中也包含job和instance标签时,Prometheus会把冲突的标签重命名为exported_job和exported_instance,如果需要覆盖这两个标签的话,需要在Prometheus中配置honor_labels: true。

Pushgateway可以替代拉模型来作为指标的收集方案,但在这种模式下会带来许多负面影响:

  • Pushgateway被设计为一个监控指标的缓存,这意味着它不会主动过期服务上报的指标,这种情况在服务一直运行的时候不会有问题,但当服务被重新调度或销毁时,Pushgateway依然会保留着之前节点上报的指标。而且,假如多个Pushgateway运行在LB下,会造成一个监控指标有可能出现在多个Pushgateway的实例上,造成数据重复多份,需要在代理层加入一致性哈希路由来解决

  • 在拉模式下,Prometheus可以更容易的查看监控目标实例的健康状态,并且可以快速定位故障,但在推模式下,由于不会对客户端进行主动探测,因此对目标实例的健康状态也变得一无所知

最后再来聊一下Alertmanager,简单说Alertmanager是与Prometheus分离的告警组件,主要接收Promethues发送过来的告警事件,然后对告警进行去重,分组,抑制和发送,在实际中可以搭配webhook把告警通知发送到企业微信或钉钉上,其架构图如下:

最后的最后再来尝试一下用Kubernetes来搭建一套Prometheus的监控系统,关于Kubernetes也是摸爬滚打折腾了一周才清楚怎么使用的,虽然Promehteus已经有官方的Operator了,但是为了学习都用手动编写yaml文件,整个完成下来发现还是挺方便的,而且只需要用几个实例就可以完成收集监控200+服务数千个实例的业务指标。

为了部署Prometheus实例,需要声明Prometheus的StatefulSet,Pod中包括了三个容器,分别是Prometheus以及绑定的Thanos Sidecar,最后再加入一个watch容器,来监听prometheus配置文件的变化,当修改ConfigMap时就可以自动调用Prometheus的Reload API完成配置加载,这里按照之前提到的数据分区的方式,在Prometheus启动前加入一个环境变量PROM_ID,作为Relabel时hashmod的标识,而POD_NAME用作Thanos Sidecar给Prometheus指定的external_labels.replica来使用:

apiVersion: apps/v1
kind: StatefulSet
metadata:name: prometheuslabels:app: prometheus
spec:serviceName: "prometheus"updateStrategy:type: RollingUpdatereplicas: 3selector:matchLabels:app: prometheustemplate:metadata:labels:app: prometheusthanos-store-api: "true"spec:serviceAccountName: prometheusvolumes:- name: prometheus-configconfigMap:name: prometheus-config- name: prometheus-datahostPath:path: /data/prometheus- name: prometheus-config-sharedemptyDir: {}containers:- name: prometheusimage: prom/prometheus:v2.11.1args:- --config.file=/etc/prometheus-shared/prometheus.yml- --web.enable-lifecycle- --storage.tsdb.path=/data/prometheus- --storage.tsdb.retention=2w- --storage.tsdb.min-block-duration=2h- --storage.tsdb.max-block-duration=2h- --web.enable-admin-apiports:- name: httpcontainerPort: 9090volumeMounts:- name: prometheus-config-sharedmountPath: /etc/prometheus-shared- name: prometheus-datamountPath: /data/prometheuslivenessProbe:httpGet:path: /-/healthyport: http- name: watchimage: watchargs: ["-v", "-t", "-p=/etc/prometheus-shared", "curl", "-X", "POST", "--fail", "-o", "-", "-sS", "http://localhost:9090/-/reload"]volumeMounts:- name: prometheus-config-sharedmountPath: /etc/prometheus-shared- name: thanosimage: improbable/thanos:v0.6.0command: ["/bin/sh", "-c"]args:- PROM_ID=`echo $POD_NAME| rev | cut -d '-' -f1` /bin/thanos sidecar--prometheus.url=http://localhost:9090--reloader.config-file=/etc/prometheus/prometheus.yml.tmpl--reloader.config-envsubst-file=/etc/prometheus-shared/prometheus.ymlenv:- name: POD_NAMEvalueFrom:fieldRef:fieldPath: metadata.nameports:- name: http-sidecarcontainerPort: 10902- name: grpccontainerPort: 10901volumeMounts:- name: prometheus-configmountPath: /etc/prometheus- name: prometheus-config-sharedmountPath: /etc/prometheus-shared

因为Prometheus默认是没办法访问Kubernetes中的集群资源的,因此需要为之分配RBAC:

apiVersion: v1
kind: ServiceAccount
metadata:name: prometheus
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:name: prometheusnamespace: defaultlabels:app: prometheus
rules:
- apiGroups: [""]resources: ["services", "pods", "nodes", "nodes/proxy", "endpoints"]verbs: ["get", "list", "watch"]
- apiGroups: [""]resources: ["configmaps"]verbs: ["create"]
- apiGroups: [""]resources: ["configmaps"]resourceNames: ["prometheus-config"]verbs: ["get", "update", "delete"]
- nonResourceURLs: ["/metrics"]verbs: ["get"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:name: prometheusnamespace: defaultlabels:app: prometheus
subjects:
- kind: ServiceAccountname: prometheusnamespace: default
roleRef:kind: ClusterRolename: prometheusapiGroup: ""

接着Thanos Querier的部署比较简单,需要在启动时指定store的参数为dnssrv+thanos-store-gateway.default.svc来发现Sidecar:

apiVersion: apps/v1
kind: Deployment
metadata:labels:app: thanos-queryname: thanos-query
spec:replicas: 2selector:matchLabels:app: thanos-queryminReadySeconds: 5strategy:type: RollingUpdaterollingUpdate:maxSurge: 1maxUnavailable: 1template:metadata:labels:app: thanos-queryspec:containers:- args:- query- --log.level=debug- --query.timeout=2m- --query.max-concurrent=20- --query.replica-label=replica- --query.auto-downsampling- --store=dnssrv+thanos-store-gateway.default.svc- --store.sd-dns-interval=30simage: improbable/thanos:v0.6.0name: thanos-queryports:- containerPort: 10902name: http- containerPort: 10901name: grpclivenessProbe:httpGet:path: /-/healthyport: http
---
apiVersion: v1
kind: Service
metadata:labels:app: thanos-queryname: thanos-query
spec:type: LoadBalancerports:- name: httpport: 10901targetPort: httpselector:app: thanos-query
---
apiVersion: v1
kind: Service
metadata:labels:thanos-store-api: "true"name: thanos-store-gateway
spec:type: ClusterIPclusterIP: Noneports:- name: grpcport: 10901targetPort: grpcselector:thanos-store-api: "true"

部署Thanos Ruler:

apiVersion: apps/v1
kind: Deployment
metadata:labels:app: thanos-rulename: thanos-rule
spec:replicas: 1selector:matchLabels:app: thanos-ruletemplate:metadata:labels:labels:app: thanos-rulespec:containers:- name: thanos-ruleimage: improbable/thanos:v0.6.0args:- rule- --web.route-prefix=/rule- --web.external-prefix=/rule- --log.level=debug- --eval-interval=15s- --rule-file=/etc/rules/thanos-rule.yml- --query=dnssrv+thanos-query.default.svc- --alertmanagers.url=dns+http://alertmanager.defaultports:- containerPort: 10902name: httpvolumeMounts:- name: thanos-rule-configmountPath: /etc/rulesvolumes:- name: thanos-rule-configconfigMap:name: thanos-rule-config

部署Pushgateway:

apiVersion: apps/v1
kind: Deployment
metadata:labels:app: pushgatewayname: pushgateway
spec:replicas: 15selector:matchLabels:app: pushgatewaytemplate:metadata:labels:app: pushgatewayspec:containers:- image: prom/pushgateway:v1.0.0name: pushgatewayports:- containerPort: 9091name: httpresources:limits:memory: 1Girequests:memory: 512Mi
---
apiVersion: v1
kind: Service
metadata:labels:app: pushgatewayname: pushgateway
spec:type: LoadBalancerports:- name: httpport: 9091targetPort: httpselector:app: pushgateway

部署Alertmanager:

apiVersion: apps/v1
kind: Deployment
metadata:name: alertmanager
spec:replicas: 3selector:matchLabels:app: alertmanagertemplate:metadata:name: alertmanagerlabels:app: alertmanagerspec:containers:- name: alertmanagerimage: prom/alertmanager:latestargs:- --web.route-prefix=/alertmanager- --config.file=/etc/alertmanager/config.yml- --storage.path=/alertmanager- --cluster.listen-address=0.0.0.0:8001- --cluster.peer=alertmanager-peers.default:8001ports:- name: alertmanagercontainerPort: 9093volumeMounts:- name: alertmanager-configmountPath: /etc/alertmanager- name: alertmanagermountPath: /alertmanagervolumes:- name: alertmanager-configconfigMap:name: alertmanager-config- name: alertmanageremptyDir: {}
---
apiVersion: v1
kind: Service
metadata:labels:name: alertmanager-peersname: alertmanager-peers
spec:type: ClusterIPclusterIP: Noneselector:app: alertmanagerports:- name: alertmanagerprotocol: TCPport: 9093targetPort: 9093

最后部署一下Ingress,大功告成:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:name: pushgateway-ingressannotations:kubernetes.io/ingress.class: "nginx"nginx.ingress.kubernetes.io/upstream-hash-by: "$request_uri"nginx.ingress.kubernetes.io/ssl-redirect: "false"
spec:rules:- host: $(DOMAIN)http:paths:- backend:serviceName: pushgatewayservicePort: 9091path: /metrics
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:name: prometheus-ingressannotations:kubernetes.io/ingress.class: "nginx"
spec:rules:- host: $(DOMAIN)http:paths:- backend:serviceName: thanos-queryservicePort: 10901path: /- backend:serviceName: alertmanagerservicePort: 9093path: /alertmanager- backend:serviceName: thanos-ruleservicePort: 10092path: /rule- backend:serviceName: grafanaservicePort: 3000path: /grafana

访问Prometheus地址,监控节点状态正常:

原文链接:https://zhuanlan.zhihu.com/p/101184971

Kubernetes实战培训

Kubernetes实战培训将于2020年12月25日在深圳开课,3天时间带你系统掌握Kubernetes,学习效果不好可以继续学习。本次培训包括:云原生介绍、微服务;Docker基础、Docker工作原理、镜像、网络、存储、数据卷、安全;Kubernetes架构、核心组件、常用对象、网络、存储、认证、服务发现、调度和服务质量保证、日志、监控、告警、Helm、实践案例等,点击下方图片或者阅读原文链接查看详情。


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

相关文章

Prometheus完整搭建及实战各种监控

一.Prometheus介绍 Prometheus(普罗米修斯)是一个最初在SoundCloud上构建的监控系统。自2012年成为社区开源项目,拥有非常活跃的开发人员和用户社区。为强调开源及独立维护,Prometheus于2016年加入云原生云计算基金会(…

远程管理

一、远程管理 1.系统服务 定义:系统服务(system service)是一种应用程序类型,服务已一经启动,除非因为关闭系统或者管理者手动结束服务,否则就会后台执行。 特点:占用系统资源较多,响应速度较快。 2.临时服务 定义:临时服务平时并不会启动,而是当客户端请求时才…

多集群监控-thanos

thanos 文章目录 thanosprometheus多集群监控方案prometheus联邦联邦实现联邦方案的不足 ThanosThanos的实现SidercarQuerierDeduplication EnabledAuto downsamplingPartial Response Strategy StoreCompactor thanos的服务发现thanos支持的对象存储列表相关参考 ​ 为了解决p…

c# websocker server client

示例程序的主要功能,服务端不停的发送字符串,客户端接收字符串。 服务端,使用Fleck组件,通过nuget方式引用,控制台程序。 using System; using System.Collections.Generic; using System.Linq; using System.Text; u…

SpringBoot中的yml文件中读取自定义配置信息

SpringBoot中的yml文件中读取自定义配置信息 开发中遇到的问题,百度的答案我都没有找到,去找大佬获取到的经验总结,这只是其中的一种方法,如果其他大佬有新的方法,可以分享分享。 一、非静态属性 1.1 yml文件 自定…

Python 教程:从零到大师

首先, 什么是Python? 用python作者Guido van Rossum自己的话来说,Python是这样的一门语言: "它是一门高级编程语言, 它的核心设计理念是让所有代码变得更易阅读,并给开发者们提供一种“仅仅几行代码就能编写编程逻辑”的语法。 那么&am…

分子碰撞频率和自由程------从一个物理小问题解剖自己的数学思维

物理学12-8节中,关于分子平均碰撞的解说如下: (一)分子碰撞自由程公式 第一个公式中,lamda v / z中,v的单位是m/s, z的单位是A/s, 其中A是常数。那么lamda描述的结果是m/A, 这正是长度单位。 此公式lamda…

研究生基本的学习规划

基本的学习规划,供你参考: 1. 确定研究方向和课程选择 研究不同的研究领域和方向,选择符合自己兴趣和目标的研究方向了解研究生课程设置,选择适合自己研究方向的核心课程和选修课程 2. 深入研究和文献调研 阅读相关领域的经典…