From 7ffbf7d179af3acd0963e3319df1a2f5be295094 Mon Sep 17 00:00:00 2001 From: Agisilaos Kounelis <36283973+kounelisagis@users.noreply.github.com> Date: Thu, 23 Jan 2025 01:29:45 +0700 Subject: [PATCH] Add `commits` to vacuum modes (#2142) Co-authored-by: Isaiah Norton --- tiledb/highlevel.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tiledb/highlevel.py b/tiledb/highlevel.py index e9727a010b..1986fe1796 100644 --- a/tiledb/highlevel.py +++ b/tiledb/highlevel.py @@ -283,10 +283,10 @@ def vacuum(uri, config=None, ctx=None, timestamp=None): :raises TypeError: cannot convert `uri` to unicode string :raises: :py:exc:`tiledb.TileDBError` - This operation of this function is controlled by - the `"sm.vacuum.mode"` parameter, which accepts the values ``fragments``, - ``fragment_meta``, and ``array_meta``. Rather than passing the timestamp - into this function, it may be set by using `"sm.vacuum.timestamp_start"`and + This operation of this function is controlled by the `"sm.vacuum.mode"` + parameter, which accepts the values ``fragments``, ``fragment_meta``, + ``array_meta``, and ``commits``. Rather than passing the timestamp into + this function, it may be set by using `"sm.vacuum.timestamp_start"`and `"sm.vacuum.timestamp_end"` which takes in a time in UNIX seconds. If both are set then this function's `timestamp` argument will be used.