Skip to content

Commit ba2a7c7

Browse files
committed
fixed formatting
1 parent 81e8ea0 commit ba2a7c7

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ Current
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

fili-generic-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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": [],

fili-wikipedia-example/Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ RUN wget -q -O - http://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/apa
1414
RUN 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

2220
WORKDIR /usr/local/fili
2321

fili-wikipedia-example/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,10 @@ Here are some sample queries that you can run to verify your server:
7070
There is a [Docker image](https://hub.docker.com/r/mpardesh/fili/) for Fili which can be found on
7171
Dockerhub. 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-
7977
This will start a container. Please wait a few minutes for Druid to get ready.
8078

8179
Once Druid is ready, you can start querying! Here is a

0 commit comments

Comments
 (0)