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

distributed-database

Here are 221 public repositories matching this topic...

cockroach
rafiss
rafiss commented Feb 14, 2021

The Golang ORM GORM generates queries that use this function when dealing with a JSON column. We already have json_extract_path and the #>> operator, so we should be able to add this too. See https://www.postgresql.org/docs/current/functions-json.html


Instructions

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

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
2DKot
2DKot commented Feb 19, 2021

Hello Everyone!
I am using Trino with PostgreSQL connector. I found that the method of boolean checking in the WHERE clause affects the query plan dramatically.

I have Django auth_user table, where is_staff is a boolean, NOT NULL column.
Checking with = true:

EXPLAIN
select id
FROM pd.public.auth_user
where is_staff = true
Fragment 0 [SINGLE]
Output layout: [id]

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