Skip to content

Latest commit

 

History

History
241 lines (209 loc) · 6.55 KB

index.zh.md

File metadata and controls

241 lines (209 loc) · 6.55 KB
title layout
数据流上的有状态计算
base

**Apache Flink® - 数据流上的有状态计算**



所有流式场景
  • 事件驱动应用
  • 流批分析
  • 数据管道 & ETL
了解更多
正确性保证
  • Exactly-once 状态一致性
  • 事件时间处理
  • 成熟的迟到数据处理
了解更多
分层 API
  • SQL on Stream & Batch Data
  • DataStream API & DataSet API
  • ProcessFunction (Time & State)
了解更多
聚焦运维
  • 灵活部署
  • 高可用
  • 保存点
了解更多
大规模计算
  • 水平扩展架构
  • 支持超大状态
  • 增量检查点机制
了解更多
性能卓越
  • 低延迟
  • 高吞吐
  • 内存计算
了解更多

最新活动


{% for post in site.posts limit:5 %}
{{ post.title }}
{{ post.excerpt }}
{% endfor %}
<script type="text/javascript" src="{{ site.baseurl }}/js/jquery.jcarousel.min.js"></script> <script type="text/javascript"> $(window).load(function(){ $(function() { var jcarousel = $('.jcarousel'); jcarousel .on('jcarousel:reload jcarousel:create', function () { var carousel = $(this), width = carousel.innerWidth(); if (width >= 600) { width = width / 4; } else if (width >= 350) { width = width / 3; } carousel.jcarousel('items').css('width', Math.ceil(width) + 'px'); }) .jcarousel({ wrap: 'circular', autostart: true }); $('.jcarousel-control-prev') .jcarouselControl({ target: '-=1' }); $('.jcarousel-control-next') .jcarouselControl({ target: '+=1' }); $('.jcarousel-pagination') .on('jcarouselpagination:active', 'a', function() { $(this).addClass('active'); }) .on('jcarouselpagination:inactive', 'a', function() { $(this).removeClass('active'); }) .on('click', function(e) { e.preventDefault(); }) .jcarouselPagination({ perPage: 1, item: function(page) { return '' + page + ''; } }); }); }); </script>