// v0.0.x const zstd = require('zstd-codec').ZstdCodec; const simple = new zstd.Simple(); // v0.1.x const ZstdCodec = require('zstd-codec').ZstdCodec; ZstdCodec.run(zstd => { const simple = new zstd.Simple(); });NOTE: I wanted to use Promise instead of callback, but does...
It's possible this is actually already fixed in v0.2.x, but I can't easily see how to check. It'd be great to have this fixed, so if you can give me some pointers on where to get started on that I'm happy to dive in and help get zstd-codec working again. 1 yoshihito...
zstd-codec from 0.1.4 to 0.1.5 |1 versionahead of your current version |a month ago on 2024-07-27 Issues fixed by the recommended upgrade: Release notes Package name:esbuild 0.23.1-2024-08-16 Allow using thenode:import prefix withes*targets (#3821) Thenode:prefix on importsis an alt...
该用户已趴倒/zstd-codec 代码 Issues 0 Pull Requests 0 Wiki 统计 流水线 服务 Gitee Pages JavaDoc PHPDoc 质量分析 Jenkins for Gitee 腾讯云托管 腾讯云 Serverless 悬镜安全 阿里云 SAE Codeblitz 我知道了,不再自动展开 仓库网络图 附件 附件列表 名称(点击预览或下载)大小描述上传于下载数关联分支操作...
npm install zstd-codec yarn yarn add zstd-codec Usage require module, and instantiate api objects. const ZstdCodec = require('zstd-codec').ZstdCodec; ZstdCodec.run(zstd => { const simple = new zstd.Simple(); const streaming = new zstd.Streaming(); }); Use Simple API for small da...
ZstdInputStream s = new ZstdInputStream(new ByteBufInputStream(buf)); byte[] bytes = new byte[size]; s.read(bytes); s.close(); ByteBuf out = ByteBufAllocator.DEFAULT.buffer(size); ByteBuf in = Unpooled.wrappedBuffer(bytes); try { return innerCodec.getValueDecoder().decode(in, state...
Avro 1.9+ supports ZSTD compression codec. I tried to use org.apache.avro.file.CodecFactory.zstandardCodec(3) in my Beam GenericRecord write, but ran into the following exception from SerializableAvroCodecFactory: Exception in thread "main" java.lang.IllegalStateException: zstandard[3] is not sup...
Received exception from server (version 52.8.6): Code: 1001. DB::Exception: Received from. DB::Exception: avro::Exception: Unknown codec in data file: zstandard. (STD_EXCEPTION) StackTrace: 2024.01.12 11:53:52.629046 [ 83 ] {068906a0-24e...
Member Author mrniko commented Nov 8, 2024 Done mrniko closed this as completed Nov 8, 2024 mrniko pushed a commit that referenced this issue Nov 9, 2024 Feature - ZStdCodec added #6270 7eabd7d Sign up for free to join this conversation on GitHub. Already have an account? Sign in...
@kafkajs/zstd ZStandard codec for KafkaJS. NOTE: This codec relies oncppzstfor compression and decompression. Please divert any issues with cppzst there, and only open issues on this repo in case the version being used here needs to be updated. ...