github.com/yankunsam/loki/v2@v2.6.3-0.20220817130409-389df5235c27/docs/sources/configuration/examples/example-schema-config.yaml (about)

     1  # Additional example schema configuration for Cassandra
     2  
     3  schema_config:
     4    configs:
     5      # Starting from 2018-04-15 Loki should store indexes on Cassandra
     6      # using weekly periodic tables and chunks on filesystem.
     7      # The index tables will be prefixed with "index_".
     8    - from: "2018-04-15"
     9      store: cassandra
    10      object_store: filesystem
    11      schema: v11
    12      index:
    13          period: 168h
    14          prefix: index_
    15  
    16    # Starting from 2020-6-15 we moved from filesystem to AWS S3 for storing the chunks.
    17    - from: "2020-06-15"
    18      store: cassandra
    19      object_store: s3
    20      schema: v11
    21      index:
    22          period: 168h
    23          prefix: index_
    24