Live Platform
  • Introduction
  • Release Notes
    • Live 3
      • 3.59.0
      • 3.58.0
      • 3.57.0
      • 3.56.0
      • 3.55.0
      • 3.54.0
      • 3.53.0
      • 3.52.0
      • 3.51.0
      • 3.50.0
      • 3.49.0
      • 3.48.0
      • 3.47.0
      • 3.46.0
      • 3.45.0
      • 3.44.0
      • 3.43.0
      • 3.42.0
      • 3.41.0
      • 3.40.0
      • 3.39.0
      • 3.38.0
      • 3.37.0
      • 3.36.0
      • 3.35.0
      • 3.34.0
      • 3.33.0
      • 3.32.0
      • 3.31.0
      • 3.30.0
      • 3.29.0
      • 3.28.0
      • 3.27.0
      • 3.26.0
      • 3.25.0
      • 3.24.0
      • 3.23.0
      • 3.22.0
      • 3.21.0
      • 3.20.0
      • 3.19.0
      • 3.18.0
      • 3.17.0
      • 3.16.0
      • 3.15.0
      • 3.14.0
      • 3.13.0
      • 3.12.0
      • 3.11.0
      • 3.10.0
      • 3.9.0
      • 3.8.0
      • 3.7.0
      • 3.6.0
      • 3.5.0
      • 3.4.0
      • 3.3.0
      • 3.2.0
      • 3.1.0
      • 3.0.0
    • Live 2
  • Articles
    • Creating an aggregation
    • Creating a pipe
  • Theoretical Background
    • Fundamentals
    • Key Advantages
  • Platform Architecture
    • Introduction
    • Queries
    • Glossary
  • Featured plugins
    • Annotations
    • Groovy support
    • Messenger
    • Microsoft Teams
    • MongoDB
    • MongoDB Timeseries
    • MongoDB Kit
    • Purge plugin
    • SQL
    • TCP Input
    • TimescaleDB
  • Data visualization
    • Pipes widgets
      • Temporal
      • Cartesian
      • Multi-value snapshot
      • Single-value snapshot
      • Tables
      • Heatmap
      • JSX Widgets
      • Lollipop
      • Histogram
      • State Timeline
      • Boxplot
    • Pipes modifiers on Pipes charts
  • Alerts and notifications
    • Pipes modifiers on rules
  • Pipes Queries
    • Introduction
    • Dynamic filters
    • Meta parameters
    • Reducer
      • Uniform compress
      • PIP
    • Storage Hints
    • Execution Context
    • Event flow modifiers
  • Developers
    • Plugins
    • Packages
    • Backend API
      • Lookup Tables
      • Extensions
      • Settings
      • Storage Providers
      • Web Services
      • Web Setup
      • Entity Audit
    • Web application
      • Services
        • Point service
        • Menu service
      • Browser Compatibility
      • Runtime modules
        • Core Javascript modules
        • Library modules
        • Adding modules to runtime
      • Localization (i18n)
      • Date formatting
      • Dashboard and Widgets
        • Widget API
        • Custom widget editors
        • Live Event Types
        • Live Widget Configuration
        • Live Widget Packaging
        • Widget Request Interceptors
      • React Contexts
        • Dashboard
        • Dashboard widget
      • Registering Home Page options
    • Python application
    • Subscribing to Live Events
  • Administration
    • Configuration
      • Home Page Customization
      • live.properties
    • Infrastructure Monitoring
    • Storage Monitoring
    • Queries Monitoring
    • Logs Monitoring
    • Data Purging
  • Features
    • Access Permission
    • Datasources
    • Export Dashboard
    • Partial Indexes
    • WebApp Metrics
    • Entity Audit
Powered by GitBook
On this page

Was this helpful?

  1. Administration
  2. Configuration

live.properties

This file contains the basic configuration for Intelie Live runtime, and is located at /opt/intelie/live/conf.

Property

Type

Default

Since

datasource.url

string

datasource.user

string

datasource.password

string

datasource.doNotMigrate

string

false

If true, Live will not try to run the migrations to update the database to the latest version. In this case, the migrations must be performed externally.

datasource.maxIdleTime

int

1800

datasource.maxPoolSize

int

50

datasource.minPoolSize

int

2

datasource.maxStatements

int

0

datasource.maxStatementsPerConnection

int

0

datasource.initialPoolSize

int

2

datasource.acquireIncrement

int

1

datasource.checkoutTimeout

int

3000

datasource.idleConnectionTestPeriod

int

30

datasource.preferredTestQuery

string

SELECT 1

live.home

/var/lib/live

Root directory, where to look for the plugins (/plugins), drivers (/drivers), application data (/data), cache (/cache) and persistent queues (/queues)

live.cache_home

string

[live.home]/cache

2.29.0

live.queues_home

string

[live.home]/queues

2.29.0

live.warn.threshold.flow

int

100

3.1.0

An warn will be emitted when flow lasts longer than the configured value, in milliseconds.

live.warn.threshold.tick

int

10

3.1.0

An warn will be emitted when tick lasts longer than the configured value, in milliseconds.

live.useAsyncDatasourceProvider

string

false

3.24.0

Run datasource queries in a separate thread

live.warn.period.cooldown

int

1000

3.1.0

Warns that occur too often, within this cooldown period, will be omitted.

security.passwordEncryptionPassword

string

3.0.0

Live will encrypt password of extensions and will update the database with encrypted passwords. Should be a unique strong and secure key string. If changed, all passwords of extensions will be lost and need to be entered again.

settings.readcache

int

67108864 (64MB)

How much data will be cached from the settings for reading. This value is in bytes. Each settings' value and path cached will consume this limit. Be aware that the memory consumption for this cache will be greater than this value.

This is an LRU cache.

settings.writebuffer

int

1048576 (1MB)

How much data will be buffered in settings' write operation. This value is in bytes. Each settings' value and path cached will consume this limit.

If the limit is reached the buffer is flushed.

settings.flushperiod

int

5000 (5 seconds)

Interval in milliseconds that the settings' buffer will be automatically flushed, i.e. will be persisted.

Example

# Intelie Live configuration properties

#Any property value can refer to an environment variable, using the syntax:
#
#Example:
#datasource.user=${USER}_mysql

#DB
datasource.url=jdbc:mysql://localhost/live?autoReconnect=true&characterEncoding=utf-8
datasource.user=live
datasource.password=
datasource.doNotMigrate=false

#Directory where plugins and jdbc-drivers are installed

#optional
#live.home=runtime
#live.cache_home=/tmp/myCache
#live.queues_home=/tmp/myQueues
PreviousHome Page CustomizationNextInfrastructure Monitoring

Last updated 2 years ago

Was this helpful?