Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: feldera/feldera
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.284.0
Choose a base ref
...
head repository: feldera/feldera
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.285.0
Choose a head ref
  • 4 commits
  • 16 files changed
  • 3 contributors

Commits on Apr 8, 2026

  1. Configuration menu
    Copy the full SHA
    e4e9c2a View commit details
    Browse the repository at this point in the history
  2. [web-console] Improve consistency of text selection in logs

    Signed-off-by: Karakatiza666 <bulakh.96@gmail.com>
    Karakatiza666 committed Apr 8, 2026
    Configuration menu
    Copy the full SHA
    4496253 View commit details
    Browse the repository at this point in the history
  3. [web-console] Avoid re-loading logs every time when switching between…

    … the tabs
    
    Signed-off-by: Karakatiza666 <bulakh.96@gmail.com>
    Karakatiza666 committed Apr 8, 2026
    Configuration menu
    Copy the full SHA
    49913a8 View commit details
    Browse the repository at this point in the history
  4. [adapters] Delta output: enable checkpoints.

    The Delta output connector did not create periodic checkpoints.
    
    While this is in itself problematic, it also meant that the connector
    became slow over time, due to this delta-rs bug, which causes the
    `update_incremental` function to scan the entire transaction log on
    every commit:
    delta-io/delta-kernel-rs#2103.
    
    This commit:
    - Introduces the `checkpoint_interval` option, which tells
      the connector to configure checkpoint interval when creating
      the table.
    - Creates a CommitBuilder that is actually setup to create
      checkpoints.
    
    Without this fix the time to create a trivial delta commit increases from
    1.5s to 6s after ~1000 commits. With the fix it remains constant at
    ~2s.
    
    Signed-off-by: Leonid Ryzhyk <ryzhyk@gmail.com>
    ryzhyk authored and gz committed Apr 8, 2026
    Configuration menu
    Copy the full SHA
    d2699ce View commit details
    Browse the repository at this point in the history
Loading