Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-93136

Set timeseries options to the timeseries view docs got from $listCollections

    • Type: Icon: Task Task
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • None
    • Catalog and Routing
    • CAR Team 2024-08-19, CAR Team 2024-09-02

      One of the goal of SPM-3797 is to create a $listCollections aggregation stage that replicates as much as possible the listCollections output adding important sharding information for the user.

      However, the new $listCollections introduced by SERVER-92216, is not returning the same fields as the listCollections command for the timeseries-view namespaces.

      This is an example for a timeseries-view namespace returned by $listCollections followed by the output of the listCollections command:

      // timeseries-view returned by $listCollections: 
        {
           namespace: 'dbA.collTimeseries',
           db: 'dbA',
           type: 'timeseries',
           viewOn: 'system.buckets.collT',
           pipeline: [
             {
               '$_internalUnpackBucket': { timeField: 't', bucketMaxSpanSeconds: 3600 }
             }
           ],
           info: { readOnly: false }
           sharded: false
         }
      // timeseries-view returned by the listCollections command:
       {
          name: 'collT',
          type: 'timeseries',
          options: {
            timeseries: {
              timeField: 't',
              granularity: 'seconds',
              bucketMaxSpanSeconds: 3600
            }
          },
          info: { readOnly: false }
        }

      This task aims to:

      • Remove the pipeline and viewOn fields
      • Add the options.timeseries field 

            Assignee:
            silvia.surroca@mongodb.com Silvia Surroca
            Reporter:
            silvia.surroca@mongodb.com Silvia Surroca
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: