apache / paimon-webui

Web ui for Apache Paimon.
https://paimon.apache.org/
Apache License 2.0
121 stars 58 forks source link

[Feature] Introduce log cleaner interface #448

Closed s7monk closed 2 months ago

s7monk commented 2 months ago

close: https://github.com/apache/paimon-webui/issues/447

Purpose

Added clear log function on the back end.

Tests

API and Format

  @SaIgnore
  @GetMapping("/logs/clear")
  public R<String> clearLogs() {
      return R.succeed(jobService.clearLog(StpUtil.getLoginIdAsString()));
  }