This is an automated email from the ASF dual-hosted git repository.
fanng pushed a change to branch remove_log4j
in repository https://gitbox.apache.org/repos/asf/gravitino.git
omit 72338b6235 remove aliyun hadoop
omit e8de51c9be remove aliyun hadoop
omit 6f3f520181 remove aliyun hadoop
omit 68c3934d46 remove aliyun hadoop
omit 48565b7a05 remove aliyun hadoop
omit 8e610476f5 remove aliyun hadoop
omit 3e32331549 remove log4j from gravitino server package
add 866428eb6e [#8697] improvement(core): Adjust weight value for entities
with type `metalake` and `catalog` in Caffeine cache weighter. (#8698)
add a6d76a3896 [#8666] fix SetFilesetProperty output to show fileset name
(not schema) (#8693)
add e1bc547add [#4168] fix(kafka-catalog): make topic creation synchronous
(#8717)
add e64837072b [#8732] fix: Update exception handling for Type CATALOG >
MODEL_VERSION (#8740)
add d404879eff [#8727] Improvement(commands): Add alias/version validation
and handle() tests to model version commands (#8737)
add caee8d20f5 [#8731] fix(policy): PolicyUpdateRequest.validate checks
for null policyType (#8734)
add e596d822e8 [#8006]Improvement(DorisUtils): fix bucket count parsing in
DorisUtils (#8744)
add 68142fa2c1 Add NoSuchCatalogException handling to DeleteTopic command
(#8757)
add 1ba2633891 [#8750] Bugfix(metrics): sanitize gravitino-catalog metrics
(#8751)
add 397cd4d912 [#8668] improvement(core): prevent handing out new clients
after pool closure (#8682)
add 759528c692 [#8639]feat(core): Add the job template alteration in the
core part (#8707)
add 8a021e95ff [#8741] improvement(catalog-common): Unload common logging
in htrace. (#8742)
add 07873dd3d1 [#8748] Improvement: replace with proper exec run of the
server process (#8749)
add 64d879a5b0 [#8761] Improvement: rewrite_config.py does not handle
GRAVITINO_ICEBERG_REST_HTTP_PORT (#8762)
add b3085b798f remove log4j from gravitino server package
add 3c446ae2f9 remove aliyun hadoop
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (72338b6235)
\
N -- N -- N refs/heads/remove_log4j (3c446ae2f9)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../apache/gravitino/job/JobTemplateChange.java | 39 ----
.../utils/ClassLoaderResourceCleanerUtils.java | 23 ++-
.../gravitino/catalog/doris/utils/DorisUtils.java | 7 +-
.../catalog/doris/utils/TestDorisUtils.java | 14 ++
.../catalog/kafka/KafkaCatalogOperations.java | 3 +
.../apache/gravitino/cli/commands/DeleteTopic.java | 3 +
.../gravitino/cli/commands/SetFilesetProperty.java | 2 +-
.../cli/commands/UpdateModelVersionComment.java | 4 +-
.../cli/commands/UpdateModelVersionUri.java | 4 +-
.../commands/TestUpdateModelVersionAliases.java | 203 +++++++++++++++++++
.../commands/TestUpdateModelVersionComment.java | 161 +++++++++++++++
.../cli/commands/TestUpdateModelVersionUri.java | 171 ++++++++++++++++
.../gravitino/api/job/job_template_change.py | 49 ++---
.../dto/requests/PolicyUpdateRequest.java | 1 +
.../apache/gravitino/cache/EntityCacheWeigher.java | 20 +-
.../java/org/apache/gravitino/job/JobManager.java | 169 ++++++++++++++++
.../gravitino/job/JobOperationDispatcher.java | 14 ++
.../gravitino/metrics/GravitinoSampleBuilder.java | 8 +-
.../gravitino/storage/relational/JDBCBackend.java | 2 +
.../relational/mapper/JobTemplateMetaMapper.java | 5 +
.../mapper/JobTemplateMetaSQLProviderFactory.java | 6 +
.../base/JobTemplateMetaBaseSQLProvider.java | 21 ++
.../storage/relational/po/JobTemplatePO.java | 25 +++
.../relational/service/JobTemplateMetaService.java | 86 +++++++--
.../service/ModelVersionMetaService.java | 2 +-
.../org/apache/gravitino/utils/ClientPoolImpl.java | 5 +-
.../apache/gravitino/cache/TestCacheConfig.java | 93 ++++++++-
.../org/apache/gravitino/job/TestJobManager.java | 215 +++++++++++++++++++++
.../metrics/TestGravitinoSampleBuilder.java | 115 ++++++++++-
.../service/TestJobTemplateMetaService.java | 69 +++++++
dev/docker/gravitino/gravitino-dependency.sh | 2 +-
.../iceberg-rest-server-dependency.sh | 7 -
dev/docker/iceberg-rest-server/rewrite_config.py | 1 +
.../start-iceberg-rest-server.sh | 2 +-
docs/iceberg-rest-service.md | 1 +
35 files changed, 1428 insertions(+), 124 deletions(-)
create mode 100644
clients/cli/src/test/java/org/apache/gravitino/cli/commands/TestUpdateModelVersionAliases.java
create mode 100644
clients/cli/src/test/java/org/apache/gravitino/cli/commands/TestUpdateModelVersionComment.java
create mode 100644
clients/cli/src/test/java/org/apache/gravitino/cli/commands/TestUpdateModelVersionUri.java