-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "refactor: Update ES index maps to use same maps of amundsen-c…
…ommon (#385)" This reverts commit 20c2fd2. Signed-off-by: Allison Suarez Miranda <asuarezmiranda@lyft.com>
- Loading branch information
1 parent
9595866
commit ddaac21
Showing
7 changed files
with
253 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,247 @@ | ||
# Copyright Contributors to the Amundsen project. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
import textwrap | ||
|
||
# Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html | ||
# Setting type to "text" for all fields that would be used in search | ||
# Using Simple Analyzer to convert all text into search terms | ||
# https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-simple-analyzer.html | ||
# Standard Analyzer is used for all text fields that don't explicitly specify an analyzer | ||
# https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-standard-analyzer.html | ||
# TODO use amundsencommon for this when this project is updated to py3 | ||
TABLE_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent( | ||
""" | ||
{ | ||
"mappings":{ | ||
"table":{ | ||
"properties": { | ||
"name": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"schema": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"display_name": { | ||
"type": "keyword" | ||
}, | ||
"last_updated_timestamp": { | ||
"type": "date", | ||
"format": "epoch_second" | ||
}, | ||
"description": { | ||
"type": "text", | ||
"analyzer": "simple" | ||
}, | ||
"column_names": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"column_descriptions": { | ||
"type": "text", | ||
"analyzer": "simple" | ||
}, | ||
"tags": { | ||
"type": "keyword" | ||
}, | ||
"badges": { | ||
"type": "keyword" | ||
}, | ||
"cluster": { | ||
"type": "text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"database": { | ||
"type": "text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"key": { | ||
"type": "keyword" | ||
}, | ||
"total_usage":{ | ||
"type": "long" | ||
}, | ||
"unique_usage": { | ||
"type": "long" | ||
}, | ||
"programmatic_descriptions": { | ||
"type": "text", | ||
"analyzer": "simple" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
""" | ||
) | ||
|
||
DASHBOARD_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent( | ||
""" | ||
{ | ||
"settings": { | ||
"analysis": { | ||
"normalizer": { | ||
"lowercase_normalizer": { | ||
"type": "custom", | ||
"char_filter": [], | ||
"filter": ["lowercase", "asciifolding"] | ||
} | ||
} | ||
} | ||
}, | ||
"mappings":{ | ||
"dashboard":{ | ||
"properties": { | ||
"group_name": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword", | ||
"normalizer": "lowercase_normalizer" | ||
} | ||
} | ||
}, | ||
"name": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword", | ||
"normalizer": "lowercase_normalizer" | ||
} | ||
} | ||
}, | ||
"description": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"group_description": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"query_names": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"chart_names": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"tags": { | ||
"type": "keyword" | ||
}, | ||
"badges": { | ||
"type": "keyword" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
""" | ||
) | ||
|
||
USER_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent( | ||
""" | ||
{ | ||
"mappings":{ | ||
"user":{ | ||
"properties": { | ||
"email": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"first_name": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"last_name": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"full_name": { | ||
"type":"text", | ||
"analyzer": "simple", | ||
"fields": { | ||
"raw": { | ||
"type": "keyword" | ||
} | ||
} | ||
}, | ||
"total_read":{ | ||
"type": "long" | ||
}, | ||
"total_own": { | ||
"type": "long" | ||
}, | ||
"total_follow": { | ||
"type": "long" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
""" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters