The Wayback Machine - https://web.archive.org/web/20210717085929/https://github.com/topics/distributed-database
Skip to content
#

distributed-database

Here are 229 public repositories matching this topic...

cockroach
JeanGolang
JeanGolang commented Feb 7, 2017

Hello Philip!
I think there is an issue with this part of the code of rqlite (store/store.go).

func (s *Store) Database(leader bool) ([]byte, error) {
	if leader && s.raft.State() != raft.Leader {
		return nil, ErrNotLeader
	}
	// Ensure only one snapshot can take place at once, and block all queries.
	s.mu.Lock()
	defer s.mu.Unlock()

	f, err := ioutil.TempFile("", "rqlilte-snap-
yugabyte-db
iSignal
iSignal commented Jul 14, 2021

This is admittedly a problem that bothers us in internal portal usage more than real customers (who tend not to have so many db versions)

When there's many db versions available to YW, the default db software version in Create Universe flow (first version in the list below) seems to be based on sort order. Instead we should default the DB version to the same as the current Platform version (in

seut
seut commented Jun 22, 2021

Use case:

1.) A user may want to backup all tables but no metadata like users, privileges, etc. without explicitly defining each table inside the CREATE SNAPSHOT statement.

2.) A user may want to transfer users & privileges, custom analyzers or user-defined-functions from one cluster to another without backing up a complete cluster including all data (tables).

*Feature description

Improve this page

Add a description, image, and links to the distributed-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the distributed-database topic, visit your repo's landing page and select "manage topics."

Learn more