码迷,mamicode.com
首页 >  
搜索关键字:datastore    ( 109个结果
zun 不能创建 docker 容器,报错: datastore for scope "global" is not initialized
问题:zun不能创建docker容器,报错:datastore for scope "global" is not initialized 解决:修改docker 服务配置文件: [root@node-172-19-15-230 ~]# cat /usr/lib/systemd/system/doc ...
分类:其他好文   时间:2018-05-28 13:43:30    阅读次数:368
ESXi 6.5 unmap的bug和workaround
豆子最近升级了一下Nimble的存储系统,创建了一个新的LUN,通过ISCSI添加新的datastore,然后在ESXi6.5上面执行了一个StorageVmotion的操作。整个过程都很顺畅,大概迁徙了10T的数据到这个新的LUN上。然后问题出现了。VSphereVCenter上显示原先的Datastore已经清空了,但是在我的LUN上,仍然显示占据了6.6T的存储空间!在ESXI6里面,这个问
分类:其他好文   时间:2018-04-24 11:08:07    阅读次数:474
org.mongodb.morphia.query.QueryException: sorting is not allowed for updates.
代码: public UpdateResults updateProductByChannel(String channelId, String channelName){ Query<PixelProductModel> query = datastore.createQuery(PixelPro ...
分类:数据库   时间:2018-04-02 20:05:30    阅读次数:183
VMWare 修改虚拟机的swap文件
大早上我的一个墨尔本的同事就在折腾虚拟机,他试图把一个5T的虚拟机的磁盘文件扩建到10T,这个本来是个很容易的事情,但是他试图把datastore上的所有剩余空间都分配进去,然后造成的结果就是没法开机了!错误提示很明显,空间不足,没法创建swap文件。看看剩余空间,还剩11g比较尴尬的是这个datastore对应的LUN是在Nimble上面创建的,这个LUN上还开启了dedup和compress的
分类:系统相关   时间:2018-03-16 10:31:30    阅读次数:1405
DataCleaner第一章
Part1. Introduction to DataCleaner 介绍DataCleaner |--What is data quality(DQ) 数据质量? |--What is data profiling? 数据分析? |--What is datastore? 数据存储? Compos ...
分类:其他好文   时间:2018-03-07 01:01:15    阅读次数:274
PowerCLI
最近需要用命令行操作VMWare,现将一些经常用的命令记录一下。安装VMWare命令很简单,不再像原来需要单独下载PowerCLI安装包,直接在Powershell Gallery里在线安装即可。 # 连接 Connect-VIServer -Server prod-corp-vc # 克隆虚拟机 ...
分类:其他好文   时间:2018-01-22 19:19:01    阅读次数:202
JavaScript数据结构与算法-字典练习
字典的实现 // 字典类 function Dictionary () { this.add = add; this.dataStore = new Array(); this.find = find; this.remove = remove; this.showAll = showAll; th ...
分类:编程语言   时间:2018-01-21 01:11:41    阅读次数:164
JavaScript数据结构与算法-队列练习
队列的实现 // 队列类 function Deque () { this.dataStore = []; this.enqueueFront = enqueueFront; this.enqueueBack = enqueueBack; this.dequeueFront = dequeueFro ...
分类:编程语言   时间:2018-01-21 01:11:17    阅读次数:176
Set of js
function Set() { this.dataStore = []; }; Set.prototype = { constructor: Set, add: function (data) { if (this.dataStore.indexOf(data) -1) { this.dataSt... ...
分类:Web程序   时间:2017-11-08 19:53:45    阅读次数:162
Dictionary of js
function Dictionary() { this.datastore = new Array(); }; Dictionary.prototype = { constructor: Dictionary, add: function(key, value) { this.datastore[... ...
分类:Web程序   时间:2017-11-08 13:08:31    阅读次数:176
109条   上一页 1 2 3 4 5 6 ... 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!