Convert a tiledb_config
object to a R data.frame
Usage
# S3 method for tiledb_config
as.data.frame(x, ...)
Examples
cfg <- tiledb_config()
as.data.frame(cfg)
#> parameter
#> 1 config.env_var_prefix
#> 2 config.logging_format
#> 3 config.logging_level
#> 4 rest.curl.verbose
#> 5 rest.http_compressor
#> 6 rest.retry_count
#> 7 rest.retry_delay_factor
#> 8 rest.retry_http_codes
#> 9 rest.retry_initial_delay_ms
#> 10 rest.server_address
#> 11 rest.server_serialization_format
#> 12 sm.check_coord_dups
#> 13 sm.check_coord_oob
#> 14 sm.check_global_order
#> 15 sm.compute_concurrency_level
#> 16 sm.consolidation.amplification
#> 17 sm.consolidation.buffer_size
#> 18 sm.consolidation.mode
#> 19 sm.consolidation.step_max_frags
#> 20 sm.consolidation.step_min_frags
#> 21 sm.consolidation.step_size_ratio
#> 22 sm.consolidation.steps
#> 23 sm.consolidation.timestamp_end
#> 24 sm.consolidation.timestamp_start
#> 25 sm.consolidation.with_timestamps
#> 26 sm.dedup_coords
#> 27 sm.enable_signal_handlers
#> 28 sm.encryption_key
#> 29 sm.encryption_type
#> 30 sm.group.timestamp_end
#> 31 sm.group.timestamp_start
#> 32 sm.io_concurrency_level
#> 33 sm.max_tile_overlap_size
#> 34 sm.mem.malloc_trim
#> 35 sm.mem.reader.sparse_global_order.ratio_array_data
#> 36 sm.mem.reader.sparse_global_order.ratio_coords
#> 37 sm.mem.reader.sparse_global_order.ratio_query_condition
#> 38 sm.mem.reader.sparse_global_order.ratio_tile_ranges
#> 39 sm.mem.reader.sparse_unordered_with_dups.ratio_array_data
#> 40 sm.mem.reader.sparse_unordered_with_dups.ratio_coords
#> 41 sm.mem.reader.sparse_unordered_with_dups.ratio_query_condition
#> 42 sm.mem.reader.sparse_unordered_with_dups.ratio_tile_ranges
#> 43 sm.mem.total_budget
#> 44 sm.memory_budget
#> 45 sm.memory_budget_var
#> 46 sm.query.dense.reader
#> 47 sm.query.sparse_global_order.reader
#> 48 sm.query.sparse_unordered_with_dups.reader
#> 49 sm.read_range_oob
#> 50 sm.skip_checksum_validation
#> 51 sm.skip_est_size_partitioning
#> 52 sm.tile_cache_size
#> 53 sm.vacuum.mode
#> 54 sm.vacuum.timestamp_end
#> 55 sm.vacuum.timestamp_start
#> 56 sm.var_offsets.bitsize
#> 57 sm.var_offsets.extra_element
#> 58 sm.var_offsets.mode
#> 59 vfs.azure.blob_endpoint
#> 60 vfs.azure.block_list_block_size
#> 61 vfs.azure.max_parallel_ops
#> 62 vfs.azure.storage_account_key
#> 63 vfs.azure.storage_account_name
#> 64 vfs.azure.storage_sas_token
#> 65 vfs.azure.use_block_list_upload
#> 66 vfs.azure.use_https
#> 67 vfs.file.max_parallel_ops
#> 68 vfs.file.posix_directory_permissions
#> 69 vfs.file.posix_file_permissions
#> 70 vfs.gcs.max_parallel_ops
#> 71 vfs.gcs.multi_part_size
#> 72 vfs.gcs.project_id
#> 73 vfs.gcs.request_timeout_ms
#> 74 vfs.gcs.use_multi_part_upload
#> 75 vfs.hdfs.kerb_ticket_cache_path
#> 76 vfs.hdfs.name_node_uri
#> 77 vfs.hdfs.username
#> 78 vfs.max_batch_size
#> 79 vfs.min_batch_gap
#> 80 vfs.min_batch_size
#> 81 vfs.min_parallel_size
#> 82 vfs.read_ahead_cache_size
#> 83 vfs.read_ahead_size
#> 84 vfs.s3.aws_access_key_id
#> 85 vfs.s3.aws_external_id
#> 86 vfs.s3.aws_load_frequency
#> 87 vfs.s3.aws_role_arn
#> 88 vfs.s3.aws_secret_access_key
#> 89 vfs.s3.aws_session_name
#> 90 vfs.s3.aws_session_token
#> 91 vfs.s3.bucket_canned_acl
#> 92 vfs.s3.ca_file
#> 93 vfs.s3.ca_path
#> 94 vfs.s3.connect_max_tries
#> 95 vfs.s3.connect_scale_factor
#> 96 vfs.s3.connect_timeout_ms
#> 97 vfs.s3.endpoint_override
#> 98 vfs.s3.logging_level
#> 99 vfs.s3.max_parallel_ops
#> 100 vfs.s3.multipart_part_size
#> 101 vfs.s3.object_canned_acl
#> 102 vfs.s3.proxy_host
#> 103 vfs.s3.proxy_password
#> 104 vfs.s3.proxy_port
#> 105 vfs.s3.proxy_scheme
#> 106 vfs.s3.proxy_username
#> 107 vfs.s3.region
#> 108 vfs.s3.request_timeout_ms
#> 109 vfs.s3.requester_pays
#> 110 vfs.s3.scheme
#> 111 vfs.s3.skip_init
#> 112 vfs.s3.sse
#> 113 vfs.s3.sse_kms_key_id
#> 114 vfs.s3.use_multipart_upload
#> 115 vfs.s3.use_virtual_addressing
#> 116 vfs.s3.verify_ssl
#> value
#> 1 TILEDB_
#> 2 DEFAULT
#> 3 0
#> 4 false
#> 5 any
#> 6 25
#> 7 1.25
#> 8 503
#> 9 500
#> 10 https://api.tiledb.com
#> 11 CAPNP
#> 12 true
#> 13 true
#> 14 true
#> 15 12
#> 16 1.0
#> 17 50000000
#> 18 fragments
#> 19 4294967295
#> 20 4294967295
#> 21 0.0
#> 22 4294967295
#> 23 18446744073709551615
#> 24 0
#> 25 false
#> 26 false
#> 27 true
#> 28
#> 29 NO_ENCRYPTION
#> 30 18446744073709551615
#> 31 0
#> 32 12
#> 33 314572800
#> 34 true
#> 35 0.1
#> 36 0.5
#> 37 0.25
#> 38 0.1
#> 39 0.1
#> 40 0.5
#> 41 0.25
#> 42 0.1
#> 43 10737418240
#> 44 5368709120
#> 45 10737418240
#> 46 refactored
#> 47 refactored
#> 48 refactored
#> 49 warn
#> 50 false
#> 51 false
#> 52 10000000
#> 53 fragments
#> 54 18446744073709551615
#> 55 0
#> 56 64
#> 57 false
#> 58 bytes
#> 59
#> 60 5242880
#> 61 12
#> 62
#> 63
#> 64
#> 65 true
#> 66 true
#> 67 12
#> 68 755
#> 69 644
#> 70 12
#> 71 5242880
#> 72
#> 73 3000
#> 74 true
#> 75
#> 76
#> 77
#> 78 18446744073709551615
#> 79 512000
#> 80 20971520
#> 81 10485760
#> 82 10485760
#> 83 102400
#> 84
#> 85
#> 86
#> 87
#> 88
#> 89
#> 90
#> 91 NOT_SET
#> 92
#> 93
#> 94 5
#> 95 25
#> 96 10800
#> 97
#> 98 Off
#> 99 12
#> 100 5242880
#> 101 NOT_SET
#> 102
#> 103
#> 104 0
#> 105 http
#> 106
#> 107 us-east-1
#> 108 3000
#> 109 false
#> 110 https
#> 111 false
#> 112
#> 113
#> 114 true
#> 115 true
#> 116 true