码迷,mamicode.com
首页 >  
搜索关键字:decommissioning data    ( 62430个结果
常见clock tree结构
H tree Clock Mesh 参考: http://aice.sjtu.edu.cn/msda/data/thesis/huangweijian_thesis.pdf ...
分类:其他好文   时间:2020-12-28 11:41:20    阅读次数:0
xxl-job 调度中心
1,下载自己需要的版本 1,https://github.com/xuxueli/xxl-job 2,https://gitee.com/xuxueli0323/xxl-job/releases (墙内推荐) 3,墙内网络推荐使用第二个地址,笔者下 2.2.0 版本 2,整合到自己的项目 将下载好的 ...
分类:其他好文   时间:2020-12-28 11:41:00    阅读次数:0
docker 部署 yapi 接口管理平台
1,创建统一的网络 docker network create --driver bridge --subnet=10.10.0.0/16 --gateway=10.10.0.1 mynet 2,创建 mongodb 容器 version: '3' services: mongodb: image: ...
分类:Windows程序   时间:2020-12-28 11:34:00    阅读次数:0
vue API 知识点(3) --- 实例 总结
一、实例 property 1.vm.$data Vue 实例观察的数据对象,Vue 实例代理了对其 data 对象 property 的的访问 2.vm.$props 当前组件接收到的 props 对象。Vue实例代理了对其 props 对象 property 的访问 3.vm.$el Vue 实 ...
分类:Windows程序   时间:2020-12-28 11:29:52    阅读次数:0
Nginx File Server
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #error_log "pipe:rollba ...
分类:其他好文   时间:2020-12-28 11:28:07    阅读次数:0
LRU cache 实现
前言 LRU 是 Least Recently Used 的简写,字面意思是最近最少使用。 通常用于缓存的淘汰策略实现,由于缓存的内存非常宝贵,所以需要根据某种规则来剔除数据保证内存不被撑满。 代码实现 #ifndef _LRU_CACHE_H_ #define _LRU_CACHE_H_ #inc ...
分类:系统相关   时间:2020-12-28 11:27:33    阅读次数:0
Spring Boot + Layui + Spring Data JPA 实现前后端分离下简单增删改查分页操作
Spring Boot + Layui + Spring Data JPA 实现前后端分离下简单增删改查分页操作 1.项目背景 自己搭着玩,写个小demo 2.项目构成 后端:Spring boot 2.3 JDK1.8 数据库:Spring Data JPA MySQL 5.7.31 前端: La ...
分类:编程语言   时间:2020-12-28 11:04:17    阅读次数:0
SpringBoot 整合 Mongodb 配置的坑
spring: data: mongodb: database: test (自己创建的库) port: 3717 host: aliyun~.com username: username password: 123456 authentication-database: admin 这里有一个大坑 ...
分类:数据库   时间:2020-12-28 11:02:07    阅读次数:0
element ui 左侧导航栏
<el-menu class="left-menu" :default-active="$route.name" :unique-opened="true" :collapse="isCollapse"> <template v-for="(m, x) in menuOpts.data" > <el ...
分类:其他好文   时间:2020-12-28 10:57:57    阅读次数:0
大表数据过滤查询很慢
一、问题描述 查询的语句类似如下: select * from table_name where xxx='yyy' limit 10; 当前的hive表存储格式是orc格式,执行引擎是tez,并行度也已经调整到几十了,但是在执行这个sql的时候,发现一直卡住,执行不成功。 二、问题现象 and 分 ...
分类:其他好文   时间:2020-12-25 13:03:17    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!