Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the incomplete postgres storage backend. #2432

Merged
merged 1 commit into from
Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- `TrillianLog.GetLeavesByHash`
- `TrillianLog.GetLeavesByIndex`
- `TrillianLog.QueueLeaves`
* Removed the incomplete Postgres storage backend (#1298).

### Storage refactoring
* `NodeReader.GetMerkleNodes` does not accept revisions anymore. The
Expand Down
5 changes: 0 additions & 5 deletions docs/Feature_Implementation_Matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ The Log storage implementations supporting the original Trillian log.
| Spanner | GA | ✓ | Google internal-only, see CloudSpanner for external use. |
| CloudSpanner | Beta | | Google maintains continuous-integration environment based on CloudSpanner. |
| MySQL | GA | ✓ | |
| Postgres | In dev. | | [#1298](https://github.com/google/trillian/issues/1298) |

##### Spanner
This is a Google-internal implementation, and is used by all of Google's current Trillian deployments.
Expand All @@ -80,9 +79,6 @@ It's currently in production use by at least one CT log operator.

Write throughput of 4-500 entries/s has been observed.

##### Postgres
The postgres implementation is currently under development, and is not ready for use.

### Monitoring

Supported monitoring frameworks, allowing for production monitoring and alerting.
Expand Down Expand Up @@ -111,7 +107,6 @@ Supported frameworks for quota management.
| etcd | GA | ✓ | |
| MySQL | Beta | ? | |
| Redis | Alpha | ✓ | |
| Postgres | NI | | |

### Key management

Expand Down
83 changes: 0 additions & 83 deletions scripts/postgres_resetdb.sh

This file was deleted.

3 changes: 0 additions & 3 deletions storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ The MySQL / MariaDB implementation includes support for Maps. This has not yet
been implemented by Cloud Spanner. There may be other storage implementations
available from third parties.

These implementations are under development and are not yet ready for use.
* Postgres, in the [postgres](postgres) package.

These implementations are for test purposes only and should not be used by real
applications:
* In-memory Storage, in the [memory](memory) package.
Expand Down
17 changes: 0 additions & 17 deletions storage/postgres/README.md

This file was deleted.

Loading