You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! The goal of this library is extremely cool and hits close to one of the use cases I am dealing with right now. Since you must be an expert in this domain, I wanted to ask you if you support my use case or know of any solution that does :)
If you're curious, this is the schema of the JSON files I am trying to ingest right now. It is a newline delimited .jsonl file.
The key problem: the json objects I am ingesting have a high level of redundancy. So for example, imagine I am processing root.nested_list[0] and root.nested_list[5], where the items are large Python objects with further nested lists. If they hold the same value, I would like them to have a single entry on the nested object table.
A visual sketch where I would like not to deduplicate repeated service codes. These codes may occur in the same list or in different in_network objects. :
Note how the negotiated_rates are deduplicated in the negotiated_rate table.
I believe your existing solution does not tackle this issue, is this correct? Do you happen to know any tool that is available that can deal with this issue of deduplication on ingestion?
The text was updated successfully, but these errors were encountered:
Hi! The goal of this library is extremely cool and hits close to one of the use cases I am dealing with right now. Since you must be an expert in this domain, I wanted to ask you if you support my use case or know of any solution that does :)
If you're curious, this is the schema of the JSON files I am trying to ingest right now. It is a newline delimited
.jsonl
file.The key problem: the json objects I am ingesting have a high level of redundancy. So for example, imagine I am processing root.nested_list[0] and root.nested_list[5], where the items are large Python objects with further nested lists. If they hold the same value, I would like them to have a single entry on the nested object table.
A visual sketch where I would like not to deduplicate repeated service codes. These codes may occur in the same list or in different in_network objects. :
Note how the negotiated_rates are deduplicated in the negotiated_rate table.
I believe your existing solution does not tackle this issue, is this correct? Do you happen to know any tool that is available that can deal with this issue of deduplication on ingestion?
The text was updated successfully, but these errors were encountered: