Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tigrisdata-archive/tigris
Tigris is an Open Source Serverless NoSQL Database and Search Platform.
https://github.com/tigrisdata-archive/tigris
consensus data database dynamodb elasticsearch foundationdb go golang kubernetes mongodb open-source opensearch real-time search search-engine streaming transactional-database
Last synced: 6 days ago
JSON representation
Tigris is an Open Source Serverless NoSQL Database and Search Platform.
- Host: GitHub
- URL: https://github.com/tigrisdata-archive/tigris
- Owner: tigrisdata-archive
- License: apache-2.0
- Created: 2022-01-20T02:16:49.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-28T21:29:10.000Z (over 1 year ago)
- Last Synced: 2024-08-10T10:56:05.308Z (3 months ago)
- Topics: consensus, data, database, dynamodb, elasticsearch, foundationdb, go, golang, kubernetes, mongodb, open-source, opensearch, real-time, search, search-engine, streaming, transactional-database
- Language: Go
- Homepage: https://www.tigrisdata.com/
- Size: 3.93 MB
- Stars: 900
- Watchers: 14
- Forks: 37
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Tigris is a Serverless NoSQL Database and Search Platform that offers an open source alternative to MongoDB and DynamoDB.
Tigris is built on FoundationDB and combines the consistency of ACID transactions with the scale and flexibility of NoSQL, at a fraction of the cost.
Website |
Quickstart |
API Reference |
Discord |# Helpful Links
- [Quickstart](https://www.tigrisdata.com/docs/quickstarts/)
- [Architecture](https://www.tigrisdata.com/docs/concepts/architecture/)
- [Databases and Collections](https://www.tigrisdata.com/docs/concepts/database/)
- [Documents](https://www.tigrisdata.com/docs/concepts/database/documents/)
- [Search](https://www.tigrisdata.com/docs/concepts/searching/)
- [Observability](https://www.tigrisdata.com/docs/concepts/platform/cloud/metrics/)
- [TypeScript Reference](https://www.tigrisdata.com/docs/sdkstools/typescript/)
- [Go Reference](https://www.tigrisdata.com/docs/sdkstools/golang/)
- [Java Reference](https://www.tigrisdata.com/docs/sdkstools/java/getting-started/)
- [CLI](https://www.tigrisdata.com/docs/sdkstools/cli/)
- [Guides](https://www.tigrisdata.com/docs/guides/)# Community & Support
- [Discord Community](https://www.tigrisdata.com/discord/)
- [GitHub Issues](https://github.com/tigrisdata/tigris/issues)
- [GitHub Discussions](https://github.com/tigrisdata/tigris/discussions)# Developing
## Setup local development environment
To setup your local development environment. Make sure you have Go installed or run:
```sh
sh scripts/install_go.sh
```Add your `$GOPATH` to your `$PATHS` environment variable. And then to download and
install the build dependencies and FoundationDB run:```sh
sh scripts/install_build_deps.sh
```### Building with Docker Containers
Start local Tigris server listening on `http://localhost:8081` by running:
```sh
make run
```This would bring dependencies and server up in the docker containers with all
your changes.Alternatively, you can run `make run_full` to bring up monitoring tools as well.
- Grafana: http://localhost:3000
- Prometheus: http://localhost:9090### Running tests
#### Run in the docker container
Tests are executed using `make test`. This runs both unit and integration
tests in the docker containers.#### Run in the IDE
Run `make run` to bring the server up in the docker container.
Now you can run individual tests in the IDE of your choice.
Entire test suite can be run using `make local_test`.#### Debugging the server in the IDE
Run `make local_run` to start Tigris server on the host.
Now you can attach to the process and debug from the IDE.# License
This software is licensed under the [Apache 2.0](LICENSE).