mysql-5.6 icon indicating copy to clipboard operation
mysql-5.6 copied to clipboard

Facebook's branch of the Oracle MySQL v5.6 database. This includes MyRocks.

Results 105 mysql-5.6 issues
Sort by recently updated
recently updated
newest added

```mysql set global rocksdb_compact_cf = "default"; ``` ## The compacted SST missing stats info **distincts per prefix**: ![image](https://user-images.githubusercontent.com/1574991/185037002-f6494138-9dae-4551-8333-1ee70be02ca3.png) ## The correct SST stat info should like this: ![image](https://user-images.githubusercontent.com/1574991/185037135-59f66c62-f47b-432c-ab86-cadeecf2b50a.png) We traced...

f7c9e2f2d11f09bd003a101f89153bde85ac4da8 updated `my_sqlcommand.h`, but `plugin_audit.h.pp` had not been updated accordingly. This PR updated `plugin_audit.h.pp` according to f7c9e2f2d11f09bd003a101f89153bde85ac4da8. Test Plan: ``` git checkout https://github.com/facebook/mysql-5.6.git --branch fb-mysql-8.0.20 cd mysql-5.6 cmake . ```

CLA Signed

This bug maybe isolated to Percona mysql 5.7.latest stable. Did not test other mysql distro with rocksdb engine. mysql error log: ``` 2022-10-22T02:32:32.656099Z 5 [ERROR] Chunk size is too small...

Hi, I am wondering does the rocksdb engine support R-tree index for spatial data. I recently worked on a project for spatial data. I notice Mysql with Innodb or MyISAM...

`Rdb_iterator_base::setup_scan_iterator` consumed too much time. ```bash sysbench select_random_ranges run --simple_ranges=10 --table_size=1000000 \ --time=600 --db-driver=mysql --threads=50 \ --mysql-host=**** --mysql-user=**** --mysql-password=**** --mysql-db=**** \ --mysql_storage_engine='rocksdb default charset latin1' ``` I think properly caching...

I'm working for remote compaction of RocksDB, which is an experimental feature. When I try to use this feature in MyRocks, I encounter one problem. It seems that the remote...

We run myrocks with sysbench: ```bash sysbench --db-driver=mysql --threads=20 --mysql-host=192.168.100.10 \ --mysql-port=3306 --mysql-user=test --mysql-password=1234 \ --mysql-db=test --tables=100 --table_size=100000000 oltp_write_only \ --mysql_storage_engine='rocksdb default charset latin1' prepare ``` When creating index, data...

It seems myrocks and rocksdb doing many useless works: `Clear`, `Reinitialize`: ![image](https://user-images.githubusercontent.com/1574991/183249288-39044d5f-85aa-415b-9e2b-c44305a4a1b8.png) ![image](https://user-images.githubusercontent.com/1574991/183249255-cb6f9195-ec34-42e2-9283-b9c0ec1cf451.png) ![image](https://user-images.githubusercontent.com/1574991/183249222-1e298d4a-d0b9-4bdc-9dc8-7c18e3d09d7d.png) In the flame graph, CSPP_WBWI is our WriteBatchWithIndex implementation, used to replace rocksdb default WriteBatchWithIndex. Although...

The race is that there is no pause between flushing memtables (rocksdb_flush_all_memtables) and requesting compaction from L0 to L1. So if flushing memtables triggers some L0->L1 compaction then the attempt...

Hi all, I followed the instructions on [this page](http://myrocks.io/docs/getting-started/) but still met the following errors, which said some data types in `libcap2` were not declared. My environment is ``` $...