:name | :env | :doc | :default |
---|---|---|---|
eva.concurrent.background-resource.max | EVA_BACKGROUND_RESOURCE_MAP_THREAD_MAX | Maximum number of threads in the global background-resource thread pool. | 24 |
eva.concurrent.background-resource.queue-size | Maximum size of queue for tasks realizing background resources. | 48 | |
eva.concurrent.background-resource.thread-goal | The target number of threads to be devoted to any particular background-resource-map. | 2 | |
eva.concurrent.flowgraph.thread-count | EVA_CONTAINER_CORE_LIMIT | The number of threads used by each flowgraph graph. | 8 |
eva.database.indexes.max-tx-delta | EVA_DATABASE_INDEXES_MAX_TX_DELTA | 100 | |
eva.database.overlay.estimate-delay-sec | 0 | ||
eva.database.overlay.estimate-interval-sec | 30 | ||
eva.database.overlay.max-size-mb | EVA_DATABASE_OVERLAY_MAX_SIZE_MB | 32 | |
eva.error.always-sanitize-exceptions | EVA_ALWAYS_SANITIZE | Exceptions thrown from API endpoints should always be sanitized. A safety precaution -- strict reliance on this feature is probably an anti-pattern. | false |
eva.error.capture-insists | EVA_CAPTURE_INSISTS | Insist will capture the values of local bindings used in the failing statement. | false |
eva.log.read-chunk-size | EVA_LOG_READ_CHUNK_SIZE | When lazy reading a span from the transaction log, request from storage in subspans of this size. | 10 |
eva.log.read-chunks-ahead | EVA_LOG_READ_CHUNKS_AHEAD | When lazy reading a span from the transaction log, asynchronously attempt to stay this many chunks ahead. | 10 |
eva.query.memoization-cache | The threshold used for caching query compilation | 100 | |
eva.query.trace-logging | EVA_QUERY_TRACE_LOGGING | Whether or not tracing occurs in the query library. | false |
eva.server.alt-host | EVA_SERVER_ALT_HOST | (Optional) Public host-name to publish as discovery address. | |
eva.server.data-dir | EVA_SERVER_DATA_DIR | /Users/tylerwilding/repos/eva/data | |
eva.server.h2-port | EVA_SERVER_H2_PORT | 5447 | |
eva.server.h2-web-port | EVA_SERVER_H2_WEB_PORT | 5448 | |
eva.server.host | EVA_SERVER_HOST | Host-name or ip of the server; used to as the address to bind to. | localhost |
eva.server.port | EVA_SERVER_PORT | Primary port the server listens on. | 5445 |
eva.server.ssl | EVA_SERVER_SSL | false | |
eva.server.startup-delay | EVA_SERVER_STARTUP_DELAY | 0 | |
eva.server.status-http-port | EVA_SERVER_STATUS_HTTP_PORT | Port the server http-status endpoint listens on. | |
eva.startup.thread-count | EVA_CONTAINER_CORE_LIMIT | How many transactor nodes could be started simulteniously. | 8 |
eva.system.core-limit | EVA_CONTAINER_CORE_LIMIT | Sets the size of available processors -- in Java 8 the JVM can't tell it's in a container. | 8 |
eva.telemetry.enable-per-db-metrics | EVA_ENABLE_PER_DB_METRICS | Enables per-db metrics. Adding flag to disable until we have a not-horribly-expensive way to use them. | false |
eva.tracing | EVA_TRACING | Enables tracing. NOTE: Changing this variable after loading code that traces will have NO EFFECT. It MUST be set to false by the time our other Clojure files are loaded. | true |
eva.tracing.tag-inputs | EVA_TAG_INPUTS | Tag inputs to query/pull/pull-many on the trace of the aforementioned operation. | false |
eva.transact-timeout | EVA_TRANSACT_TIMEOUT | 10000 | |
eva.transaction-pipeline.byte-size-limit | EVA_TRANSACTION_BYTE_SIZE_LIMIT | The largest value for a string (in bytes) or bytes attribute the transactor will accept. | 1024 |
eva.transaction-pipeline.clock-skew-window | EVA_TRANSACTION_PIPELINE_CLOCK_SKEW_WINDOW | The amount of clock skew that the transaction process is willing to tolerate in ms. | 256 |
eva.transaction-pipeline.compile-db-fns | EVA_TRANSACTION_PIPELINE_COMPILE_DB_FNS | Enable or disable the compilation of :db.type/fn attributes upon transaction. | true |
eva.transaction-pipeline.limit-byte-sizes | EVA_TRANSACTION_REJECT_BYTE_LIMITS | When enabled, transactions over the byte size limit will be rejected with an exception. | false |
eva.v2.storage.block-size | EVA_STORAGE_BLOCK_SIZE | Sets the maximum size size of storage blocks. | 65536 |
eva.v2.storage.ddb.max-retries | EVA_STORAGE_DDB_MAX_RETRIES | Number of times to attempt an operation that dynamo has partially processed. | 20 |
eva.v2.storage.index-cache-size | EVA_STORAGE_INDEX_CACHE_SIZE | Sets the size of the in-mem index cache: proper size driven by index parameters. | 20 |
eva.v2.storage.max-request-cardinality | EVA_STORAGE_MAX_REQUEST_CARDINALITY | 25 | |
eva.v2.storage.request-timeout-ms | EVA_STORAGE_REQUEST_TIMEOUT_MS | 10000 | |
eva.v2.storage.serialization.thread-count | EVA_STORAGE_SERIALIZATION_THREADS | The number of threads used by the v2 global reader & writer graphs. | 12 |
eva.v2.storage.sql.connection-pool.idle-connection-test-period | EVA_STORAGE_SQL_CONNECTION_POOL_IDLE_TEST_PERIOD | If N > 0, idle jdbc connections will be tested every N seconds | 120 |
eva.v2.storage.sql.connection-pool.max-connection-age | EVA_STORAGE_SQL_CONNECTION_POOL_MAX_CONNECTION_AGE | Seconds, effectively a time to live. A Connection older than max-connection-age will be destroyed and purged from the pool. Zero means no maximum absolute age is enforced | 0 |
eva.v2.storage.sql.connection-pool.max-idle-time | EVA_STORAGE_SQL_CONNECTION_POOL_MAX_IDLE_TIME | Seconds a Connection can remain pooled but unused before being discarded. Zero means idle connections never expire. | 10800 |
eva.v2.storage.sql.connection-pool.max-idle-time-excess-connections | EVA_STORAGE_SQL_CONNECTION_POOL_MAX_IDLE_TIME_EXCESS_CONNECTIONS | Number of seconds that Connections in excess of minPoolSize should be permitted to remain idle in the pool before being culled. | 1800 |
eva.v2.storage.sql.connection-pool.max-pool-size | EVA_STORAGE_SQL_CONNECTION_POOL_MAX_POOL_SIZE | Maximum number of Connections a pool will maintain at any given time. | 15 |
eva.v2.storage.sql.connection-pool.min-pool-size | EVA_STORAGE_SQL_CONNECTION_POOL_MIN_POOL_SIZE | Minimum number of Connections a pool will maintain at any given time. | 3 |
eva.v2.storage.sql.connection-pool.test-connection-on-checkin | EVA_STORAGE_SQL_CONNECTION_POOL_TEST_ON_CHECKIN | If true, jdbc connections will be tested on checkin to the connection-pool | true |
eva.v2.storage.sql.connection-pool.test-connection-on-checkout | EVA_STORAGE_SQL_CONNECTION_POOL_TEST_ON_CHECKOUT | If true, jdbc connections will be tested on checkout from the connection-pool | false |
eva.v2.storage.sql.max-retries | EVA_STORAGE_SQL_MAX_RETRIES | Number of times to attempt a sql operation that has failed. | 5 |
eva.v2.storage.value-cache-size | EVA_STORAGE_VALUE_CACHE_SIZE | Sets the size of the (deserialized) value cache: proper size driven by index paramaters. | 1000 |
Can you improve this documentation? These fine people already did:
Tyler Wilding & Erik.PetersenEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close