Time Traveling

You can open or reopen an array at a particular timestamp, if for example you'd like to see a view of the array in the past. See Time Traveling for more details. You can do so as follows:

// ... create context ctx

// Open at a timestamp
uint64_t timestamp = 1561492235844; // In ms
tiledb_array_alloc(ctx, "<array-uri>", &array);
tiledb_array_set_open_timestamp_end(ctx, array, timestamp);
tiledb_array_open(ctx, array, TILEDB_READ);

Last updated