Learn R Programming

tiledb (version 0.30.2)

tiledb_config_as_built_json: Return the 'AsBuilt' JSON string

Description

Return the 'AsBuilt' JSON string

Usage

tiledb_config_as_built_json()

Arguments

Value

The JSON string containing 'AsBuilt' information

Examples

Run this code
if (tiledb_version(TRUE) > "2.17")
    txt <- tiledb::tiledb_config_as_built_json()
## now eg either one of
##   sapply(jsonlite::fromJSON(txt)$as_built$parameters$storage_backends, \(x) x[[1]])
##   sapply(RcppSimdJson::fparse(txt)$as_built$parameters$storage_backends, \(x) x[[1]])
## will return a named vector such as
##   c(azure = FALSE, gcs = FALSE, hdfs = FALSE, s3 = TRUE)

Run the code above in your browser using DataLab