This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch fix_doc_for_delimiter
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/fix_doc_for_delimiter by this
push:
new 929a5b8 Address comment: add multi-valued column into schema example
929a5b8 is described below
commit 929a5b8f1d404347f0dbc426ac2cced64daee58b
Author: Jackie (Xiaotian) Jiang <[email protected]>
AuthorDate: Mon Apr 8 11:13:08 2019 -0700
Address comment: add multi-valued column into schema example
---
docs/pinot_hadoop.rst | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/docs/pinot_hadoop.rst b/docs/pinot_hadoop.rst
index 2f99ef6..b164480 100644
--- a/docs/pinot_hadoop.rst
+++ b/docs/pinot_hadoop.rst
@@ -136,18 +136,19 @@ Sample Schema:
"schemaName": "flights",
"dimensionFieldSpecs": [
{
- "name": "name",
- "dataType": "STRING"
+ "name": "flightNumber",
+ "dataType": "LONG"
},
{
- "name": "age",
- "dataType": "INT"
+ "name": "tags",
+ "dataType": "STRING",
+ "singleValueField": false
}
],
"metricFieldSpecs": [
{
- "name": "percent",
- "dataType": "FLOAT"
+ "name": "price",
+ "dataType": "DOUBLE"
}
],
"timeFieldSpec": {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]