wiwdata / presto-chart

Highly configurable Helm Presto Chart
MIT License
24 stars 20 forks source link

Cannot create s3-backed hive metastore #4

Closed riazarbi closed 4 years ago

riazarbi commented 4 years ago

Hello,

Objective

I want to deploy this chart to an on-prem kubrnetes cluster with a catalog that makes use of minio for the hive metastore and backend storage. For reference, see - https://blog.minio.io/building-an-on-premise-ml-ecosystem-with-minio-powered-by-presto-weka-r-and-s3select-feature-fefbbaa87054

Reason to think it should work

I have managed to use the prestosql/presto docker image to achieve this successfully on a dev machine (just docker, no k8s). This proof of concept used 1 minio container, 1 presto container, and 1 jupyter python container to connect to presto and push/pull data.

In order to get it working, I had to sort out networking and to create the right catalog file. The catalog file I'm using is -

# lake.catalog
connector.name=hive-hadoop2
hive.metastore=file
hive.metastore.catalog.dir=s3://presto/
hive.allow-drop-table=true
hive.s3.aws-access-key=<USER>
hive.s3.aws-secret-key=<PASSWORD>
hive.s3.endpoint=<URL>
hive.s3.path-style-access=true
hive.s3.ssl.enabled=false
hive.s3select-pushdown.enabled=true
hive.storage-format=parquet

How far I've gotten with wiwdata/presto-chart

I have a jupyter notebook up in the cluster. I have minio up in the cluster.

  1. I am able to bring up a wiwdata presto cluster with defaults.
  2. I am able to interact with the presto using the python notebook. I am able to interact with the minio server using the python notebook. So networking is posing no issues.

Where I am stuck

I cannot bring up a presto cluster with a working catalog configmap. This is what my configmap looks like -

---
# Source: presto/templates/configmap-catalog.yaml
apiVersion: v1
kind: ConfigMap
metadata:
  name: presto-catalog
  labels:
    app: presto
    chart: presto-1
    release: presto-1579859901
data:
  hive.properties: |
    connector.name=hive-hadoop2
    hive.metastore=file
    hive.metastore.catalog.dir=s3://presto/
    hive.allow-drop-table=true
    hive.s3.aws-access-key=<USER>
    hive.s3.aws-secret-key=<PASSWORD>
    hive.s3.endpoint="minio-service.default.svc.cluster.local:9000"
    hive.s3.path-style-access=true
    hive.s3.ssl.enabled=false
    hive.s3select-pushdown.enabled=true
    hive.storage-format=parquet
---

All other values in values.yaml are unchanged

Unfortunately, the cluster keeps entering a crashloop.

riaz@k3s-dev:~/presto-chart$ sudo kubectl get all
NAME                                                 READY   STATUS             RESTARTS   AGE
pod/kubernetes-cockpit-tlnsw                         1/1     Running            0          3h54m
pod/minio-69c5c44c7c-74dkh                           1/1     Running            0          136m
pod/presto-1579859901-worker-845cd7cb9c-2tkzz        0/1     CrashLoopBackOff   3          3m45s
pod/presto-1579859901-worker-845cd7cb9c-hh295        0/1     CrashLoopBackOff   3          3m45s
pod/presto-1579859901-coordinator-7df8fc5c45-m699k   0/1     CrashLoopBackOff   3          3m45s

NAME                                       DESIRED   CURRENT   READY   AGE
replicationcontroller/kubernetes-cockpit   1         1         1       3h54m

NAME                         TYPE           CLUSTER-IP      EXTERNAL-IP                                PORT(S)    AGE
service/kubernetes           ClusterIP      10.43.0.1       <none>                                     443/TCP    13h
service/workbench            ExternalName   <none>          proxy-public.workbench.svc.cluster.local   80/TCP     13h
service/kubernetes-cockpit   ClusterIP      10.43.32.92     <none>                                     443/TCP    3h54m
service/minio-service        ClusterIP      10.43.102.159   <none>                                     9000/TCP   136m
service/presto-1579859901    ClusterIP      10.43.214.17    <none>                                     80/TCP     3m45s

NAME                                            READY   UP-TO-DATE   AVAILABLE   AGE
deployment.apps/minio                           1/1     1            1           136m
deployment.apps/presto-1579859901-worker        0/2     2            0           3m45s
deployment.apps/presto-1579859901-coordinator   0/1     1            0           3m45s

NAME                                                       DESIRED   CURRENT   READY   AGE
replicaset.apps/minio-69c5c44c7c                           1         1         1       136m
replicaset.apps/presto-1579859901-worker-845cd7cb9c        2         2         0       3m45s
replicaset.apps/presto-1579859901-coordinator-7df8fc5c45   1         1         0       3m45s

I will post the logs in the next message so that they don't clog up this one, but the salient error (I think) is this -

2020-01-24T11:13:07.350Z    ERROR   main    com.facebook.presto.server.PrestoServer Unable to create injector, see the following errors:

1) Explicit bindings are required and com.facebook.presto.hive.authentication.HdfsAuthentication is not explicitly bound.
  while locating com.facebook.presto.hive.authentication.HdfsAuthentication
    for the 3rd parameter of com.facebook.presto.hive.HdfsEnvironment.<init>(HdfsEnvironment.java:50)
  at com.facebook.presto.hive.HiveClientModule.configure(HiveClientModule.java:68)

2) Explicit bindings are required and com.facebook.presto.hive.s3.S3ConfigurationUpdater is not explicitly bound.
  while locating com.facebook.presto.hive.s3.S3ConfigurationUpdater
    for the 2nd parameter of com.facebook.presto.hive.HdfsConfigurationUpdater.<init>(HdfsConfigurationUpdater.java:77)
  at com.facebook.presto.hive.HiveClientModule.configure(HiveClientModule.java:66)

3) Error: Could not coerce value 'parquet' to com.facebook.presto.hive.HiveStorageFormat (property 'hive.storage-format') in order to call [public com.facebook.presto.hive.HiveClientConfig com.facebook.presto.hive.HiveClientConfig.setHiveStorageFormat(com.facebook.presto.hive.HiveStorageFormat)]

4) Configuration property 'hive.s3.aws-access-key' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

5) Configuration property 'hive.s3.aws-secret-key' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

6) Configuration property 'hive.s3.endpoint' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

7) Configuration property 'hive.s3.path-style-access' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

8) Configuration property 'hive.s3.ssl.enabled' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

9) Configuration property 'hive.s3select-pushdown.enabled' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

10) Configuration property 'hive.storage-format' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

10 errors

This suggests to me that this docker container has been built with a version of presto that doesn't support the s3-backed hive metastore.

Is this correct? If so, could I build an updated one?

riazarbi commented 4 years ago

Full logs form the controller. (don't worry that you can read my minio password - I've changed it :))

sudo kubectl logs pod/presto-1579859901-coordinator-7df8fc5c45-m699k 

============== SETTINGS ==============
  * PRESTO_1579859901_PORT: tcp://10.43.214.17:80
  * PRESTO_1579859901_PORT_80_TCP: tcp://10.43.214.17:80
  * PRESTO_1579859901_PORT_80_TCP_ADDR: 10.43.214.17
  * PRESTO_1579859901_PORT_80_TCP_PORT: 80
  * PRESTO_1579859901_PORT_80_TCP_PROTO: tcp
  * PRESTO_1579859901_SERVICE_HOST: 10.43.214.17
  * PRESTO_1579859901_SERVICE_PORT: 80
  * PRESTO_CATALOG_DIR: /presto/etc/catalog
  * PRESTO_CONFIGS_DIR: /presto/etc/conf
  * PRESTO_DATA_DIR: /presto/data
  * PRESTO_HOME: /presto
  * PRESTO_USER: presto
  * TEMPLATE_CATALOG_DIR: /presto/templates/catalog
  * TEMPLATE_CUSTOM_DIR: /presto/templates/custom_conf
  * TEMPLATE_DEFAULT_DIR: /presto/templates/default_conf
  * TEMPLATE_DIR: /presto/templates
  * coordinator: True
  * discovery_port: 80
  * discovery_uri: presto-1579859901
  * dry_run: False
  * environment: production
  * log_level: INFO
  * node_id: presto-1579859901-coordinator-7df8fc5c45-m699k

============== BOOTSTRAPPING ==============

[ADDED]: jvm.config from /presto/templates/default_conf/jvm.config

--- Bootstrapping Configuration Files ---

[RENDERED]: /presto/etc/conf/log.properties
  com.facebook.presto=INFO

[RENDERED]: /presto/etc/conf/node.properties
  catalog.config-dir=/presto/etc/catalog
  node.data-dir=/presto/data
  node.environment=production
  node.id=presto-1579859901-coordinator-7df8fc5c45-m699k
  plugin.dir=/presto/plugin

[RENDERED]: /presto/etc/conf/config.properties
  coordinator=true
  discovery-server.enabled=true
  discovery.uri=http://presto-1579859901:80
  http-server.http.port=8080
  http-server.log.path=/http-request.log
  node-scheduler.include-coordinator=false

--- Boostrapping Catalog Files ---

[RENDERED]: /presto/etc/catalog/hive.properties
  connector.name=hive-hadoop2
  hive.allow-drop-table=true
  hive.metastore=file
  hive.metastore.catalog.dir=s3://presto/
  hive.s3.aws-access-key=minio
  hive.s3.aws-secret-key=minio123
  hive.s3.endpoint="minio-service.default.svc.cluster.local:9000"
  hive.s3.path-style-access=true
  hive.s3.ssl.enabled=false
  hive.s3select-pushdown.enabled=true
  hive.storage-format=parquet

============== LAUNCHING ==============

[LAUNCH]: Starting Presto
  launcher
  run
  --node-config=/presto/etc/conf/node.properties
  --jvm-config=/presto/etc/conf/jvm.config
  --config=/presto/etc/conf/config.properties
  --log-levels-file=/presto/etc/conf/log.properties 

2020-01-24T11:12:42.446Z    INFO    main    io.airlift.log.Logging  Logging to stderr
2020-01-24T11:12:42.453Z    INFO    main    Bootstrap   Loading configuration
2020-01-24T11:12:42.845Z    INFO    main    Bootstrap   Initializing logging
2020-01-24T11:12:47.066Z    INFO    main    Bootstrap   PROPERTY                                                              DEFAULT                                                                    RUNTIME                                                                    DESCRIPTION
2020-01-24T11:12:47.066Z    INFO    main    Bootstrap   event.max-output-stage-size                                           16MB                                                                       16MB
2020-01-24T11:12:47.066Z    INFO    main    Bootstrap   query.client.timeout                                                  5.00m                                                                      5.00m
2020-01-24T11:12:47.067Z    INFO    main    Bootstrap   query.hash-partition-count                                            100                                                                        100
2020-01-24T11:12:47.067Z    INFO    main    Bootstrap   query-manager.initialization-required-workers                         1                                                                          1                                                                          Minimum number of workers that must be available before the cluster will accept queries
2020-01-24T11:12:47.067Z    INFO    main    Bootstrap   query-manager.initialization-timeout                                  5.00m                                                                      5.00m                                                                      After this time, the cluster will accept queries even if the minimum required workers are not available
2020-01-24T11:12:47.067Z    INFO    main    Bootstrap   query.max-concurrent-queries                                          1000                                                                       1000
2020-01-24T11:12:47.067Z    INFO    main    Bootstrap   query.max-history                                                     100                                                                        100
2020-01-24T11:12:47.068Z    INFO    main    Bootstrap   query.max-length                                                      1000000                                                                    1000000
2020-01-24T11:12:47.068Z    INFO    main    Bootstrap   query.max-queued-queries                                              5000                                                                       5000
2020-01-24T11:12:47.068Z    INFO    main    Bootstrap   query.max-stage-count                                                 100                                                                        100
2020-01-24T11:12:47.068Z    INFO    main    Bootstrap   query.min-expire-age                                                  15.00m                                                                     15.00m
2020-01-24T11:12:47.068Z    INFO    main    Bootstrap   query.min-schedule-split-batch-size                                   100                                                                        100
2020-01-24T11:12:47.068Z    INFO    main    Bootstrap   query.partitioning-provider-catalog                                   system                                                                     system                                                                     Name of the catalog providing custom partitioning
2020-01-24T11:12:47.069Z    INFO    main    Bootstrap   query.execution-policy                                                all-at-once                                                                all-at-once
2020-01-24T11:12:47.069Z    INFO    main    Bootstrap   query.manager-executor-pool-size                                      5                                                                          5
2020-01-24T11:12:47.069Z    INFO    main    Bootstrap   query.max-cpu-time                                                    1000000000.00d                                                             1000000000.00d
2020-01-24T11:12:47.069Z    INFO    main    Bootstrap   query.max-execution-time                                              100.00d                                                                    100.00d
2020-01-24T11:12:47.069Z    INFO    main    Bootstrap   query.max-run-time                                                    100.00d                                                                    100.00d
2020-01-24T11:12:47.069Z    INFO    main    Bootstrap   query.remote-task.max-callback-threads                                1000                                                                       1000
2020-01-24T11:12:47.070Z    INFO    main    Bootstrap   query.remote-task.max-error-duration                                  5.00m                                                                      5.00m
2020-01-24T11:12:47.070Z    INFO    main    Bootstrap   query.remote-task.min-error-duration                                  5.00m                                                                      5.00m
2020-01-24T11:12:47.070Z    INFO    main    Bootstrap   query-manager.required-workers                                        1                                                                          1                                                                          Minimum number of active workers that must be available before a query will start
2020-01-24T11:12:47.070Z    INFO    main    Bootstrap   query-manager.required-workers-max-wait                               5.00m                                                                      5.00m                                                                      Maximum time to wait for minimum number of workers before the query is failed
2020-01-24T11:12:47.070Z    INFO    main    Bootstrap   query.schedule-split-batch-size                                       1000                                                                       1000
2020-01-24T11:12:47.070Z    INFO    main    Bootstrap   query.stage-count-warning-threshold                                   50                                                                         50                                                                         Emit a warning when stage count exceeds this threshold
2020-01-24T11:12:47.071Z    INFO    main    Bootstrap   task.client.timeout                                                   2.00m                                                                      2.00m
2020-01-24T11:12:47.071Z    INFO    main    Bootstrap   task.http-response-threads                                            100                                                                        100
2020-01-24T11:12:47.071Z    INFO    main    Bootstrap   task.http-timeout-threads                                             3                                                                          3
2020-01-24T11:12:47.071Z    INFO    main    Bootstrap   task.info.max-age                                                     15.00m                                                                     15.00m
2020-01-24T11:12:47.071Z    INFO    main    Bootstrap   task.info-update-interval                                             3.00s                                                                      3.00s                                                                      Interval between updating task data
2020-01-24T11:12:47.071Z    INFO    main    Bootstrap   task.initial-splits-per-node                                          8                                                                          8
2020-01-24T11:12:47.072Z    INFO    main    Bootstrap   task.legacy-lifespan-completion-condition                             false                                                                      false
2020-01-24T11:12:47.072Z    INFO    main    Bootstrap   task.level-time-multiplier                                            2                                                                          2                                                                          Factor that determines the target scheduled time for a level relative to the next
2020-01-24T11:12:47.072Z    INFO    main    Bootstrap   task.max-drivers-per-task                                             2147483647                                                                 2147483647                                                                 Maximum number of drivers a task can run
2020-01-24T11:12:47.072Z    INFO    main    Bootstrap   task.max-index-memory                                                 64MB                                                                       64MB
2020-01-24T11:12:47.072Z    INFO    main    Bootstrap   task.max-local-exchange-buffer-size                                   32MB                                                                       32MB
2020-01-24T11:12:47.072Z    INFO    main    Bootstrap   driver.max-page-partitioning-buffer-size                              32MB                                                                       32MB
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   task.max-partial-aggregation-memory                                   16MB                                                                       16MB
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   stage.max-tasks-per-stage                                             2147483647                                                                 2147483647                                                                 Maximum number of tasks for a non source distributed stage
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   task.max-worker-threads                                               8                                                                          8
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   task.min-drivers                                                      16                                                                         16
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   task.min-drivers-per-task                                             3                                                                          3                                                                          Minimum number of drivers guaranteed to run per task given there is sufficient work to do
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   task.per-operator-cpu-timer-enabled                                   true                                                                       true
2020-01-24T11:12:47.073Z    INFO    main    Bootstrap   task.share-index-loading                                              false                                                                      false
2020-01-24T11:12:47.074Z    INFO    main    Bootstrap   sink.max-buffer-size                                                  32MB                                                                       32MB
2020-01-24T11:12:47.074Z    INFO    main    Bootstrap   task.split-concurrency-adjustment-interval                            100.00ms                                                                   100.00ms
2020-01-24T11:12:47.074Z    INFO    main    Bootstrap   task.statistics-cpu-timer-enabled                                     true                                                                       true
2020-01-24T11:12:47.074Z    INFO    main    Bootstrap   task.status-refresh-max-wait                                          1.00s                                                                      1.00s
2020-01-24T11:12:47.074Z    INFO    main    Bootstrap   task.concurrency                                                      16                                                                         16                                                                         Default number of local parallel jobs per worker
2020-01-24T11:12:47.074Z    INFO    main    Bootstrap   task.cpu-timer-enabled                                                true                                                                       true
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   task.task-notification-threads                                        5                                                                          5                                                                          Number of threads used for internal task event notifications
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   task.task-yield-threads                                               3                                                                          3                                                                          Number of threads used for setting yield signals
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   task.writer-count                                                     1                                                                          1                                                                          Number of writers per task
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   node-scheduler.include-coordinator                                    true                                                                       false
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   node-scheduler.max-pending-splits-per-task                            10                                                                         10
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   node-scheduler.max-splits-per-node                                    100                                                                        100
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   node-scheduler.min-candidates                                         10                                                                         10
2020-01-24T11:12:47.075Z    INFO    main    Bootstrap   node-scheduler.network-topology                                       legacy                                                                     legacy
2020-01-24T11:12:47.076Z    INFO    main    Bootstrap   warning-collector.max-warnings                                        2147483647                                                                 2147483647
2020-01-24T11:12:47.076Z    INFO    main    Bootstrap   failure-detector.enabled                                              true                                                                       true
2020-01-24T11:12:47.076Z    INFO    main    Bootstrap   failure-detector.expiration-grace-interval                            10.00m                                                                     10.00m                                                                     How long to wait before 'forgetting' a service after it disappears from discovery
2020-01-24T11:12:47.076Z    INFO    main    Bootstrap   failure-detector.threshold                                            0.1                                                                        0.1
2020-01-24T11:12:47.077Z    INFO    main    Bootstrap   failure-detector.heartbeat-interval                                   500.00ms                                                                   500.00ms
2020-01-24T11:12:47.077Z    INFO    main    Bootstrap   failure-detector.warmup-interval                                      5.00s                                                                      5.00s                                                                      How long to wait after transitioning to success before considering a service alive
2020-01-24T11:12:47.077Z    INFO    main    Bootstrap   query.low-memory-killer.delay                                         5.00m                                                                      5.00m                                                                      Delay between cluster running low on memory and invoking killer
2020-01-24T11:12:47.077Z    INFO    main    Bootstrap   query.low-memory-killer.policy                                        none                                                                       none
2020-01-24T11:12:47.077Z    INFO    main    Bootstrap   query.max-memory                                                      20GB                                                                       20GB
2020-01-24T11:12:47.077Z    INFO    main    Bootstrap   query.max-total-memory                                                40GB                                                                       40GB
2020-01-24T11:12:47.078Z    INFO    main    Bootstrap   memory.heap-headroom-per-node                                         1288490188.80B                                                             1288490188.80B                                                             The amount of heap memory to set aside as headroom/buffer (e.g., for untracked allocations)
2020-01-24T11:12:47.078Z    INFO    main    Bootstrap   query.max-memory-per-node                                             429496729.60B                                                              429496729.60B
2020-01-24T11:12:47.078Z    INFO    main    Bootstrap   query.max-total-memory-per-node                                       1288490188.80B                                                             1288490188.80B
2020-01-24T11:12:47.078Z    INFO    main    Bootstrap   experimental.reserved-pool-enabled                                    true                                                                       true
2020-01-24T11:12:47.078Z    INFO    main    Bootstrap   resources.reserved-system-memory                                      1717986918.40B                                                             1717986918.40B
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   catalog.config-dir                                                    etc/catalog                                                                /presto/etc/catalog
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   catalog.disabled-catalogs                                             null                                                                       null
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   exchange.acknowledge-pages                                            true                                                                       true
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   exchange.client-threads                                               25                                                                         25
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   exchange.concurrent-request-multiplier                                3                                                                          3
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   exchange.max-buffer-size                                              32MB                                                                       32MB
2020-01-24T11:12:47.079Z    INFO    main    Bootstrap   exchange.max-error-duration                                           5.00m                                                                      5.00m
2020-01-24T11:12:47.080Z    INFO    main    Bootstrap   exchange.max-response-size                                            16MB                                                                       16MB
2020-01-24T11:12:47.080Z    INFO    main    Bootstrap   exchange.min-error-duration                                           5.00m                                                                      5.00m
2020-01-24T11:12:47.080Z    INFO    main    Bootstrap   exchange.page-buffer-client.max-callback-threads                      25                                                                         25
2020-01-24T11:12:47.080Z    INFO    main    Bootstrap   discovery-server.enabled                                              false                                                                      true
2020-01-24T11:12:47.080Z    INFO    main    Bootstrap   experimental.internal-communication.binary-transport-enabled          false                                                                      false                                                                      Enables smile encoding support for coordinator-to-worker communication
2020-01-24T11:12:47.080Z    INFO    main    Bootstrap   internal-communication.https.required                                 false                                                                      false
2020-01-24T11:12:47.081Z    INFO    main    Bootstrap   internal-communication.kerberos.enabled                               false                                                                      false
2020-01-24T11:12:47.081Z    INFO    main    Bootstrap   internal-communication.kerberos.use-canonical-hostname                true                                                                       true
2020-01-24T11:12:47.081Z    INFO    main    Bootstrap   internal-communication.https.keystore.key                             [REDACTED]                                                                 [REDACTED]
2020-01-24T11:12:47.081Z    INFO    main    Bootstrap   internal-communication.https.keystore.path                            null                                                                       null
2020-01-24T11:12:47.081Z    INFO    main    Bootstrap   plugin.dir                                                            plugin                                                                     /presto/plugin
2020-01-24T11:12:47.082Z    INFO    main    Bootstrap   maven.repo.local                                                      /presto/.m2/repository                                                     /presto/.m2/repository
2020-01-24T11:12:47.082Z    INFO    main    Bootstrap   maven.repo.remote                                                     [http://repo1.maven.org/maven2/]                                           [http://repo1.maven.org/maven2/]
2020-01-24T11:12:47.082Z    INFO    main    Bootstrap   plugin.bundles                                                        null                                                                       null
2020-01-24T11:12:47.082Z    INFO    main    Bootstrap   coordinator                                                           true                                                                       true
2020-01-24T11:12:47.082Z    INFO    main    Bootstrap   datasources                                                           null                                                                       null
2020-01-24T11:12:47.082Z    INFO    main    Bootstrap   sql.parser.enhanced-error-reporting                                   true                                                                       true
2020-01-24T11:12:47.083Z    INFO    main    Bootstrap   shutdown.grace-period                                                 2.00m                                                                      2.00m
2020-01-24T11:12:47.083Z    INFO    main    Bootstrap   http.include-exception-in-response                                    true                                                                       true
2020-01-24T11:12:47.083Z    INFO    main    Bootstrap   presto.version                                                        0.218                                                                      0.218
2020-01-24T11:12:47.083Z    INFO    main    Bootstrap   http-server.authentication.type                                       []                                                                         []                                                                         Authentication types (supported types: CERTIFICATE, KERBEROS, PASSWORD, JWT)
2020-01-24T11:12:47.083Z    INFO    main    Bootstrap   experimental.max-spill-per-node                                       100GB                                                                      100GB
2020-01-24T11:12:47.084Z    INFO    main    Bootstrap   experimental.query-max-spill-per-node                                 100GB                                                                      100GB
2020-01-24T11:12:47.084Z    INFO    main    Bootstrap   sql.path                                                              Optional.empty                                                             Optional.empty
2020-01-24T11:12:47.084Z    INFO    main    Bootstrap   experimental.aggregation-operator-unspill-memory-limit                4MB                                                                        4MB
2020-01-24T11:12:47.084Z    INFO    main    Bootstrap   arrayagg.implementation                                               NEW                                                                        NEW
2020-01-24T11:12:47.085Z    INFO    main    Bootstrap   colocated-joins-enabled                                               false                                                                      false                                                                      Experimental: Use a colocated join when possible
2020-01-24T11:12:47.085Z    INFO    main    Bootstrap   concurrent-lifespans-per-task                                         0                                                                          0                                                                          Experimental: Default number of lifespans that run in parallel on each task when grouped execution is enabled
2020-01-24T11:12:47.085Z    INFO    main    Bootstrap   cpu-cost-weight                                                       75.0                                                                       75.0
2020-01-24T11:12:47.085Z    INFO    main    Bootstrap   optimizer.default-filter-factor-enabled                               false                                                                      false
2020-01-24T11:12:47.085Z    INFO    main    Bootstrap   optimizer.dictionary-aggregation                                      false                                                                      false
2020-01-24T11:12:47.086Z    INFO    main    Bootstrap   distributed-index-joins-enabled                                       false                                                                      false
2020-01-24T11:12:47.086Z    INFO    main    Bootstrap   distributed-sort                                                      true                                                                       true
2020-01-24T11:12:47.086Z    INFO    main    Bootstrap   dynamic-schedule-for-grouped-execution                                false                                                                      false                                                                      Experimental: Use dynamic schedule for grouped execution when possible
2020-01-24T11:12:47.086Z    INFO    main    Bootstrap   optimizer.enable-intermediate-aggregations                            false                                                                      false
2020-01-24T11:12:47.087Z    INFO    main    Bootstrap   experimental.enable-stats-calculator                                  true                                                                       true
2020-01-24T11:12:47.087Z    INFO    main    Bootstrap   exchange.compression-enabled                                          false                                                                      false
2020-01-24T11:12:47.087Z    INFO    main    Bootstrap   fast-inequality-joins                                                 true                                                                       true                                                                       Use faster handling of inequality joins if it is possible
2020-01-24T11:12:47.087Z    INFO    main    Bootstrap   experimental.filter-and-project-min-output-page-row-count             256                                                                        256
2020-01-24T11:12:47.087Z    INFO    main    Bootstrap   experimental.filter-and-project-min-output-page-size                  500kB                                                                      500kB
2020-01-24T11:12:47.088Z    INFO    main    Bootstrap   optimizer.force-single-node-output                                    true                                                                       true
2020-01-24T11:12:47.089Z    INFO    main    Bootstrap   deprecated.group-by-uses-equal                                        false                                                                      false
2020-01-24T11:12:47.089Z    INFO    main    Bootstrap   grouped-execution-for-aggregation-enabled                             false                                                                      false                                                                      Experimental: Use grouped execution for aggregation when possible
2020-01-24T11:12:47.089Z    INFO    main    Bootstrap   histogram.implementation                                              NEW                                                                        NEW
2020-01-24T11:12:47.090Z    INFO    main    Bootstrap   optimizer.ignore-stats-calculator-failures                            true                                                                       true                                                                       Ignore statistics calculator failures
2020-01-24T11:12:47.090Z    INFO    main    Bootstrap   experimental.iterative-optimizer-enabled                              true                                                                       true
2020-01-24T11:12:47.090Z    INFO    main    Bootstrap   experimental.iterative-optimizer-timeout                              3.00m                                                                      3.00m
2020-01-24T11:12:47.090Z    INFO    main    Bootstrap   join-distribution-type                                                PARTITIONED                                                                PARTITIONED
2020-01-24T11:12:47.091Z    INFO    main    Bootstrap   join-max-broadcast-table-size                                         null                                                                       null
2020-01-24T11:12:47.091Z    INFO    main    Bootstrap   optimizer.join-reordering-strategy                                    ELIMINATE_CROSS_JOINS                                                      ELIMINATE_CROSS_JOINS                                                      The strategy to use for reordering joins
2020-01-24T11:12:47.091Z    INFO    main    Bootstrap   experimental.json-serde-codegen-enabled                               false                                                                      false                                                                      Enable code generation for JSON serialization and deserialization
2020-01-24T11:12:47.091Z    INFO    main    Bootstrap   deprecated.legacy-array-agg                                           false                                                                      false
2020-01-24T11:12:47.091Z    INFO    main    Bootstrap   deprecated.legacy-char-to-varchar-coercion                            false                                                                      false
2020-01-24T11:12:47.092Z    INFO    main    Bootstrap   deprecated.legacy-log-function                                        false                                                                      false
2020-01-24T11:12:47.092Z    INFO    main    Bootstrap   deprecated.legacy-map-subscript                                       false                                                                      false
2020-01-24T11:12:47.092Z    INFO    main    Bootstrap   deprecated.legacy-row-field-ordinal-access                            false                                                                      false
2020-01-24T11:12:47.092Z    INFO    main    Bootstrap   deprecated.legacy-timestamp                                           true                                                                       true
2020-01-24T11:12:47.093Z    INFO    main    Bootstrap   deprecated.legacy-unnest-array-rows                                   false                                                                      false
2020-01-24T11:12:47.093Z    INFO    main    Bootstrap   analyzer.max-grouping-sets                                            2048                                                                       2048
2020-01-24T11:12:47.093Z    INFO    main    Bootstrap   optimizer.max-reordered-joins                                         9                                                                          9                                                                          The maximum number of tables to reorder in cost-based join reordering
2020-01-24T11:12:47.093Z    INFO    main    Bootstrap   memory-cost-weight                                                    10.0                                                                       10.0
2020-01-24T11:12:47.093Z    INFO    main    Bootstrap   experimental.memory-revoking-target                                   0.5                                                                        0.5                                                                        When revoking memory, try to revoke so much that pool is filled below target at the end
2020-01-24T11:12:47.094Z    INFO    main    Bootstrap   experimental.memory-revoking-threshold                                0.9                                                                        0.9                                                                        Revoke memory when memory pool is filled over threshold
2020-01-24T11:12:47.094Z    INFO    main    Bootstrap   multimapagg.implementation                                            NEW                                                                        NEW
2020-01-24T11:12:47.094Z    INFO    main    Bootstrap   network-cost-weight                                                   15.0                                                                       15.0
2020-01-24T11:12:47.094Z    INFO    main    Bootstrap   optimizer.optimize-hash-generation                                    true                                                                       true
2020-01-24T11:12:47.095Z    INFO    main    Bootstrap   optimizer.optimize-metadata-queries                                   false                                                                      false
2020-01-24T11:12:47.095Z    INFO    main    Bootstrap   optimizer.optimize-mixed-distinct-aggregations                        false                                                                      false
2020-01-24T11:12:47.095Z    INFO    main    Bootstrap   optimizer.optimize-top-n-row-number                                   true                                                                       true
2020-01-24T11:12:47.096Z    INFO    main    Bootstrap   pages-index.eager-compaction-enabled                                  false                                                                      false
2020-01-24T11:12:47.096Z    INFO    main    Bootstrap   parse-decimal-literals-as-double                                      false                                                                      false
2020-01-24T11:12:47.096Z    INFO    main    Bootstrap   optimizer.prefer-partial-aggregation                                  true                                                                       true
2020-01-24T11:12:47.096Z    INFO    main    Bootstrap   print-stats-for-non-join-query                                        false                                                                      false
2020-01-24T11:12:47.096Z    INFO    main    Bootstrap   optimizer.push-aggregation-through-join                               true                                                                       true
2020-01-24T11:12:47.097Z    INFO    main    Bootstrap   optimizer.push-table-write-through-union                              true                                                                       true
2020-01-24T11:12:47.097Z    INFO    main    Bootstrap   re2j.dfa-retries                                                      5                                                                          5
2020-01-24T11:12:47.097Z    INFO    main    Bootstrap   re2j.dfa-states-limit                                                 2147483647                                                                 2147483647
2020-01-24T11:12:47.097Z    INFO    main    Bootstrap   redistribute-writes                                                   true                                                                       true
2020-01-24T11:12:47.097Z    INFO    main    Bootstrap   regex-library                                                         JONI                                                                       JONI
2020-01-24T11:12:47.097Z    INFO    main    Bootstrap   scale-writers                                                         false                                                                      false
2020-01-24T11:12:47.098Z    INFO    main    Bootstrap   spatial-joins-enabled                                                 true                                                                       true                                                                       Use spatial index for spatial joins when possible
2020-01-24T11:12:47.098Z    INFO    main    Bootstrap   experimental.spill-enabled                                            false                                                                      false
2020-01-24T11:12:47.098Z    INFO    main    Bootstrap   experimental.spiller-max-used-space-threshold                         0.9                                                                        0.9
2020-01-24T11:12:47.098Z    INFO    main    Bootstrap   experimental.spiller-spill-path                                       []                                                                         []
2020-01-24T11:12:47.099Z    INFO    main    Bootstrap   experimental.spiller-threads                                          4                                                                          4
2020-01-24T11:12:47.099Z    INFO    main    Bootstrap   optimizer.use-mark-distinct                                           true                                                                       true
2020-01-24T11:12:47.099Z    INFO    main    Bootstrap   writer-min-size                                                       32MB                                                                       32MB                                                                       Target minimum size of writer output when scaling writers
2020-01-24T11:12:47.099Z    INFO    main    Bootstrap   compiler.expression-cache-size                                        10000                                                                      10000
2020-01-24T11:12:47.099Z    INFO    main    Bootstrap   transaction.idle-check-interval                                       1.00m                                                                      1.00m                                                                      Time interval between idle transactions checks
2020-01-24T11:12:47.099Z    INFO    main    Bootstrap   transaction.idle-timeout                                              5.00m                                                                      5.00m                                                                      Amount of time before an inactive transaction is considered expired
2020-01-24T11:12:47.100Z    INFO    main    Bootstrap   transaction.max-finishing-concurrency                                 1                                                                          1                                                                          Maximum parallelism for committing or aborting a transaction
2020-01-24T11:12:47.100Z    INFO    main    Bootstrap   discovery.uri                                                         null                                                                       http://presto-1579859901:80                                                Discovery service base URI
2020-01-24T11:12:47.100Z    INFO    main    Bootstrap   service-inventory.uri                                                 null                                                                       null                                                                       Service inventory base URI
2020-01-24T11:12:47.100Z    INFO    main    Bootstrap   service-inventory.update-interval                                     10.00s                                                                     10.00s                                                                     Service inventory update interval
2020-01-24T11:12:47.100Z    INFO    main    Bootstrap   discovery.presto.pool                                                 general                                                                    general
2020-01-24T11:12:47.101Z    INFO    main    Bootstrap   discovery.collector.pool                                              general                                                                    general
2020-01-24T11:12:47.106Z    INFO    main    Bootstrap   discovery.max-age                                                     30.00s                                                                     30.00s
2020-01-24T11:12:47.106Z    INFO    main    Bootstrap   discovery.store-cache-ttl                                             1.00s                                                                      1.00s
2020-01-24T11:12:47.107Z    INFO    main    Bootstrap   dynamic.store.gc-interval                                             1.00h                                                                      1.00h
2020-01-24T11:12:47.107Z    INFO    main    Bootstrap   dynamic.store.remote.max-batch-size                                   1000                                                                       1000
2020-01-24T11:12:47.107Z    INFO    main    Bootstrap   dynamic.store.remote.queue-size                                       1000                                                                       1000
2020-01-24T11:12:47.107Z    INFO    main    Bootstrap   dynamic.store.remote.update-interval                                  5.00s                                                                      5.00s
2020-01-24T11:12:47.108Z    INFO    main    Bootstrap   dynamic.store.remote.replication-interval                             1.00m                                                                      1.00m
2020-01-24T11:12:47.108Z    INFO    main    Bootstrap   dynamic.store.tombstone-max-age                                       1.00d                                                                      1.00d
2020-01-24T11:12:47.108Z    INFO    main    Bootstrap   failure-detector.http-client.authentication.enabled                   false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.108Z    INFO    main    Bootstrap   failure-detector.http-client.use-blocking-connect                     false                                                                      false
2020-01-24T11:12:47.108Z    INFO    main    Bootstrap   failure-detector.http-client.connect-timeout                          5.00s                                                                      5.00s
2020-01-24T11:12:47.108Z    INFO    main    Bootstrap   failure-detector.http-client.http2.enabled                            false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.109Z    INFO    main    Bootstrap   failure-detector.http-client.http2.session-receive-window-size        16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.109Z    INFO    main    Bootstrap   failure-detector.http-client.http2.stream-receive-window-size         16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.109Z    INFO    main    Bootstrap   failure-detector.http-client.http2.input-buffer-size                  8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.109Z    INFO    main    Bootstrap   failure-detector.http-client.https.excluded-cipher                    [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.110Z    INFO    main    Bootstrap   failure-detector.http-client.https.included-cipher                    []                                                                         []
2020-01-24T11:12:47.110Z    INFO    main    Bootstrap   failure-detector.http-client.idle-timeout                             1.00m                                                                      1.00m
2020-01-24T11:12:47.110Z    INFO    main    Bootstrap   failure-detector.http-client.keep-alive-interval                      null                                                                       null
2020-01-24T11:12:47.110Z    INFO    main    Bootstrap   failure-detector.http-client.authentication.krb5.principal            null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.110Z    INFO    main    Bootstrap   failure-detector.http-client.authentication.krb5.remote-service-name  null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.111Z    INFO    main    Bootstrap   failure-detector.http-client.key-store-password                       null                                                                       null
2020-01-24T11:12:47.111Z    INFO    main    Bootstrap   failure-detector.http-client.key-store-path                           null                                                                       null
2020-01-24T11:12:47.111Z    INFO    main    Bootstrap   failure-detector.http-client.log.buffer-size                          1MB                                                                        1MB
2020-01-24T11:12:47.111Z    INFO    main    Bootstrap   failure-detector.http-client.log.compression.enabled                  true                                                                       true
2020-01-24T11:12:47.113Z    INFO    main    Bootstrap   failure-detector.http-client.log.enabled                              false                                                                      false
2020-01-24T11:12:47.114Z    INFO    main    Bootstrap   failure-detector.http-client.log.flush-interval                       10.00s                                                                     10.00s
2020-01-24T11:12:47.114Z    INFO    main    Bootstrap   failure-detector.http-client.log.max-history                          15                                                                         15
2020-01-24T11:12:47.114Z    INFO    main    Bootstrap   failure-detector.http-client.log.max-size                             1GB                                                                        1GB
2020-01-24T11:12:47.114Z    INFO    main    Bootstrap   failure-detector.http-client.log.path                                 var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.114Z    INFO    main    Bootstrap   failure-detector.http-client.log.queue-size                           10000                                                                      10000
2020-01-24T11:12:47.115Z    INFO    main    Bootstrap   failure-detector.http-client.max-connections                          200                                                                        200
2020-01-24T11:12:47.115Z    INFO    main    Bootstrap   failure-detector.http-client.max-connections-per-server               20                                                                         20
2020-01-24T11:12:47.115Z    INFO    main    Bootstrap   failure-detector.http-client.max-content-length                       16MB                                                                       16MB
2020-01-24T11:12:47.115Z    INFO    main    Bootstrap   failure-detector.http-client.max-requests-queued-per-destination      1024                                                                       1024
2020-01-24T11:12:47.115Z    INFO    main    Bootstrap   failure-detector.http-client.max-threads                              200                                                                        200
2020-01-24T11:12:47.116Z    INFO    main    Bootstrap   failure-detector.http-client.min-threads                              8                                                                          8
2020-01-24T11:12:47.116Z    INFO    main    Bootstrap   failure-detector.http-client.record-request-complete                  true                                                                       true
2020-01-24T11:12:47.116Z    INFO    main    Bootstrap   failure-detector.http-client.request-buffer-size                      4kB                                                                        4kB
2020-01-24T11:12:47.123Z    INFO    main    Bootstrap   failure-detector.http-client.request-timeout                          5.00m                                                                      5.00m
2020-01-24T11:12:47.124Z    INFO    main    Bootstrap   failure-detector.http-client.response-buffer-size                     16kB                                                                       16kB
2020-01-24T11:12:47.125Z    INFO    main    Bootstrap   failure-detector.http-client.secure-random-algorithm                  null                                                                       null
2020-01-24T11:12:47.126Z    INFO    main    Bootstrap   failure-detector.http-client.selector-count                           2                                                                          2
2020-01-24T11:12:47.127Z    INFO    main    Bootstrap   failure-detector.http-client.socks-proxy                              null                                                                       null
2020-01-24T11:12:47.128Z    INFO    main    Bootstrap   failure-detector.http-client.timeout-concurrency                      1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.129Z    INFO    main    Bootstrap   failure-detector.http-client.timeout-threads                          1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.130Z    INFO    main    Bootstrap   failure-detector.http-client.trust-store-password                     null                                                                       null
2020-01-24T11:12:47.131Z    INFO    main    Bootstrap   failure-detector.http-client.trust-store-path                         null                                                                       null
2020-01-24T11:12:47.132Z    INFO    main    Bootstrap   memoryManager.http-client.authentication.enabled                      false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.133Z    INFO    main    Bootstrap   memoryManager.http-client.use-blocking-connect                        false                                                                      false
2020-01-24T11:12:47.134Z    INFO    main    Bootstrap   memoryManager.http-client.connect-timeout                             5.00s                                                                      5.00s
2020-01-24T11:12:47.135Z    INFO    main    Bootstrap   memoryManager.http-client.http2.enabled                               false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.136Z    INFO    main    Bootstrap   memoryManager.http-client.http2.session-receive-window-size           16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.137Z    INFO    main    Bootstrap   memoryManager.http-client.http2.stream-receive-window-size            16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.138Z    INFO    main    Bootstrap   memoryManager.http-client.http2.input-buffer-size                     8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.139Z    INFO    main    Bootstrap   memoryManager.http-client.https.excluded-cipher                       [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.140Z    INFO    main    Bootstrap   memoryManager.http-client.https.included-cipher                       []                                                                         []
2020-01-24T11:12:47.141Z    INFO    main    Bootstrap   memoryManager.http-client.idle-timeout                                30.00s                                                                     30.00s
2020-01-24T11:12:47.143Z    INFO    main    Bootstrap   memoryManager.http-client.keep-alive-interval                         null                                                                       null
2020-01-24T11:12:47.145Z    INFO    main    Bootstrap   memoryManager.http-client.authentication.krb5.principal               null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.146Z    INFO    main    Bootstrap   memoryManager.http-client.authentication.krb5.remote-service-name     null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.147Z    INFO    main    Bootstrap   memoryManager.http-client.key-store-password                          null                                                                       null
2020-01-24T11:12:47.148Z    INFO    main    Bootstrap   memoryManager.http-client.key-store-path                              null                                                                       null
2020-01-24T11:12:47.149Z    INFO    main    Bootstrap   memoryManager.http-client.log.buffer-size                             1MB                                                                        1MB
2020-01-24T11:12:47.150Z    INFO    main    Bootstrap   memoryManager.http-client.log.compression.enabled                     true                                                                       true
2020-01-24T11:12:47.151Z    INFO    main    Bootstrap   memoryManager.http-client.log.enabled                                 false                                                                      false
2020-01-24T11:12:47.152Z    INFO    main    Bootstrap   memoryManager.http-client.log.flush-interval                          10.00s                                                                     10.00s
2020-01-24T11:12:47.153Z    INFO    main    Bootstrap   memoryManager.http-client.log.max-history                             15                                                                         15
2020-01-24T11:12:47.154Z    INFO    main    Bootstrap   memoryManager.http-client.log.max-size                                1GB                                                                        1GB
2020-01-24T11:12:47.155Z    INFO    main    Bootstrap   memoryManager.http-client.log.path                                    var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.156Z    INFO    main    Bootstrap   memoryManager.http-client.log.queue-size                              10000                                                                      10000
2020-01-24T11:12:47.157Z    INFO    main    Bootstrap   memoryManager.http-client.max-connections                             200                                                                        200
2020-01-24T11:12:47.158Z    INFO    main    Bootstrap   memoryManager.http-client.max-connections-per-server                  20                                                                         20
2020-01-24T11:12:47.159Z    INFO    main    Bootstrap   memoryManager.http-client.max-content-length                          16MB                                                                       16MB
2020-01-24T11:12:47.160Z    INFO    main    Bootstrap   memoryManager.http-client.max-requests-queued-per-destination         1024                                                                       1024
2020-01-24T11:12:47.161Z    INFO    main    Bootstrap   memoryManager.http-client.max-threads                                 200                                                                        200
2020-01-24T11:12:47.162Z    INFO    main    Bootstrap   memoryManager.http-client.min-threads                                 8                                                                          8
2020-01-24T11:12:47.163Z    INFO    main    Bootstrap   memoryManager.http-client.record-request-complete                     true                                                                       true
2020-01-24T11:12:47.165Z    INFO    main    Bootstrap   memoryManager.http-client.request-buffer-size                         4kB                                                                        4kB
2020-01-24T11:12:47.166Z    INFO    main    Bootstrap   memoryManager.http-client.request-timeout                             10.00s                                                                     10.00s
2020-01-24T11:12:47.166Z    INFO    main    Bootstrap   memoryManager.http-client.response-buffer-size                        16kB                                                                       16kB
2020-01-24T11:12:47.167Z    INFO    main    Bootstrap   memoryManager.http-client.secure-random-algorithm                     null                                                                       null
2020-01-24T11:12:47.168Z    INFO    main    Bootstrap   memoryManager.http-client.selector-count                              2                                                                          2
2020-01-24T11:12:47.168Z    INFO    main    Bootstrap   memoryManager.http-client.socks-proxy                                 null                                                                       null
2020-01-24T11:12:47.169Z    INFO    main    Bootstrap   memoryManager.http-client.timeout-concurrency                         1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.170Z    INFO    main    Bootstrap   memoryManager.http-client.timeout-threads                             1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.171Z    INFO    main    Bootstrap   memoryManager.http-client.trust-store-password                        null                                                                       null
2020-01-24T11:12:47.171Z    INFO    main    Bootstrap   memoryManager.http-client.trust-store-path                            null                                                                       null
2020-01-24T11:12:47.172Z    INFO    main    Bootstrap   node-manager.http-client.authentication.enabled                       false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.173Z    INFO    main    Bootstrap   node-manager.http-client.use-blocking-connect                         false                                                                      false
2020-01-24T11:12:47.174Z    INFO    main    Bootstrap   node-manager.http-client.connect-timeout                              5.00s                                                                      5.00s
2020-01-24T11:12:47.175Z    INFO    main    Bootstrap   node-manager.http-client.http2.enabled                                false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.176Z    INFO    main    Bootstrap   node-manager.http-client.http2.session-receive-window-size            16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.177Z    INFO    main    Bootstrap   node-manager.http-client.http2.stream-receive-window-size             16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.177Z    INFO    main    Bootstrap   node-manager.http-client.http2.input-buffer-size                      8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.178Z    INFO    main    Bootstrap   node-manager.http-client.https.excluded-cipher                        [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.179Z    INFO    main    Bootstrap   node-manager.http-client.https.included-cipher                        []                                                                         []
2020-01-24T11:12:47.180Z    INFO    main    Bootstrap   node-manager.http-client.idle-timeout                                 30.00s                                                                     30.00s
2020-01-24T11:12:47.181Z    INFO    main    Bootstrap   node-manager.http-client.keep-alive-interval                          null                                                                       null
2020-01-24T11:12:47.182Z    INFO    main    Bootstrap   node-manager.http-client.authentication.krb5.principal                null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.183Z    INFO    main    Bootstrap   node-manager.http-client.authentication.krb5.remote-service-name      null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.184Z    INFO    main    Bootstrap   node-manager.http-client.key-store-password                           null                                                                       null
2020-01-24T11:12:47.186Z    INFO    main    Bootstrap   node-manager.http-client.key-store-path                               null                                                                       null
2020-01-24T11:12:47.187Z    INFO    main    Bootstrap   node-manager.http-client.log.buffer-size                              1MB                                                                        1MB
2020-01-24T11:12:47.188Z    INFO    main    Bootstrap   node-manager.http-client.log.compression.enabled                      true                                                                       true
2020-01-24T11:12:47.191Z    INFO    main    Bootstrap   node-manager.http-client.log.enabled                                  false                                                                      false
2020-01-24T11:12:47.194Z    INFO    main    Bootstrap   node-manager.http-client.log.flush-interval                           10.00s                                                                     10.00s
2020-01-24T11:12:47.195Z    INFO    main    Bootstrap   node-manager.http-client.log.max-history                              15                                                                         15
2020-01-24T11:12:47.196Z    INFO    main    Bootstrap   node-manager.http-client.log.max-size                                 1GB                                                                        1GB
2020-01-24T11:12:47.197Z    INFO    main    Bootstrap   node-manager.http-client.log.path                                     var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.200Z    INFO    main    Bootstrap   node-manager.http-client.log.queue-size                               10000                                                                      10000
2020-01-24T11:12:47.201Z    INFO    main    Bootstrap   node-manager.http-client.max-connections                              200                                                                        200
2020-01-24T11:12:47.202Z    INFO    main    Bootstrap   node-manager.http-client.max-connections-per-server                   20                                                                         20
2020-01-24T11:12:47.203Z    INFO    main    Bootstrap   node-manager.http-client.max-content-length                           16MB                                                                       16MB
2020-01-24T11:12:47.203Z    INFO    main    Bootstrap   node-manager.http-client.max-requests-queued-per-destination          1024                                                                       1024
2020-01-24T11:12:47.203Z    INFO    main    Bootstrap   node-manager.http-client.max-threads                                  200                                                                        200
2020-01-24T11:12:47.203Z    INFO    main    Bootstrap   node-manager.http-client.min-threads                                  8                                                                          8
2020-01-24T11:12:47.204Z    INFO    main    Bootstrap   node-manager.http-client.record-request-complete                      true                                                                       true
2020-01-24T11:12:47.204Z    INFO    main    Bootstrap   node-manager.http-client.request-buffer-size                          4kB                                                                        4kB
2020-01-24T11:12:47.204Z    INFO    main    Bootstrap   node-manager.http-client.request-timeout                              10.00s                                                                     10.00s
2020-01-24T11:12:47.204Z    INFO    main    Bootstrap   node-manager.http-client.response-buffer-size                         16kB                                                                       16kB
2020-01-24T11:12:47.204Z    INFO    main    Bootstrap   node-manager.http-client.secure-random-algorithm                      null                                                                       null
2020-01-24T11:12:47.205Z    INFO    main    Bootstrap   node-manager.http-client.selector-count                               2                                                                          2
2020-01-24T11:12:47.205Z    INFO    main    Bootstrap   node-manager.http-client.socks-proxy                                  null                                                                       null
2020-01-24T11:12:47.205Z    INFO    main    Bootstrap   node-manager.http-client.timeout-concurrency                          1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.205Z    INFO    main    Bootstrap   node-manager.http-client.timeout-threads                              1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.205Z    INFO    main    Bootstrap   node-manager.http-client.trust-store-password                         null                                                                       null
2020-01-24T11:12:47.207Z    INFO    main    Bootstrap   node-manager.http-client.trust-store-path                             null                                                                       null
2020-01-24T11:12:47.208Z    INFO    main    Bootstrap   exchange.http-client.authentication.enabled                           false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.209Z    INFO    main    Bootstrap   exchange.http-client.use-blocking-connect                             false                                                                      false
2020-01-24T11:12:47.210Z    INFO    main    Bootstrap   exchange.http-client.connect-timeout                                  5.00s                                                                      5.00s
2020-01-24T11:12:47.211Z    INFO    main    Bootstrap   exchange.http-client.http2.enabled                                    false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.212Z    INFO    main    Bootstrap   exchange.http-client.http2.session-receive-window-size                16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.213Z    INFO    main    Bootstrap   exchange.http-client.http2.stream-receive-window-size                 16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.214Z    INFO    main    Bootstrap   exchange.http-client.http2.input-buffer-size                          8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.216Z    INFO    main    Bootstrap   exchange.http-client.https.excluded-cipher                            [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.217Z    INFO    main    Bootstrap   exchange.http-client.https.included-cipher                            []                                                                         []
2020-01-24T11:12:47.218Z    INFO    main    Bootstrap   exchange.http-client.idle-timeout                                     30.00s                                                                     30.00s
2020-01-24T11:12:47.219Z    INFO    main    Bootstrap   exchange.http-client.keep-alive-interval                              null                                                                       null
2020-01-24T11:12:47.222Z    INFO    main    Bootstrap   exchange.http-client.authentication.krb5.principal                    null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.223Z    INFO    main    Bootstrap   exchange.http-client.authentication.krb5.remote-service-name          null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.224Z    INFO    main    Bootstrap   exchange.http-client.key-store-password                               null                                                                       null
2020-01-24T11:12:47.225Z    INFO    main    Bootstrap   exchange.http-client.key-store-path                                   null                                                                       null
2020-01-24T11:12:47.226Z    INFO    main    Bootstrap   exchange.http-client.log.buffer-size                                  1MB                                                                        1MB
2020-01-24T11:12:47.227Z    INFO    main    Bootstrap   exchange.http-client.log.compression.enabled                          true                                                                       true
2020-01-24T11:12:47.229Z    INFO    main    Bootstrap   exchange.http-client.log.enabled                                      false                                                                      false
2020-01-24T11:12:47.230Z    INFO    main    Bootstrap   exchange.http-client.log.flush-interval                               10.00s                                                                     10.00s
2020-01-24T11:12:47.235Z    INFO    main    Bootstrap   exchange.http-client.log.max-history                                  15                                                                         15
2020-01-24T11:12:47.237Z    INFO    main    Bootstrap   exchange.http-client.log.max-size                                     1GB                                                                        1GB
2020-01-24T11:12:47.238Z    INFO    main    Bootstrap   exchange.http-client.log.path                                         var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.239Z    INFO    main    Bootstrap   exchange.http-client.log.queue-size                                   10000                                                                      10000
2020-01-24T11:12:47.240Z    INFO    main    Bootstrap   exchange.http-client.max-connections                                  200                                                                        200
2020-01-24T11:12:47.241Z    INFO    main    Bootstrap   exchange.http-client.max-connections-per-server                       250                                                                        250
2020-01-24T11:12:47.243Z    INFO    main    Bootstrap   exchange.http-client.max-content-length                               32MB                                                                       32MB
2020-01-24T11:12:47.244Z    INFO    main    Bootstrap   exchange.http-client.max-requests-queued-per-destination              1024                                                                       1024
2020-01-24T11:12:47.245Z    INFO    main    Bootstrap   exchange.http-client.max-threads                                      200                                                                        200
2020-01-24T11:12:47.247Z    INFO    main    Bootstrap   exchange.http-client.min-threads                                      8                                                                          8
2020-01-24T11:12:47.248Z    INFO    main    Bootstrap   exchange.http-client.record-request-complete                          true                                                                       true
2020-01-24T11:12:47.249Z    INFO    main    Bootstrap   exchange.http-client.request-buffer-size                              4kB                                                                        4kB
2020-01-24T11:12:47.250Z    INFO    main    Bootstrap   exchange.http-client.request-timeout                                  10.00s                                                                     10.00s
2020-01-24T11:12:47.251Z    INFO    main    Bootstrap   exchange.http-client.response-buffer-size                             16kB                                                                       16kB
2020-01-24T11:12:47.252Z    INFO    main    Bootstrap   exchange.http-client.secure-random-algorithm                          null                                                                       null
2020-01-24T11:12:47.253Z    INFO    main    Bootstrap   exchange.http-client.selector-count                                   2                                                                          2
2020-01-24T11:12:47.254Z    INFO    main    Bootstrap   exchange.http-client.socks-proxy                                      null                                                                       null
2020-01-24T11:12:47.255Z    INFO    main    Bootstrap   exchange.http-client.timeout-concurrency                              1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.256Z    INFO    main    Bootstrap   exchange.http-client.timeout-threads                                  1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.257Z    INFO    main    Bootstrap   exchange.http-client.trust-store-password                             null                                                                       null
2020-01-24T11:12:47.258Z    INFO    main    Bootstrap   exchange.http-client.trust-store-path                                 null                                                                       null
2020-01-24T11:12:47.259Z    INFO    main    Bootstrap   scheduler.http-client.authentication.enabled                          false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.260Z    INFO    main    Bootstrap   scheduler.http-client.use-blocking-connect                            false                                                                      false
2020-01-24T11:12:47.261Z    INFO    main    Bootstrap   scheduler.http-client.connect-timeout                                 5.00s                                                                      5.00s
2020-01-24T11:12:47.262Z    INFO    main    Bootstrap   scheduler.http-client.http2.enabled                                   false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.263Z    INFO    main    Bootstrap   scheduler.http-client.http2.session-receive-window-size               16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.264Z    INFO    main    Bootstrap   scheduler.http-client.http2.stream-receive-window-size                16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.265Z    INFO    main    Bootstrap   scheduler.http-client.http2.input-buffer-size                         8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.266Z    INFO    main    Bootstrap   scheduler.http-client.https.excluded-cipher                           [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.267Z    INFO    main    Bootstrap   scheduler.http-client.https.included-cipher                           []                                                                         []
2020-01-24T11:12:47.268Z    INFO    main    Bootstrap   scheduler.http-client.idle-timeout                                    30.00s                                                                     30.00s
2020-01-24T11:12:47.269Z    INFO    main    Bootstrap   scheduler.http-client.keep-alive-interval                             null                                                                       null
2020-01-24T11:12:47.270Z    INFO    main    Bootstrap   scheduler.http-client.authentication.krb5.principal                   null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.271Z    INFO    main    Bootstrap   scheduler.http-client.authentication.krb5.remote-service-name         null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.273Z    INFO    main    Bootstrap   scheduler.http-client.key-store-password                              null                                                                       null
2020-01-24T11:12:47.274Z    INFO    main    Bootstrap   scheduler.http-client.key-store-path                                  null                                                                       null
2020-01-24T11:12:47.275Z    INFO    main    Bootstrap   scheduler.http-client.log.buffer-size                                 1MB                                                                        1MB
2020-01-24T11:12:47.276Z    INFO    main    Bootstrap   scheduler.http-client.log.compression.enabled                         true                                                                       true
2020-01-24T11:12:47.277Z    INFO    main    Bootstrap   scheduler.http-client.log.enabled                                     false                                                                      false
2020-01-24T11:12:47.278Z    INFO    main    Bootstrap   scheduler.http-client.log.flush-interval                              10.00s                                                                     10.00s
2020-01-24T11:12:47.279Z    INFO    main    Bootstrap   scheduler.http-client.log.max-history                                 15                                                                         15
2020-01-24T11:12:47.280Z    INFO    main    Bootstrap   scheduler.http-client.log.max-size                                    1GB                                                                        1GB
2020-01-24T11:12:47.281Z    INFO    main    Bootstrap   scheduler.http-client.log.path                                        var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.282Z    INFO    main    Bootstrap   scheduler.http-client.log.queue-size                                  10000                                                                      10000
2020-01-24T11:12:47.283Z    INFO    main    Bootstrap   scheduler.http-client.max-connections                                 200                                                                        200
2020-01-24T11:12:47.284Z    INFO    main    Bootstrap   scheduler.http-client.max-connections-per-server                      250                                                                        250
2020-01-24T11:12:47.284Z    INFO    main    Bootstrap   scheduler.http-client.max-content-length                              16MB                                                                       16MB
2020-01-24T11:12:47.288Z    INFO    main    Bootstrap   scheduler.http-client.max-requests-queued-per-destination             1024                                                                       1024
2020-01-24T11:12:47.292Z    INFO    main    Bootstrap   scheduler.http-client.max-threads                                     200                                                                        200
2020-01-24T11:12:47.294Z    INFO    main    Bootstrap   scheduler.http-client.min-threads                                     8                                                                          8
2020-01-24T11:12:47.299Z    INFO    main    Bootstrap   scheduler.http-client.record-request-complete                         true                                                                       true
2020-01-24T11:12:47.300Z    INFO    main    Bootstrap   scheduler.http-client.request-buffer-size                             4kB                                                                        4kB
2020-01-24T11:12:47.301Z    INFO    main    Bootstrap   scheduler.http-client.request-timeout                                 10.00s                                                                     10.00s
2020-01-24T11:12:47.302Z    INFO    main    Bootstrap   scheduler.http-client.response-buffer-size                            16kB                                                                       16kB
2020-01-24T11:12:47.304Z    INFO    main    Bootstrap   scheduler.http-client.secure-random-algorithm                         null                                                                       null
2020-01-24T11:12:47.313Z    INFO    main    Bootstrap   scheduler.http-client.selector-count                                  2                                                                          2
2020-01-24T11:12:47.314Z    INFO    main    Bootstrap   scheduler.http-client.socks-proxy                                     null                                                                       null
2020-01-24T11:12:47.315Z    INFO    main    Bootstrap   scheduler.http-client.timeout-concurrency                             1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.315Z    INFO    main    Bootstrap   scheduler.http-client.timeout-threads                                 1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.316Z    INFO    main    Bootstrap   scheduler.http-client.trust-store-password                            null                                                                       null
2020-01-24T11:12:47.316Z    INFO    main    Bootstrap   scheduler.http-client.trust-store-path                                null                                                                       null
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.authentication.enabled                         false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.use-blocking-connect                           false                                                                      false
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.connect-timeout                                5.00s                                                                      5.00s
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.http2.enabled                                  false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.http2.session-receive-window-size              16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.http2.stream-receive-window-size               16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.318Z    INFO    main    Bootstrap   workerInfo.http-client.http2.input-buffer-size                        8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.https.excluded-cipher                          [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.https.included-cipher                          []                                                                         []
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.idle-timeout                                   1.00m                                                                      1.00m
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.keep-alive-interval                            null                                                                       null
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.authentication.krb5.principal                  null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.authentication.krb5.remote-service-name        null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.key-store-password                             null                                                                       null
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.key-store-path                                 null                                                                       null
2020-01-24T11:12:47.319Z    INFO    main    Bootstrap   workerInfo.http-client.log.buffer-size                                1MB                                                                        1MB
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.compression.enabled                        true                                                                       true
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.enabled                                    false                                                                      false
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.flush-interval                             10.00s                                                                     10.00s
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.max-history                                15                                                                         15
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.max-size                                   1GB                                                                        1GB
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.path                                       var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.log.queue-size                                 10000                                                                      10000
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.max-connections                                200                                                                        200
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.max-connections-per-server                     20                                                                         20
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.max-content-length                             16MB                                                                       16MB
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.max-requests-queued-per-destination            1024                                                                       1024
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.max-threads                                    200                                                                        200
2020-01-24T11:12:47.320Z    INFO    main    Bootstrap   workerInfo.http-client.min-threads                                    8                                                                          8
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.record-request-complete                        true                                                                       true
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.request-buffer-size                            4kB                                                                        4kB
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.request-timeout                                5.00m                                                                      5.00m
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.response-buffer-size                           16kB                                                                       16kB
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.secure-random-algorithm                        null                                                                       null
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.selector-count                                 2                                                                          2
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.socks-proxy                                    null                                                                       null
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.timeout-concurrency                            1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.timeout-threads                                1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.trust-store-password                           null                                                                       null
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   workerInfo.http-client.trust-store-path                               null                                                                       null
2020-01-24T11:12:47.330Z    INFO    main    Bootstrap   discovery.http-client.authentication.enabled                          false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.use-blocking-connect                            false                                                                      false
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.connect-timeout                                 5.00s                                                                      5.00s
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.http2.enabled                                   false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.http2.session-receive-window-size               16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.http2.stream-receive-window-size                16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.http2.input-buffer-size                         8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.https.excluded-cipher                           [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.https.included-cipher                           []                                                                         []
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.idle-timeout                                    1.00m                                                                      1.00m
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.keep-alive-interval                             null                                                                       null
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.authentication.krb5.principal                   null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.authentication.krb5.remote-service-name         null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.key-store-password                              null                                                                       null
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.key-store-path                                  null                                                                       null
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.log.buffer-size                                 1MB                                                                        1MB
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.log.compression.enabled                         true                                                                       true
2020-01-24T11:12:47.331Z    INFO    main    Bootstrap   discovery.http-client.log.enabled                                     false                                                                      false
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.log.flush-interval                              10.00s                                                                     10.00s
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.log.max-history                                 15                                                                         15
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.log.max-size                                    1GB                                                                        1GB
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.log.path                                        var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.log.queue-size                                  10000                                                                      10000
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.max-connections                                 200                                                                        200
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.max-connections-per-server                      20                                                                         20
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.max-content-length                              16MB                                                                       16MB
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.max-requests-queued-per-destination             1024                                                                       1024
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.max-threads                                     200                                                                        200
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.min-threads                                     8                                                                          8
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.record-request-complete                         true                                                                       true
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.request-buffer-size                             4kB                                                                        4kB
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.request-timeout                                 5.00m                                                                      5.00m
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.response-buffer-size                            16kB                                                                       16kB
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.secure-random-algorithm                         null                                                                       null
2020-01-24T11:12:47.332Z    INFO    main    Bootstrap   discovery.http-client.selector-count                                  2                                                                          2
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   discovery.http-client.socks-proxy                                     null                                                                       null
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   discovery.http-client.timeout-concurrency                             1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   discovery.http-client.timeout-threads                                 1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   discovery.http-client.trust-store-password                            null                                                                       null
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   discovery.http-client.trust-store-path                                null                                                                       null
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.authentication.enabled                            false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.use-blocking-connect                              false                                                                      false
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.connect-timeout                                   5.00s                                                                      5.00s
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.http2.enabled                                     false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.http2.session-receive-window-size                 16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.http2.stream-receive-window-size                  16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.http2.input-buffer-size                           8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.https.excluded-cipher                             [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.https.included-cipher                             []                                                                         []
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.idle-timeout                                      1.00m                                                                      1.00m
2020-01-24T11:12:47.333Z    INFO    main    Bootstrap   dynamic.http-client.keep-alive-interval                               null                                                                       null
2020-01-24T11:12:47.334Z    INFO    main    Bootstrap   dynamic.http-client.authentication.krb5.principal                     null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.334Z    INFO    main    Bootstrap   dynamic.http-client.authentication.krb5.remote-service-name           null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.334Z    INFO    main    Bootstrap   dynamic.http-client.key-store-password                                null                                                                       null
2020-01-24T11:12:47.338Z    INFO    main    Bootstrap   dynamic.http-client.key-store-path                                    null                                                                       null
2020-01-24T11:12:47.338Z    INFO    main    Bootstrap   dynamic.http-client.log.buffer-size                                   1MB                                                                        1MB
2020-01-24T11:12:47.338Z    INFO    main    Bootstrap   dynamic.http-client.log.compression.enabled                           true                                                                       true
2020-01-24T11:12:47.338Z    INFO    main    Bootstrap   dynamic.http-client.log.enabled                                       false                                                                      false
2020-01-24T11:12:47.338Z    INFO    main    Bootstrap   dynamic.http-client.log.flush-interval                                10.00s                                                                     10.00s
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.log.max-history                                   15                                                                         15
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.log.max-size                                      1GB                                                                        1GB
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.log.path                                          var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.log.queue-size                                    10000                                                                      10000
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.max-connections                                   200                                                                        200
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.max-connections-per-server                        20                                                                         20
2020-01-24T11:12:47.346Z    INFO    main    Bootstrap   dynamic.http-client.max-content-length                                16MB                                                                       16MB
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.max-requests-queued-per-destination               1024                                                                       1024
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.max-threads                                       200                                                                        200
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.min-threads                                       8                                                                          8
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.record-request-complete                           true                                                                       true
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.request-buffer-size                               4kB                                                                        4kB
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.request-timeout                                   5.00m                                                                      5.00m
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.response-buffer-size                              16kB                                                                       16kB
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.secure-random-algorithm                           null                                                                       null
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.selector-count                                    2                                                                          2
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.socks-proxy                                       null                                                                       null
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.timeout-concurrency                               1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.timeout-threads                                   1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.trust-store-password                              null                                                                       null
2020-01-24T11:12:47.347Z    INFO    main    Bootstrap   dynamic.http-client.trust-store-path                                  null                                                                       null
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.authentication.enabled                              false                                                                      false                                                                      Enable client authentication
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.use-blocking-connect                                false                                                                      false
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.connect-timeout                                     5.00s                                                                      5.00s
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.http2.enabled                                       false                                                                      false                                                                      Enable the HTTP/2 transport
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.http2.session-receive-window-size                   16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.http2.stream-receive-window-size                    16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.http2.input-buffer-size                             8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.348Z    INFO    main    Bootstrap   event.http-client.https.excluded-cipher                               [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.https.included-cipher                               []                                                                         []
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.idle-timeout                                        1.00m                                                                      1.00m
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.keep-alive-interval                                 null                                                                       null
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.authentication.krb5.principal                       null                                                                       null                                                                       Set kerberos client principal
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.authentication.krb5.remote-service-name             null                                                                       null                                                                       Set kerberos service principal name
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.key-store-password                                  null                                                                       null
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.key-store-path                                      null                                                                       null
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.buffer-size                                     1MB                                                                        1MB
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.compression.enabled                             true                                                                       true
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.enabled                                         false                                                                      false
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.flush-interval                                  10.00s                                                                     10.00s
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.max-history                                     15                                                                         15
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.max-size                                        1GB                                                                        1GB
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.path                                            var/log/                                                                   var/log/                                                                   The name of the log file will be prefixed with the name of the HTTP client (<client_name>-http-client.log)
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.log.queue-size                                      10000                                                                      10000
2020-01-24T11:12:47.349Z    INFO    main    Bootstrap   event.http-client.max-connections                                     200                                                                        200
2020-01-24T11:12:47.350Z    INFO    main    Bootstrap   event.http-client.max-connections-per-server                          20                                                                         20
2020-01-24T11:12:47.350Z    INFO    main    Bootstrap   event.http-client.max-content-length                                  16MB                                                                       16MB
2020-01-24T11:12:47.350Z    INFO    main    Bootstrap   event.http-client.max-requests-queued-per-destination                 1024                                                                       1024
2020-01-24T11:12:47.353Z    INFO    main    Bootstrap   event.http-client.max-threads                                         200                                                                        200
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.min-threads                                         8                                                                          8
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.record-request-complete                             true                                                                       true
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.request-buffer-size                                 4kB                                                                        4kB
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.request-timeout                                     5.00m                                                                      5.00m
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.response-buffer-size                                16kB                                                                       16kB
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.secure-random-algorithm                             null                                                                       null
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.selector-count                                      2                                                                          2
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.socks-proxy                                         null                                                                       null
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.timeout-concurrency                                 1                                                                          1                                                                          Number of concurrent locks for timeout
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.timeout-threads                                     1                                                                          1                                                                          Total number of timeout threads
2020-01-24T11:12:47.354Z    INFO    main    Bootstrap   event.http-client.trust-store-password                                null                                                                       null
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   event.http-client.trust-store-path                                    null                                                                       null
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http.authentication.krb5.config                                       null                                                                       null                                                                       Set kerberos configuration path
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http.authentication.krb5.credential-cache                             null                                                                       null                                                                       Set kerberos credential cache path
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http.authentication.krb5.keytab                                       null                                                                       null                                                                       Set kerberos key table path
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http.authentication.krb5.use-canonical-hostname                       true                                                                       true                                                                       Canonicalize service hostname using the DNS reverse lookup
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.admin.enabled                                             true                                                                       true
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.admin.threads.max                                         200                                                                        200
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.admin.threads.min                                         2                                                                          2
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.admin.port                                                0                                                                          0
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.http2.session-receive-window-size                         16MB                                                                       16MB                                                                       Initial size of session's flow control receive window for HTTP/2
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.http2.stream-receive-window-size                          16MB                                                                       16MB                                                                       Initial size of stream's flow control receive window for HTTP/2
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.http2.input-buffer-size                                   8kB                                                                        8kB                                                                        Size of the buffer used to read from the network for HTTP/2
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.http2.max-concurrent-streams                              16384                                                                      16384                                                                      Maximum concurrent streams per connection for HTTP/2
2020-01-24T11:12:47.355Z    INFO    main    Bootstrap   http-server.http2.stream-idle-timeout                                 15.00s                                                                     15.00s
2020-01-24T11:12:47.356Z    INFO    main    Bootstrap   http-server.accept-queue-size                                         8000                                                                       8000
2020-01-24T11:12:47.356Z    INFO    main    Bootstrap   http-server.http.acceptor-threads                                     null                                                                       null
2020-01-24T11:12:47.356Z    INFO    main    Bootstrap   http-server.http.enabled                                              true                                                                       true
2020-01-24T11:12:47.356Z    INFO    main    Bootstrap   http-server.http.port                                                 8080                                                                       8080
2020-01-24T11:12:47.356Z    INFO    main    Bootstrap   http-server.http.selector-threads                                     null                                                                       null
2020-01-24T11:12:47.356Z    INFO    main    Bootstrap   http-server.https.acceptor-threads                                    null                                                                       null
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.enabled                                             false                                                                      false
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.excluded-cipher                                     [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  [^.*_(MD5|SHA|SHA1)$, ^TLS_RSA_.*$, ^SSL_.*$, ^.*_NULL_.*$, ^.*_anon_.*$]  Setting this config property overwrites Jetty's default excluded cipher suites
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.included-cipher                                     []                                                                         []
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.port                                                8443                                                                       8443
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.selector-threads                                    null                                                                       null
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.keymanager.password                                 [REDACTED]                                                                 [REDACTED]
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.keystore.key                                        [REDACTED]                                                                 [REDACTED]
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.https.keystore.path                                       null                                                                       null
2020-01-24T11:12:47.358Z    INFO    main    Bootstrap   http-server.log.compression.enabled                                   true                                                                       true
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.log.enabled                                               true                                                                       true
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.log.max-history                                           15                                                                         15
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.log.max-size                                              100MB                                                                      100MB
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.log.path                                                  var/log/http-request.log                                                   /http-request.log
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.log.queue-size                                            10000                                                                      10000
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.max-request-header-size                                   null                                                                       null
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.threads.max                                               200                                                                        200
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.threads.min                                               2                                                                          2
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.net.max-idle-time                                         200.00s                                                                    200.00s
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.https.secure-random-algorithm                             null                                                                       null
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.show-stack-trace                                          true                                                                       true                                                                       Show the stack trace when generating an error response
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.https.ssl-session-cache-size                              10000                                                                      10000
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.https.ssl-session-timeout                                 4.00h                                                                      4.00h
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.threads.max-idle-time                                     1.00m                                                                      1.00m
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.https.truststore.key                                      [REDACTED]                                                                 [REDACTED]
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.https.truststore.path                                     null                                                                       null
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   http-server.auth.users-file                                           null                                                                       null
2020-01-24T11:12:47.359Z    INFO    main    Bootstrap   jmx.rmiregistry.port                                                  null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   jmx.rmiserver.port                                                    null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.binary-spec                                                      null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.config-spec                                                      null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.environment                                                      null                                                                       production
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.internal-address-source                                          IP                                                                         IP
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.location                                                         null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.bind-ip                                                          null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.external-address                                                 null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.id                                                               null                                                                       presto-1579859901-coordinator-7df8fc5c45-m699k
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.internal-address                                                 null                                                                       null
2020-01-24T11:12:47.360Z    INFO    main    Bootstrap   node.pool                                                             general                                                                    general
2020-01-24T11:12:52.750Z    WARN    main    io.airlift.jmx.JmxAgent Cannot determine if JMX agent is already running (not an Oracle JVM?). Will try to start it manually.
2020-01-24T11:12:52.974Z    INFO    main    io.airlift.jmx.JmxAgent JMX agent started and listening on presto-1579859901-coordinator-7df8fc5c45-m699k:43027
2020-01-24T11:13:02.099Z    INFO    main    org.eclipse.jetty.server.Server jetty-9.4.14.v20181114; built: 2018-11-14T21:20:31.478Z; git: c4550056e785fb5665914545889f21dc136ad9e6; jvm 1.8.0_181-8u181-b13-2~deb9u1-b13
2020-01-24T11:13:02.826Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.TaskExecutorResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.TaskExecutorResource will be ignored. 
2020-01-24T11:13:02.827Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.ServerInfoResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.ServerInfoResource will be ignored. 
2020-01-24T11:13:02.827Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider io.airlift.discovery.server.DynamicAnnouncementResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider io.airlift.discovery.server.DynamicAnnouncementResource will be ignored. 
2020-01-24T11:13:02.827Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.WorkerResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.WorkerResource will be ignored. 
2020-01-24T11:13:02.828Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.QueryStateInfoResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.QueryStateInfoResource will be ignored. 
2020-01-24T11:13:02.828Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.NodeResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.NodeResource will be ignored. 
2020-01-24T11:13:02.828Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.ClusterStatsResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.ClusterStatsResource will be ignored. 
2020-01-24T11:13:02.828Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.ThreadResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.ThreadResource will be ignored. 
2020-01-24T11:13:02.828Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.protocol.StatementResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.protocol.StatementResource will be ignored. 
2020-01-24T11:13:02.829Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.memory.MemoryResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.memory.MemoryResource will be ignored. 
2020-01-24T11:13:02.829Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.TaskResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.TaskResource will be ignored. 
2020-01-24T11:13:02.829Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.StatusResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.StatusResource will be ignored. 
2020-01-24T11:13:02.829Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.WebUiResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.WebUiResource will be ignored. 
2020-01-24T11:13:02.829Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider io.airlift.discovery.server.ServiceResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider io.airlift.discovery.server.ServiceResource will be ignored. 
2020-01-24T11:13:02.830Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.ResourceGroupStateInfoResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.ResourceGroupStateInfoResource will be ignored. 
2020-01-24T11:13:02.830Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.StageResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.StageResource will be ignored. 
2020-01-24T11:13:02.830Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider io.airlift.discovery.store.StoreResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider io.airlift.discovery.store.StoreResource will be ignored. 
2020-01-24T11:13:02.830Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider io.airlift.jmx.MBeanResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider io.airlift.jmx.MBeanResource will be ignored. 
2020-01-24T11:13:02.830Z    WARN    main    org.glassfish.jersey.internal.inject.Providers  A provider com.facebook.presto.server.QueryResource registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider com.facebook.presto.server.QueryResource will be ignored. 
2020-01-24T11:13:03.269Z    WARN    main    org.glassfish.jersey.internal.Errors    The following warnings have been detected: WARNING: Parameter 2 of type com.facebook.presto.execution.resourceGroups.ResourceGroupManager<?> from public com.facebook.presto.server.QueryStateInfoResource(com.facebook.presto.execution.QueryManager,com.facebook.presto.execution.resourceGroups.ResourceGroupManager<?>) is not resolvable to a concrete type.
WARNING: Parameter 2 of type com.facebook.presto.execution.resourceGroups.ResourceGroupManager<?> from public com.facebook.presto.server.QueryStateInfoResource(com.facebook.presto.execution.QueryManager,com.facebook.presto.execution.resourceGroups.ResourceGroupManager<?>) is not resolvable to a concrete type.
WARNING: Parameter 1 of type com.facebook.presto.execution.resourceGroups.ResourceGroupManager<?> from public com.facebook.presto.server.ResourceGroupStateInfoResource(com.facebook.presto.execution.resourceGroups.ResourceGroupManager<?>) is not resolvable to a concrete type.

2020-01-24T11:13:03.272Z    INFO    main    org.eclipse.jetty.server.handler.ContextHandler Started o.e.j.s.ServletContextHandler@2f054f70{/,null,AVAILABLE,@http}
2020-01-24T11:13:03.288Z    INFO    main    org.eclipse.jetty.server.AbstractConnector  Started http@10980560{HTTP/1.1,[http/1.1, h2c]}{0.0.0.0:8080}
2020-01-24T11:13:03.288Z    INFO    main    org.eclipse.jetty.server.Server Started @22190ms
2020-01-24T11:13:04.824Z    INFO    main    io.airlift.bootstrap.LifeCycleManager   Life cycle starting...
2020-01-24T11:13:04.825Z    INFO    main    io.airlift.bootstrap.LifeCycleManager   Life cycle startup complete. System ready.
2020-01-24T11:13:04.826Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/accumulo --
2020-01-24T11:13:04.872Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.accumulo.AccumuloPlugin
2020-01-24T11:13:04.895Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector accumulo
2020-01-24T11:13:04.907Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.accumulo.udf.AccumuloStringFunctions
2020-01-24T11:13:04.916Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/accumulo --
2020-01-24T11:13:04.916Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/atop --
2020-01-24T11:13:04.932Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.atop.AtopPlugin
2020-01-24T11:13:04.949Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector atop
2020-01-24T11:13:04.951Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/atop --
2020-01-24T11:13:04.951Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/blackhole --
2020-01-24T11:13:04.955Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.blackhole.BlackHolePlugin
2020-01-24T11:13:04.968Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector blackhole
2020-01-24T11:13:04.970Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/blackhole --
2020-01-24T11:13:04.971Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/cassandra --
2020-01-24T11:13:04.985Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.cassandra.CassandraPlugin
2020-01-24T11:13:04.997Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector cassandra
2020-01-24T11:13:05.000Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/cassandra --
2020-01-24T11:13:05.001Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/example-http --
2020-01-24T11:13:05.013Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.example.ExamplePlugin
2020-01-24T11:13:05.026Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector example-http
2020-01-24T11:13:05.031Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/example-http --
2020-01-24T11:13:05.032Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/geospatial --
2020-01-24T11:13:05.042Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.geospatial.GeoPlugin
2020-01-24T11:13:05.052Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type Geometry
2020-01-24T11:13:05.053Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type BingTile
2020-01-24T11:13:05.053Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type KdbTree
2020-01-24T11:13:05.053Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type SphericalGeography
2020-01-24T11:13:05.061Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.GeoFunctions
2020-01-24T11:13:05.188Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.BingTileOperators
2020-01-24T11:13:05.198Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.BingTileFunctions
2020-01-24T11:13:05.213Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.BingTileFunctions$BingTileCoordinatesFunction
2020-01-24T11:13:05.222Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.aggregation.ConvexHullAggregation
2020-01-24T11:13:05.227Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.aggregation.GeometryUnionAgg
2020-01-24T11:13:05.230Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.KdbTreeCasts
2020-01-24T11:13:05.235Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.SpatialPartitioningAggregateFunction
2020-01-24T11:13:05.238Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.plugin.geospatial.SpatialPartitioningInternalAggregateFunction
2020-01-24T11:13:05.241Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/geospatial --
2020-01-24T11:13:05.241Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/hive-hadoop2 --
2020-01-24T11:13:05.309Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.hive.HiveHadoop2Plugin
2020-01-24T11:13:05.320Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector hive-hadoop2
2020-01-24T11:13:05.323Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/hive-hadoop2 --
2020-01-24T11:13:05.324Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/jmx --
2020-01-24T11:13:05.333Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.connector.jmx.JmxPlugin
2020-01-24T11:13:05.342Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector jmx
2020-01-24T11:13:05.343Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/jmx --
2020-01-24T11:13:05.343Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/kafka --
2020-01-24T11:13:05.357Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.kafka.KafkaPlugin
2020-01-24T11:13:05.373Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector kafka
2020-01-24T11:13:05.376Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/kafka --
2020-01-24T11:13:05.377Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/kudu --
2020-01-24T11:13:05.389Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.kudu.KuduPlugin
2020-01-24T11:13:05.401Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector kudu
2020-01-24T11:13:05.404Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/kudu --
2020-01-24T11:13:05.405Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/localfile --
2020-01-24T11:13:05.415Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.localfile.LocalFilePlugin
2020-01-24T11:13:05.428Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector localfile
2020-01-24T11:13:05.430Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/localfile --
2020-01-24T11:13:05.431Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/memory --
2020-01-24T11:13:05.441Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.memory.MemoryPlugin
2020-01-24T11:13:05.450Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector memory
2020-01-24T11:13:05.452Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/memory --
2020-01-24T11:13:05.452Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/ml --
2020-01-24T11:13:05.460Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.ml.MLPlugin
2020-01-24T11:13:05.476Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type Model
2020-01-24T11:13:05.476Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type Regressor
2020-01-24T11:13:05.477Z    INFO    main    com.facebook.presto.server.PluginManager    Registering parametric type Classifier
2020-01-24T11:13:05.489Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.LearnClassifierAggregation
2020-01-24T11:13:05.493Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.LearnVarcharClassifierAggregation
2020-01-24T11:13:05.496Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.LearnRegressorAggregation
2020-01-24T11:13:05.501Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.LearnLibSvmClassifierAggregation
2020-01-24T11:13:05.516Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.LearnLibSvmVarcharClassifierAggregation
2020-01-24T11:13:05.520Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.LearnLibSvmRegressorAggregation
2020-01-24T11:13:05.524Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.EvaluateClassifierPredictionsAggregation
2020-01-24T11:13:05.540Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFunctions
2020-01-24T11:13:05.545Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features1
2020-01-24T11:13:05.550Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features2
2020-01-24T11:13:05.555Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features3
2020-01-24T11:13:05.560Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features4
2020-01-24T11:13:05.567Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features5
2020-01-24T11:13:05.572Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features6
2020-01-24T11:13:05.579Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features7
2020-01-24T11:13:05.586Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features8
2020-01-24T11:13:05.593Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features9
2020-01-24T11:13:05.600Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.ml.MLFeaturesFunctions$Features10
2020-01-24T11:13:05.608Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/ml --
2020-01-24T11:13:05.608Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/mongodb --
2020-01-24T11:13:05.623Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.mongodb.MongoPlugin
2020-01-24T11:13:05.636Z    INFO    main    com.facebook.presto.server.PluginManager    Registering type ObjectId
2020-01-24T11:13:05.647Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector mongodb
2020-01-24T11:13:05.652Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.mongodb.ObjectIdFunctions
2020-01-24T11:13:05.662Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/mongodb --
2020-01-24T11:13:05.662Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/mysql --
2020-01-24T11:13:05.687Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.mysql.MySqlPlugin
2020-01-24T11:13:05.711Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector mysql
2020-01-24T11:13:05.716Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/mysql --
2020-01-24T11:13:05.716Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/password-authenticators --
2020-01-24T11:13:05.733Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.password.PasswordAuthenticatorPlugin
2020-01-24T11:13:05.746Z    INFO    main    com.facebook.presto.server.PluginManager    Registering password authenticator ldap
2020-01-24T11:13:05.746Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/password-authenticators --
2020-01-24T11:13:05.746Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/postgresql --
2020-01-24T11:13:05.762Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.postgresql.PostgreSqlPlugin
2020-01-24T11:13:05.806Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector postgresql
2020-01-24T11:13:05.809Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/postgresql --
2020-01-24T11:13:05.810Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/presto-elasticsearch --
2020-01-24T11:13:05.850Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.elasticsearch.ElasticsearchPlugin
2020-01-24T11:13:05.863Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector elasticsearch
2020-01-24T11:13:05.866Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/presto-elasticsearch --
2020-01-24T11:13:05.866Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/presto-thrift --
2020-01-24T11:13:05.915Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.connector.thrift.ThriftPlugin
2020-01-24T11:13:05.919Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector presto-thrift
2020-01-24T11:13:05.922Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/presto-thrift --
2020-01-24T11:13:05.922Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/raptor --
2020-01-24T11:13:05.990Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.raptor.RaptorPlugin
2020-01-24T11:13:05.995Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector raptor
2020-01-24T11:13:05.999Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/raptor --
2020-01-24T11:13:05.999Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/redis --
2020-01-24T11:13:06.015Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.redis.RedisPlugin
2020-01-24T11:13:06.028Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector redis
2020-01-24T11:13:06.031Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/redis --
2020-01-24T11:13:06.032Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/redshift --
2020-01-24T11:13:06.053Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.redshift.RedshiftPlugin
2020-01-24T11:13:06.063Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector redshift
2020-01-24T11:13:06.066Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/redshift --
2020-01-24T11:13:06.066Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/resource-group-managers --
2020-01-24T11:13:06.083Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.resourceGroups.ResourceGroupManagerPlugin
2020-01-24T11:13:06.097Z    INFO    main    com.facebook.presto.server.PluginManager    Registering resource group configuration manager file
2020-01-24T11:13:06.097Z    INFO    main    com.facebook.presto.server.PluginManager    Registering resource group configuration manager db
2020-01-24T11:13:06.097Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/resource-group-managers --
2020-01-24T11:13:06.097Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/session-property-managers --
2020-01-24T11:13:06.113Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.session.FileSessionPropertyManagerPlugin
2020-01-24T11:13:06.125Z    INFO    main    com.facebook.presto.server.PluginManager    Registering session property configuration manager file
2020-01-24T11:13:06.125Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/session-property-managers --
2020-01-24T11:13:06.125Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/sqlserver --
2020-01-24T11:13:06.148Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.plugin.sqlserver.SqlServerPlugin
2020-01-24T11:13:06.157Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector sqlserver
2020-01-24T11:13:06.159Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/sqlserver --
2020-01-24T11:13:06.160Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/teradata-functions --
2020-01-24T11:13:06.165Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.teradata.functions.TeradataFunctionsPlugin
2020-01-24T11:13:06.180Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.teradata.functions.TeradataDateFunctions
2020-01-24T11:13:06.187Z    INFO    main    com.facebook.presto.server.PluginManager    Registering functions from com.facebook.presto.teradata.functions.TeradataStringFunctions
2020-01-24T11:13:06.196Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/teradata-functions --
2020-01-24T11:13:06.196Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/tpcds --
2020-01-24T11:13:06.203Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.tpcds.TpcdsPlugin
2020-01-24T11:13:06.215Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector tpcds
2020-01-24T11:13:06.219Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/tpcds --
2020-01-24T11:13:06.219Z    INFO    main    com.facebook.presto.server.PluginManager    -- Loading plugin /presto/plugin/tpch --
2020-01-24T11:13:06.224Z    INFO    main    com.facebook.presto.server.PluginManager    Installing com.facebook.presto.tpch.TpchPlugin
2020-01-24T11:13:06.291Z    INFO    main    com.facebook.presto.server.PluginManager    Registering connector tpch
2020-01-24T11:13:06.296Z    INFO    main    com.facebook.presto.server.PluginManager    -- Finished loading plugin /presto/plugin/tpch --
2020-01-24T11:13:06.434Z    INFO    main    com.facebook.presto.metadata.StaticCatalogStore -- Loading catalog /presto/etc/catalog/hive.properties --
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   PROPERTY                                           DEFAULT              RUNTIME       DESCRIPTION
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.allow-corrupt-writes-for-testing              false                -- n/a --     Allow Hive connector to write data even when data will likely be corrupt
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.assume-canonical-partition-keys               false                -- n/a --
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.bucket-execution                              true                 -- n/a --     Enable bucket-aware execution: only use a single worker per bucket
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.collect-column-statistics-on-write            false                -- n/a --     Enables automatic column level statistics collection on write
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.non-managed-table-creates-enabled             true                 -- n/a --     Enable non-managed (external) table creates
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.dfs.connect.max-retries                       5                    -- n/a --
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.dfs.connect.timeout                           500.00ms             -- n/a --
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.dfs-timeout                                   60.00s               -- n/a --
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.domain-compaction-threshold                   100                  -- n/a --     Maximum ranges to allow in a tuple domain without compacting it
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.dfs.domain-socket-path                        null                 -- n/a --
2020-01-24T11:13:06.987Z    INFO    main    Bootstrap   hive.parquet.fail-on-corrupted-statistics          true                 -- n/a --     Fail when scanning Parquet files with corrupted statistics
2020-01-24T11:13:06.988Z    INFO    main    Bootstrap   hive.fs.cache.max-size                             1000                 -- n/a --     Hadoop FileSystem cache size
2020-01-24T11:13:06.988Z    INFO    main    Bootstrap   hive.force-local-scheduling                        false                -- n/a --
2020-01-24T11:13:06.988Z    INFO    main    Bootstrap   hive.hdfs.authentication.type                      NONE                 -- n/a --     HDFS authentication type
2020-01-24T11:13:06.988Z    INFO    main    Bootstrap   hive.hdfs.impersonation.enabled                    false                -- n/a --     Should Presto user be impersonated when communicating with HDFS
2020-01-24T11:13:06.988Z    INFO    main    Bootstrap   hive.hdfs.wire-encryption.enabled                  false                -- n/a --     Should be turned on when HDFS wire encryption is enabled
2020-01-24T11:13:06.988Z    INFO    main    Bootstrap   hive.compression-codec                             GZIP                 -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.metastore.authentication.type                 NONE                 -- n/a --     Hive Metastore authentication type
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.storage-format                                ORC                  -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.ignore-corrupted-statistics                   false                -- n/a --     Ignore corrupted statistics rather than failing
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.immutable-partitions                          false                -- n/a --     Can new data be inserted into existing partitions or existing unpartitioned tables
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.dfs.ipc-ping-interval                         10.00s               -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-concurrent-file-renames                   20                   -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-initial-split-size                        32MB                 -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-initial-splits                            200                  -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.metastore-refresh-max-threads                 100                  -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-open-sort-files                           50                   -- n/a --     Maximum number of writer temporary files to read in one pass
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-outstanding-splits                        1000                 -- n/a --     Target number of buffered splits for each table scan in a query, before the scheduler tries to pause itself
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-outstanding-splits-size                   256MB                -- n/a --     Maximum amount of memory allowed for split buffering for each table scan in a query, before the query is failed
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.metastore.partition-batch-size.max            100                  -- n/a --
2020-01-24T11:13:06.989Z    INFO    main    Bootstrap   hive.max-partitions-per-scan                       100000               -- n/a --     Maximum allowed partitions for a single table scan
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.max-partitions-per-writers                    100                  -- n/a --     Maximum number of partitions per writer
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.max-split-iterator-threads                    1000                 -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.max-split-size                                64MB                 -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.metastore-cache-maximum-size                  10000                -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.metastore-cache-ttl                           0.00s                -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.metastore-refresh-interval                    0.00s                -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.metastore.thrift.client.socks-proxy           null                 -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.metastore-timeout                             10.00s               -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.metastore.partition-batch-size.min            10                   -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.optimize-mismatched-bucket-count              false                -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.orc.bloom-filters.enabled                     false                -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.orc.default-bloom-filter-fpp                  0.05                 -- n/a --     ORC Bloom filter false positive probability
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.orc.lazy-read-small-ranges                    true                 -- n/a --     ORC read small disk ranges lazily
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.orc.max-buffer-size                           8MB                  -- n/a --
2020-01-24T11:13:06.990Z    INFO    main    Bootstrap   hive.orc.max-merge-distance                        1MB                  -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.orc.max-read-block-size                       16MB                 -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.orc.optimized-writer.enabled                  true                 -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.orc.stream-buffer-size                        8MB                  -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.orc.tiny-stripe-threshold                     8MB                  -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.orc.writer.validation-mode                    BOTH                 -- n/a --     Level of detail in ORC validation. Lower levels require more memory.
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.orc.writer.validation-percentage              0.0                  -- n/a --     Percentage of ORC files to validate after write by re-reading the whole file
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.partition-statistics-sample-size              100                  -- n/a --     Maximum sample size of the partitions column statistics
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.per-transaction-metastore-cache-maximum-size  1000                 -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.preload-splits-for-grouped-execution          false                -- n/a --     Preload splits before scheduling for grouped execution
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.rcfile-optimized-writer.enabled               true                 -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.rcfile.writer.validate                        false                -- n/a --     Validate RCFile after write by re-reading the whole file
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.metastore-recoding-duration                   0.00m                -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.metastore-recording-path                      null                 -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.recursive-directories                         false                -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.replay-metastore-recording                    false                -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.config.resources                              []                   -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.respect-table-format                          true                 -- n/a --     Should new partitions be written using the existing table format or the default Presto format
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.s3-file-system-type                           PRESTO               -- n/a --
2020-01-24T11:13:06.991Z    INFO    main    Bootstrap   hive.s3select-pushdown.enabled                     false                -- n/a --     Enable query pushdown to AWS S3 Select service
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.s3select-pushdown.max-connections             500                  -- n/a --
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.skip-deletion-for-alter                       false                -- n/a --     Skip deletion of old partition data when a partition is deleted and then inserted in the same transaction
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.skip-target-cleanup-on-rollback               false                -- n/a --     Skip deletion of target directories when a metastore operation fails and the write mode is DIRECT_TO_TARGET_NEW_DIRECTORY
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.sorted-writing                                true                 -- n/a --     Enable writing to bucketed sorted tables
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.split-loader-concurrency                      4                    -- n/a --
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.table-statistics-enabled                      true                 -- n/a --     Enable use of table statistics
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.temporary-staging-directory-enabled           true                 -- n/a --     Should use (if possible) temporary staging directory for write operations
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.temporary-staging-directory-path              /tmp/presto-${USER}  -- n/a --     Location of temporary staging directory for write operations. Use ${USER} placeholder to use different location for each user.
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.text.max-line-length                          100MB                -- n/a --     Maximum line length for text files
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.time-zone                                     Etc/UTC              -- n/a --
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.use-column-names                          false                -- n/a --     Access ORC columns using names from the file
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.parquet.use-column-names                      false                -- n/a --     Access Parquet columns using names from the file
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.dfs.verify-checksum                           true                 -- n/a --
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.write-validation-threads                      16                   -- n/a --     Number of threads used for verifying data after a write
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.writer-sort-buffer-size                       64MB                 -- n/a --
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.non-managed-table-writes-enabled              false                -- n/a --     Enable writes to non-managed (external) tables
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.writing-staging-files-enabled                 false                -- n/a --     Write data to staging files and rename to target files when commit
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.dictionary-max-memory              16MB                 16MB
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.max-compression-buffer-size        256kB                256kB
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.row-group-max-rows                 10000                10000
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.string-statistics-limit            64B                  64B
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.stripe-max-rows                    10000000             10000000
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.stripe-max-size                    64MB                 64MB
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.orc.writer.stripe-min-size                    32MB                 32MB
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.parquet.writer.block-size                     134217728B           134217728B
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.parquet.writer.page-size                      1048576B             1048576B
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.metastore                                     thrift               file
2020-01-24T11:13:06.992Z    INFO    main    Bootstrap   hive.metastore.catalog.dir                         null                 s3://presto/  Hive file-based metastore catalog directory
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.metastore.user                                presto               presto        Hive file-based metastore username for file access
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.allow-add-column                              false                false         Allow Hive connector to add column
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.allow-drop-column                             false                false         Allow Hive connector to drop column
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.allow-drop-table                              false                true          Allow Hive connector to drop table
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.allow-rename-column                           false                false         Allow Hive connector to rename column
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.allow-rename-table                            false                false         Allow Hive connector to rename table
2020-01-24T11:13:06.993Z    INFO    main    Bootstrap   hive.security                                      legacy               legacy
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   UNUSED PROPERTIES
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.s3.aws-access-key
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.s3.aws-secret-key
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.s3.endpoint
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.s3.path-style-access
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.s3.ssl.enabled
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.s3select-pushdown.enabled
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   hive.storage-format
2020-01-24T11:13:06.993Z    WARN    main    Bootstrap   
2020-01-24T11:13:07.350Z    ERROR   main    com.facebook.presto.server.PrestoServer Unable to create injector, see the following errors:

1) Explicit bindings are required and com.facebook.presto.hive.authentication.HdfsAuthentication is not explicitly bound.
  while locating com.facebook.presto.hive.authentication.HdfsAuthentication
    for the 3rd parameter of com.facebook.presto.hive.HdfsEnvironment.<init>(HdfsEnvironment.java:50)
  at com.facebook.presto.hive.HiveClientModule.configure(HiveClientModule.java:68)

2) Explicit bindings are required and com.facebook.presto.hive.s3.S3ConfigurationUpdater is not explicitly bound.
  while locating com.facebook.presto.hive.s3.S3ConfigurationUpdater
    for the 2nd parameter of com.facebook.presto.hive.HdfsConfigurationUpdater.<init>(HdfsConfigurationUpdater.java:77)
  at com.facebook.presto.hive.HiveClientModule.configure(HiveClientModule.java:66)

3) Error: Could not coerce value 'parquet' to com.facebook.presto.hive.HiveStorageFormat (property 'hive.storage-format') in order to call [public com.facebook.presto.hive.HiveClientConfig com.facebook.presto.hive.HiveClientConfig.setHiveStorageFormat(com.facebook.presto.hive.HiveStorageFormat)]

4) Configuration property 'hive.s3.aws-access-key' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

5) Configuration property 'hive.s3.aws-secret-key' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

6) Configuration property 'hive.s3.endpoint' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

7) Configuration property 'hive.s3.path-style-access' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

8) Configuration property 'hive.s3.ssl.enabled' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

9) Configuration property 'hive.s3select-pushdown.enabled' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

10) Configuration property 'hive.storage-format' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

10 errors
com.google.inject.CreationException: Unable to create injector, see the following errors:

1) Explicit bindings are required and com.facebook.presto.hive.authentication.HdfsAuthentication is not explicitly bound.
  while locating com.facebook.presto.hive.authentication.HdfsAuthentication
    for the 3rd parameter of com.facebook.presto.hive.HdfsEnvironment.<init>(HdfsEnvironment.java:50)
  at com.facebook.presto.hive.HiveClientModule.configure(HiveClientModule.java:68)

2) Explicit bindings are required and com.facebook.presto.hive.s3.S3ConfigurationUpdater is not explicitly bound.
  while locating com.facebook.presto.hive.s3.S3ConfigurationUpdater
    for the 2nd parameter of com.facebook.presto.hive.HdfsConfigurationUpdater.<init>(HdfsConfigurationUpdater.java:77)
  at com.facebook.presto.hive.HiveClientModule.configure(HiveClientModule.java:66)

3) Error: Could not coerce value 'parquet' to com.facebook.presto.hive.HiveStorageFormat (property 'hive.storage-format') in order to call [public com.facebook.presto.hive.HiveClientConfig com.facebook.presto.hive.HiveClientConfig.setHiveStorageFormat(com.facebook.presto.hive.HiveStorageFormat)]

4) Configuration property 'hive.s3.aws-access-key' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

5) Configuration property 'hive.s3.aws-secret-key' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

6) Configuration property 'hive.s3.endpoint' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

7) Configuration property 'hive.s3.path-style-access' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

8) Configuration property 'hive.s3.ssl.enabled' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

9) Configuration property 'hive.s3select-pushdown.enabled' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

10) Configuration property 'hive.storage-format' was not used
  at io.airlift.bootstrap.Bootstrap.lambda$initialize$2(Bootstrap.java:233)

10 errors
    at com.google.inject.internal.Errors.throwCreationExceptionIfErrorsExist(Errors.java:543)
    at com.google.inject.internal.InternalInjectorCreator.initializeStatically(InternalInjectorCreator.java:159)
    at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:106)
    at com.google.inject.Guice.createInjector(Guice.java:87)
    at io.airlift.bootstrap.Bootstrap.initialize(Bootstrap.java:240)
    at com.facebook.presto.hive.HiveConnectorFactory.create(HiveConnectorFactory.java:120)
    at com.facebook.presto.connector.ConnectorManager.createConnector(ConnectorManager.java:321)
    at com.facebook.presto.connector.ConnectorManager.addCatalogConnector(ConnectorManager.java:195)
    at com.facebook.presto.connector.ConnectorManager.createConnection(ConnectorManager.java:187)
    at com.facebook.presto.connector.ConnectorManager.createConnection(ConnectorManager.java:173)
    at com.facebook.presto.metadata.StaticCatalogStore.loadCatalog(StaticCatalogStore.java:96)
    at com.facebook.presto.metadata.StaticCatalogStore.loadCatalogs(StaticCatalogStore.java:74)
    at com.facebook.presto.server.PrestoServer.run(PrestoServer.java:131)
    at com.facebook.presto.server.PrestoServer.main(PrestoServer.java:73)

2020-01-24T11:13:07.352Z    INFO    Thread-90   io.airlift.bootstrap.LifeCycleManager   Life cycle stopping...
riazarbi commented 4 years ago

I resolved this by rebuilding the docker image with prestodb version 0.230.