Member since
05-07-2018
5
Posts
1
Kudos Received
0
Solutions
06-01-2018
08:49 PM
If qualifiedName is constructed properly, they are pretty much the same as guid. Why does Atlas then need APIs to search on guid in addition to the attribute based search on qualifiedName? is this not redundant?
... View more
Labels:
- Labels:
-
Apache Atlas
06-01-2018
06:39 AM
@Ashutosh Mestry How about typeVersion, I don't see that being much useful either? (Refer StructTypeDefinition.java). P.S. It would be really nice to have a version and typeversion implementation that updates itself to trace back the evolution.
... View more
05-31-2018
11:13 AM
Old Entity {
"entity": {
"attributes": {
"createTime": 0,
"description": "",
"locationUri": null,
"name": "BCaLYKStWE",
"owner": null,
"randomTable": null
},
"classifications": [
],
"createdBy": "admin",
"createTime": 1527764632465,
"guid": "e57a85ed-bdc9-4069-96a3-401b7c0a1365",
"status": "ACTIVE",
"typeName": "hive_db_v2",
"updatedBy": "admin",
"updateTime": 1527764668060,
"version": 0
},
"referredEntities": {
}
}
New Entity {
"referredEntities": {},
"entity": {
"typeName": "hive_db_v2",
"attributes": {
"owner": null,
"randomTable": null,
"createTime": 0,
"name": "BCaLYKStWE",
"description": "",
"locationUri": ""
},
"guid": "e57a85ed-bdc9-4069-96a3-401b7c0a1365",
"status": "ACTIVE",
"createdBy": "admin",
"updatedBy": "admin",
"createTime": 1527764632465,
"updateTime": 1527764668060,
"version": 0,
"classifications": []
}
} Note that version remains 0 even after the update. Am I missing something? Reference: EntityV2JerseyResourceIT.java
... View more
Labels:
- Labels:
-
Apache Atlas