Hi.
I am writing to connector from on prem MongoDB to Bigquery. I have a very difficult point. I convert one binary using decodeBinarytouuid method in java but data have lots of Binary data and also this connector is not specific to one team. So that I need a help for this situation.
Also I use Uuid Representation in MongoClientSettings but it isn’t work.
This example like this
{
"_id": {
"$binary": {
"base64": "h7MRZycaOk6vLUlnqPx/HA==",
"subType": "03"
}
},
"ParentId": null,
"Version": xx,
"Name": "aaa",
"HashedPassword": "dfdfd",
"IsActive": false,
"SapId": "",
"InvoiceSapId": null,
"LegalName": "sdsds",
"BillingAddress": {
"_id": {
"$binary": {
"base64": "LRSwK05HfEWDAr8Y1q1GcQ==",
"subType": "03"
}
},
"Line1": "dfdfd",
"DistrictName": null,
"CityCode": dfd,
"TownCode": dfdf,
"DistrictCode": dfd,
"Label": null
},
"ShippingAddresses": [
{
"_id": {
"$binary": {
"base64": "eMK1k+wG6k2XTafzEBYQng==",
"subType": "03"
}
},
"Line1": "fdfdfds",
"DistrictName": null,
"CityCode": sdfds,
"TownCode": sdffs,
"DistrictCode":dfdf,
"Label": "dfdsfd"
}
]
}
This is my example payload and I want to take all binaries to string without I give. So can you help me please?
Best Regards,
Emin Can