Xuanwo merged PR #794:
URL: https://github.com/apache/iceberg-rust/pull/794
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: issues-unsubscr...@iceberg.a
Xuanwo commented on code in PR #794:
URL: https://github.com/apache/iceberg-rust/pull/794#discussion_r1884928592
##
crates/iceberg/src/spec/manifest.rs:
##
@@ -128,7 +130,61 @@ pub struct ManifestWriter {
key_metadata: Vec,
-field_summary: HashMap,
+partitions:
ZENOTME commented on PR #794:
URL: https://github.com/apache/iceberg-rust/pull/794#issuecomment-2542949738
Thanks @Xuanwo's suggestion to make the code more clear!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
ZENOTME commented on code in PR #794:
URL: https://github.com/apache/iceberg-rust/pull/794#discussion_r1884917390
##
crates/iceberg/src/spec/manifest.rs:
##
@@ -128,7 +130,61 @@ pub struct ManifestWriter {
key_metadata: Vec,
-field_summary: HashMap,
+partitions:
Xuanwo opened a new pull request, #801:
URL: https://github.com/apache/iceberg-rust/pull/801
Fix https://github.com/apache/iceberg-rust/issues/791
I discovered that we were not reusing tokens correctly, which could result
in sending an unexpectedly high number of token authentication
ZENOTME commented on code in PR #794:
URL: https://github.com/apache/iceberg-rust/pull/794#discussion_r1884874229
##
crates/iceberg/src/spec/manifest.rs:
##
@@ -128,7 +130,61 @@ pub struct ManifestWriter {
key_metadata: Vec,
-field_summary: HashMap,
+partitions:
ZENOTME commented on code in PR #795:
URL: https://github.com/apache/iceberg-rust/pull/795#discussion_r1884873126
##
crates/iceberg/src/spec/values.rs:
##
@@ -3439,11 +3443,13 @@ mod tests {
"bar".to_string(),
))),
None,
+
Xuanwo commented on code in PR #800:
URL: https://github.com/apache/iceberg-rust/pull/800#discussion_r1884868013
##
crates/iceberg/src/expr/visitors/expression_evaluator.rs:
##
@@ -338,7 +338,7 @@ mod tests {
nan_value_counts: HashMap::new(),
lower_boun
feniljain commented on code in PR #800:
URL: https://github.com/apache/iceberg-rust/pull/800#discussion_r1884869867
##
crates/iceberg/src/expr/visitors/expression_evaluator.rs:
##
@@ -338,7 +338,7 @@ mod tests {
nan_value_counts: HashMap::new(),
lower_b
Xuanwo commented on code in PR #795:
URL: https://github.com/apache/iceberg-rust/pull/795#discussion_r1884868240
##
crates/iceberg/src/spec/values.rs:
##
@@ -3439,11 +3443,13 @@ mod tests {
"bar".to_string(),
))),
None,
+
Xuanwo commented on code in PR #794:
URL: https://github.com/apache/iceberg-rust/pull/794#discussion_r1884853758
##
crates/iceberg/src/spec/manifest.rs:
##
@@ -128,7 +130,61 @@ pub struct ManifestWriter {
key_metadata: Vec,
-field_summary: HashMap,
+partitions:
feniljain opened a new pull request, #800:
URL: https://github.com/apache/iceberg-rust/pull/800
## Issue Resolved
Closes #753
## About
- Converted Manifest spec's `key_metadata` field to be `Option`
instead of just `Vec`
- Updated tests to reflect the same
- Ran
ZENOTME commented on code in PR #795:
URL: https://github.com/apache/iceberg-rust/pull/795#discussion_r1884853773
##
crates/iceberg/src/spec/values.rs:
##
@@ -3439,11 +3443,13 @@ mod tests {
"bar".to_string(),
))),
None,
+
ZENOTME commented on PR #798:
URL: https://github.com/apache/iceberg-rust/pull/798#issuecomment-2542902331
Sorry, I think I have some misunderstanding here since the action which
support to append data file and delete file is RowDelta.π€ So I guess what we
need is right:
1. MergingSnapsho
Xuanwo commented on code in PR #795:
URL: https://github.com/apache/iceberg-rust/pull/795#discussion_r1884848752
##
crates/iceberg/src/spec/values.rs:
##
@@ -3439,11 +3443,13 @@ mod tests {
"bar".to_string(),
))),
None,
+
c-thiel commented on code in PR #799:
URL: https://github.com/apache/iceberg-rust/pull/799#discussion_r1884798642
##
crates/iceberg/src/spec/table_metadata.rs:
##
@@ -158,11 +160,15 @@ pub struct TableMetadata {
/// writers, but is not used when reading because reads use th
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884790587
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884789740
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
liurenjie1024 commented on PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#issuecomment-2542722986
> For example, I'm missing the
[procedures](https://iceberg.apache.org/docs/latest/spark-procedures/), such as
expire-snapshots, compaction etc.
The reason I didn't add thi
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884757874
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884756239
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884752146
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
liurenjie1024 commented on PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#issuecomment-2542710889
> Given iceberg-cpp is in development, should we add the columns for it even
though it will be N for everything right now?
I'm open to this, but currently this page lists ca
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884750217
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884751449
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884748942
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884751807
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884751870
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884751449
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884751636
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884751449
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884750217
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884748942
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
sungwy commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884748942
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations of the i
FANNG1 closed pull request #577: feat: support create partition table for non
REST catalog
URL: https://github.com/apache/iceberg-rust/pull/577
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the sp
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884744299
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
BsoBird commented on issue #11765:
URL: https://github.com/apache/iceberg/issues/11765#issuecomment-2542688203
@RussellSpitzer
Sir.If you have time, please review this PR for me. I believe we need to
warn users against doing this in the documentation.
https://github.com/apache/iceberg
liurenjie1024 commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884744385
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations o
dwilson1988 commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2542660861
@zeroshade - I'll take a look this weekend!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to
jiakai-li commented on code in PR #1423:
URL: https://github.com/apache/iceberg-python/pull/1423#discussion_r1884721249
##
tests/table/test_init.py:
##
@@ -310,6 +310,19 @@ def test_table_scan_row_filter(table_v2: Table) -> None:
assert scan.filter(EqualTo("x", 10)).filter(
jiakai-li commented on PR #1423:
URL: https://github.com/apache/iceberg-python/pull/1423#issuecomment-2542657647
Hey guys, thanks a lot for your kind guidance and great suggestions. I've
updated the PR to:
- Enable `Table.delete` and `Table.overwrite` operations to control
case-sensitivi
singhpk234 commented on PR #11755:
URL: https://github.com/apache/iceberg/pull/11755#issuecomment-2542608870
interesting cases @ebyhr !
[1] Struct of Struct and the inner struct is empty
[2] The above handles only add column, we can land this situation for
dropping to the column
singhpk234 commented on PR #11764:
URL: https://github.com/apache/iceberg/pull/11764#issuecomment-2542605844
> Pre-execution Preparation Time: the time interval from the first table
load to the start of the first stage execution
Scan Spec Time: added a timer to the method SparkPartitionin
singhpk234 commented on code in PR #11764:
URL: https://github.com/apache/iceberg/pull/11764#discussion_r1884691655
##
api/src/main/java/org/apache/iceberg/types/Types.java:
##
@@ -824,7 +827,10 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
-
github-actions[bot] commented on PR #11525:
URL: https://github.com/apache/iceberg/pull/11525#issuecomment-2542578530
This pull request has been marked as stale due to 30 days of inactivity. It
will be closed in 1 week if no further activity occurs. If you think thatβs
incorrect or this pul
zhjwpku commented on code in PR #8:
URL: https://github.com/apache/iceberg-cpp/pull/8#discussion_r1884658885
##
api/iceberg/status.h:
##
@@ -0,0 +1,435 @@
+// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style lice
zhjwpku commented on code in PR #8:
URL: https://github.com/apache/iceberg-cpp/pull/8#discussion_r1884656709
##
src/common/CMakeLists.txt:
##
@@ -0,0 +1,28 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE
aokolnychyi commented on code in PR #11478:
URL: https://github.com/apache/iceberg/pull/11478#discussion_r1884625538
##
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/SparkWriteConf.java:
##
@@ -719,7 +719,7 @@ public DeleteGranularity deleteGranularity() {
gabeiglio commented on issue #1401:
URL:
https://github.com/apache/iceberg-python/issues/1401#issuecomment-2542474285
Im open for feedback but as I investigated this issue im inclined that the
fix would need to be in
[_task_to_record_batches](https://github.com/apache/iceberg-python/blob/a
szehon-ho commented on code in PR #11748:
URL: https://github.com/apache/iceberg/pull/11748#discussion_r1884599985
##
spark/v3.5/spark/src/test/java/org/apache/iceberg/spark/actions/TestRewritePositionDeleteFilesAction.java:
##
@@ -275,7 +275,7 @@ public void testRewriteFilter()
loicalleyne commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2542428675
LGTM π
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsub
zeroshade commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2542436725
@dwilson1988 When you get a chance, can you take a look at the changes I
made here. I liked your thought on isolating things, but there was still a
bunch of specific options for partic
zeroshade commented on PR #216:
URL: https://github.com/apache/iceberg-go/pull/216#issuecomment-2542403956
This seems generally good to me. Does Aliyun have something similar to how
MinIO works for S3 that can be added to the integration tests to have CI
testing the backend? i.e. is there a
zeroshade commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2542399559
@loicalleyne following pyiceberg's example, I've added an option to force
virtual addressing. That work for you?
--
This is an automated message from the Apache Git Service.
To respo
corleyma commented on code in PR #1427:
URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884536195
##
pyiceberg/table/__init__.py:
##
@@ -1423,6 +1451,66 @@ def plan_files(self) -> Iterable[FileScanTask]:
for data_entry in data_entries
]
corleyma commented on code in PR #1427:
URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884536195
##
pyiceberg/table/__init__.py:
##
@@ -1423,6 +1451,66 @@ def plan_files(self) -> Iterable[FileScanTask]:
for data_entry in data_entries
]
sopel39 commented on code in PR #11781:
URL: https://github.com/apache/iceberg/pull/11781#discussion_r1884535343
##
core/src/main/java/org/apache/iceberg/util/ParallelIterable.java:
##
@@ -257,17 +257,17 @@ private static class Task implements
Supplier>>, Closeable {
@Over
corleyma commented on code in PR #1427:
URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884533676
##
pyiceberg/table/__init__.py:
##
@@ -1423,6 +1451,66 @@ def plan_files(self) -> Iterable[FileScanTask]:
for data_entry in data_entries
]
RussellSpitzer commented on issue #11765:
URL: https://github.com/apache/iceberg/issues/11765#issuecomment-2542309392
> However, sir, I might have discovered some issues. When executing the
COW-MERGE-INTO command, Spark needs to use the ods_table twice. The first time
is to match data
RussellSpitzer commented on code in PR #11781:
URL: https://github.com/apache/iceberg/pull/11781#discussion_r1884527019
##
core/src/main/java/org/apache/iceberg/util/ParallelIterable.java:
##
@@ -257,17 +257,17 @@ private static class Task implements
Supplier>>, Closeable {
corleyma commented on code in PR #1427:
URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884524371
##
pyiceberg/table/__init__.py:
##
@@ -1253,6 +1265,22 @@ def __init__(
self.start = start or 0
self.length = length or data_file.file_size_in
corleyma commented on code in PR #1427:
URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884523394
##
pyiceberg/table/__init__.py:
##
@@ -1229,7 +1240,8 @@ def with_case_sensitive(self: S, case_sensitive: bool =
True) -> S:
class ScanTask(ABC):
-pas
sopel39 commented on code in PR #11781:
URL: https://github.com/apache/iceberg/pull/11781#discussion_r1884520727
##
core/src/main/java/org/apache/iceberg/util/ParallelIterable.java:
##
@@ -257,17 +257,17 @@ private static class Task implements
Supplier>>, Closeable {
@Over
loicalleyne commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2542287393
Is it intended to not provide the choice between virtual hosted bucket
addressing and path-style addressing?
LGTM otherwise - the tests are passing :)
--
This is an automated m
zeroshade merged PR #226:
URL: https://github.com/apache/iceberg-go/pull/226
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: issues-unsubscr...@iceberg.
RussellSpitzer commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884494856
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations
RussellSpitzer commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884494396
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations
RussellSpitzer commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884493485
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations
RussellSpitzer commented on code in PR #11772:
URL: https://github.com/apache/iceberg/pull/11772#discussion_r1884491976
##
site/docs/status.md:
##
@@ -0,0 +1,362 @@
+---
+title: "Implementation Status"
+---
+
+
+# Implementations Status
+
+Apache iceberg now has implementations
zeroshade commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2542213486
@loicalleyne can you take a look at the latest changes I made here?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and
mAlf1999 opened a new issue, #11784:
URL: https://github.com/apache/iceberg/issues/11784
### Apache Iceberg version
1.6.0
### Query engine
Spark
### Please describe the bug π
We are currently using iceberg version 1.6.0 and have been successfully
using it a
aokolnychyi commented on code in PR #11657:
URL: https://github.com/apache/iceberg/pull/11657#discussion_r1884381201
##
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/source/DVIterator.java:
##
@@ -0,0 +1,108 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) u
aokolnychyi commented on code in PR #11620:
URL: https://github.com/apache/iceberg/pull/11620#discussion_r1884369789
##
core/src/main/java/org/apache/iceberg/SerializableTable.java:
##
@@ -158,6 +160,21 @@ public Map properties() {
return properties;
}
+ public int fo
aokolnychyi commented on code in PR #11620:
URL: https://github.com/apache/iceberg/pull/11620#discussion_r1884367833
##
core/src/main/java/org/apache/iceberg/TableUtil.java:
##
@@ -0,0 +1,40 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contri
rdblue commented on code in PR #11750:
URL: https://github.com/apache/iceberg/pull/11750#discussion_r1884343692
##
gradle.properties:
##
@@ -18,8 +18,8 @@ jmhJsonOutputPath=build/reports/jmh/results.json
jmhIncludeRegex=.*
systemProp.defaultFlinkVersions=1.20
systemProp.known
rdblue commented on PR #11415:
URL: https://github.com/apache/iceberg/pull/11415#issuecomment-2542017239
The Spark failures are a port conflict. I think it's unrelated to these
changes. We'll see the next time CI runs (I'm sure we'll have more changes to
trigger them)
--
This is an autom
osscm commented on code in PR #11781:
URL: https://github.com/apache/iceberg/pull/11781#discussion_r1884308287
##
core/src/main/java/org/apache/iceberg/util/ParallelIterable.java:
##
@@ -257,17 +257,17 @@ private static class Task implements
Supplier>>, Closeable {
@Overri
c-thiel commented on code in PR #799:
URL: https://github.com/apache/iceberg-rust/pull/799#discussion_r1884298259
##
crates/iceberg/src/catalog/mod.rs:
##
@@ -446,6 +446,30 @@ pub enum TableUpdate {
/// Properties to remove
removals: Vec,
},
+/// Set s
c-thiel commented on PR #765:
URL: https://github.com/apache/iceberg-rust/pull/765#issuecomment-2541965685
@fqaiser94, just added the higher level statistic files in
https://github.com/apache/iceberg-rust/pull/799 FYI. I would guess you would
end up building those soon too.
--
This is an
c-thiel opened a new pull request, #799:
URL: https://github.com/apache/iceberg-rust/pull/799
Adds `StatisticFile` and `PartitionStatisticsFile` to spec, builder and REST
TableUpdate.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to
pitrou commented on code in PR #9:
URL: https://github.com/apache/iceberg-cpp/pull/9#discussion_r1884280319
##
.gitignore:
##
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distrib
tom-s-powell opened a new issue, #11783:
URL: https://github.com/apache/iceberg/issues/11783
### Apache Iceberg version
1.7.1 (latest release)
### Query engine
Spark
### Please describe the bug π
Encountering an issue with `HiveCatalog` and `S3FileIO`. I bel
ZENOTME commented on PR #798:
URL: https://github.com/apache/iceberg-rust/pull/798#issuecomment-2541922752
cc @liurenjie1024 @Xuanwo @Fokko @sdd
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to t
ZENOTME opened a new pull request, #798:
URL: https://github.com/apache/iceberg-rust/pull/798
This PR support to support to append delete type data file
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to
kevinjqliu commented on issue #1317:
URL:
https://github.com/apache/iceberg-python/issues/1317#issuecomment-2541919224
Hi @jiakai-li thanks for looking into this!
> It was run with the s3fs module removed from the environment, which runs
ok:
I think you'd want to remove `pyarrow`
kevinjqliu opened a new pull request, #226:
URL: https://github.com/apache/iceberg-go/pull/226
Sha512 is enough, Sha256 is not necessary
devlist: https://lists.apache.org/thread/rsl3rj9rcqvchb8dqr8tjky97rt5pm22
Part of #204
--
This is an automated message from the Apache Git Ser
ZENOTME commented on issue #774:
URL: https://github.com/apache/iceberg-rust/issues/774#issuecomment-2541894094
> Hey @ZENOTME thanks for raising this.
>
> Technically the `Datafile` is already serializable, you can encode it into
Iceberg Avro :) I know how this works in Java and Pyth
ZENOTME commented on PR #797:
URL: https://github.com/apache/iceberg-rust/pull/797#issuecomment-2541894721
cc @liurenjie1024 @Xuanwo @Fokko @sdd
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to t
ZENOTME opened a new pull request, #796:
URL: https://github.com/apache/iceberg-rust/pull/796
https://github.com/apache/iceberg-rust/pull/479 change the result type from
int to date. And we should also change the computed result for this, otherwise,
it will cause the inconsistent error. E.g
ZENOTME commented on PR #796:
URL: https://github.com/apache/iceberg-rust/pull/796#issuecomment-2541879394
cc @liurenjie1024 @Fokko @Xuanwo @sdd
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to t
loicalleyne commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2541868880
[s3.UsePathStyle](https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/s3#Options.UsePathStyle
)
```
// Allows you to enable the client to use path-style addressing, i.e.,
kevinjqliu commented on code in PR #1427:
URL: https://github.com/apache/iceberg-python/pull/1427#discussion_r1884198201
##
pyiceberg/table/__init__.py:
##
@@ -191,6 +193,15 @@ class TableProperties:
DELETE_MODE_MERGE_ON_READ = "merge-on-read"
DELETE_MODE_DEFAULT = DEL
ajreid21 commented on code in PR #11756:
URL: https://github.com/apache/iceberg/pull/11756#discussion_r1884198902
##
core/src/main/java/org/apache/iceberg/rest/RESTSessionCatalog.java:
##
@@ -138,11 +138,13 @@ public class RESTSessionCatalog extends
BaseViewSessionCatalog
ajreid21 commented on PR #11756:
URL: https://github.com/apache/iceberg/pull/11756#issuecomment-2541836163
@nastra I addressed the comments and added the new checks if you want to
take another look. Thanks.
--
This is an automated message from the Apache Git Service.
To respond to the mes
ajreid21 commented on code in PR #11756:
URL: https://github.com/apache/iceberg/pull/11756#discussion_r1884197553
##
core/src/main/java/org/apache/iceberg/rest/Endpoint.java:
##
@@ -46,6 +46,8 @@ public class Endpoint {
Endpoint.create("POST", ResourcePaths.V1_NAMESPACE_P
kevinjqliu commented on code in PR #1423:
URL: https://github.com/apache/iceberg-python/pull/1423#discussion_r1884193700
##
tests/table/test_init.py:
##
@@ -310,6 +310,19 @@ def test_table_scan_row_filter(table_v2: Table) -> None:
assert scan.filter(EqualTo("x", 10)).filter
kevinjqliu commented on PR #1417:
URL: https://github.com/apache/iceberg-python/pull/1417#issuecomment-2541817185
Looks like some tests are failing due to number of partitions being
hardcoded in tests
```
=== short test summary info
===
kevinjqliu commented on PR #1426:
URL: https://github.com/apache/iceberg-python/pull/1426#issuecomment-2541812934
@barronw looks like theres a linter issue, could you try to run `make lint`?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log
loicalleyne commented on PR #176:
URL: https://github.com/apache/iceberg-go/pull/176#issuecomment-2541810573
My understanding is that it's just another property to pass in `props`.
Would also have to add it as a recognized property/constant in io/s3.go I
should think.
--
This is an auto
kevinjqliu commented on issue #1424:
URL:
https://github.com/apache/iceberg-python/issues/1424#issuecomment-2541805668
hi @Samreay thanks for reporting this issue! Very odd that its 1+MAX_VALUE.
I took a look at the write path and didn't see anything that stood put that
would cause
1 - 100 of 197 matches
Mail list logo