- Sep 06, 2024
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
We only use Eq ranges
-
Yaroslav Dynnikov authored
-
-
-
-
-
- Sep 03, 2024
-
-
Егор Ивков authored
-
- Aug 30, 2024
-
-
Georgy Moshkin authored
CAS predicates should always contain the current raft term, because this is what's explicitly checked in proc_cas. Note that this will sometimes result in a EntryTermMismatch error because the latest applied entry may have a different term in case the election has started but not finished yet. We could add this check to all the client cas precondition checks, but it's not a big deal, because we handle the situation correctly anyways.
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- Aug 27, 2024
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- Aug 21, 2024
-
-
Georgy Moshkin authored
-
- Aug 20, 2024
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- Aug 14, 2024
-
-
- Aug 12, 2024
-
-
Closes #682
-
- Jul 25, 2024
-
- Jul 15, 2024
-
-
Georgy Moshkin authored
-
-
- Jul 04, 2024
-
-
Vartan Babayan authored
-
- Jun 21, 2024
-
-
Yaroslav Dynnikov authored
-
- Jun 03, 2024
-
-
godzie44 authored
-
- May 29, 2024
-
-
Arseniy Volynets authored
-
- May 24, 2024
-
- May 22, 2024
-
-
chore(plugins): `update_plugin_tiers` API call is split into `service_append_tier` and `service_remove_tier` calls
-
- May 03, 2024
-
-
Plugin topology is a mapping plugin service to tiers. Introduce new `pico.update_plugin_tiers` API. This function may be used for control where plugin services must be running and where not. Plugin integration tests have also been refactored.
-
- Apr 24, 2024
-
-
Now for installation and enable plugin, there are two steps instead of one (`pico.load_plugin` previously). 1. Install plugin (`pico.install_plugin`): validate plugin, create system tables. 2. Enable plugin (`pico.enable_plugin`): loads plugin into instances memory, call `on_start` callback. Same for a plugin removing process (`pico.remove_plugin` previously): 1. Disable plugin (`pico.disable_plugin`): call `on_stop` callbacks, drop plugin from instances. 2. Remove plugin (`pico.remove_plugin`): remove plugin meta from system tables.
-
- Apr 17, 2024
-
-
Georgy Moshkin authored
-
Georgy Moshkin authored
Currently only 2 cases are supported: - config_file - commandline_or_environment
-
- Apr 09, 2024
-
-
Introduce a plugin system for picodata cluster. Plugin system contains: - `picoplugin` crate with plugin interfaces. This crate exposes plugin interfaces for user implementation and API that used by picodata to interact with plugin as with a code from dynamic library. - Support for plugin work cycle in picodata instance work cycle. Picodata instance interacts with running plugin by `PluginManager` component. Typically, plugins react to events that occur in instance or whole cluster. - New lua API with plugin CRUD actions. - pico.create_plugin - load a new plugin into picodata cluster - pico.remove_plugin - remove plugin from picodata cluster - pico.update_plugin_config - update plugin service configuration
-
Georgy Moshkin authored
-
Georgy Moshkin authored
-
- Mar 21, 2024
-
-
- Mar 13, 2024
-
-
- Add new DML op: Batch, which allows using multiple dml operations in one CAS request - If request has too many dml operations, the batch will be splitted into multiple batches, so that each batch can be stored in raft log
-