Teddy 1cbdfb3ae7
Fixes #12601 - column filter for profiler workflow (#13535)
* 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
2023-10-12 14:51:38 +02:00

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"
}
}
}
]