File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 99-------
1010
1111### Added:
12+
1213- [ Added dockerfile and updated README] ( https://github.com/yahoo/fili/pull/429 )
14+ * Made a Dockerfile for the Wikipedia example and added the documentation to the README.
1315
1416- [ Add Table-wide Availability] ( https://github.com/yahoo/fili/pull/414 )
1517 * Add ` availableIntervals ` field to tables endpoint by union the availability for the logical table without taking
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ Here are some sample queries that you can run to verify your server:
7777 GET http://localhost:9998/v1/data/wikiticker/day/? metrics=count& dateTime=PT72H/current
7878
7979 Note: this will should be something like the response below since the
80- wikipedia table doesn' t have data for the past 72 hours from now.
80+ wikiticker table doesn' t have data for the past 72 hours from now.
8181 ```json
8282 {
8383 "rows": [],
Original file line number Diff line number Diff line change @@ -14,10 +14,8 @@ RUN wget -q -O - http://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apa
1414RUN mkdir -p /usr/local/fili
1515
1616# update in case of new commits
17- ADD https://api.github.com/repos/$GITHUB_OWNER/fili/git/refs/heads/$BRANCH \
18- fili-branch.json
19- RUN git clone -q --branch ${BRANCH} --depth 1 \
20- https://github.com/$GITHUB_OWNER/fili.git /usr/local/fili
17+ ADD https://api.github.com/repos/$GITHUB_OWNER/fili/git/refs/heads/$BRANCH fili-branch.json
18+ RUN git clone -q --branch ${BRANCH} --depth 1 https://github.com/$GITHUB_OWNER/fili.git /usr/local/fili
2119
2220WORKDIR /usr/local/fili
2321
Original file line number Diff line number Diff line change @@ -70,12 +70,10 @@ Here are some sample queries that you can run to verify your server:
7070There is a [Docker image](https://hub.docker.com/r/mpardesh/fili/) for Fili which can be found on
7171Dockerhub. If you would like to experiment with Fili without having to download its dependencies, you can
7272[install](https://www.docker.com/community-edition) and start Docker. Then run these commands:
73-
7473
7574 docker pull mpardesh/fili:1.0
7675 docker run --name fili-wikipedia-example -i --rm -p 3001:8081 -p 3000:8082 -p 9998:9998 mpardesh/fili:1.0
7776
78-
7977This will start a container. Please wait a few minutes for Druid to get ready.
8078
8179Once Druid is ready, you can start querying! Here is a
You can’t perform that action at this time.
0 commit comments