会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Robots2
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
8
9
10
11
12
13
14
15
16
···
34
下一页
2023年12月8日
Iceberg Spark存储过程-表治理工具
摘要: 一、简介 存储过程(Procedure)是数据库领域的概念,类似于编程语言中的方法或函数,是对实现特定操作的封装,原生的 Spark SQL 中是不支持存储过程的,Iceberg 0.11.0版本之后对其进行了扩展,并提供了部分存储过程的实现。Iceberg 中提供的所有存储过程都在system n
阅读全文
posted @ 2023-12-08 16:09 Robots2
阅读(763)
评论(0)
推荐(0)
2023年12月5日
spark-sql查询Iceberg时处理流程
摘要: 1、查询表结构 show create table data_lake_ods.test CREATE TABLE spark_catalog.data_lake_ods.test ( `user_number` BIGINT NOT NULL, `subclazz_number` BIGINT N
阅读全文
posted @ 2023-12-05 12:03 Robots2
阅读(329)
评论(0)
推荐(0)
2023年11月30日
Iceberg的Copy on Write和Merge On Read介绍
摘要: 一、默认的Copy on Write Copy no Write模式指的是在进行更新数据时,先将数据拷贝出来进行相应的更新,再替换掉原先的数据 二、Merge On Read读取时合并 在v2版本才支持,Merge on Read的Row-level delete使用了如下概念: delete fi
阅读全文
posted @ 2023-11-30 15:58 Robots2
阅读(948)
评论(0)
推荐(0)
2023年11月27日
Linux安装fastdfs图片服务器
摘要: 1、阿里云安装centos7服务器 得到用户名密码和ip后用securCrt连接工具链接远程主机 2、安装fastdfs图片服务器 (1)上传需要的压缩包 libfastcommon-common.zip(依赖工具包) FastDFS_v5.05.tar.gz(源码) fastdfs-nginx-m
阅读全文
posted @ 2023-11-27 15:43 Robots2
阅读(219)
评论(0)
推荐(0)
Linux编译方式安装redis
摘要: redis安装1、安装gcc-c++编译环境yun install gcc-c++ 2、把redis上传到linux服务器 3、解压缩 tar -zxf redis-3.0.0.tar.gz 4、make 5、安装并指定安装目录 需要创建目录/usr/local/redismake install
阅读全文
posted @ 2023-11-27 15:33 Robots2
阅读(383)
评论(0)
推荐(0)
5.main.js配置
摘要: 1、根目录新建api文件夹 api文件夹分mock(存放虚拟json)和urls(api请求链接) urls 中新建index.js来汇总按分类拆分的url请求文件 2.添加api配置 import installApi from '@/api' // 请求api Vue.use(installAp
阅读全文
posted @ 2023-11-27 15:16 Robots2
阅读(21)
评论(0)
推荐(0)
配置Slf4j
摘要: 1、maven添加 <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency> <dependency> <groupId>o
阅读全文
posted @ 2023-11-27 14:53 Robots2
阅读(158)
评论(0)
推荐(0)
Linux使用堡垒机
摘要: 一、linux系统使用 1. 安装 puttygen sudo apt-get install putty 2. 进入 pem 所在文件执行转换命令 puttygen mykey.pem -o mykey.ppk 即可生成 ppk 文件。 chmod 700 mykey.pem 控制权限才可以用 l
阅读全文
posted @ 2023-11-27 14:50 Robots2
阅读(169)
评论(0)
推荐(0)
tomcat配置https协议
摘要: 1、在jdk的安装目录\bin\keytool.exe下打开keytool.exe 进入控制台执行 keytool -genkeypair -alias "tomcat" -keyalg "RSA" -keystore "/opt/tomcat.keystore" 注意:“名字与姓氏”应该是域名,输
阅读全文
posted @ 2023-11-27 14:40 Robots2
阅读(73)
评论(0)
推荐(0)
pip安装MySQLdb报错mysql_config not found
摘要: 报错EnvironmentError: mysql_config not found解决方法 1、sudo apt-get install python-setuptools 2、sudo apt-get install libmysqld-dev 3、sudo apt-get install li
阅读全文
posted @ 2023-11-27 14:39 Robots2
阅读(150)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
34
下一页
公告