Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add commits to vacuum modes #2142

Merged
merged 2 commits into from
Jan 22, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tiledb/highlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 thetimestamp into
kounelisagis marked this conversation as resolved.
Show resolved Hide resolved
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.

Expand Down
Loading