上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页
摘要: Graph Analytics 有哪些类型 node type (labels) node schema: attributes 组成了schema. 同样的, Edge也有 Edge Type 和Edge Schema 如果是一个完整的图,会包含以下信息 weight 权重,比如两点之间的 距离 阅读全文
posted @ 2020-05-17 22:32 mashuai_191 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 安装 quick start kafka 调参,我发现trigger.once 得到大概10w条数据,不知道这个数字怎么定出来的,可能是这里的参数决定的 https://stackoverflow.com/questions/51753883/increase-the-number-of-messa 阅读全文
posted @ 2020-05-15 10:45 mashuai_191 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 命令 Pod 管理 kubectl get pods 查看pod在哪个node上 kubectl get pods -o wide kubectl describe pod pod_name 创建新的pod, 如果直接用命令 kubectl run nginx -image nginx kubect 阅读全文
posted @ 2020-05-14 16:05 mashuai_191 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Graph表示 1. adjacency matrix最简单的一种表示:行是From 列是To, 这种表示是稀疏矩阵 2. 另一种表示,如下图,很多graph数据库用这种,是的数据库操作更有效率 use cases: 其中 Use Case 3 Human Information Network里面 阅读全文
posted @ 2020-05-13 22:42 mashuai_191 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 安装并 hello world https://docs.scala-lang.org/getting-started/sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.html https://towardsdatas 阅读全文
posted @ 2020-04-27 14:24 mashuai_191 阅读(96) 评论(0) 推荐(0) 编辑
摘要: Graph basic terms 里面介绍了常见的一些基本概念,如 directed/undirected, weighted, cyclic/acyclic, Adjacency Matrix, Adjacency list... Ref: https://towardsdatascience. 阅读全文
posted @ 2020-04-23 13:43 mashuai_191 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 本文copy自 Centos7重置Mysql 8.0.1 root 密码 问题产生背景: 安装完 最新版的 mysql8.0.1后忘记了密码,向重置root密码;找了网上好多资料都不尽相同,根据自己的问题总结如下: 第一步:修改配置文件免密码登录mysql vim /etc/my.cnf 1.2 在 阅读全文
posted @ 2020-04-15 10:28 mashuai_191 阅读(868) 评论(0) 推荐(0) 编辑
摘要: HIVE 安装 安装完成的测试 用 hive 客户端前要先起 hive服务: hive --service metastore , 后来测试 hiveserver2 的 beeline客户端也可以用这个服务. 那么问题是 hiveserver2本身的service start起来不能用不知道为什么? 阅读全文
posted @ 2020-04-13 16:12 mashuai_191 阅读(284) 评论(0) 推荐(0) 编辑
摘要: spark 有哪些数据类型 https://spark.apache.org/docs/latest/sql-reference.html Spark 数据类型 Data Types Spark SQL and DataFrames support the following data types: 阅读全文
posted @ 2020-03-27 12:47 mashuai_191 阅读(11221) 评论(0) 推荐(0) 编辑
摘要: 查看Docker Desktop 版本 PS> Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | select DisplayName,DisplayVersion | where {$_.D 阅读全文
posted @ 2020-03-24 14:11 mashuai_191 阅读(8802) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页