github.com/rohankumardubey/aresdb@v0.0.2-0.20190517170215-e54e3ca06b9c/examples/1k_trips/schema/trips.json (about)

     1  {
     2    "name": "trips",
     3    "columns": [
     4      {
     5        "name": "request_at",
     6        "type": "Uint32"
     7      },
     8      {
     9        "name": "uuid",
    10        "type": "UUID"
    11      },
    12      {
    13        "name": "city_id",
    14        "type": "Uint16"
    15      },
    16      {
    17        "name": "status",
    18        "type": "SmallEnum"
    19      },
    20      {
    21        "name": "fare",
    22        "type": "Float32"
    23      },
    24      {
    25        "name": "driver_uuid",
    26        "type": "UUID"
    27      },
    28      {
    29        "name": "request_point",
    30        "type": "GeoPoint"
    31      }
    32    ],
    33    "primaryKeyColumns": [1],
    34    "archivingSortColumns": [2,3],
    35    "config": {
    36      "archivingDelayMinutes": 1440,
    37      "archivingIntervalMinutes": 180,
    38      "backfillIntervalMinutes": 60,
    39      "backfillMaxBufferSize": 1048576,
    40      "backfillStoreBatchSize": 20000,
    41      "backfillThresholdInBytes": 20971520,
    42      "batchSize": 2097152,
    43      "maxRedoLogFileSize": 1073741824,
    44      "recordRetentionInDays": 3,
    45      "redoLogRotationInterval": 10800
    46    },
    47    "isFactTable": true
    48  }