flint-app.properties 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #****************************************************************
  2. # Licensed Materials - Property of IBM
  3. # IBM Cognos Products: Flint
  4. #
  5. # (C) Copyright IBM Corp. 2017, 2021
  6. #
  7. # US Government Users Restricted Rights -
  8. # Use, duplication or disclosure restricted by GSA ADP Schedule
  9. # Contract with IBM Corp.
  10. #*****************************************************************
  11. # Enables monitoring of STDIN to keep the Flint server alive only as long as STDIN stays open.
  12. # If "true", then the server will shutdown automatically when STDIN is closed.
  13. # This is useful to handle cases where DQ crashes and orphans the Flint server.
  14. flint.keepAliveByStdIn=true
  15. # Disables the Spark UI (recommended for production). The default is false.
  16. flint.spark.ui.disabled=true
  17. # Estimate dataset size with row samples. More accurate than parquet file size.
  18. flint.dataset.analysis.sizeInBytesFromSample=true
  19. # Include row counts in dataset statistics.
  20. flint.dataset.analysis.includeRowCount=true
  21. # == Result Caching ==
  22. # Sets the default strategy for result caching.
  23. # Acceptable values:
  24. # * OFF - Results are never cached.
  25. # * PERSIST - Spark persists Dataset in CacheManager.
  26. # * SERIALIZE - Rows serialized to files.
  27. flint.result.cache.strategy=SERIALIZE
  28. # Configures the crypto provider for serializing results to disk.
  29. flint.result.cache.serialize.cryptoProvider=com.ibm.ba.flint.crypto.provider.JCAMCryptoProvider
  30. # Maximum number of managed datasets.
  31. flint.datasets.cache.limit=250
  32. # Activate spark.authenticate to satisfy security concerns (CVE-2018-17190)
  33. spark.authenticate=true