mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-05 20:17:07 +00:00
* fix: sample data ingestion to match entity profiler column setting * fix: python linting * fix: updated fn call * fix: added logic to handle json filed in datalake connector * fix: handle NA values in parsing * fix: reverted sampler changes from #13338 * fix: reverted metric changes from #13338 * fix: added datalake profiler ingestion test * fix: python linting * fix: removed normalization of json blob in NoSQL db
31 lines
538 B
JSON
31 lines
538 B
JSON
[
|
|
{
|
|
"id": "1",
|
|
"first_name": "John",
|
|
"last_name": "Doe",
|
|
"city": "Los Angeles",
|
|
"country": "US",
|
|
"birthdate": "1980-01-01",
|
|
"age": "40",
|
|
"json_data": {
|
|
"foo": {
|
|
"bar": "baz"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"id": "2",
|
|
"first_name": "James",
|
|
"last_name": "Doe",
|
|
"city": "Los Angeles",
|
|
"country": "US",
|
|
"birthdate": "1980-01-01",
|
|
"age": "40",
|
|
"json_data": {
|
|
"foo": {
|
|
"bar": "baz"
|
|
}
|
|
}
|
|
}
|
|
]
|