You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+80-17Lines changed: 80 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,21 +19,19 @@
19
19
20
20
</div>
21
21
22
-
Parseable is a log analytics platform, built for the modern, cloud native era. Parseable uses a index-free mechanism to organize and query data allowing low latency, and high throughput ingestion and query.
22
+
Parseable is a **cloud native, log analytics platform, with a focus on performance & resource efficiency**. Parseable is useful for use cases where **complete data ownership, privacy, and performance are paramount**.
23
23
24
-
To get started, download the Parseable binary from [releases page ↗︎](https://github.com/parseablehq/parseable/releases/latest) and run it on your machine.
24
+
To experience Parseable UI, checkout [demo.parseable.com ↗︎](https://demo.parseable.com/login?q=eyJ1c2VybmFtZSI6ImFkbWluIiwicGFzc3dvcmQiOiJhZG1pbiJ9). You can also view the [demo video ↗︎](https://www.parseable.com/video.mp4).
25
25
26
-
For comparison, Parseable consumes up to **_~80% lower memory_** and **_~50% lower CPU_** than Elastic for similar ingestion throughput. Read more in the [benchmarks directory ↗︎](./benchmarks/).
You can <ahref="https://www.parseable.com/docs/docker-quick-start">get started with Parseable Docker</a> with a simple Docker run and then send data via cURL to understand how you can ingest data to Parseable. Below is the command to run Parseable in local storage mode with Docker.
31
33
32
-
## :zap: Quickstart
33
-
34
-
Deploy Parseable in local storage mode with Docker.
35
-
36
-
```sh
34
+
```bash
37
35
docker run -p 8000:8000 \
38
36
parseable/parseable:latest \
39
37
parseable local-store
@@ -43,7 +41,65 @@ Once this runs successfully, you'll see dashboard at [http://localhost:8000 ↗
43
41
44
42
To ingest data, run the below command. This will send logs to the `demo` stream. You can see the logs in the dashboard.
45
43
46
-
```sh
44
+
```bash
45
+
curl --location --request POST 'http://localhost:8000/api/v1/ingest' \
Once this runs successfully, you'll see dashboard at [http://localhost:8000 ↗︎](http://localhost:8000). You can login to the dashboard default credentials `admin`, `admin`.
99
+
100
+
To ingest data, run the below command. This will send logs to the `demo` stream. You can see the logs in the dashboard.
101
+
102
+
```bash
47
103
curl --location --request POST 'http://localhost:8000/api/v1/ingest' \
@@ -57,12 +113,19 @@ curl --location --request POST 'http://localhost:8000/api/v1/ingest' \
57
113
]'
58
114
```
59
115
60
-
## :rocket: Highlights
116
+
</p>
117
+
</details>
118
+
119
+
## :question: Why Parseable
120
+
121
+
### Take control of your data
122
+
123
+
With Apache Arrow and Apache Parquet as the underlying data format, Parseable ensures that not only you have access to your data, but also that it is stored in a performant and efficient manner.
124
+
125
+
### Performance & resource efficiency
126
+
127
+
### Easy to use for developers and operators
61
128
62
-
- Choose storage backend - local drive or S3 (or compatible) object store.
63
-
- Ingestion API compatible with HTTP + JSON output of log agents.
64
-
- Query log data with PostgreSQL compatible SQL.
65
-
- Single binary includes all components - ingestion, store and query. Built-in UI.
66
129
67
130
### Enterprise ready
68
131
@@ -75,7 +138,7 @@ curl --location --request POST 'http://localhost:8000/api/v1/ingest' \
75
138
76
139
## :dart: Motivation
77
140
78
-
Traditionally, logging has been seen as a text search problem. Log volumes were not high, and data ingestion or storage were not really issues. This led us to today, where all the logging platforms are primarily text search engines.
141
+
79
142
80
143
But with log data growing exponentially, today's log data challenges involve whole lot more – Data ingestion, storage, and observation, all at scale. We are building Parseable to address these challenges.
0 commit comments