-
Notifications
You must be signed in to change notification settings - Fork 65
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
add support for conduit_json_external protocol #1162
Conversation
…cy of json parsing for several cases
…conduit into task/2023_08_conduit_json_external
It has been a bit since we discussed this, but this new feature will allow you to use a json string rep to fully describe an in-memory node and replicate as a new node with external data. This should help with your use case of passing data between to library instances. Let me know if you have any questions or hit roadblocks for that case. |
Thanks! We now support external Conduit, so things should be flexible enough. However, this can help with the "I'm stuck with a conduit and internal-conduit catalyst, how can I make the best of this situation" case. |
to_json
gains new protocol (conduit_json_external
) that embeds the address of each leaf in its schema.When parsing,
conduit_json
handles schemas with optionaladdress
entry.With this:
Also includes changes to improve performance of a few json parsing cases, avoiding intermediate copies and some intermediate use of json strings.