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

distributed-database

Here are 229 public repositories matching this topic...

cockroach
livlobo
livlobo commented Jul 12, 2021

Is your feature request related to a problem? Please describe.
When restoring a backup, a user may run into errors due to specific tables/descriptors. In some cases, the user may not care about that table that couldn't restore (e.g. system.jobs or a temp table), however, that faulty table/descriptor ends up blocking the whole restore.

Describe the solution you'd like
Allow the user to

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 13, 2021

In the "Connect" dialog for a universe, we currently show the following information, even when TLS is enabled.


JDBC | : | jdbc:postgresql://sanketh-aws-test-2.15.universe.yugabyte.com:5433/yugabyte
YSQL Shell | : | bin/ysqlsh
YCQL Shell | : | bin/ycqlsh

The actual conn commands for CQL looks like
SSL_CERTFILE=<path to ca.crt> ycqlsh --ssl 172.151.37.101 9042

For JDBC a

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