diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-02-26 20:25:27 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-04-06 21:58:49 -0700 |
commit | d36b38fc567bbba4ac84713042e9558afd4981b3 (patch) | |
tree | 913dd67c748192fefc21e4b318c193bac4387f2c /python/fatcat_tools/transforms | |
parent | c23f050426c1422e84019fe60d4d67865b962f31 (diff) | |
download | fatcat-d36b38fc567bbba4ac84713042e9558afd4981b3.tar.gz fatcat-d36b38fc567bbba4ac84713042e9558afd4981b3.zip |
ES schemas: add doc_index_ts to all mappings
Diffstat (limited to 'python/fatcat_tools/transforms')
-rw-r--r-- | python/fatcat_tools/transforms/elasticsearch.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_tools/transforms/elasticsearch.py b/python/fatcat_tools/transforms/elasticsearch.py index f37aadba..12b8ea2b 100644 --- a/python/fatcat_tools/transforms/elasticsearch.py +++ b/python/fatcat_tools/transforms/elasticsearch.py @@ -46,6 +46,7 @@ def release_to_elasticsearch(entity: ReleaseEntity, force_bool: bool = True) -> # First, the easy ones (direct copy) release = entity t = dict( + doc_index_ts=datetime.datetime.utcnow(), ident = release.ident, state = release.state, revision = release.revision, @@ -392,6 +393,7 @@ def container_to_elasticsearch(entity, force_bool=True): # First, the easy ones (direct copy) t = dict( + doc_index_ts=datetime.datetime.utcnow(), ident = entity.ident, state = entity.state, revision = entity.revision, @@ -495,6 +497,7 @@ def changelog_to_elasticsearch(entity): editgroup = entity.editgroup t = dict( + doc_index_ts=datetime.datetime.utcnow(), index=entity.index, editgroup_id=entity.editgroup_id, timestamp=entity.timestamp.isoformat(), @@ -558,6 +561,7 @@ def file_to_elasticsearch(entity): # First, the easy ones (direct copy) t = dict( + doc_index_ts=datetime.datetime.utcnow(), ident = entity.ident, state = entity.state, revision = entity.revision, |