Skip to contents

Freezes the Redis data base of an ArchiveAsync to a data.table::data.table(). No further points can be added to the archive but the data can be accessed and analyzed. Useful when the Redis data base is not permanently available. Use the callback bbotk.async_freeze_archive to freeze the archive after the optimization has finished.

S3 Methods

  • as.data.table(archive)
    ArchiveAsync -> data.table::data.table()
    Returns a tabular view of all performed function calls of the Objective. The x_domain column is unnested to separate columns.

See also

Super classes

bbotk::Archive -> bbotk::ArchiveAsync -> ArchiveAsyncFrozen

Active bindings

data

(data.table::data.table)
Data table with all finished points.

queued_data

(data.table::data.table)
Data table with all queued points.

running_data

(data.table::data.table)
Data table with all running points.

finished_data

(data.table::data.table)
Data table with all finished points.

failed_data

(data.table::data.table)
Data table with all failed points.

n_queued

(integer(1))
Number of queued points.

n_running

(integer(1))
Number of running points.

n_finished

(integer(1))
Number of finished points.

n_failed

(integer(1))
Number of failed points.

n_evals

(integer(1))
Number of evaluations stored in the archive.

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage

ArchiveAsyncFrozen$new(archive)

Arguments

archive

(ArchiveAsync)
The archive to freeze.


Method push_points()

Push queued points to the archive.

Usage

ArchiveAsyncFrozen$push_points(xss)

Arguments

xss

(list of named list())
List of named lists of point values.


Method pop_point()

Pop a point from the queue.

Usage

ArchiveAsyncFrozen$pop_point()


Method push_running_point()

Push running point to the archive.

Usage

ArchiveAsyncFrozen$push_running_point(xs, extra = NULL)

Arguments

xs

(named list)
Named list of point values.

extra

(list())
Named list of additional information.


Method push_result()

Push result to the archive.

Usage

ArchiveAsyncFrozen$push_result(key, ys, x_domain, extra = NULL)

Arguments

key

(character())
Key of the point.

ys

(list())
Named list of results.

x_domain

(list())
Named list of transformed point values.

extra

(list())
Named list of additional information.


Method push_failed_point()

Push failed point to the archive.

Usage

ArchiveAsyncFrozen$push_failed_point(key, message)

Arguments

key

(character())
Key of the point.

message

(character())
Error message.


Method data_with_state()

Fetch points with a specific state.

Usage

ArchiveAsyncFrozen$data_with_state(
  fields = c("xs", "ys", "xs_extra", "worker_extra", "ys_extra", "condition"),
  states = c("queued", "running", "finished", "failed"),
  reset_cache = FALSE
)

Arguments

fields

(character())
Fields to fetch. Defaults to c("xs", "ys", "xs_extra", "worker_extra", "ys_extra").

states

(character())
States of the tasks to be fetched. Defaults to c("queued", "running", "finished", "failed").

reset_cache

(logical(1))
Whether to reset the cache of the finished points.


Method clear()

Clear all evaluation results from archive.

Usage

ArchiveAsyncFrozen$clear()


Method clone()

The objects of this class are cloneable with this method.

Usage

ArchiveAsyncFrozen$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# example only runs if a Redis server is available
if (mlr3misc::require_namespaces(c("rush", "redux", "mirai"), quietly = TRUE) &&
  redux::redis_available()) {
# define the objective function
fun = function(xs) {
  list(y = - (xs[[1]] - 2)^2 - (xs[[2]] + 3)^2 + 10)
}

# set domain
domain = ps(
  x1 = p_dbl(-10, 10),
  x2 = p_dbl(-5, 5)
)

# set codomain
codomain = ps(
  y = p_dbl(tags = "maximize")
)

# create objective
objective = ObjectiveRFun$new(
  fun = fun,
  domain = domain,
  codomain = codomain,
  properties = "deterministic"
)

# start workers
rush::rush_plan(worker_type = "remote")
mirai::daemons(1)

# initialize instance
instance = oi_async(
  objective = objective,
  terminator = trm("evals", n_evals = 20),
  callback = clbk("bbotk.async_freeze_archive")
)

# load optimizer
optimizer = opt("async_random_search")

# trigger optimization
optimizer$optimize(instance)

# frozen archive
instance$archive

# best performing configuration
instance$archive$best()

# covert to data.table
as.data.table(instance$archive)
}
#>        state         x1           x2            y        timestamp_xs   pid
#>       <char>      <num>        <num>        <num>              <POSc> <int>
#>  1: finished  0.7355865  4.436809312  -46.9048744 2026-02-28 07:00:41  8289
#>  2: finished -5.2465150  1.685353492  -64.4645163 2026-02-28 07:00:41  8289
#>  3: finished -1.6100269  1.692733854  -25.0540453 2026-02-28 07:00:41  8289
#>  4: finished -9.6485851  2.074896538 -151.4441090 2026-02-28 07:00:41  8289
#>  5: finished  9.1534135  0.636737862  -54.3971877 2026-02-28 07:00:41  8289
#>  6: finished -0.9507994 -4.878603549   -2.2363683 2026-02-28 07:00:41  8289
#>  7: finished  2.7997505 -1.921276769    8.1967553 2026-02-28 07:00:41  8289
#>  8: finished  7.9367603  3.130829856  -62.8321976 2026-02-28 07:00:41  8289
#>  9: finished -5.3535132  0.132857377  -53.8889510 2026-02-28 07:00:41  8289
#> 10: finished -1.1703927  1.581480915  -21.0413571 2026-02-28 07:00:41  8289
#> 11: finished  5.5692991  1.671339287  -24.5613067 2026-02-28 07:00:41  8289
#> 12: finished  9.4659255 -4.325706593  -47.4975413 2026-02-28 07:00:41  8289
#> 13: finished -4.5022012 -3.621611151  -32.6650205 2026-02-28 07:00:41  8289
#> 14: finished  6.4919932  0.400897277  -21.7441056 2026-02-28 07:00:41  8289
#> 15: finished -1.5261497 -0.002130552  -11.4209531 2026-02-28 07:00:41  8289
#> 16: finished  5.2346110 -2.546360991   -0.6684964 2026-02-28 07:00:41  8289
#> 17: finished -8.1469277 -2.532682236  -93.1785285 2026-02-28 07:00:41  8289
#> 18: finished  7.9586287 -3.273955223  -25.5803070 2026-02-28 07:00:41  8289
#> 19: finished  5.3650967 -2.241232399   -1.8996043 2026-02-28 07:00:41  8289
#> 20: finished  4.8743111  3.778382706  -44.2081363 2026-02-28 07:00:41  8289
#>        state         x1           x2            y        timestamp_xs   pid
#>       <char>      <num>        <num>        <num>              <POSc> <int>
#>            worker_id        timestamp_ys                                 keys
#>               <char>              <POSc>                               <char>
#>  1: limestone_drever 2026-02-28 07:00:41 6074a4c8-aaf6-462a-9e23-652f7bf1c389
#>  2: limestone_drever 2026-02-28 07:00:41 02ef9b08-9f68-487d-a723-df803fa63ecd
#>  3: limestone_drever 2026-02-28 07:00:41 36ec844c-2359-434c-9d6a-03dc5e4ff36a
#>  4: limestone_drever 2026-02-28 07:00:41 21943b02-0096-4146-b77f-8579e5922c7e
#>  5: limestone_drever 2026-02-28 07:00:41 b70e8665-09c3-4a8e-a4b7-858ae7c94622
#>  6: limestone_drever 2026-02-28 07:00:41 461e2ebc-db06-4974-aff7-cd576fd971f1
#>  7: limestone_drever 2026-02-28 07:00:41 1b152ce4-93ac-486d-8054-f9f69bbd1209
#>  8: limestone_drever 2026-02-28 07:00:41 5050eb17-b4e0-4db7-a9e7-4f421a3d8da7
#>  9: limestone_drever 2026-02-28 07:00:41 6e6a7960-99f9-45e9-b150-79eeb37f2165
#> 10: limestone_drever 2026-02-28 07:00:41 3972e7c7-f578-4b0b-abb8-116f7275a15e
#> 11: limestone_drever 2026-02-28 07:00:41 f0f01848-7099-4ed9-9907-f20fefe32326
#> 12: limestone_drever 2026-02-28 07:00:41 dd8587d3-b55e-4468-8f5a-8c3f5f48d31a
#> 13: limestone_drever 2026-02-28 07:00:41 ab38b377-e1c1-424d-96eb-406084b68e28
#> 14: limestone_drever 2026-02-28 07:00:41 cbbb6fd4-1509-422f-8871-0085d19b7b8f
#> 15: limestone_drever 2026-02-28 07:00:41 b11a6a02-e6b0-4130-99a4-1bf2f4d99bf8
#> 16: limestone_drever 2026-02-28 07:00:41 088ba04d-1707-47b9-abf2-9e58165a133d
#> 17: limestone_drever 2026-02-28 07:00:41 6db079a7-f056-446b-a945-0c0dfd58ac38
#> 18: limestone_drever 2026-02-28 07:00:41 dd63cf95-5351-47aa-b864-cfd5d2aacb16
#> 19: limestone_drever 2026-02-28 07:00:41 25577b62-1d90-4771-99fa-0b72b482f0a6
#> 20: limestone_drever 2026-02-28 07:00:41 bd11f4e5-acef-42b3-b19d-6926b700ce4c
#>            worker_id        timestamp_ys                                 keys
#>               <char>              <POSc>                               <char>
#>     x_domain_x1  x_domain_x2
#>           <num>        <num>
#>  1:   0.7355865  4.436809312
#>  2:  -5.2465150  1.685353492
#>  3:  -1.6100269  1.692733854
#>  4:  -9.6485851  2.074896538
#>  5:   9.1534135  0.636737862
#>  6:  -0.9507994 -4.878603549
#>  7:   2.7997505 -1.921276769
#>  8:   7.9367603  3.130829856
#>  9:  -5.3535132  0.132857377
#> 10:  -1.1703927  1.581480915
#> 11:   5.5692991  1.671339287
#> 12:   9.4659255 -4.325706593
#> 13:  -4.5022012 -3.621611151
#> 14:   6.4919932  0.400897277
#> 15:  -1.5261497 -0.002130552
#> 16:   5.2346110 -2.546360991
#> 17:  -8.1469277 -2.532682236
#> 18:   7.9586287 -3.273955223
#> 19:   5.3650967 -2.241232399
#> 20:   4.8743111  3.778382706
#>     x_domain_x1  x_domain_x2
#>           <num>        <num>