积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(6)Java(4)Spring(3)前端开发(1)数据库(1)JavaScript(1)云计算&大数据(1)RocketMQ(1)Apache HBase(1)

语言

全部中文(简体)(5)英语(4)

格式

全部PDF文档 PDF(9)
 
本次搜索耗时 0.082 秒,为您找到相关结果约 9 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • 前端开发
  • 数据库
  • JavaScript
  • 云计算&大数据
  • RocketMQ
  • Apache HBase
  • 全部
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 HBASE-21879 Read HFile ’s Block into ByteBuffer directly.

    HBASE-21879 Read HFile ’s Block into ByteBuffer directly. 1. Background For reducing the Java GC impact to p99/p999 RPC latency, HBase 2.x has made an offheap read and write path. The KV are allocated didn’t accomplish this before because HDFS does not support the ByteBuffer pread interface, also because of its complexity. For the ByteBuffer pread, we have issue ​HDFS-3246​ to track this, so further HDFS can also be easy as the 3.1 part described. 3.3 Make downstream API can accept ByteBuff or ByteBuffer as arguments The first obstacle when implementing the block off-heap reading is: many downstream
    0 码力 | 18 页 | 1.14 MB | 1 年前
    3
  • pdf文档 Java 基础之IO 和NIO 补完

    nel fileChannel = AsynchronousFileChannel.open(path, StandardOpenOption.READ); ByteBuffer buffer = ByteBuffer.allocate(1024); long position = 0; Future operation = fileChannel.read(buffer CompletionHandlerByteBuffer>() { //Once the read operation finishes the CompletionHandler's completed() method will be calle . @Override public void completed(Integer result, ByteBuffer attachment) CompletionHandler will get called inst ad. @Override public void failed(Throwable exc, ByteBuffer attachment) { } }); 3. Writing Data ● Writing Data Via a Future Path path = Paths.get("data/test-write
    0 码力 | 9 页 | 218.38 KB | 1 年前
    3
  • pdf文档 Apache RocketMQ 从入门到实战

    Integer.MAX_VALUE; } 如果启用 transientStorePoolEnable 机制,返回当前可用的 ByteBuffer 个数,即整 个 isTransientStorePoolDeficient 方法的用意是是否还存在可用的 ByteBuffer,如果不 存在,即表示 pageCache 繁忙。那什么是 transientStorePoolEnable 机制呢? 3 MappedFile 的 ByteBuffer writeBuffer、MappedByteBuffer mapped ByteBuffer 这两个属性的初始化,因为这两个方法是写消息与查消息操作的直接数据结构。 两个关键点如下:  ByteBuffer writeBuffer 如果开启了 transientStorePoolEnable,则使用 ByteBuffer.allocateDirect(fileSiz eturnBuffer public void returnBuffer(ByteBuffer byteBuffer) { byteBuffer.position(0); byteBuffer.limit(fileSize); this.availableBuffers.offerFirst(byteBuffer); } 其调用栈如下: 从上面的分析看来,并不会随着消息的不断写入而导致内存溢出。
    0 码力 | 165 页 | 12.53 MB | 1 年前
    3
  • pdf文档 Spring Framwork Web on Reactive Stack v5.3.36 SNAPSHOT

    java.nio.ByteBuffer, etc.) and is what all codecs work on. See Data Buffers and Codecs in the "Spring Core" section for more on this topic. The spring-core module provides byte[], ByteBuffer, DataBuffer and metadata values. By default only the basic codecs from spring-core for String, byte[], and ByteBuffer are registered. Adding spring-web provides access to more that can be registered as follows:
    0 码力 | 182 页 | 2.52 MB | 1 年前
    3
  • pdf文档 Spring Framwork Core Technologies v5.3.36 SNAPSHOT

    provided scope to avoid compile warnings. 435 Chapter 8. Data Buffers and Codecs Java NIO provides ByteBuffer but many libraries build their own byte buffer API on top, especially for network operations where implementations of DataBuffer can grow and shrink on demand. 2. Wrap an existing byte[] or java.nio.ByteBuffer, which decorates the given data with a DataBuffer implementation and that does not involve allocation y for others. 8.2. DataBuffer The DataBuffer interface offers similar operations as java.nio.ByteBuffer but also brings a few additional benefits some of which are inspired by the Netty ByteBuf. Below
    0 码力 | 485 页 | 6.31 MB | 1 年前
    3
  • pdf文档 Spring Framwork RSocket v5.3.36 SNAPSHOT

    and metadata values. By default only the basic codecs from spring-core for String, byte[], and ByteBuffer are registered. Adding spring-web provides access to more that can be registered as follows:
    0 码力 | 19 页 | 279.85 KB | 1 年前
    3
  • pdf文档 美团点评2018技术年货

    两个问题。 优化2 每天数百亿用户行为数据,美团点评怎么实现秒级转化分析? - 美团技术团队 1. Unsafe调用。由于大部分的数据通过ByteBuffer访问,这里带来的额外开销对最终性能也有很大影响。Java lib中的 ByteBuffer访问接口是非常安全的,但安全也意味着低效,一次访问会有很多次的边界检查,而且多层函数的调用也 有很多额外开销。如果访问逻辑相对简单,对数据边界
    0 码力 | 229 页 | 61.61 MB | 1 年前
    3
  • pdf文档 2019-2021 美团技术年货 前端篇

    信息、内存地址、持有的引用以及被持有引用的关系。 HPROF 文件映射到内存的过程: // 1. 构建内存映射的 HprofBuffer 针对大文件的一种快速的读取方式,其原理是将文件 流的通 道与 ByteBuffer 建立起关联,并只在真正发生读取时才从磁盘读取内容出来。 HprofBuffer buffer = new MemoryMappedFileBuffer(heapDumpFile); //
    0 码力 | 738 页 | 50.29 MB | 1 年前
    3
  • pdf文档 2022年美团技术年货 合辑

    源码缩略不进行展示:初始化一些需要的对象 val (rdd, func) = ser.deserialize[(RDD[T], (TaskContext, Iterator[T]) => U)]( ByteBuffer.wrap(taskBinary.value), Thread.currentThread. getContextClassLoader) _executorDeserializeTime
    0 码力 | 1356 页 | 45.90 MB | 1 年前
    3
共 9 条
  • 1
前往
页
相关搜索词
HBASE21879ReadHFileBlockintoByteBufferdirectlyJava基础IONIO补完ApacheRocketMQ入门实战SpringFramworkWebonReactiveStackv53.36SNAPSHOTCoreTechnologiesRSocket美团点评2018技术年货20192021前端2022合辑
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩