update syntax for golbal cached uri lookups (#10629)

This commit is contained in:
Charles Smith 2020-12-24 09:49:01 -08:00 committed by GitHub
parent b7a16d08a6
commit 797371598d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 5 deletions

View File

@ -48,9 +48,9 @@ Globally cached lookups can be specified as part of the [cluster wide config for
"namespaceParseSpec": {
"format": "csv",
"columns": [
"key",
"value"
]
"[\"key\"",
"\"value\"]"
]
},
"pollPeriod": "PT5M"
},
@ -186,7 +186,10 @@ The remapping values for each globally cached lookup can be specified by a JSON
"uri": "s3://bucket/some/key/prefix/renames-0003.gz",
"namespaceParseSpec":{
"format":"csv",
"columns":["key","value"]
"columns":[
"[\"key\"",
"\"value\"]"
]
},
"pollPeriod":"PT5M"
}
@ -199,7 +202,10 @@ The remapping values for each globally cached lookup can be specified by a JSON
"fileRegex":"renames-[0-9]*\\.gz",
"namespaceParseSpec":{
"format":"csv",
"columns":["key","value"]
"columns":[
"[\"key\"",
"\"value\"]"
]
},
"pollPeriod":"PT5M"
}