-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to parse server response #2
Comments
@akoenig It is a known issue, and hence the note about the project being under development. I've spent considerable time tracing the issue, and you can see the issues I've reported —
tl;dr protocolbuffers/protobuf-javascript#43 needs to be fixed before this library can work, but I've been unable to come up with a fix for it because - a) I'm unfamiliar with the |
Btw we are planning to replace Protocol Buffers with Flatbuffers, so maybe this issue will go away with that. liftbridge-io/liftbridge-api#8 |
@tylertreat Oh wow, that’ll be great! Although Flatbuffers is once again a Google project and support has been abysmal so far on even widely reported issues. Hopefully the situation is better for Flatbuffers; I’ll start looking at it. |
In my experience Flatbuffers folks have generally been pretty responsive, esp compared to the larger projects like protobuf/bazel/TF/etc. If there's a real bug I think they'd be more than willing to work on solving it. That said, I don't know what the nodejs support looks like (I'm most familiar with the C++/Go interfaces). |
@llchan Thanks for chiming in!
This is exactly what I’m worried about. |
I get this one Error: Unknown base64 encoding at char: { |
@paambaati proto.proto.Message.deserializeBinaryFromReader = function(msg, reader) {
// ..
case 7:
var value = msg.getHeadersMap();
reader.readMessage(value, function(message, reader) {
// NOTICE THE NUMBER OF ARGUMENTS HERE -->>
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
});
break;
// ...
} |
@zag2art @digitalsanity Hey I’m terribly sorry folks, but I plan to resume work here only once liftbridge-io/liftbridge-api#8 lands. It anyways requires changing a lot of the core stuff, so I’d rather wait for it than spending more time with Protobuf errors. |
@zag2art @digitalsanity protobufjs/protobuf.js#1348 should hopefully fix this issue. Also, I recently learnt that Liftbridge v1.0.0 (expected to ship in March) is sticking to gRPC for now. |
Thanks for compiling this library 👋 👍 I just tried to build a little prototype in order to get a feeling of how everything is like in Node.js land.
Started liftbridge as described in the quick start:
Created a stream, published a message and read via a subscription:
Creating the stream and publishing the message seems to work. Consuming the stream fails with a:
I also tried to generate a new gRPC binding, but this leads to the same result above 🙁
The text was updated successfully, but these errors were encountered: