node-avro-io icon indicating copy to clipboard operation
node-avro-io copied to clipboard

Node JS Avro implementation

Results 11 node-avro-io issues
Sort by recently updated
recently updated
newest added

Bumps [lodash](https://github.com/lodash/lodash) from 2.4.2 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 4.0.0 lodash v4.0.0 2015 was big year! Lodash became the most depended on npm package, passed 1...

dependencies

[Recent vulnerabilities](https://snyk.io/vuln/npm:lodash) found in lodash have made having this library as a transitive dependency troublesome for projects using snyk to prevent vulnerable code from being released. I have made a...

I got latest master and faced the following errors when running tests: ``` 1) Reader() streaming should read a large avro data stream compressed with deflate: Uncaught ENOENT: no such...

Hi, the readRecord function is failing for me due to some extra hidden prototypes on my schema object - this could be easily fixed by adding just after - line...

I'm trying to use node-avro-io to serialize and persist HTTP request events into a few files. ``` rotatableFile = "events.avro" var writer = avro.open(rotatableFile, schema, { flags: 'w', codec: 'null'...

I had an issue where stream-buffers were coercing a number into a string, causing deserialization issues downstream. By writing only buffers to the output, the binary nature of avro serialization...

Hi, I am using node-avro-io to decode a file with the following schema: ``` { "type": "record", "name": "HistoryItem", "fields": [ { "name": "uuid", "type": { "type": "fixed", "name": "uuid",...

Small fixes: - the example code in the README did not work. - set a default codec when decoding when none is specified in the header.

Is it possible for the avro.DataFile.Reader class to emit strings/buffers instead of JS objects (objectMode)? I'm thinking a lot of time could be saved if not everything were parsed as...

I tried three different implementations of avro (java/php/nodejs) and with yours I'm encountering a problem while encoding unions. Consider schema: ``` coffee avro_schema = name: 'foo' type: 'record' fields: [...