- May 15, 2023
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
This will be changed in a second
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- May 12, 2023
-
-
Denis Smirnov authored
To run the test you need xk6 installed (https://github.com/tarantool/xk6-tarantool).
-
Denis Smirnov authored
Now it is possible to make the second argument (query parameters) optional. I.e. now we support 'pico.sql([[select * from t]])' as well as 'pico.sql([[select * from t where a = ?]], {1})'.
-
- May 05, 2023
-
-
They should cover all the cases specified in the CaS Design Document
-
-
-
Georgy Moshkin authored
-
- May 04, 2023
-
-
Denis Smirnov authored
Current commit introduces distributed SQL in picodata (we use 'sbroad' library). Now it is possible to execute cluster-wide SQL with 'pico.sql([[query]], {params})' lua method. Current limitations: 1. DDL is still not implemented in picodata, so space sharding is mocked by '_pico_space' space (we'll remove it later). 2. We still have duplicating symbols of the Tarantool module in sbroad and in picodata rlibs. 3. We need to reuse piocdata's sharding functions and handle the case when different spaces in the query have different sharding functions. Co-authored-by:
Georgy Moshkin <gmoshkin@picodata.io>
-
- May 03, 2023
-
-
Егор Ивков authored
-
- Apr 28, 2023
-
-
Егор Ивков authored
-
- Apr 24, 2023
-
-
Егор Ивков authored
-
- Apr 21, 2023
-
-
This patch introduces `picodata connect` CLI command. It allows connecting to interactive lua console of a picodata instance via iproto The whole implementation comes down to invoking a lua script with `require("console").start()`.
-
Georgy Moshkin authored
* _picodata_index keys now include space_id * _picodata_space distribution type changed to "array" * _picodata_space format type changed to "array" * add Spaces::insert and Indexes::insert methods * Ddl now has #[serde(tag = "kind", rename_all = "snake_case")] * Dml now has #[serde(tag = "op_kind", rename_all = "snake_case")] * Distribution now has #[serde(tag = "kind", rename_all = "snake_case")]
-
- Apr 20, 2023
-
-
Yaroslav Dynnikov authored
The main focus is on the snapshot recovery scenarios (bootstrap / cathcup) interleaving with explicit CaS operations, rather than on leadership changes and joins.
-
Georgy Moshkin authored
-
Yaroslav Dynnikov authored
Consider the case when a client requests `index: X, term: T`, but `term(X) != T`. Picodata used to check all entries in the range `[X+1, last]`, but it didn't check the index `X` itself. This patch provides this one extra check. Thereby it makes sure that all entries in the range `[X, last]` belong to the same term `T == current_term`.
-
Yaroslav Dynnikov authored
Refactor corresponding tests accordingly
-
- Apr 13, 2023
-
-
This patch includes: - Tarantool stored procedure `proc_cas`. - Lua API `pico.cas`. - Integration tests.
-
- Apr 12, 2023
-
-
Yaroslav Dynnikov authored
Now the function returns `first_index` instead of the number of entries deleted - it has no practical purpose.
-
Yaroslav Dynnikov authored
This patch adds a missing test for `pico.raft_compact_log` Lua API. Also, it changes the API to be more alike other relevant Lua functions: `raft_propose_*`, `raft_read_index`, `raft_timeout_now`.
-
- Apr 11, 2023
-
-
Adopted styleguide is "actual == expected", not vice versa.
-
Yaroslav Dynnikov authored
Bumping `tarantool-module` fixes the `fiber::csw()` performance issue that caused flaky tests in CI. Also this patch increases the `test_sigsegv_child` timeout. The test is flaky too, let's see if it helps.
-
- Apr 06, 2023
-
-
Егор Ивков authored
-
- Mar 27, 2023
-
-
Егор Ивков authored
-
- Feb 03, 2023
-
-
Valentin Syrovatskiy authored
Integration tests use some TCP ports. These ports may conflict with: - already running instances on the developer host - any other program on the developer host or on the CI host The `port_range` fixture checks that all ports between base_port and max_port (inclusive) are unused, so integration tests are allowed to run.
-
- Feb 02, 2023
-
-
Yaroslav Dynnikov authored
This reverts commit 267dc61b. It produces false-positive errors in CI.
-
- Feb 01, 2023
-
-
Valentin Syrovatskiy authored
-
- Jan 27, 2023
-
-
Егор Ивков authored
-
- Jan 20, 2023
-
-
Егор Ивков authored
-
- Dec 23, 2022
-
-
Georgy Moshkin authored
-
-
- Dec 21, 2022
-
-
- Dec 16, 2022
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-