Skip to content

Commit

Permalink
Add _parent field handling.
Browse files Browse the repository at this point in the history
The field is required to get child documents such as output datasets.
  • Loading branch information
Evildoor committed May 22, 2019
1 parent c56321e commit 2e7cc75
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Utils/Dataflow/071_esConsistency/consistency.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def es_connect(cfg):
return True


def get_fields(index, _id, _type, fields):
def get_fields(index, _id, _type, fields, _parent):
''' Get fields value by given _id and _type.
:param es: elasticsearch client
Expand All @@ -123,7 +123,7 @@ def get_fields(index, _id, _type, fields):
'''
try:
results = es.get(index=index, doc_type=_type, id=_id,
_source=fields)
_source=fields, parent=_parent)
except elasticsearch.exceptions.NotFoundError:
return False
return results['_source']
Expand Down Expand Up @@ -151,6 +151,10 @@ def process(stage, message):
log('Insufficient ES info in data:' + str(data), 'WARN')
return False

_parent = None
if '_parent' in data:
_parent = data.pop('_parent')

# Crutch. Remove unwanted (for now) fields added by Stage 016.
for field in ['phys_category', 'chain_data', 'chain_id']:
if field in data:
Expand All @@ -164,7 +168,7 @@ def process(stage, message):
'WARN')
return False

es_data = get_fields(INDEX, _id, _type, data.keys())
es_data = get_fields(INDEX, _id, _type, data.keys(), _parent)
if data != es_data:
log('Document ({0}, {1}) differs between Oracle and '
'ES: Oracle:{2} ES:{3}'.format(_type, _id, data, es_data), 'WARN')
Expand Down

0 comments on commit 2e7cc75

Please sign in to comment.