spark sql 默认写的文件格式
如果是hive 表,走的是这里 def getDefaultStorage(conf: SQLConf): CatalogStorageFormat {// To respect hive-site.xml, it peeks Hadoop configuration from existing Spark session,// as an easy workaround. See SPARK-27555.va…
0 Preface/Foreword 1、安装VScode
官网:Download Visual Studio Code - Mac, Linux, Windows
文档:Documentation for Visual Studio Code
1.1 优点 Intelligent code completion: code smarter with intellisense - completions for variables, me…
[NOIP2001 提高组] 数的划分
题目描述
将整数 n n n 分成 k k k 份,且每份不能为空,任意两个方案不相同(不考虑顺序)。
例如: n 7 n7 n7, k 3 k3 k3,下面三种分法被认为是相同的。 1 , 1…
MySQL的内部组件结构
MySQL 可以分为 Server 层和存储引擎层两部分。
Server 层主要包括连接器、查询缓存、分析器、优化器、执行器等,涵盖 MySQL 的大多数核心服务功能,以及所有的内置函数(如日期、时间、数学和加密函数等)&am…
259.较小的三数之和 方法:排序双指针
class Solution {public int threeSumSmaller(int[] nums, int target) {Arrays.sort(nums);int k 0;for(int i 0;i<nums.length;i){int start i 1,end nums.length - 1;while(start < end){int sum nums[start] …