Skip to content

Commit 439380f

Browse files
committed
[change] Changed save_search_log default to False to prevent metastore OOM issues
1 parent ac1c527 commit 439380f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyatlan/model/search.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2017,8 +2017,11 @@ class IndexSearchRequest(SearchRequest):
20172017
)
20182018

20192019
class Metadata(AtlanObject):
2020+
# Set this to `False` to prevent the frequent
2021+
# Out of memory (OOM) issue in Metastore pods.
20202022
save_search_log: bool = Field(
2021-
default=True, description="Whether to log this search (True) or not (False)"
2023+
default=False,
2024+
description="Whether to log this search (True) or not (False)",
20222025
)
20232026
utm_tags: List[str] = Field(
20242027
default_factory=list,

0 commit comments

Comments
 (0)