Workers - Increased blob size limits in Workers Analytics Engine
1y ago
Source
CloudflareWorkers - Increased blob size limits in Workers Analytics Enginecloudflare.comWe’ve increased the total allowed size of blob fields on data points written to Workers Analytics Engine from 5 KB to 16 KB . This change gives you more flexibility when logging rich observability data — such as base64-encoded payloads, AI inference traces, or custom metadata — without hitting request size limits. You can find full details on limits for queries, filters, payloads, and more here in the Workers Analytics Engine limits documentation . JavaScript export default { async fetch ( request , env ) { env . analyticsDataset . writeDataPoint ( { // The sum of all of the blob's sizes can now be 16 KB blobs : [ // The URL of the request to the Worker request . url , // Some metadata about your application you'd like to store JSON . stringify ( metadata ) , // The version of your Worker this datapoint was collected from env . versionMetadata . tag , ] , indexes : [ "sample-index" ] , } ) ; }, }; TypeScript export default { async fetch ( request , env ) { env . analyticsDataset . writeDataPoint ( { // The sum of all of the blob's sizes can now be 16 KB blobs : [ // The URL of the request to the Worker request . url , // Some metadata about your application you'd like to store JSON . stringify ( metadata ) , // The version of your Worker this datapoint was collected from env . versionMetadata . tag , ] , indexes : [ "sample-index" ] , } ) ; } }
You might also wanna read
Technical Discussion: Distributed SQL Engine Requirements for Ultra-Wide Tables in ML and Multi-Omics Data
A technical discussion about the limitations of current SQL databases and data processing systems when handling ultra-wide tables with thous
Vercel increases serverless function package size limit to 5GB for Node.js and Python
Vercel has announced a public beta for Large Functions support on Fluid compute, increasing the maximum package size for Node.js and Python
Blober.io: A Local-First Workflow Engine for Managing Files Across Cloud Storage Providers
Blober.io is a local-first workflow engine designed to help developers and teams manage large-scale data transfers between different cloud s
Buffer Size Considerations and Safety Implications in Zig's New I/O Writer Implementation
The article discusses programming considerations for Zig's new std.Io.Reader and Writer interfaces, focusing on buffer size decisions and sa
openmymind.net·9mo ago

Comments
Sign in to join the conversation.
No comments yet. Be the first.