Merge branch 'master' into cluster-resize

This commit is contained in:
Travis Turner 2018-02-06 11:44:31 -06:00
commit 29091b54bc
No known key found for this signature in database
GPG key ID: 7F08008DFD9314C9

View file

@ -59,9 +59,13 @@ curl localhost:10101/index/repository -X POST
Let's create the `stargazer` frame which has user IDs of stargazers as its rows:
```
curl localhost:10101/index/repository/frame/stargazer -X POST
curl localhost:10101/index/repository/frame/stargazer \
-X POST \
-d '{"options": {"timeQuantum": "YMD"}}'
```
Since our data contains time stamps for the time users starred repos, we set the *time quantum* for the `stargazer` frame in the options as well. Time quantum is the resolution of the time we want to use, and we set it to `YMD` (year, month, day) for `stargazer`.
Next up is the `language` frame, which will contain IDs for programming languages:
```
curl localhost:10101/index/repository/frame/language -X POST