hudi-agent commented on code in PR #19380:
URL: https://github.com/apache/hudi/pull/19380#discussion_r3871783098


##########
hudi-agent-gateway/skills/hudi-architect/references/config-templates.md:
##########
@@ -0,0 +1,1018 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+# Config templates
+
+Grouped `hoodie.*` properties emitted per decision. Consult when generating 
the final config bundle.
+
+## Grouping (per §9.3 of the proposal)
+
+1. **Durable table properties** — set at creation, cannot change without 
rewrite.
+2. **Writer properties** — writer-side runtime config.
+3. **Reader properties** — reader-side config (per query engine — different 
keys per engine).
+4. **Platform-managed properties** — MDT, target Hudi version, other fixed 
platform standards.
+5. **Workload-dependent tuning variables** — cadences, target sizes. Not 
shuffle parallelism: Hudi derives that from the incoming DataFrame's partition 
count, so setting it explicitly overrides a value that is usually already 
correct.
+
+## Durable table properties
+
+### Table type
+```
+hoodie.table.type=COPY_ON_WRITE   # or MERGE_ON_READ
+```
+
+### Record key
+For SimpleKeyGenerator (single field):
+```
+hoodie.datasource.write.recordkey.field=<column>
+hoodie.datasource.write.keygenerator.class=org.apache.hudi.keygen.SimpleKeyGenerator
+```
+
+For ComplexKeyGenerator (composite):
+```
+hoodie.datasource.write.recordkey.field=<col1>,<col2>
+hoodie.datasource.write.keygenerator.class=org.apache.hudi.keygen.ComplexKeyGenerator
+```
+
+For auto-gen (immutable only) — omit `recordkey.field` and keygenerator 
entirely.
+
+For TimestampBasedKeyGenerator (timestamp-derived partition):
+```
+hoodie.datasource.write.recordkey.field=<column>
+hoodie.datasource.write.keygenerator.class=org.apache.hudi.keygen.TimestampBasedKeyGenerator
+hoodie.keygen.timebased.timestamp.type=<UNIX_TIMESTAMP|DATE_STRING|MIXED|EPOCHMILLISECONDS|SCALAR>
+hoodie.keygen.timebased.output.dateformat=<format>
+hoodie.keygen.timebased.timezone=UTC
+```
+
+For CustomKeyGenerator (mixed):
+```
+hoodie.datasource.write.recordkey.field=<column>
+hoodie.datasource.write.keygenerator.class=org.apache.hudi.keygen.CustomKeyGenerator
+```
+Additional config for CustomKeyGenerator partition-path spec: 
`<field1:type1,field2:type2>` where type is SIMPLE or TIMESTAMP.
+
+For NonpartitionedKeyGenerator (unpartitioned):
+```
+hoodie.datasource.write.recordkey.field=<column>
+hoodie.datasource.write.keygenerator.class=org.apache.hudi.keygen.NonpartitionedKeyGenerator
+hoodie.datasource.write.partitionpath.field=
+```
+
+### Partition path
+```
+hoodie.datasource.write.partitionpath.field=<column>
+# Empty string for unpartitioned
+```
+
+For Hive-style partitioning (column=value folder naming):
+```
+hoodie.datasource.write.hive_style_partitioning=true
+```
+
+### Meta fields
+
+Boolean — all meta fields or none. **There is no selective / commit-time-only 
mode at 1.2.0.**
+
+For keep all (default):
+```
+hoodie.populate.meta.fields=true
+```
+
+For disable entirely — append-only batch data with no incremental or CDC 
consumers, ever:
+```
+hoodie.populate.meta.fields=false
+```
+
+Disabling makes incremental queries **non-functional** (not merely slower) and 
CDC unavailable. Durable: changing it later requires a table rewrite.
+
+**If the workload has any incremental or streaming consumer, emit `true` and 
don't present a choice** — at 1.2.0 there is no way to keep incremental queries 
while dropping meta fields.
+
+Selective population via `hoodie.meta.fields.mode` (apache/hudi#19205) targets 
1.3.0 and is not merged. When it ships it will be CoW-only, Spark-only, and 
immutable at table creation.
+
+## Writer properties
+
+### Operation (per §7.7.5 mapping)
+```
+hoodie.datasource.write.operation=<upsert|insert|bulk_insert|delete|insert_overwrite|insert_overwrite_table>
+```
+
+### Ordering / precombine
+```
+hoodie.table.ordering.fields=<column>
+# Used for resolving record precedence when multiple versions of a key exist 
in a batch
+```
+
+### Small-file handling
+Default inline for insert/upsert (mutable). For immutable + posture (a):
+```
+hoodie.datasource.write.operation=bulk_insert
+hoodie.parquet.small.file.limit=0   # disable small-file handling
+```
+
+For immutable + posture (b):
+```
+hoodie.datasource.write.operation=bulk_insert
+# Add async clustering — see clustering section
+```
+
+For immutable + posture (c):
+```
+hoodie.datasource.write.operation=insert
+hoodie.parquet.small.file.limit=104857600   # 100MB, default
+hoodie.parquet.max.file.size=125829120       # 120MB, default
+```
+
+### Bulk-insert sort mode
+```
+hoodie.bulkinsert.sort.mode=<NONE|GLOBAL_SORT|PARTITION_SORT|PARTITION_PATH_REPARTITION|PARTITION_PATH_REPARTITION_AND_SORT>
+```
+
+## Reader properties (per engine)
+
+**Reader-side MDT is per-engine — do not assume readers inherit writer MDT 
config.**
+
+Spark:
+```
+hoodie.metadata.enable=true
+hoodie.enable.data.skipping=true
+```
+
+Flink:
+```
+metadata.enabled=true
+read.data.skipping.enabled=true
+```
+
+Presto:
+```
+hudi.metadata-table-enabled=true
+```
+
+Athena:
+```
+hudi.metadata-listing-enabled=true
+```
+
+Emit reader config per query engine named in the workload.
+
+## Platform-managed properties
+
+Always emit, don't ask:
+```
+hoodie.metadata.enable=true                              # MDT on
+```
+
+**Do NOT emit these — they already carry the desired default, so setting them 
is noise:**
+- `hoodie.metadata.index.column.stats.enable=false` — col stats (and partition 
stats, which is coupled to the same knob) are off by default. The design 
guidance that col stats is Operations Agent territory still stands; it just 
doesn't need a config line.
+- `hoodie.metadata.index.bloom.filter.enable=false` — already false by 
default. Bloom-via-MDT remains experimental at 1.2.0 and should not be 
recommended at design time.
+
+General rule: emit config that *changes* behavior. A bundle full of redundant 
defaults obscures the handful of properties that actually encode the design.
+
+Target Hudi 1.2.0 (implied by dependency version, not a runtime config).
+
+## Source properties (HoodieStreamer)
+
+Derived from source + record format (question-flow.md Q1.2b).
+
+**The source class and schema provider are CLI flags, not properties.** They 
travel on the submit command as `--source-class` and `--schemaprovider-class` 
(see Sample submit commands). There are **no** `hoodie.streamer.source.class` / 
`hoodie.streamer.schemaprovider.class` properties — such lines are silently 
ignored, and a job that relies on them falls back to HoodieStreamer's default 
source class and reads the wrong source type. Each block below lists the real 
properties and notes the matching CLI flags in a comment.
+
+### Kafka + Avro + schema registry
+```
+# CLI flags: --source-class org.apache.hudi.utilities.sources.AvroKafkaSource
+#            --schemaprovider-class 
org.apache.hudi.utilities.schema.SchemaRegistryProvider
+hoodie.streamer.schemaprovider.registry.url=<SCHEMA_REGISTRY_URL>/subjects/<TOPIC>-value/versions/latest
+hoodie.streamer.source.kafka.topic=<TOPIC>
+bootstrap.servers=<KAFKA_BOOTSTRAP>
+auto.offset.reset=latest
+```
+
+### Kafka + Avro + schema file
+```
+# CLI flags: --source-class org.apache.hudi.utilities.sources.AvroKafkaSource
+#            --schemaprovider-class 
org.apache.hudi.utilities.schema.FilebasedSchemaProvider
+hoodie.streamer.schemaprovider.source.schema.file=<PATH>/source.avsc
+hoodie.streamer.schemaprovider.target.schema.file=<PATH>/target.avsc
+hoodie.streamer.source.kafka.topic=<TOPIC>
+bootstrap.servers=<KAFKA_BOOTSTRAP>
+auto.offset.reset=latest
+```
+
+### Kafka + JSON
+```
+# CLI flag: --source-class org.apache.hudi.utilities.sources.JsonKafkaSource
+hoodie.streamer.source.kafka.topic=<TOPIC>
+bootstrap.servers=<KAFKA_BOOTSTRAP>
+auto.offset.reset=latest
+```
+Schema provider optional — pass `--schemaprovider-class` for 
`FilebasedSchemaProvider` or `SchemaRegistryProvider` if the schema is managed 
rather than inferred.
+
+### Kafka + Protobuf
+```
+# CLI flag: --source-class org.apache.hudi.utilities.sources.ProtoKafkaSource
+hoodie.streamer.source.kafka.topic=<TOPIC>
+hoodie.streamer.source.kafka.proto.value.deserializer.class=<PROTO_CLASS>
+bootstrap.servers=<KAFKA_BOOTSTRAP>
+auto.offset.reset=latest
+```
+
+### Schema providers
+
+Schema providers are **optional and orthogonal to source type** — any of them 
can pair with any HoodieStreamer source. Many sources infer their schema, and 
simple pipelines that don't expect schema evolution often set no provider at 
all. That's a legitimate configuration, not an omission.
+
+**Kafka is the practical exception.** Kafka producers and consumers already 
need schema coordination to interoperate, so a registry is usually standing 
infrastructure before Hudi enters the picture. For Kafka sources, assume a 
schema provider is present and ask *which* one rather than *whether* — you're 
discovering existing infrastructure, not proposing new. For file, JDBC, and 
other sources, treat it as a genuine yes/no.
+
+Emit one when the user has an authoritative schema source or expects 
evolution. Pick by where the schema lives:
+
+| Schema lives in | Provider class |
+|---|---|
+| Confluent / compatible registry | `SchemaRegistryProvider` |
+| `.avsc` files you manage | `FilebasedSchemaProvider` |
+| A Hive metastore table | `HiveSchemaProvider` |
+| The upstream JDBC table itself | `JdbcbasedSchemaProvider` |
+| A proto class on the classpath | `ProtoClassBasedSchemaProvider` |
+
+All property keys use the `hoodie.streamer.schemaprovider.` prefix. **The 
provider class itself is the `--schemaprovider-class` CLI flag, not a 
property.**
+
+**File-based** — the common default for DFS sources:
+```
+# CLI flag: --schemaprovider-class 
org.apache.hudi.utilities.schema.FilebasedSchemaProvider
+hoodie.streamer.schemaprovider.source.schema.file=<PATH>/source.avsc
+hoodie.streamer.schemaprovider.target.schema.file=<PATH>/target.avsc
+```
+Target defaults to source when omitted — set both only when the transformer 
changes the schema.
+
+**Hive metastore** — when a synced table already defines the schema:
+```
+# CLI flag: --schemaprovider-class 
org.apache.hudi.utilities.schema.HiveSchemaProvider
+hoodie.streamer.schemaprovider.source.schema.hive.database=<DB>
+hoodie.streamer.schemaprovider.source.schema.hive.table=<TABLE>
+# target.schema.hive.database / .table if the target differs
+```
+
+**JDBC** — derive from the upstream table:
+```
+# CLI flag: --schemaprovider-class 
org.apache.hudi.utilities.schema.JdbcbasedSchemaProvider
+hoodie.streamer.schemaprovider.source.schema.jdbc.connection.url=<JDBC_URL>
+hoodie.streamer.schemaprovider.source.schema.jdbc.driver.type=<DRIVER_CLASS>
+hoodie.streamer.schemaprovider.source.schema.jdbc.username=<USER>
+hoodie.streamer.schemaprovider.source.schema.jdbc.password=<PASSWORD>
+hoodie.streamer.schemaprovider.source.schema.jdbc.dbtable=<TABLE>
+```
+
+**When no provider is set**, the source infers the schema. Appropriate for 
stable schemas with no expected evolution — don't add a provider (or the 
infrastructure behind it) to a pipeline that doesn't need one.
+
+**Not applicable to Spark DataSource writes** — the DataFrame already carries 
its schema. Schema providers exist for HoodieStreamer only.
+
+## Cleaner + archival (inline autopilot)
+
+```
+# Automatic inline cleaning and archival are Hudi defaults — emit no on/off 
switches.
+# (hoodie.clean.automatic=true, hoodie.clean.async.enabled=false, 
hoodie.archive.automatic=true,
+#  hoodie.archive.async=false, hoodie.commits.archival.batch=10 are all 
defaults already.)
+hoodie.clean.policy=<KEEP_LATEST_BY_HOURS or KEEP_LATEST_COMMITS>
+hoodie.clean.hours.retained=<derived>          # if KEEP_LATEST_BY_HOURS
+hoodie.clean.commits.retained=<derived>        # if KEEP_LATEST_COMMITS
+
+hoodie.keep.min.commits=<derived from cadence — see below>
+hoodie.keep.max.commits=<keep.min.commits × 1.2>
+```
+
+**Derive the archival window from commit cadence — never emit a constant.**
+
+```
+commits_per_day  = 1440 / commit_cadence_minutes
+cleaner_commits  = commits_per_day × cleaner_retention_days
+keep.min.commits = max(100, ceil(cleaner_commits × 1.1))
+keep.max.commits = ceil(keep.min.commits × 1.2)
+```
+
+At a 48h cleaner window: 5-min → **634 / 761**. 15-min → **211 / 253**. Hourly 
→ **100 / 120** (floor).
+
+**At daily cadence or slower, emit no cleaner or archival config at all** — 
leave Hudi's defaults. A table committing once a day accumulates timeline 
entries far too slowly for the active timeline to be at risk, so overriding 
adds config surface for nothing.
+
+Archival must outlast the cleaner, hence the +10% margin. See 
decision-tables.md → Cleaner + archival for the full table and rationale.
+
+**Do not emit 1000 / 1200.** The active-timeline target is ~1000 entries; an 
archival floor of 1000 means archival can't reclaim until the timeline already 
sits at the number it's meant to protect.
+
+**Do NOT emit:** `hoodie.clean.fileversions.retained` — file-versions policy 
not recommended.
+
+## Index
+
+### SIMPLE
+```
+hoodie.index.type=SIMPLE
+```
+
+### Global SIMPLE
+```
+hoodie.index.type=GLOBAL_SIMPLE
+hoodie.simple.index.update.partition.path=true
+```
+
+### BLOOM
+```
+hoodie.index.type=BLOOM
+hoodie.bloom.index.prune.by.ranges=true
+# Do NOT set hoodie.bloom.index.use.metadata=true — experimental at 1.2.0
+```
+
+### Global BLOOM
+```
+hoodie.index.type=GLOBAL_BLOOM
+hoodie.bloom.index.update.partition.path=true
+```
+
+### Record Level Index (partitioned)
+```
+hoodie.index.type=RECORD_LEVEL_INDEX
+hoodie.metadata.record.level.index.enable=true
+
+# File-group count is PER PARTITION and DURABLE once the index initializes.
+# Set min == max to pin it; a range lets Hudi estimate instead.
+# Size from projected PER-PARTITION record count — see decision-tables.md → 
RLI file-group sizing.
+hoodie.metadata.record.level.index.min.filegroup.count=<computed>
+hoodie.metadata.record.level.index.max.filegroup.count=<same as min>
+```
+
+### Global Record Level Index
+```
+hoodie.index.type=GLOBAL_RECORD_LEVEL_INDEX
+hoodie.metadata.global.record.level.index.enable=true
+
+# File-group count is TABLE-WIDE and DURABLE once the index initializes.
+# Set min == max to pin it; a range lets Hudi estimate instead.
+# Size from projected TABLE-WIDE record count — see decision-tables.md → RLI 
file-group sizing.
+hoodie.metadata.global.record.level.index.min.filegroup.count=<computed>
+hoodie.metadata.global.record.level.index.max.filegroup.count=<same as min>
+```
+
+**Do NOT emit** `hoodie.metadata.record.index.{min,max}.filegroup.count` — 
these are deprecated aliases for the **global** properties. Using them under a 
partitioned-RLI config silently sets global knobs.
+
+**Optional, when the user cannot project growth** (see decision-tables.md → 
RLI file-group sizing):
+```
+hoodie.metadata.record.index.growth.factor=<above 2.0 to buy headroom>
+```
+
+### BUCKET (SIMPLE)
+```
+hoodie.index.type=BUCKET
+hoodie.index.bucket.engine=SIMPLE
+hoodie.bucket.index.num.buckets=<derived>
+```
+
+### BUCKET (CONSISTENT_HASHING — MOR only)
+Not recommended at design time. Escape hatch for skewed-partition BUCKET 
workloads.
+
+## Compaction (MOR only)
+
+### Inline (default for DataSource/SQL)
+```
+hoodie.compact.inline=true
+hoodie.compact.inline.max.delta.commits=5
+hoodie.compact.inline.trigger.strategy=NUM_COMMITS
+```
+
+### Async via HoodieStreamer continuous
+No config emitted. On by default; disable via `--disable-compaction` CLI flag 
(not recommended).
+
+### Async via Spark Structured Streaming
+```
+hoodie.datasource.compaction.async.enable=true
+```
+
+### Compaction target IO trap
+
+**This config is denominated in MEGABYTES, not bytes.** The default is 
`512000` (= 500 GB). Emitting a byte count here is off by a factor of ~10^6.
+
+It is a per-round IO *ceiling*, not a sizing target — "amount of MBs to spend 
during compaction run for the LogFileSizeBasedCompactionStrategy... helps bound 
ingestion latency." Capping it low is what creates the backlog: compaction is 
throttled below the rate at which log files accumulate, so file groups never 
catch up and read latency degrades.
+
+Rather than deriving a point value from table size (which just re-creates the 
same trap at a higher threshold as the table grows), set it high enough that it 
never binds and let the compaction strategy decide what to compact:
+
+```
+hoodie.compaction.target.io=104857600   # 100 TB expressed in MB — effectively 
uncapped
+```
+
+Include in the ADR with the rationale: the ceiling exists to bound 
inline-compaction latency, and any workload where compaction must keep pace 
with ingestion wants it out of the way.
+
+### Compaction selection strategy
+Default (LogFileSizeBasedCompactionStrategy):
+```
+hoodie.compaction.strategy=org.apache.hudi.table.action.compact.strategy.LogFileSizeBasedCompactionStrategy
+```
+
+## Clustering (off by default)
+
+Only emit when enabled (immutable + posture (b), or explicit user request).
+
+### Inline
+```
+hoodie.clustering.inline=true
+hoodie.clustering.inline.max.commits=4
+```
+
+### Async
+```
+hoodie.clustering.async.enabled=true
+hoodie.clustering.async.max.commits=5
+```
+
+### Plan strategy
+```
+hoodie.clustering.plan.strategy.class=org.apache.hudi.client.clustering.plan.strategy.SparkSizeBasedClusteringPlanStrategy
+hoodie.clustering.plan.strategy.small.file.limit=314572800    # 300MB
+hoodie.clustering.plan.strategy.target.file.max.bytes=1073741824  # 1GB
+```
+
+### Execution strategy
+Default (SparkSortAndSizeExecutionStrategy):
+```
+hoodie.clustering.execution.strategy.class=org.apache.hudi.client.clustering.run.strategy.SparkSortAndSizeExecutionStrategy
+```
+
+### Sort columns (if layout optimization enabled)
+```
+hoodie.clustering.plan.strategy.sort.columns=<column>
+hoodie.layout.optimize.strategy=LINEAR    # or ZORDER or HILBERT
+```
+
+### Incremental table services (1.2.0 default, keep on)
+```
+hoodie.table.services.incremental.enabled=true
+```
+
+## Concurrency
+
+Default is single writer. Emit only the mode line:
+
+```
+hoodie.write.concurrency.mode=SINGLE_WRITER
+```
+
+`SINGLE_WRITER` is correct — and required for maximum throughput — whenever 
exactly one
+process commits to the table. Inline table services, and async services 
running **in the
+writer's own process** (HoodieStreamer continuous, Flink streaming), do not 
make a second
+writer. A *standalone* service job does.
+
+Mode selection, NBCC eligibility, and provider choice are derived in
+decision-tables.md → Concurrency. This section holds the blocks to emit once 
that derivation
+has run.
+
+### Rule: every block below goes in EVERY writing job
+
+A lock only serializes writers that agree on it. A block applied to the 
ingestion job but not
+the compactor job, or applied with a different provider on each side, gives 
each writer its own
+lock: every writer succeeds, and the table corrupts silently with nothing in 
any log. State
+this every time a multi-writer bundle is emitted — it is the single most 
common way these
+deployments fail. See warnings.md → `LOCK_PROVIDER_MISMATCH`.
+
+### OCC — DynamoDB (default on AWS)
+
+Uses the **implicit** partition-key provider: the lock's partition key is 
derived from
+`hoodie.base.path`, so it cannot drift between jobs.
+
+```
+# ---- apply IDENTICALLY in every job that writes this table ----
+hoodie.write.concurrency.mode=OPTIMISTIC_CONCURRENCY_CONTROL
+hoodie.write.lock.provider=org.apache.hudi.aws.transaction.lock.DynamoDBBasedImplicitPartitionKeyLockProvider
+hoodie.write.lock.dynamodb.table=<lock table name>
+hoodie.write.lock.dynamodb.region=<aws region>
+hoodie.clean.failed.writes.policy=LAZY
+```
+
+The lock table is created automatically if absent, so setup is a table name, a 
region, and IAM
+permissions on that table for **every** writing job. It defaults to 
`PAY_PER_REQUEST` billing
+(`hoodie.write.lock.dynamodb.billing_mode`), which is the right mode for a 
table that sees one
+short lock per commit — switching it to `PROVISIONED` means paying for 
reserved capacity this
+workload will not use.
+
+`hoodie.write.lock.dynamodb.partition_key` is **not** set — that is the point 
of the implicit
+provider. (Published docs list
+`hoodie.write.lock.dynamodb.endpoint_url` as required; it is optional. The 
keys actually
+validated are `table` and `region`.)
+
+**Requires `hudi-aws-bundle` in `--packages` on every writing job** — see 
"Cloud bundles are
+load-bearing" under Sample submit commands. Without it the job fails at the 
first commit with a
+`ClassNotFoundException` on the lock provider. If this design also syncs to 
Glue, the same
+bundle covers both.
+
+### OCC — ZooKeeper (existing quorum)
+
+Uses the **implicit** base-path provider: ZK base path and lock key are both 
derived from
+`hoodie.base.path`.
+
+```
+# ---- apply IDENTICALLY in every job that writes this table ----
+hoodie.write.concurrency.mode=OPTIMISTIC_CONCURRENCY_CONTROL
+hoodie.write.lock.provider=org.apache.hudi.client.transaction.lock.ZookeeperBasedImplicitBasePathLockProvider
+hoodie.write.lock.zookeeper.url=<zk connect string>
+hoodie.write.lock.zookeeper.port=<zk port>
+hoodie.clean.failed.writes.policy=LAZY
+```
+
+Neither `hoodie.write.lock.zookeeper.base_path` nor 
`hoodie.write.lock.zookeeper.lock_key` is
+set — both are derived. The derived ZK base path looks like `/tmp/<hash>`; 
that is a **znode
+path, not a filesystem path**, it is not on disk, and it is not tunable. 
Mention it in the ADR
+so it is not "fixed" later by switching to the explicit provider.
+
+### OCC — Hive Metastore
+
+```
+# ---- apply IDENTICALLY in every job that writes this table ----
+hoodie.write.concurrency.mode=OPTIMISTIC_CONCURRENCY_CONTROL
+hoodie.write.lock.provider=org.apache.hudi.hive.transaction.lock.HiveMetastoreBasedLockProvider
+hoodie.write.lock.hivemetastore.database=<db>
+hoodie.write.lock.hivemetastore.table=<table>
+hoodie.clean.failed.writes.policy=LAZY
+```
+
+Metastore URIs are picked up from the Hadoop configuration at runtime; set
+`hoodie.write.lock.hivemetastore.uris` only when that is not the case.
+
+### OCC — storage-based (cloud storage, no existing lock infrastructure)
+
+**Not the default — see decision-tables.md → Concurrency Step 3 for the 
maturity caution.**
+Available since **1.0.2**, years younger than every other provider, and it 
implements lease
+renewal with a heartbeat plus per-cloud lock clients. Emit it when the user is 
on cloud storage
+with no existing lock infrastructure and would otherwise stand up ZooKeeper 
for one table, or
+when they ask for it directly — and state the maturity point once, plainly, so 
the choice is
+made knowingly.
+
+The appeal is real: it locks under the table's own path, so there is no 
infrastructure to stand
+up and no lock identity to keep in sync.
+
+```
+# ---- apply IDENTICALLY in every job that writes this table ----
+hoodie.write.concurrency.mode=OPTIMISTIC_CONCURRENCY_CONTROL
+hoodie.write.lock.provider=org.apache.hudi.client.transaction.lock.StorageBasedLockProvider
+# Inferred automatically for multi-writer modes; emitted to document intent.
+# EAGER here is a hard config-validation failure.
+hoodie.clean.failed.writes.policy=LAZY
+```
+
+Optional, only if lock renewal needs tuning (validity must be >= 10x renew 
interval, and >= 10s):
+
+```
+hoodie.write.lock.storage.validity.timeout.secs=300
+hoodie.write.lock.storage.renew.interval.secs=30
+```
+
+`hoodie.write.lock.storage.heartbeat.poll.secs` is a **deprecated alias** for
+`renew.interval.secs` — set one, never both.
+
+Requires the cloud bundle matching the storage scheme on the classpath of 
every writing job.
+
+### NBCC — MOR + simple bucket index only
+
+Emit **only** when decision-tables.md → Concurrency Step 2 passes: MOR, BUCKET 
index, table
+version ≥ 8, no clustering. Never adjust table type or index to reach this 
block.
+
+```
+# ---- apply IDENTICALLY in every job that writes this table ----
+hoodie.write.concurrency.mode=NON_BLOCKING_CONCURRENCY_CONTROL
+hoodie.clean.failed.writes.policy=LAZY
+```
+
+No lock provider is required — writers append to their own log files and 
conflicts are resolved
+by the reader and the compactor. 
`hoodie.write.lock.conflict.resolution.strategy` is **not**
+emitted: it auto-infers to the bucket-index strategy from the index type, and 
setting it by
+hand is how that gets broken.
+
+### Standalone HoodieCompactor implies concurrent writers
+
+Whenever the design lands on a **separate `HoodieCompactor` job** (the async 
path for MOR +
+Spark DataSource / Spark SQL), two processes write the same table. 
`SINGLE_WRITER` is unsafe
+there — emitting it alongside a two-job recommendation is a silent corruption 
path.
+
+Emit the OCC block matching the deployment (DynamoDB on AWS; an existing 
ZooKeeper quorum or
+Hive Metastore otherwise) in **both** the ingestion job and the compactor job. 
See warnings.md → `COMPACTOR_CONCURRENCY_REQUIRED`.
+
+If the user is not prepared to run a lock provider at all, recommend inline 
compaction instead
+and record the latency tradeoff in the ADR.
+
+### Not emitted, and why
+
+| Config | Why not |
+|---|---|
+| `hoodie.write.lock.conflict.resolution.strategy` | Auto-infers from index 
type; hand-setting breaks bucket-index conflict handling. |
+| `hoodie.write.concurrency.early.conflict.detection.enable` | Experimental, 
OCC-only, default false. Offer for high-contention OCC; do not emit. |
+| `hoodie.write.num.retries.on.conflict.failures` | Default 0. Contention 
tuning — Operations Agent territory. |
+| Lock retry and timeout keys (the `wait_time_ms` / `num_retries` family) | 
Defaults are sound. Tune on observed contention, not at design time. |
+| ZooKeeper session and connection timeouts | Defaults are sound; same 
reasoning. |
+| DynamoDB capacity keys (`read_capacity`, `write_capacity`, 
`table_creation_timeout`) | Only apply under `PROVISIONED` billing, which this 
workload should not use. |
+| `hoodie.write.lock.app_id` | Identifies the lock holder for debugging. 
Environment-specific, not a design decision. |
+| `hoodie.write.lock.dynamodb.endpoint_url` | Local-development override for 
pointing at a DynamoDB emulator. |
+
+## Catalog / metastore sync
+
+Off by default — emit nothing unless a consumer needs it. Derivation and 
constraints are in
+decision-tables.md → Catalog / metastore sync. Spark- or Flink-only pipelines 
reading by path
+need none.
+
+### Hive Metastore (the default)
+
+```
+hoodie.datasource.meta.sync.enable=true
+hoodie.datasource.hive_sync.mode=hms
+hoodie.datasource.hive_sync.metastore.uris=thrift://<host>:9083
+hoodie.datasource.hive_sync.database=<db>
+hoodie.datasource.hive_sync.table=<table>
+hoodie.datasource.hive_sync.partition_fields=<partition column(s), 
comma-separated>
+```
+
+No `hoodie.meta.sync.client.tool.class` — `HiveSyncTool` is the default. The 
partition
+extractor is inferred for the common cases; set
+`hoodie.datasource.hive_sync.partition_extractor_class` explicitly only for 
the timestamp-based
+`yyyy/MM/dd` case (see decision-tables.md, and warnings.md →
+`PARTITION_EXTRACTOR_MISMATCH`).
+
+Omit `partition_fields` entirely for an unpartitioned table — it is what tells 
Hudi to use the
+non-partitioned extractor.
+
+**In Spark SQL with a Hive catalog** (`spark.sql.catalogImplementation=hive`), 
add:
+
+```
+hoodie.datasource.hive_sync.use_spark_catalog=true
+```
+
+That uses Spark's own catalog client and avoids the classloader conflicts 
otherwise seen in
+Hive-on-Spark setups.
+
+`hive-site.xml` must be on the classpath (and under `$SPARK_HOME/conf` for 
spark-shell or
+spark-sql). Only set `username` / `password` / `jdbcurl` when the mode is 
`jdbc`.
+
+### AWS Glue Data Catalog
+
+Reuses every Hive sync config above — only the tool class changes.
+
+```
+hoodie.datasource.meta.sync.enable=true
+hoodie.meta.sync.client.tool.class=org.apache.hudi.aws.sync.AwsGlueCatalogSyncTool
+hoodie.datasource.hive_sync.database=<glue database>
+hoodie.datasource.hive_sync.table=<table>
+hoodie.datasource.hive_sync.partition_fields=<partition column(s)>
+# Sync only on schema or partition change. Default is false, which writes a new
+# Glue catalog version on EVERY commit.
+hoodie.datasource.meta_sync.condition.sync=true
+```
+
+`hudi-aws-bundle` must be on the classpath of every writing job. No metastore 
URI — the tool
+talks to Glue directly, and the AWS region comes from the environment.
+
+Optional, for large partitioned tables where Glue partition reads become the 
bottleneck:
+
+```
+hoodie.datasource.meta.sync.glue.partition_index_fields.enable=true
+hoodie.datasource.meta.sync.glue.partition_index_fields=<subset of partition 
fields>
+```
+
+The Glue read/write parallelism keys
+(`...glue.all_partitions_read_parallelism`, 
`...glue.changed_partitions_read_parallelism`,
+`...glue.partition_change_parallelism`) have working defaults — tune on 
observed sync latency,
+not at design time.
+
+### BigQuery
+
+Separate config namespace, and different constraints — read decision-tables.md 
before emitting.
+
+```
+hoodie.datasource.meta.sync.enable=true
+hoodie.meta.sync.client.tool.class=org.apache.hudi.gcp.bigquery.BigQuerySyncTool
+hoodie.gcp.bigquery.sync.project_id=<gcp project>
+hoodie.gcp.bigquery.sync.dataset_name=<dataset>
+hoodie.gcp.bigquery.sync.dataset_location=<region>
+hoodie.gcp.bigquery.sync.table_name=<table>
+hoodie.gcp.bigquery.sync.source_uri=gs://<bucket>/<path>/dt=*
+hoodie.gcp.bigquery.sync.source_uri_prefix=gs://<bucket>/<path>/
+# Manifest-based sync — preferred over the legacy view-over-files approach
+hoodie.gcp.bigquery.sync.use_bq_manifest_file=true
+# BigQuery sync requires hive-style partitioning
+hoodie.datasource.write.hive_style_partitioning=true
+```
+
+There is **no** `hoodie.gcp.bigquery.sync.base_path` — published docs list 
one, but the table
+location comes from the standard base-path config. `hudi-gcp-bundle` on the 
classpath.
+
+Optional: `hoodie.gcp.bigquery.sync.require_partition_filter=true` forces 
queries to filter on
+a partition column, which prevents accidental full scans;
+`hoodie.gcp.bigquery.sync.billing.project.id` when billing differs from the 
data project.
+
+### DataHub (discovery, not queries)
+
+Additive — pair it with HMS or Glue, never instead of one, when a query engine 
is involved.

Review Comment:
   🤖 This EVENT-shape sample bundle combines auto-generated record keys 
(`hoodie.datasource.write.recordkey.field=` left empty, per the comment) with 
`hoodie.populate.meta.fields=false`. Those two are mutually exclusive — as this 
skill's own `decision-tables.md` ("Mutual exclusion with auto-gen") states, 
auto-gen keys require `_hoodie_record_key` to be materialized, which meta 
fields provide. This isn't only incoherent on paper: in 1.x, 
`AutoRecordKeyGenerationUtils.mayBeValidateParamsForAutoGenerationOfRecordKeys` 
throws `HoodieKeyGeneratorException` when meta fields resolve to a mode that 
leaves the record key unpopulated, so a job using this exact bundle fails at 
write init (the code comment there notes some legacy-config paths are even 
worse — rows land with no identity at all). Since these bundles are presented 
as directly usable, this section could switch the EVENT archetype to one of the 
two coherent presets in `decision-tables.md`: a user-provided natural key when 
disa
 bling meta fields, or keep `hoodie.populate.meta.fields=true` if auto-gen is 
what's intended.
   
   <sub><i>⚠️ AI-generated; verify before applying. React 👍/👎 to flag 
quality.</i></sub>



##########
hudi-agent-gateway/skills/hudi-architect/references/decision-tables.md:
##########
@@ -0,0 +1,697 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+# Decision tables
+
+Reference for each decision domain. Consult when deriving a design choice from 
workload answers.
+
+## Engine
+
+Ask, don't default. If user picks Spark or Flink, proceed. If undecided:
+
+**Flink candidate:** append-only workloads with sub-5-minute visibility target 
AND continuous streaming source.
+
+**Spark default:** everything else.
+
+For mutable workloads at 5-minute visibility, Spark handles cleanly — Flink's 
advantage doesn't apply.
+
+## Writer
+
+Derived from source + pipeline_shape (see question-flow.md Q2.9).
+
+### Kafka source (special case)
+
+**Default: HoodieStreamer.** Rationale (surface these in dialogue if user asks 
why):
+- Schema registry integration (Confluent + custom).
+- Format support built-in (AvroKafkaSource, JsonKafkaSource, ProtoKafkaSource).
+- Exactly-once from Kafka (checkpoint stored in Hudi commits).
+- Kafka meta fields propagation.
+- Error table for dead-letter routing.
+- Continuous mode: ingestion + async compaction + async clustering in one 
Spark job.
+- Transformer chain (SQL-based, custom-class, chained) handles most enrichment 
and CDC-mapping.
+
+### Kafka source class + schema provider
+
+Derived from the record format answered at Q1.2b. Required — without it the 
writer decision is incomplete and the bundle cannot name a source class.
+
+| Record format | Source class | Schema provider |
+|---|---|---|
+| Avro + schema registry | `AvroKafkaSource` | `SchemaRegistryProvider` |
+| Avro + schema file | `AvroKafkaSource` | `FilebasedSchemaProvider` |
+| JSON | `JsonKafkaSource` | Optional — file-based or registry if schema is 
managed |
+| Protobuf | `ProtoKafkaSource` | Proto class on classpath |
+
+Avro on Kafka effectively requires a schema provider. For JSON it is optional 
but recommended in production — inferred schemas drift silently.
+
+**Reach for Spark DataSource for Kafka only when:**
+- Multi-source complexity (multiple Kafka topics + JDBC lookup + multi-table 
writes).
+- ML DataFrame-native library work.
+- One-off backfills where a HoodieStreamer job feels heavier than needed.
+
+### In-job DataFrame (derived / silver / gold tables)
+
+When the data is already a DataFrame inside the user's own Spark job — the 
output of an ETL query, join, or aggregation — the write is 
`.write.format("hudi")` at the end of that job.
+
+**Writer: Spark DataSource. Not a choice.** HoodieStreamer exists to poll an 
external source; here there isn't one. Don't present the 
HoodieStreamer-vs-DataSource tradeoff, and don't ask Q1.2b (no source class, no 
schema provider).
+
+Consequences to surface:
+
+- **Async compaction isn't free.** HoodieStreamer continuous mode runs 
compaction in-process; DataSource can't. If the design lands on MOR, the 
options are inline compaction (blocks commits periodically) or a standalone 
`HoodieCompactor` job.
+- **The standalone compactor makes this a concurrent-writer deployment** — two 
processes writing one table. Requires OCC and an identically-configured lock 
provider in both jobs. See warnings.md → COMPACTOR_CONCURRENCY_REQUIRED.
+- **No submit-command template applies.** The write lives in the user's 
application; emit the properties as `.option(...)` calls plus the required 
session config instead.
+- **Q2.9 (pipeline shape) is largely answered already** — it's custom 
application code. Still worth confirming whether the write sits inside a 
`forEachBatch` callback (continuous) or a plain batch job, because that changes 
the integration snippet, not the writer.
+
+### Non-Kafka external sources (DFS, JDBC, another Hudi table, S3/GCS events, 
Kinesis, Pulsar)
+
+HoodieStreamer and DataSource are co-equal defaults. Choose based on 
pipeline_shape.
+
+**Schema provider is optional and orthogonal to source type.** Any provider 
can pair with any source. Many sources infer their schema, and simple pipelines 
with no expected evolution commonly set none — that's a valid configuration, 
not a gap. Ask Q1.2c and map the answer: schema files → 
`FilebasedSchemaProvider`, Hive metastore → `HiveSchemaProvider`, upstream DB → 
`JdbcbasedSchemaProvider`, registry → `SchemaRegistryProvider`. See 
config-templates.md for keys.
+
+**Kafka differs in prior, not in mechanism.** Producers and consumers on a 
topic already need schema coordination, so a registry is usually in place 
before Hudi arrives. For Kafka, assume a provider exists and ask which one 
(Q1.2b already does this). For other sources, whether to have one at all is a 
real question.
+
+```
+if pipeline_shape == "config-driven":
+  → HoodieStreamer
+  mode = "continuous" if continuous ingest declared else "run-once"
+
+elif pipeline_shape == "custom code":
+  → Spark DataSource
+
+elif pipeline_shape == "SQL-centric":
+  → Spark SQL
+
+elif pipeline_shape == "streaming with primitives":
+  Ask: writeStream sink vs forEachBatch
+  - forEachBatch → Spark DataSource
+  - writeStream sink → Ask: stateful primitives needed?
+    - Yes → Spark Structured Streaming
+    - No → nudge toward HoodieStreamer
+```
+
+### Popularity as battle-tested signal
+
+HoodieStreamer + Spark DataSource are the two most-deployed Hudi writer paths 
— battle-tested, no tuning knobs required, just works out of the box.
+
+Spark SQL: niche, only when user has SQL-only requirement.
+Spark Structured Streaming (writeStream sink): rare, only when company-wide 
streaming framework OR genuine stateful primitives.
+
+For first-time users on Kafka: HoodieStreamer is the safest first Hudi table. 
For non-Kafka sources: either HoodieStreamer or DataSource is fine.
+
+## Table type
+
+Derived from mutability + experience + update distribution (for mutable).
+
+| Signals | Derived table type + compaction |
+|---|---|
+| Immutable | COW — silent. Don't show the COW/MOR tradeoff table, and don't 
ask Q1.6 (experience): with no updates there are no log files to merge, so MOR 
offers nothing and there's no compaction posture to derive. |
+| Mutable + first-time / fire-and-forget | COW |
+| Mutable + some experience | MOR + inline compaction |
+| Mutable + experienced + writer is HoodieStreamer continuous | MOR + async 
(free) |
+| Mutable + experienced + writer is DataSource/SQL/Structured Streaming | MOR 
+ async via advanced deployment (standalone compactor) |
+| Mutable + some experience + writer is HoodieStreamer continuous | MOR + 
async (upgrade for free — bonus from writer choice) |
+
+**Apply the free-async upgrade as soon as the writer is known — do not defer 
it to the §8.3 checkpoint.**
+
+For Kafka sources the writer is HoodieStreamer by derivation, so this resolves 
during Round 1 and the upgraded table type should be stated there. Deferring it 
to §8.3 would hide the upgrade from PROTOTYPING and PRODUCTIONIZING_INITIAL 
users entirely, since that checkpoint only runs between Rounds 2 and 3 at 
PRODUCTION_AT_SCALE.
+
+Table type stays genuinely provisional only when the writer is still unknown — 
non-Kafka sources whose writer is decided by pipeline shape at Q2.9. In that 
case, revisit table type once Q2.9 lands and surface the upgrade then.
+
+Tradeoff table (in ADR):
+
+|                    | Copy-on-Write (CoW)                     | Merge-on-Read 
(MoR)                                                              |
+| ------------------ | --------------------------------------- | 
--------------------------------------------------------------------------------
 |
+| **Write cost**     | High — rewrites whole base files        | Low — appends 
log blocks                                                         |
+| **Read latency**   | Low — reads are plain parquet           | Snapshot 
reads merge base + logs; read-optimized reads skip logs; compaction 
periodically brings MoR in line with CoW |
+| **Ops surface**    | Minimal — no compaction to run          | Compaction 
runs as an ongoing service                                            |
+| **Typical fit**    | Batch BI, reference tables, first-time users | 
Streaming upserts, CDC ingestion, experienced operators                     |
+
+### Handling workload-vs-experience tension
+
+If mutability + update distribution point toward MOR but user picked 
fire-and-forget:
+
+> "Your workload signals point toward MOR (mutable + uniform updates at scale 
= high write amp for COW), but you picked fire-and-forget which typically means 
COW. Three reconciliations:
+> - (a) Accept COW; ADR flags concrete revisit conditions if write amp 
materializes.
+> - (b) Step up to MOR with inline compaction. Slightly more per-batch 
latency, no separate service to deploy.
+> - (c) Keep the workload smaller and rely on the Operations Agent to flag if 
COW hits a wall.
+>
+> Which matches your priorities?"
+
+## Index
+
+Derived from six signals: engine, mutability, partitioning, partition-column 
stability, projected table size, key characteristics.
+
+### Decision table
+
+| Index | Write cost | Storage | Scope | Best when | Engine (1.2.0) |
+|---|---|---|---|---|---|
+| **SIMPLE / Global SIMPLE** | O(files listed) per commit | Minimal | 
Partition or Global | Small tables (<~100M rows), random updates | Spark |
+| **BLOOM / Global BLOOM** | Range prune + bloom check | Bloom filters in MDT 
| Partition or Global | Sub-1-2TB + monotonic keys | Spark |
+| **Partitioned RLI** | O(1) via MDT hash-shard | ~few % of record count in 
MDT | Partition (uniqueness within partition) | Any real scale, 
partition-stable | Spark + Flink |
+| **Global RLI** | O(1) via MDT hash-shard | ~few % of record count in MDT | 
Global (table-wide uniqueness) | Any scale, unpartitioned or partition-unstable 
| Spark + Flink |
+| **BUCKET** | O(1) via bucket hash | No MDT partition | Partition-scoped only 
| Bounded key cardinality + balanced partition sizes | Spark + Flink (Flink 
dominant) |
+
+### Decision pseudocode
+
+```
+if immutable:
+  → SIMPLE (index cost irrelevant; no tagging happens)
+
+elif engine == "flink":
+  if unpartitioned or partition-unstable:
+    → GLOBAL_RLI (added in 1.2.0)
+  elif partition-stable + key_cardinality_bounded + partition_sizes_balanced:
+    → BUCKET
+  else:
+    → PARTITIONED_RLI
+
+elif engine == "spark":
+  if unpartitioned:
+    if key_cardinality_bounded_and_stable:
+      → BUCKET
+    else:
+      → GLOBAL_RLI
+  elif partitioned + partition-unstable:
+    → GLOBAL_RLI (or GLOBAL_BLOOM if sub-1-2TB + monotonic + cost-sensitive)
+  elif partitioned + partition-stable:
+    if projected_table_size < ~1-2TB:
+      if monotonic_keys: → BLOOM
+      elif key_cardinality_bounded_and_stable + partition_sizes_balanced: → 
BUCKET
+      else: → SIMPLE (or PARTITIONED_RLI)
+    else (projected >= ~1-2TB):
+      if key_cardinality_bounded_and_stable + partition_sizes_balanced: → 
BUCKET
+      else: → PARTITIONED_RLI
+```
+
+### BUCKET when to prefer over RLI
+
+- Bounded and predictable key cardinality.
+- Partition sizes roughly balanced.
+- Writer latency tight, MDT record_index sync cost matters.
+- Smaller MDT footprint desired.
+
+### BUCKET fails when
+
+- Key cardinality unbounded or growing (any new-record-generating workload — 
trips, events, orders, logs).
+- Skewed partition sizes → recommend RLI/Partitioned RLI (do NOT recommend 
CONSISTENT_HASHING at design time; niche escape hatch).
+
+### BLOOM caveats
+
+- Effective sub-1-2TB only.
+- `hoodie.bloom.index.use.metadata=true` is experimental at 1.2.0 — do NOT 
recommend at design time.
+
+### Async-buildable framing
+
+Most index decisions are no longer durable at table creation. RECORD_INDEX 
(both variants), BLOOM (experimental), col stats, secondary index, expression 
index — all buildable async on live tables using HoodieIndexer, no rewrite 
needed.
+
+**Two durability exceptions:**
+
+1. **BUCKET** — bucket count fixed at creation.
+2. **RLI file-group count** — fixed when the record index is *initialized*. 
Adding an RLI later is free; **resizing an initialized one is not possible 
without a table rewrite.** See "RLI file-group sizing" below.
+
+The distinction matters: "index is async-buildable" is true about *adding* an 
index and false about *resizing* one. Do not tell users the RLI is a fully 
reversible choice.
+
+Design implication: for smaller mutable tables, recommend lighter index 
(SIMPLE) with ADR note that RLI can be added later without rewrite. Avoid 
over-engineering.
+
+### RLI file-group sizing (PRODUCTION_AT_SCALE — durable decision)
+
+Hudi derives the RLI file-group count when the index is initialized, from the 
records present at that moment multiplied by a growth factor 
(`hoodie.metadata.record.index.growth.factor`, default **2.0**). That assumes 
the table is already fully loaded. A table that bootstraps small and then grows 
repeatedly gets an index sized for its infancy, permanently.
+
+**The count is pinned only when `min == max` (both non-zero).** Otherwise Hudi 
estimates from record count × growth factor and clamps into the min/max window 
— i.e. a range hands the decision back to Hudi.
+
+**Config keys — four of them, two per variant. Use the modern keys:**
+
+| Index | Key | Default | Scope |
+|---|---|---|---|
+| Global RLI | 
`hoodie.metadata.global.record.level.index.{min,max}.filegroup.count` | 10 / 
10000 | Table-wide |
+| Partitioned RLI | 
`hoodie.metadata.record.level.index.{min,max}.filegroup.count` | 1 / 10 | **Per 
partition** |
+
+`hoodie.metadata.record.index.{min,max}.filegroup.count` are deprecated 
aliases for the **global** properties. Do not use them for partitioned RLI.
+
+**Sizing formula:**
+
+```
+bytes_per_rli_record = 50      # safe starting point; assumes UUID-shaped 
record keys
+shard_size_mb        = 500
+file_group_count     = (projected_record_count * bytes_per_rli_record) / 1024 
/ 1024 / shard_size_mb
+```
+
+- **Global RLI** — apply to the projected table-wide record count.
+- **Partitioned RLI** — apply to the projected *per-partition* record count 
(projected total / projected active partition count), because the config is per 
partition.
+- Size for the 3-4 year projection, not today. Under-sizing is unfixable; 
over-sizing costs little.
+- 50 bytes assumes UUID-shaped keys. Longer record keys mean a larger 
per-record RLI footprint — scale the constant and say so in the ADR.
+
+Worked example: 40B projected records → `(40_000_000_000 × 50) / 1024 / 1024 / 
500` = **3815 file groups**; round up to **3900** for headroom (over-sizing 
costs little). Emit `min = max = 3900`.
+
+**Why the defaults are a trap.** Partitioned RLI defaults to `min=1, max=10`. 
With a 1GB max file-group size and 50-byte records, one file group holds ~21.5M 
records, so a partition needs ~215M projected records before the estimate even 
reaches the ceiling of 10. Below that it silently under-sizes.
+
+**When the user cannot project record count:**
+
+Recommend they land the **first commit / bulk load with RLI disabled**, then 
enable it (async build via `HoodieIndexer`, no rewrite). The estimator then 
sees a truthful record count instead of a near-empty first commit.
+
+This fixes the *bootstrap* problem, not the *growth* problem — the estimator 
still applies growth factor 2.0 to whatever exists at initialization, so it 
sizes for today × 2. For a fast-growing table that headroom is consumed quickly 
and the count is already frozen. Consider raising 
`hoodie.metadata.record.index.growth.factor` above 2.0, and record a measurable 
revisit condition: if record count approaches `initial_count × growth_factor`, 
the RLI is undersized and only a rewrite fixes it.
+
+## Partitioning
+
+Query-alignment-first, not size-first.
+
+### Rule engine flow
+
+1. If consumer reads filter on natural low-cardinality dimension → partition 
by that dimension.
+2. If consumer reads filter on time (recent-N-day scans, incremental) → 
partition by date.
+3. If consumer reads are scan-heavy or point-lookup (no partition-aligned 
filter) → consider unpartitioned (subject to size threshold).
+
+### Projected partition count guardrails
+
+Formula: `projected_partition_count = cardinality(business_dimension) × 
time_buckets_over_table_lifetime`
+
+Time buckets accumulate over the table's **lifetime**, projected to the 2-3 
year horizon — not over the retention window. Retention governs timeline 
lookback (see → Retention), not how many date partitions exist on disk; date 
partitions are only ever added, never expired by the cleaner.
+
+For date-only: `cardinality = 1`, `time_buckets = days (or months) from first 
commit to the projection horizon` (daily × 3 years ≈ 1095 — matches the ADR 
example).
+For composite `<business_dim>/<date>`: multiply.
+
+- **Green: < 10K partitions** — proceed.
+- **Yellow: 10K – 50K** — warn (see warnings.md → 
PROJECTED_PARTITION_COUNT_YELLOW).
+- **Red: > 50K** — reject (see warnings.md → PROJECTED_PARTITION_COUNT_RED).
+
+### Time granularity default
+
+- **Daily** — default. Recent-N-day read patterns align.
+- **Monthly** — when daily pushes into yellow/red.
+- **Hourly** — rarely recommended. Only when volume >~10GB/hour and consumers 
explicitly need hourly pruning.
+
+### Immutable raw layer
+
+Default to **ingestion-time partitioning**, not event-time. Raw layer 
consumers ask "give me new data in the last N hours" — ingestion-time question. 
Raw doesn't apply business logic.
+
+Override to event time if:
+- User explicitly names event-time-filtered downstream reads as dominant.
+- Raw layer is unusual with strong event-time semantic upstream.
+
+### Unpartitioned viability
+
+Viable when both hold:
+- Total table stays under ~500GB at 2-3 year horizon.
+- Consumer read pattern is point-lookup / join / full-scan (not filtered on 
natural partition dimension).
+
+For point-lookup-dominated workloads with growing key set (like unpartitioned 
DIM tables), unpartitioned + Global RLI works up to larger sizes (~2TB+) 
because RLI keeps lookup cost bounded.
+
+Above threshold → partition, even if no natural business filter. Fallback: 
partition by date-derived column with daily granularity.
+
+## Small-files posture (immutable only)
+
+Three postures — user picks (see question-flow.md Q2.8).
+
+### Recommendation prose adapts to two axes
+
+**Partition cardinality:**
+- Low-card (date-only) → any posture viable.
+- High-card (composite business dim) → posture (c) recommended.
+
+**Future-consumers axis:**
+- Closed universe (all silver consumers exist today) → any posture viable.
+- Open universe (new silver pipelines may spin up 6+ months later) + terabytes 
→ (b) or (c) required; (a) becomes warning.
+
+### Matrix
+
+| Scenario | Recommended posture |
+|---|---|
+| Low-cardinality partition + closed-universe + <500GB | (a) or (b) viable |
+| Low-cardinality partition + open-universe or terabytes | (b) — clustering 
handles async |
+| High-cardinality partition | (c) — every batch fans across many partitions; 
inline small-file handling per file group pays off |
+
+## Retention
+
+Time-travel + incremental lookback window. NOT record lifetime.
+
+### Cleaner policy selection
+
+- Continuous ingest → `KEEP_LATEST_BY_HOURS`.
+- Scheduled batch → `KEEP_LATEST_COMMITS`.
+- **NEVER `KEEP_LATEST_FILE_VERSIONS`** — operates at file-group level, 
savepoint interaction awkward, archival can't make progress cleanly.
+
+### Commit-cadence-aware retention default
+
+Timeline latency degrades past ~5K entries; practical target ~1000.
+
+Formula (COW baseline):
+```
+base_entries_per_commit = 6  # 3 ingestion + 3 cleaner
+if MOR + async compaction: adjust += 3 / compaction_cadence_commits  # 
typically +0.6
+if async clustering: adjust += 3 / clustering_cadence_commits  # typically +0.6
+entries_per_commit = base_entries_per_commit + adjust
+
+commits_per_day = 1440 / commit_cadence_minutes
+timeline_entries_per_day = commits_per_day * entries_per_commit
+```
+
+### Safe defaults by commit cadence (COW baseline, cleaner retained = 500)
+
+| Commit cadence | Safe max retention | Wall-clock lookback |
+|---|---|---|
+| 5 min | ~500 commits | ~1.7 days |
+| 10 min | ~500 commits | ~3.5 days |
+| 15 min | ~500 commits | ~5 days |
+| 30 min | ~500 commits | ~10 days |
+| 60 min | ~500 commits | ~20 days |
+
+### Sub-5-minute cadence
+
+If computed safe retention < 1 day (e.g., 1-min cadence):
+
+> "At 1-minute cadence, safe retention drops below 1 day. As a best practice, 
stabilize a 5-minute cadence pipeline first before attempting sub-5-min ingest."
+
+Not a hard block — user can proceed.
+
+## Cleaner + archival config (inline autopilot)
+
+Emit silently. No user question about cadence.
+
+```
+# Automatic inline cleaning and archival are Hudi defaults — emit no on/off 
switches.
+# (hoodie.clean.automatic, hoodie.clean.async.enabled, 
hoodie.archive.automatic,
+#  hoodie.archive.async, hoodie.commits.archival.batch all already default to 
the desired values.)
+hoodie.clean.policy=<KEEP_LATEST_BY_HOURS or KEEP_LATEST_COMMITS>
+hoodie.clean.hours.retained OR hoodie.clean.commits.retained=<derived>
+
+hoodie.keep.min.commits=<derived — see below>
+hoodie.keep.max.commits=<derived — see below>
+```
+
+**Archival window derivation — from commit cadence, never a constant.**
+
+Archival must outlast the cleaner. If instants are archived while the cleaner 
still treats those file versions as live, incremental and time-travel readers 
lose the timeline entries they depend on. So the window is always the cleaner 
window plus a margin.
+
+```
+commits_per_day  = 1440 / commit_cadence_minutes
+cleaner_commits  = commits_per_day × cleaner_retention_days
+                   (or cleaner.commits.retained directly, when the policy is 
KEEP_LATEST_COMMITS)
+
+keep.min.commits = max(100, ceil(cleaner_commits × 1.1))    # cleaner window + 
~10% margin
+keep.max.commits = ceil(keep.min.commits × 1.2)
+```
+
+**At daily cadence or slower, emit nothing.** Don't set cleaner or archival 
config at all — leave Hudi's out-of-the-box defaults in place. A table 
committing once a day accumulates timeline entries so slowly that the active 
timeline is nowhere near its limits, and there is nothing for us to protect it 
from. Overriding here adds config surface for no benefit.
+
+The floor of 100 covers the middle ground, where derivation produces a number 
small enough to make look-back impractical but the cadence is still fast enough 
that the defaults aren't a good fit.
+
+Worked values at a 48h cleaner window:
+
+| Cadence | commits/day | Cleaner commits | +10% | `keep.min.commits` | 
`keep.max.commits` |
+|---|---|---|---|---|---|
+| 5 min | 288 | 576 | 634 | **634** | 761 |
+| 15 min | 96 | 192 | 211 | **211** | 253 |
+| 1 hour | 24 | 48 | 53 | **100** (floor) | 120 |
+| Daily or slower | ≤1 | — | — | **emit nothing** | **emit nothing** |
+
+This replaces the older `2 × cleaner.commits.retained` rule. The +10% 
relationship applies uniformly, whichever cleaner policy is in force.
+
+Same principle as not emitting 
`hoodie.metadata.index.column.stats.enable=false`: config that restates a 
default is noise. Emit what changes behavior.
+
+**Never emit a fixed 1000 / 1200.** The active-timeline target is ~1000 
entries; an archival floor at 1000 leaves no headroom above the number it 
exists to protect.
+
+**Bucketization note:** archival bucketizes by instant type — ingestion 
commits and table-service commits (clean, compaction, clustering, rollback) are 
tracked separately with their own thresholds. `keep.min.commits` governs the 
ingestion bucket. The ~6-entries-per-commit figure behind the active-timeline 
math is the combined count across buckets, which is why the window can be sized 
off ingestion commits without the timeline overrunning.
+
+**Archival bucketization:** archival bucketizes by instant type. Two buckets: 
ingestion commits and table-service commits. Each has its own min/max 
threshold. 2x ratio holds because per-bucket accounting keeps combined active 
timeline bounded.
+
+## Compaction (MOR only)
+
+Derived from writer + experience.
+
+| Writer | Compaction mode |
+|---|---|
+| HoodieStreamer continuous | Async in-process, automatic. **No config 
emitted.** |
+| Spark Structured Streaming (writeStream sink) | Inline default; async via 
`hoodie.datasource.compaction.async.enable=true` if experienced. |
+| Spark DataSource | Inline default. Async requires standalone 
`HoodieCompactor` (advanced deployment). |
+| Spark SQL | Same as DataSource. |
+
+For inline:
+```
+hoodie.compact.inline=true
+hoodie.compact.inline.max.delta.commits=5
+hoodie.compact.inline.trigger.strategy=NUM_COMMITS
+```
+
+### Compaction target IO trap
+
+`hoodie.compaction.target.io` defaults to **500GB per round**. At TB-scale 
MOR, file groups accumulate uncompacted → log files grow forever → read latency 
degrades.
+
+If projected size ≥ 1TB with MOR → surface ADR flag: "Bump 
`hoodie.compaction.target.io` to 2-5TB."
+
+## Clustering
+
+Off by default. Fires only when user asks or when workload signals strongly 
suggest benefit.
+
+**When Architect surfaces clustering:**
+- Immutable + small-files posture (b) — clustering is on the path by choice.
+- MOR + async services + workload signals suggest fragmentation over time.
+
+**When enabled:**
+```
+hoodie.clustering.async.enabled=true
+hoodie.clustering.async.max.commits=5
+hoodie.clustering.plan.strategy.small.file.limit=300MB
+hoodie.clustering.plan.strategy.target.file.max.bytes=1GB
+hoodie.table.services.incremental.enabled=true  # 1.2.0 win
+```
+
+## Concurrency (writer count → mode → lock provider)
+
+Derived from the writer inventory (question-flow.md Q3.1), the derived table 
type, and the
+derived index. Nothing here is asked twice — mode and NBCC eligibility fall 
out of facts the
+flow already holds.
+
+**`hoodie.write.concurrency.mode` is not durable** — it can be changed on a 
running table.
+What *is* durable is the bucket count that makes NBCC possible at all (see → 
Index,
+"Two durability exceptions"). So NBCC eligibility is effectively decided at 
table creation
+even though the mode itself is switchable. Say that in the ADR rather than 
implying the mode
+is a one-way door.
+
+### Step 1 — mode
+
+A "writer" is any process that commits to the table. Table services count 
**only** when they
+run as their own job: inline services and async services running *in the same 
process as a
+writer* are not a second writer.
+
+| Writers | Table type + index | Mode | Why |
+|---|---|---|---|
+| 1, inline or in-process services | any | `SINGLE_WRITER` | Default. Maximum 
throughput, no lock overhead. |
+| 1 writer + async services **in the writer's process** | any | 
`SINGLE_WRITER` | Table services stay lock-free while they share a writer's 
process. |
+| 1 writer + **standalone** service job (e.g. `HoodieCompactor`) | any | 
**OCC** | Two processes commit → see warnings.md → 
`COMPACTOR_CONCURRENCY_REQUIRED`. |
+| ≥2 ingestion writers | anything other than MOR + BUCKET | **OCC** | NBCC is 
ineligible; OCC is the general answer. |
+| ≥2 ingestion writers | MOR + BUCKET, **already derived independently** | 
**NBCC** offered as default, OCC as the stated alternative | Writers append to 
their own log files; conflicts resolved by reader and compactor, no lock 
contention. |
+| ≥2 writers **and** clustering is wanted | any | **OCC** | NBCC does not 
support clustering. |
+
+**OCC is the default recommendation for multi-writer.** NBCC is surfaced only 
when the user
+asks for it by name, or when the workload has *already* landed on MOR + BUCKET 
for its own
+reasons. **Never steer table type or index toward NBCC** — a bucket count is 
durable and a
+concurrency mode is not, so trading a reversible decision for an irreversible 
one is backwards.
+
+### Step 2 — NBCC eligibility (hard gate, verified in source)
+
+`HoodieWriteConfig` validation requires **MOR table _and_ simple bucket 
index** (or the
+metadata table). `CommonClientUtils` additionally rejects NBCC on table 
version < 8.
+
+```
+nbcc_eligible = (table_type == MERGE_ON_READ)
+                and (index == BUCKET)          # engine SIMPLE — see note
+                and (table_version >= 8)       # 1.0+ tables
+                and (clustering not required)
+```
+
+`hoodie.index.bucket.engine` defaults to `SIMPLE`, and this rubric never 
recommends
+`CONSISTENT_HASHING` at design time (see → Index). So **whenever the flow 
derives BUCKET, the
+engine is SIMPLE** and the index half of the gate is satisfied. Do not ask a 
separate engine
+question to establish it.
+
+If the user asks for NBCC and the gate fails → warnings.md → 
`NBCC_INELIGIBLE`. Refuse the
+mode, not the session: emit OCC and record why.
+
+### Step 3 — lock provider (OCC; also NBCC where a lock is still wanted)
+
+Two axes decide this: **maturity first, then lock-identity safety.**
+
+**Maturity outranks convenience.** A lock provider is the thing standing 
between two writers and
+a silently corrupted table, so it is the wrong place to be an early adopter. 
Provider ages differ
+by years:
+
+| Provider | Available since | Production exposure |
+|---|---|---|
+| ZooKeeper, Hive Metastore, filesystem | 0.8.0 | Years |
+| DynamoDB | 0.10.0 | Years |
+| **Storage-based** | **1.0.2** | **Recent — see caution below** |
+
+**Prefer the implicit-identity variants.** Both DynamoDB and ZooKeeper ship 
two variants: one
+that derives the lock identity from `hoodie.base.path` (xxHash-64, with 
`s3a://` normalized to
+`s3://`), and one that reads it from operator-supplied config. The implicit 
variants make
+`LOCK_PROVIDER_MISMATCH` unrepresentable — same table means same base path 
means same lock —
+and they remove durable strings that would otherwise have to match by hand 
across every
+writing job.
+
+| Deployment | Provider class (emit verbatim) | Required keys |
+|---|---|---|
+| **AWS** — *default on AWS* | 
`org.apache.hudi.aws.transaction.lock.DynamoDBBasedImplicitPartitionKeyLockProvider`
 | `hoodie.write.lock.dynamodb.table`, `hoodie.write.lock.dynamodb.region` |
+| **Existing ZooKeeper quorum** | 
`org.apache.hudi.client.transaction.lock.ZookeeperBasedImplicitBasePathLockProvider`
 | `hoodie.write.lock.zookeeper.url`, `hoodie.write.lock.zookeeper.port` |
+| **Hive ecosystem** | 
`org.apache.hudi.hive.transaction.lock.HiveMetastoreBasedLockProvider` | 
`hoodie.write.lock.hivemetastore.database`, 
`hoodie.write.lock.hivemetastore.table` |
+| **Single process only** (multiple threads, one JVM) | 
`org.apache.hudi.core.transaction.lock.InProcessLockProvider` | none |
+| Cloud storage, no existing lock infrastructure | 
`org.apache.hudi.client.transaction.lock.StorageBasedLockProvider` | none 
beyond the matching cloud bundle — **read the caution below before 
recommending** |
+| **Local / testing only** | 
`org.apache.hudi.client.transaction.lock.FileSystemBasedLockProvider` | 
`hoodie.write.lock.filesystem.path` |
+
+**Selection order:**
+
+1. **On AWS → DynamoDB.** The default. Hudi creates the lock table 
automatically if absent, so
+   setup is modest: a table name, a region, and IAM permissions on it for 
every writing job.
+2. **Existing ZooKeeper quorum or Hive Metastore → use it.** No new 
dependency, and both are
+   long-standing providers.
+3. **Neither, and not on AWS (GCS / Azure / on-prem object storage) → ask, do 
not assume.**
+   Present storage-based with its maturity caution alongside the cost of 
standing up ZooKeeper,
+   and let the user decide. This is a genuine tradeoff, not a derivable answer.
+
+### Storage-based provider — maturity caution
+
+`StorageBasedLockProvider` arrived in **1.0.2** (2025). It is appealing — it 
locks under the
+table's own path, so there is no infrastructure to stand up and no lock 
identity to keep in
+sync — but it is years younger than every other provider here, and it is not a 
thin wrapper:
+it implements lease renewal with a heartbeat plus per-cloud lock clients. That 
is precisely
+the kind of code whose interesting failure modes show up under real 
contention, clock skew,
+and partial cloud outages rather than in tests.
+
+**Do not recommend it as the default.** Surface it when the user is on cloud 
storage with no
+existing lock infrastructure and would otherwise have to stand up ZooKeeper 
for one table —
+and when you do, say plainly that it is newer and less battle-tested than the 
alternatives, so
+the choice is theirs to make knowingly. If the user asks for it directly, emit 
it; note the
+maturity point once and record it in the ADR rather than arguing.
+
+Revisit as it accumulates production mileage — the zero-infrastructure story 
is genuinely the
+best of the options, and this caution is about age, not about a known defect.
+
+**Two provider notes worth stating before an operator asks:**
+
+- `InProcessLockProvider` moved package 
(`org.apache.hudi.client.transaction.lock` →
+  `org.apache.hudi.core.transaction.lock`). The old class is kept as a 
deprecated shim, and
+  published docs still cite it. Emit the `core` FQCN.
+- `ZookeeperBasedImplicitBasePathLockProvider` derives its ZK base path as 
`/tmp/<hash>`. That
+  is a **znode path, not a filesystem path** — it is not on any disk and is 
not tunable. Say so
+  in the ADR, because it reliably looks like a bug in config review, and 
"fixing" it by
+  switching to the explicit provider reintroduces the mismatch risk this table 
exists to avoid.
+
+**When to override to an explicit provider.** Only two real reasons:
+several tables that should intentionally share one lock, or an existing 
deployment whose lock
+identity you must match. Both are deliberate acts, not defaults. Choosing
+`ZookeeperBasedLockProvider` or `DynamoDBBasedLockProvider` adds
+`hoodie.write.lock.zookeeper.base_path` + 
`hoodie.write.lock.zookeeper.lock_key`, or
+`hoodie.write.lock.dynamodb.partition_key`, and those values must then match 
**exactly** in
+every writing job → warnings.md → `LOCK_PROVIDER_MISMATCH`.
+
+`FileSystemBasedLockProvider` is **not for production and is not supported on 
cloud storage**
+→ warnings.md → `FILESYSTEM_LOCK_UNSAFE`.
+
+### Step 4 — what not to emit
+
+Emitting these is at best noise and at worst a correctness bug:
+
+| Config | Why not |
+|---|---|
+| `hoodie.write.lock.conflict.resolution.strategy` | **Auto-infers** to the 
bucket-index strategy when index type is BUCKET, and to the simple strategy 
otherwise. Hand-setting it is how bucket-index conflict handling gets silently 
broken. |
+| `hoodie.write.concurrency.early.conflict.detection.enable` | Experimental 
(0.13.0), OCC-only, defaults false. Mention as an option for high-contention 
OCC; do not emit. |
+| `hoodie.write.num.retries.on.conflict.failures` | Defaults 0. A 
contention-tuning knob — Operations Agent territory, not design time. |
+
+`hoodie.clean.failed.writes.policy=LAZY` is the one exception: it is 
**auto-inferred** for any
+multi-writer mode, so emitting it is not strictly required, but emit it anyway 
with a comment
+saying so. It documents intent, and an explicitly-set `EAGER` is a hard config 
validation

Review Comment:
   🤖 Confirmed this trace against the source. `build(true)` runs 
`setDefaults()` before `validate()`, and `setDefaults()` → 
`autoAdjustConfigsForConcurrencyMode()` unconditionally does 
`setValue(FAILED_WRITES_CLEANER_POLICY, LAZY)` for any multi-writer mode 
(HoodieWriteConfig.java:3903-3911) — which overwrites an explicit EAGER via a 
plain `setProperty`. So by the time `validate()`'s `checkArgument(!EAGER)` runs 
(line 3925-3931), it only ever sees LAZY and the guard never trips. "Silently 
overridden to LAZY" is the accurate wording; the checkArgument effectively 
can't fire for the auto-adjusted policy.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to