首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏数据分析与挖掘

    卷积骚操作-Split to Be Slim: An Overlooked Redundancy in Vanilla Convolution

    Code: https://github.com/qiulinzhang/SPConv.pytorch

    87410发布于 2020-08-26
  • 来自专栏数据和云

    深入解析:ASM Normal Redundancy谁完成数据镜像IO?

    前几天,一些朋友讨论ASM中提出一个问题: 如果是NORMAL redundancy磁盘组,数据的镜像是由oracle rdbms进程完成,还是由ASM的进程完成? 我们知道,ASM NORMAL REDUNDANCY磁盘组类似于RAID 10的操作,也就是镜像+条带化。 具体测试如下: 首先,我们创建一个normal redundancy的磁盘组,用来存放数据库的redo,比如 +REDODG: 这个两个磁盘的failure group的信息如下: 磁盘信息和权限如下

    1.3K60发布于 2018-03-06
  • 来自专栏网络技术联盟站

    华为路由交换技术 | 虚拟网关冗余协议VRRP(Virtual Router Redundancy Protocol)介绍

    ,原创不易,坚持更不易,希望我的每一份劳动成果都可以得到大家的一个【在看】 interface Serial4/0/0没有配置链路捆绑之前 VRRP:虚拟网关冗余协议 Virtual Router Redundancy

    1.7K20发布于 2019-07-23
  • 来自专栏沃趣科技

    Oracle 12c ASM专题|Flex磁盘组到底有多Fexible?

    在进行操作之前,我们先看下里面的内容: SQL> select file_number,bytes,space,type,redundancy,redundancy_lowered,striped,remirror 让我们用文档上的例子,来改变6号文件组的属性: SQL> alter diskgroup flex modify filegroup PDB1_0001 set 'datafile.redundancy 注意:312号文件的冗余度依然为normal,想想也对,我们修改的是datafile.redundancy,而312号文件是临时文件。 SQL> select file_number,bytes,space,type,redundancy,redundancy_lowered,striped,remirror 2 from v$asm_file SQL> select file_number,bytes,space,type,redundancy,redundancy_lowered,striped,remirror 2 from v$asm_file

    1.1K60发布于 2018-03-26
  • 来自专栏一个积极学习的IT界小学生

    GlusterFs使用解析,关于新版本部分Volume模式废弃!!

    关于分散模式: Redundancy 每个Dispersed Volume都具有在创建卷时定义的Redundancy值。此值确定在不中断卷操作的情况下可以丢失多少Bricks。 值得注意的是,具有3个Bricks和Redundancy1的配置将比具有10个Bricks和Redundancy1(90%)的配置具有更少的可用空间(占总物理空间的66.7%)。 分散卷的当前实现使用的块大小取决于Bricks数和Redundancy:512 *(#Bricks - redundancy)字节。该值也称为strip大小。 Do you want to create the volume with redundancy 1 ? (y/n) 如果未指定Redundancy,则会自动计算为最佳值。 (y/n) 在自动计算Redundancy并且不等于“1”的所有情况下,都会显示一条警告消息 Redundancy必须大于0,并且Bricks的总数必须大于2 * Redundancy

    1.6K00发布于 2018-12-22
  • 来自专栏奕知伴解

    Juniper SRX通用手册

    0 node 0 priority 100 set chassis cluster redundancy-group 0 node 1 priority 1 set chassis cluster redundancy-group 1 node 0 priority 100 set chassis cluster redundancy-group 1 node 1 priority 1 set chassis cluster redundancy-group 1 interface-monitor ge-0/0/3 weight 255 set chassis cluster redundancy-group 1 interface-monitor ge- chassis cluster redundancy-group 0 node 1 priority 100 set chassis cluster redundancy-group 1 node 0 cluster redundancy-group 1 interface-monitor ge-0/0/4 set chassis cluster redundancy-group 1 interface-monitor

    4.3K31发布于 2019-11-29
  • 来自专栏公众号:Lucifer三思而后行

    ASM变迁以及总结(10G-->19C)

    minimum number of disks and the minimum disk space requirements for installing the starter database: Redundancy Table 3-5 Total Oracle Clusterware Storage Space Required by Redundancy Type Redundancy Level Minimum Table 3-6 Total Oracle Database Storage Space Required by Redundancy Type Redundancy Level Minimum Number Table 8-1 Oracle ASM Disk Space Minimum Requirements for Oracle Database Redundancy Level Minimum number disk '/devices/disks/c*'; 例2 sqlplus / as sysasm create diskgroup DATADG external redundancy disk '/

    1.7K21发布于 2021-08-17
  • 来自专栏DATABASE

    Oracle RMAN 基础配置和常用命令

    product/11.2.0/db/dbs/snapcf_orcl.f'; # default修改备份保留策略#配置备份冗余度为 2RMAN> CONFIGURE RETENTION POLICY TO redundancy 2;new RMAN configuration parameters:CONFIGURE RETENTION POLICY TO REDUNDANCY 2;new RMAN configuration POLICY TO recovery window of 7 days;old RMAN configuration parameters:CONFIGURE RETENTION POLICY TO REDUNDANCY 2 database;report need backup redundancy=2;## 报告文件报表的恢复需要超过6天的归档日志的数据文件report need backup recovery window of 6 days;## 报告数据库所有不可恢复的数据文件report unrecoverable;## 报告备份次数超过2次的陈旧备份report obsolete redundancy 2;##

    1.6K30编辑于 2022-06-17
  • 来自专栏时悦的学习笔记

    [Oracle ASM全解析] asmcmd管理模板

    通过grid用户进入 ASM模板相关命令 [Oracle ASM全解析] 管理磁盘组模板 1.1 chtmpl 该命令改变一个模板的属性 ASMCMD [+] > chtmpl -G data --redundancy fine mytemplate 1.2 lstmpl 该命令列出所有磁盘组或者指定磁盘组的模板 1.3 mktmpl 该命令增加一个模板到磁盘组 ASMCMD [+] > mktmpl -G data --redundancy

    1.1K30发布于 2020-08-19
  • 来自专栏沃趣科技

    ASM 翻译系列第二十八弹:ASM INTERNAL Partnership and Status Table

    请看下面的例子,注意这个被创建的磁盘组是由5个磁盘组成: 创建外部冗余的磁盘组 SQL> CREATE DISKGROUP DG1 EXTERNAL REDUNDANCY DISK '/dev/sdc5 查看asm的alert日志 Sat Aug 31 20:44:59 2013 SQL> CREATE DISKGROUP DG1 EXTERNAL REDUNDANCY DISK '/dev/sdc5' SQL> CREATE DISKGROUP DG1 NORMAL REDUNDANCY DISK '/dev/sdc5', '/dev/sdc6', '/dev/sdc7', '/dev/sdc8', 查看ASM的alert日志: Sat Aug 31 20:49:28 2013 SQL> CREATE DISKGROUP DG1 NORMAL REDUNDANCY DISK '/dev/sdc5', High redundancy disk group SQL> drop diskgroup DG1; Diskgroup dropped.

    1.1K60发布于 2018-03-23
  • 来自专栏CreateAMind

    deepmind 做通用人工智能的思路

    视觉脑神经启发 By enforcing redundancy reduction, encouraging statistical independence, and exposure to data constraints to the model as have been suggested to act in the ventral visual stream in the brain [28]: redundancy are the following: 1) we show the importance of neuroscience inspired constraints (data continuity, redundancy

    73020发布于 2018-07-25
  • 来自专栏哲学驱动设计

    OEA ORM 框架中的冗余属性设计

    以下,给出相关的单元测试(以下测试基于上述引用链条:E->D->C->B->A.AName): [TestMethod] public void MPT_Redundancy_SetB() { var b = new B { A = a }; Assert.AreEqual(a.Name, b.AName); } [TestMethod] public void MPT_Redundancy_SetC var c = new C { B = b }; Assert.AreEqual(a.Name, c.AName); } [TestMethod] public void MPT_Redundancy_SetBOfC Assert.AreEqual("a1", c.AName); c.B = b2; Assert.AreEqual("a2", c.AName); } [TestMethod] public void MPT_Redundancy_UpdateB GetById(b.Id) as B; Assert.AreEqual("New Name", b2.AName); } } [TestMethod] public void MPT_Redundancy_UpdateC

    1.5K90发布于 2018-01-26
  • 来自专栏数据库与编程

    Oracle 20c 新特性:文件组模板

    REDUNDANCY 此文件类型属性指定文件组的冗余。每种文件类型的默认冗余设置均来自系统模板。有效设置为: ‍HIGH 为所有文件提供三向镜像。 MIRROR 为所有文件提供双向镜像。 如果文件组中的冗余增加,则重新平衡完成后,VASM_FILE 的 REDUNDANCY 列的值将增加。 但是,如果文件组中的冗余减少,则在重新平衡运行之前,VASM_FILE 的 REDUNDANCY 列的值将立即降低。 不指定文件类型而更改冗余会影响所有文件类型。 SET 'archivelog.redundancy' = 'MIRROR'; 以下 SQL 语句为 Oracle ADVM 卷设置 REDUNDANCY 文件组属性。 对于 Oracle ADVM 卷,不能更改单个文件类型的冗余设置: SQL> ALTER DISKGROUP data MODIFY FILEGROUP volume1 SET 'redundancy'

    1.9K20编辑于 2022-04-24
  • 来自专栏Listenlii的生物信息笔记

    segRDA: 分段冗余分析

    Title: segRDA: An R package for performing piecewise redundancy analysis Link: https://besjournals.onlinelibrary.wiley.com 冗余分析(Redundancy analysis)被广泛应用于物种与环境的关联。该分析假设响应变量在整个梯度上具有相同的连续的线性趋势,但通常真实情况并非如此。 为了克服这一问题,提出了分段冗余分析(piecewise redundancy analysis,pwRDA)。 pwRDA允许将响应和解释变量之间的关系分解为多个部分。 ======================================================| 100% plot(pool,w.effect=TRUE) #3.Piecewise redundancy

    1.7K31发布于 2020-06-01
  • 来自专栏时悦的学习笔记

    [Oracle ASM全解析]深入了解 REQUIRED_MIRROR_FREE_MB 和USABLE_FILE_MB

    External 类型磁盘组 我们建立一个external类型的磁盘组 ASM> create diskgroup demo external redundancy disk 'ORCL USE_MB=FREE_MB-REQ_FREE=1468M ---- 2. normal 类型磁盘组 2.1 不指定故障组磁盘数 ASM> create diskgroup demo normal redundancy 将无法重建数据,这时如果有其他磁盘损坏则会导致数据丢失 2.2 指定故障组磁盘数 现在我们新建一个磁盘组,共三个故障组,每个故障组2块磁盘 ASM> create diskgroup demo normal redundancy 510M USE_MB=(FREE_MB-REQ_FREE)/2=427M 接下来我们建立的磁盘组只有2个故障组,每个故障组三块磁盘 ASM> create diskgroup demo normal redundancy High 类型磁盘组 3.1 不指定故障组磁盘数量 最后我们建立一个high类型的磁盘组 ASM> create diskgroup demo high redundancy failgroup

    1.4K20发布于 2020-08-19
  • 来自专栏时悦的学习笔记

    [Oracle集群软件全解析] Oracle Voting Disk 管理

    ASM中 我们需要将所有Voting Disk存放在同一个磁盘组中 同一个集群不支持既使用ASM又使用非ASM磁盘 voting disk 最小数量根据 disk group 内容决定 External redundancy : 只能包含一个voting disk Normal redundancy: 最少三个voting disk (故障组) High redundancy: 最少五个voting disk(故障组) 1.2

    1.4K10发布于 2020-08-18
  • 来自专栏职场亮哥

    自动存储管理ASM

    三种disk group类型对应的镜像选择: Disk Group Type Supported Mirroring Levels Default Mirroring Level Normal redundancy 2-way3-wayUnprotected (none) 2-way High redundancy 3-way 3-way External redundancy Unprotected (none 只有对于普通冗余(Normal redundancy)或高冗余(High redundancy)配置,它才非常重要。相同数据的冗余副本被放置在不同的故障组中。

    1.7K31发布于 2020-10-10
  • 来自专栏沃趣科技

    ASM 翻译系列第十八弹:ASM Internal ASM file number 5

    是否为系统自带的模板) Using templates 可以通过视图V$ASM_TEMPLATE来查看完整的模板信息,这里查看下我系统上的模板: SQL> SELECT name "Template Name", redundancy "Redundancy", stripe "Striping", system "System" FROM v$asm_template WHERE group_number=1; Template Name Redundancy Striping System ------------------------ ---------------- - 上面创建了一个表空间,ASM给我新创建的数据文件分配了编号217,我们接着看下这个文件的冗余度,这一次我连接的是ASM的实例: SQL> SELECT group_number, name, type "Redundancy " FROM v$asm_diskgroup WHERE name='DATA'; GROUP_NUMBER NAME Redundancy -

    1.3K60发布于 2018-03-23
  • 来自专栏公众号:Lucifer三思而后行

    Oracle一键安装脚本ReadMe文档

    DATA_BASEDISK RAC DATADISK DISKNAME -od, --OCRP_BASEDISK RAC OCRDISK DISKNAME -or, --OCRREDUN RAC OCR REDUNDANCY (EXTERNAL|NORMAL|HIGH) -dr, --DATAREDUN RAC DATA REDUNDANCY(EXTERNAL|NORMAL|HIGH) -ts, --TIMESERVER /dev/sde,/dev/sdf `# asm data disk`\ -dn DATA `# asm data diskgroupname`\ -dr EXTERNAL `# asm data redundancy dev/sdf `# asm data disk`\ -od /dev/sdb,/dev/sdc,/dev/sdd `# asm ocr disk`\ -or EXTERNAL `# asm ocr redundancy `\ -dr EXTERNAL `# asm data redundancy`\ -on OCR `# asm ocr diskgroupname`\ -dn DATA `# asm data diskgroupname

    1.1K30发布于 2021-08-17
  • 来自专栏飞鸟的专栏

    Consul 的多数据中心架构配置

    extend-cache" }, "autopilot": { "cleanup_dead_servers": true, "last_contact_threshold": "200ms", "redundancy_zone_tag cleanup_dead_servers指定是否清除死亡服务器,last_contact_threshold指定多久没有收到服务器联系将其视为死亡服务器,redundancy_zone_tag指定了用于故障转移和数据中心之间同步的标签 extend-cache" }, "autopilot": { "cleanup_dead_servers": true, "last_contact_threshold": "200ms", "redundancy_zone_tag

    98330编辑于 2023-04-18
领券