Skip to content

Commit 61d3e21

Browse files
authored
Change the payload size to 10 MiB (#273)
Also fix links and minor readme changes
1 parent 84e3dd9 commit 61d3e21

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ Parseable consumes up to **_~80% lower memory_** and **_~50% lower CPU_** than E
2929
## :rocket: Features
3030

3131
- Choose your own storage backend - local drive or S3 (or compatible) object store.
32-
- Ingestion API compatible with HTTP + JSON output of log agents - [Fluentbit ↗︎](https://fluentbit.io/), [Vector ↗︎](http://vector.dev/), [Logstash ↗︎](https://www.elastic.co/logstash/) and others.
32+
- Ingestion API compatible with HTTP + JSON output of log agents.
3333
- Query log data with PostgreSQL compatible SQL.
3434
- [Grafana ↗︎](https://github.com/parseablehq/parseable-datasource) for visualization.
35-
- Auto schema inference (schema evolution [coming soon ↗︎](https://github.com/parseablehq/parseable/issues/195)).
3635
- [Send alerts ↗︎](https://www.parseable.io/docs/api/alerts) to webhook targets including Slack.
3736
- [Stats API ↗︎](https://www.postman.com/parseable/workspace/parseable/request/22353706-b32abe55-f0c4-4ed2-9add-110d265888c3) to track ingestion and compressed data.
3837
- Single binary includes all components - ingestion, store and query. Built-in UI.
@@ -123,10 +122,10 @@ But with log data growing exponentially, today's log data challenges involve who
123122

124123
Refer to the contributing guide [here ↗︎](https://www.parseable.io/docs/contributing).
125124

126-
#### Contributors
125+
### Contributors
127126

128127
<a href="https://github.com/parseablehq/parseable/graphs/contributors"><img src="https://contrib.rocks/image?repo=parseablehq/parseable" /></a>
129128

130-
#### Supported by
129+
### Supported by
131130

132131
<a href="https://fossunited.org/" target="_blank"><img src="http://fossunited.org/files/fossunited-badge.svg"></a>

helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Parseable Helm Chart
22

3-
Refer the Parseable Helm Chart [documentation ↗︎](https://www.parseable.io/docs/deployment/kubernetes)
3+
Refer the Parseable Helm Chart [documentation ↗︎](https://www.parseable.io/docs/installation/kubernetes)

server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ mod validator;
5555
use option::CONFIG;
5656

5757
// Global configurations
58-
const MAX_EVENT_PAYLOAD_SIZE: usize = 10240000;
58+
const MAX_EVENT_PAYLOAD_SIZE: usize = 10485760;
5959
const API_BASE_PATH: &str = "/api";
6060
const API_VERSION: &str = "v1";
6161

0 commit comments

Comments
 (0)