首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    ipv6 ospfv3 tunnel

    Current configuration : 1239 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R1 ! boot-start-marker boot-end-marker ! ! no aaa new-model memory-size iomem 5 ip cef ! ! ! ! no ip domain lookup ! ipv6 unicast-routing ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface FastEthernet0/0  no ip address  shutdown  duplex auto  speed auto ! interface Serial0/0  no ip address  ipv6 address 2026::12:1/122  ipv6 ospf 6 area 12  clock rate 2000000 ! interface FastEthernet0/1  no ip address  shutdown  duplex auto  speed auto ! interface Serial0/1  no ip address  shutdown  clock rate 2000000 ! interface Serial0/2  no ip address  shutdown  clock rate 2000000 ! interface Serial1/0  no ip address  shutdown  serial restart-delay 0 ! interface Serial1/1  no ip address  shutdown  serial restart-delay 0 ! interface Serial1/2  no ip address  shutdown  serial restart-delay 0 ! interface Serial1/3  no ip address  shutdown  serial restart-delay 0 !         ! ! no ip http server no ip http secure-server ! ipv6 router ospf 6  router-id 1.1.1.1  log-adjacency-changes ! ! ! ! ! control-plane ! ! ! ! ! ! ! ! !         ! line con 0  exec-timeout 0 0  logging synchronous line aux 0 line vty 0 4  login ! ! end

    01

    0基础学习PyFlink——事件时间和运行时间的窗口

    这是因为每次运行时,CPU等系统资源的繁忙程度是不一样的,这就影响了最后的运行结果。 为了让结果稳定,我们可以不依赖运行时间(ProcessingTime),而使用不依赖于运行环境,只依赖于数据的事件时间(EventTime)。 一般,我们需要大数据处理的数据,往往存在一个字段用于标志该条数据的“顺序”。这个信息可以是单调递增的ID,也可以是不唯一的时间戳。我们可以将这类信息看做事件发生的时间。 那如何让输入的数据中的“事件时间”参与到窗口时长的计算中呢?这儿就要引入Watermark(水印)的概念。 假如我们把数据看成一张纸上的内容,水印则是这张纸的背景。它并不影响纸上内容的表达,只是系统要用它来做更多的事情。 将数据中表达“顺序”的数据转换成“时间”,我们可以使用水印单调递增时间戳分配器

    03
    领券