AWS M12: TNO Dataset not loaded

The TNO Dataset does not appear loaded in AWS M12 pre-shipping environment. When using the following query to get a count of wells, the total number of wells returned is 81, when we are expecting over 4000 wells:

curl --location --request POST 'https://r3m12.preshiptesting.osdu.aws/api/search/v2/query' \
--header 'Content-Type: application/json' \
--header 'data-partition-id: osdu' \
--header 'Authorization: Bearer ...' \
--data-raw '{
	"kind": "osdu:wks:master-data--Well:1.0.0",
    "returnedFields":["id"],
    "limit":1,
    "aggregateBy":"kind"
}
'

Response:

{
    "results": [
        {
            "id": "osdu:master-data--Well:1080"
        }
    ],
    "aggregations": [
        {
            "key": "osdu:wks:master-data--Well:1.0.0",
            "count": 81
        }
    ],
    "totalCount": 81
}

The wellbore, well log, well trajectory, and wellbore marker counts appear to be off as well. We are expecting the folllowing counts:

  • osdu:wks:work-product-component--WellLog:1.1.0 - expecting over 800 records
  • osdu:wks:work-product-component--WellboreMarkerSet:* - expecting over 5000 records
  • osdu:wks:work-product-component--WellboreTrajectory:1.1.0 - expecting over 5000 records
  • osdu:wks:master-data--Wellbore:1.0.0 - expecting over 6000 records

Wellbore Record Count Query:

curl --location --request POST 'https://r3m12.preshiptesting.osdu.aws/api/search/v2/query' \
--header 'Content-Type: application/json' \
--header 'data-partition-id: osdu' \
--header 'Authorization: Bearer ...' \
--data-raw '{
	"kind": "osdu:wks:master-data--Wellbore:1.0.0",
    "returnedFields":["id"],
    "limit":1,
    "aggregateBy":"kind"
}
'

Response:

{
    "results": [
        {
            "id": "osdu:master-data--Wellbore:NPD-6184"
        }
    ],
    "aggregations": [
        {
            "key": "osdu:wks:master-data--Wellbore:1.0.0",
            "count": 13
        }
    ],
    "totalCount": 13
}

WellLog Record Count Query:

curl --location --request POST 'https://r3m12.preshiptesting.osdu.aws/api/search/v2/query' \
--header 'Content-Type: application/json' \
--header 'data-partition-id: osdu' \
--header 'Authorization: Bearer ...' \
--data-raw '{
	"kind": "osdu:wks:work-product-component--WellLog:*",
    "returnedFields":["id"],
    "limit":1,
    "aggregateBy":"kind"
}

' Response:

{
    "results": [
        {
            "id": "osdu:work-product-component--WellLog:b1868e836b474706d8ccb1d83369e817ff69332e89fba83e3fe1c2847080ac44"
        }
    ],
    "aggregations": [
        {
            "key": "osdu:wks:work-product-component--WellLog:1.1.0",
            "count": 400
        },
        {
            "key": "osdu:wks:work-product-component--WellLog:1.0.0",
            "count": 210
        }
    ],
    "totalCount": 610
}

Wellbore Trajectory Count Query:

curl --location --request POST 'https://r3m12.preshiptesting.osdu.aws/api/search/v2/query' \
--header 'Content-Type: application/json' \
--header 'data-partition-id: osdu' \
--header 'Authorization: Bearer ...' \
--data-raw '{
	"kind": "osdu:wks:work-product-component--WellboreTrajectory:*",
    "returnedFields":["id"],
    "limit":1,
    "aggregateBy":"kind"
}
'

Response:

{
    "results": [
        {
            "id": "osdu:work-product-component--WellboreTrajectory:620813aabae86776396d72c826afcd84628311a4ed348c4eacc6c1f6addfc648"
        }
    ],
    "aggregations": [
        {
            "key": "osdu:wks:work-product-component--WellboreTrajectory:1.1.0",
            "count": 328
        },
        {
            "key": "osdu:wks:work-product-component--WellboreTrajectory:1.0.0",
            "count": 2
        }
    ],
    "totalCount": 330
}

Wellbore Marker Count Query:

curl --location --request POST 'https://r3m12.preshiptesting.osdu.aws/api/search/v2/query' \
--header 'Content-Type: application/json' \
--header 'data-partition-id: osdu' \
--header 'Authorization: Bearer ...' \
--data-raw '{
	"kind": "osdu:wks:work-product-component--WellboreMarkerSet*:*",
    "returnedFields":["id"],
    "limit":1,
    "aggregateBy":"kind"
}
'

Response:

{
    "results": [
        {
            "id": "osdu:work-product-component--WellboreMarkerSet:92e5c2fabff633f7ff0bdd2296af74bd35d4e00a4a85faa9e99299b97b3bbbb2"
        }
    ],
    "aggregations": [
        {
            "key": "osdu:wks:work-product-component--WellboreMarkerSet:1.0.0",
            "count": 3
        }
    ],
    "totalCount": 3
}
Edited by Michael