Skip to content
#

distributed-database

Here are 224 public repositories matching this topic...

cockroach
ajstorm
ajstorm commented Mar 31, 2021

In #58923, we added the ability to set a column as VISIBLE and NOT VISIBLE.

We now need the ability to have ALTER COLUMN <col> SET [VISIBLE|NOT VISIBLE].

The changes to do this are as follows (you can follow SET DEFAULT as a guideline for what to write)

  • Add a type AlterTableSetVisible struct { Visible bool } struct to tree/alter_table.go, similar to AlterTableSetDefault.
  • Add th
ClickHouse
yunchat
yunchat commented Nov 13, 2018

Now insert and query share the resource ( Max Process Count control) 。 When the query with high TPS,the insert will get error (“error: too many process”). I think separator the resource for Insert and Query will makes sense. Ensure enough resource for insert。It looks like Use Yarn, Insert and Query use the different resource quota。
Or the simple way , Can we set Ratio for Insert and

jrop
jrop commented Apr 7, 2021

OS: macOS Big Sur 11.2.2 (20D80)
Hardware: MacBook Pro (13-inch, M1, 2020)

When attempting to install the *.pkg file on Apple Silicon, I get the following message:

The package is trying to install content to the system volume. Contact the software manufacturer for assistance.

I tried disabling System Integrity Protection and I get the same error message, sadly.

I went to the troub

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
mfussenegger
mfussenegger commented Sep 9, 2020

We should remove Guava as a dependency from the server module.

Most of the functionality we used from Guava are provided by the JDK by now.
The stuff that is missing from the JDK has mostly been added in the utilities we inherited from Elasticsearch, due to their decision to remove Guava completely.
Any functionality that we use which isn't present in the JDK can be co

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