Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
4fb6c7b4
Commit
4fb6c7b4
authored
Dec 14, 2020
by
Madhan Neethiraj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-4077: updated Python client to fix errors found while running sample - #2
parent
77943a94
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
11 deletions
+40
-11
typedef_create.json
...mple-app/src/main/python/request_json/typedef_create.json
+20
-7
sample_client.py
atlas-examples/sample-app/src/main/python/sample_client.py
+2
-2
typedef.py
intg/src/main/python/apache_atlas/model/typedef.py
+18
-2
No files found.
atlas-examples/sample-app/src/main/python/request_json/typedef_create.json
View file @
4fb6c7b4
...
...
@@ -3,6 +3,7 @@
{
"name"
:
"sample_tableType"
,
"description"
:
"sample_tableType"
,
"category"
:
"ENUM"
,
"typeVersion"
:
"1.0"
,
"elementDefs"
:
[
{
"value"
:
"MANAGED"
,
"ordinal"
:
1
},
...
...
@@ -13,6 +14,7 @@
"structDefs"
:
[
{
"name"
:
"sample_serdeType"
,
"category"
:
"STRUCT"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
"name"
:
"name"
,
"typeName"
:
"string"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
false
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
...
...
@@ -22,15 +24,18 @@
],
"classificationDefs"
:
[
{
"name"
:
"sample_pii"
,
"name"
:
"sample_pii"
,
"category"
:
"CLASSIFICATION"
,
"typeVersion"
:
"1.0"
},
{
"name"
:
"sample_finance"
,
"name"
:
"sample_finance"
,
"category"
:
"CLASSIFICATION"
,
"typeVersion"
:
"1.0"
},
{
"name"
:
"sample_metric"
,
"name"
:
"sample_metric"
,
"category"
:
"CLASSIFICATION"
,
"typeVersion"
:
"1.0"
}
],
...
...
@@ -38,6 +43,7 @@
{
"name"
:
"sample_db"
,
"superTypes"
:
[
"DataSet"
],
"category"
:
"ENTITY"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
"name"
:
"locationUri"
,
"typeName"
:
"string"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
false
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
...
...
@@ -46,8 +52,9 @@
},
{
"name"
:
"sample_table"
,
"typeVersion"
:
"1.0"
,
"superTypes"
:
[
"DataSet"
],
"category"
:
"ENTITY"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
"name"
:
"createTime"
,
"typeName"
:
"date"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
true
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
{
"name"
:
"tableType"
,
"typeName"
:
"sample_tableType"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
true
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
...
...
@@ -58,8 +65,9 @@
},
{
"name"
:
"sample_column"
,
"typeVersion"
:
"1.0"
,
"superTypes"
:
[
"DataSet"
],
"category"
:
"ENTITY"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
"name"
:
"dataType"
,
"typeName"
:
"string"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
true
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
{
"name"
:
"comment"
,
"typeName"
:
"string"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
true
,
"isUnique"
:
false
,
"isIndexable"
:
true
}
...
...
@@ -67,8 +75,9 @@
},
{
"name"
:
"sample_process"
,
"typeVersion"
:
"1.0"
,
"superTypes"
:
[
"Process"
],
"category"
:
"ENTITY"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
"name"
:
"userName"
,
"typeName"
:
"string"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
true
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
{
"name"
:
"startTime"
,
"typeName"
:
"long"
,
"cardinality"
:
"SINGLE"
,
"isOptional"
:
true
,
"isUnique"
:
false
,
"isIndexable"
:
true
},
...
...
@@ -82,6 +91,7 @@
{
"name"
:
"sample_db_tables"
,
"description"
:
"Tables of a db"
,
"category"
:
"RELATIONSHIP"
,
"typeVersion"
:
"1.0"
,
"relationshipCategory"
:
"AGGREGATION"
,
"propagateTags"
:
"NONE"
,
...
...
@@ -91,6 +101,7 @@
{
"name"
:
"sample_table_columns"
,
"description"
:
"Columns of a table"
,
"category"
:
"RELATIONSHIP"
,
"typeVersion"
:
"1.0"
,
"relationshipCategory"
:
"COMPOSITION"
,
"propagateTags"
:
"NONE"
,
...
...
@@ -102,10 +113,11 @@
{
"name"
:
"sample_bm"
,
"description"
:
"Sample business metadata"
,
"category"
:
"BUSINESS_METADATA"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
"name"
:
"attr1"
,
"name"
:
"attr1"
,
"typeName"
:
"boolean"
,
"description"
:
"Boolean attribute"
,
"cardinality"
:
"SINGLE"
,
...
...
@@ -147,6 +159,7 @@
{
"name"
:
"sample_bm_mv"
,
"description"
:
"Sample business metadata with multi-value attributes"
,
"category"
:
"BUSINESS_METADATA"
,
"typeVersion"
:
"1.0"
,
"attributeDefs"
:
[
{
...
...
atlas-examples/sample-app/src/main/python/sample_client.py
View file @
4fb6c7b4
...
...
@@ -48,10 +48,10 @@ class SampleApp:
client
=
AtlasClient
(
url
,
(
username
,
password
))
self
.
__entity_example
(
client
)
self
.
__typedef_example
(
client
)
self
.
__entity_example
(
client
)
self
.
__lineage_example
(
client
)
self
.
__discovery_example
(
client
)
...
...
intg/src/main/python/apache_atlas/model/typedef.py
View file @
4fb6c7b4
...
...
@@ -102,7 +102,18 @@ class AtlasRelationshipDef(AtlasStructDef):
def
__init__
(
self
,
attrs
=
{}):
AtlasStructDef
.
__init__
(
self
,
attrs
)
self
.
category
=
TypeCategory
.
RELATIONSHIP
.
name
self
.
category
=
TypeCategory
.
RELATIONSHIP
.
name
self
.
relationshipCategory
=
attrs
.
get
(
'relationshipCategory'
);
self
.
relationshipLabel
=
attrs
.
get
(
'relationshipLabel'
);
self
.
propagateTags
=
attrs
.
get
(
'propagateTags'
);
self
.
endDef1
=
attrs
.
get
(
'endDef1'
);
self
.
endDef2
=
attrs
.
get
(
'endDef2'
);
def
type_coerce_attrs
(
self
):
super
(
AtlasRelationshipDef
,
self
)
.
type_coerce_attrs
()
self
.
endDef1
=
type_coerce
(
self
.
endDef1
,
AtlasRelationshipEndDef
)
self
.
endDef2
=
type_coerce
(
self
.
endDef2
,
AtlasRelationshipEndDef
)
class
AtlasBusinessMetadataDef
(
AtlasStructDef
):
...
...
@@ -168,7 +179,12 @@ class AtlasRelationshipEndDef(AtlasBase):
def
__init__
(
self
,
attrs
=
{}):
AtlasBase
.
__init__
(
self
,
attrs
)
self
.
cardinality
=
non_null
(
self
.
cardinality
,
Cardinality
.
SINGLE
.
name
)
self
.
type
=
attrs
.
get
(
'type'
)
self
.
name
=
attrs
.
get
(
'name'
)
self
.
isContainer
=
attrs
.
get
(
'isContainer'
)
self
.
cardinality
=
attrs
.
get
(
'cardinality'
)
self
.
isLegacyAttribute
=
attrs
.
get
(
'isLegacyAttribute'
)
self
.
description
=
attrs
.
get
(
'description'
)
class
AtlasTypesDef
(
AtlasBase
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment