Files
document-haness/docs/clean-architecture-backend-template/final/evidence/raw/messaging-schema-avro-c04.txt
T
DongHyeonkaandClaude Opus 5 b2963105a8 docs(keycloak-session-store): import the session-storage lab as a new project
The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.

Follows the import procedure in README.md.

  source/     the originating repository verbatim — 78 documents, 28 SVGs,
              8 manifests, plus .source-revision recording the commit
  final/      the SSOT
    document.md   729 lines written from the 29 experiment documents, not
                  concatenated: what was predicted, what was measured, and
                  where the measurement itself was wrong
    evidence/raw    125 outputs, flattened to <experiment>__<file> because
                    the originals collided (01-baseline.txt appeared three
                    times) and the audit only globs the top level
    evidence/meta   one per raw file; command and exitCode are null and the
                    README says why rather than inventing them
    evidence/browser  22 captures
    assets/       three diagrams through techviz
    .techviz/     their VizSpecs

A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.

Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.

verify-pipeline.py passes. audit-records.py reports no issues.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-04 22:51:59 +09:00

30 lines
5.2 KiB
Plaintext

./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroCompatibilityTest.java:21:import org.apache.avro.generic.GenericRecord;
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroCompatibilityTest.java:88: private static GenericRecord v1Record() {
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroCompatibilityTest.java:89: GenericRecord record = new GenericData.Record(V1_SCHEMA);
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroCompatibilityTest.java:102: GenericRecord decoded = codec.decode(ORDER_CREATED, V1, encoded.bytes(), GenericRecord.class);
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroCompatibilityTest.java:127: GenericRecord evolved = codec.decodeEvolved(ORDER_CREATED, V1, V2, encoded.bytes());
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroCompatibilityTest.java:154: GenericRecord wrongShape = new GenericData.Record(V2_SCHEMA);
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroRegistryBoundsTest.java:15:import org.apache.avro.generic.GenericRecord;
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroRegistryBoundsTest.java:96: GenericRecord large = record(V1_SCHEMA);
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroRegistryBoundsTest.java:131: private static GenericRecord record(Schema schema) {
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroRegistryBoundsTest.java:132: GenericRecord record = new GenericData.Record(schema);
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroHostileInputTest.java:15:import org.apache.avro.generic.GenericRecord;
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroHostileInputTest.java:79: assertThatThrownBy(() -> codec.decode(BASKET, V1, hostile, GenericRecord.class))
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroHostileInputTest.java:100: assertThatThrownBy(() -> codec.decode(BASKET, V1, zigzag(4_294_967_296L), GenericRecord.class))
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroHostileInputTest.java:109: GenericRecord basket = new GenericData.Record(V1_SCHEMA);
./messaging/messaging-schema-avro/src/test/java/dev/caskeleton/messaging/schema/avro/AvroHostileInputTest.java:113: GenericRecord decoded = codec.decode(BASKET, V1, encoded, GenericRecord.class);
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:22:import org.apache.avro.generic.GenericRecord;
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:109: if (!(payload instanceof GenericRecord record)) {
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:112: "the Avro codec encodes GenericRecord payloads, not "
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:127: DatumWriter<GenericRecord> writer = new GenericDatumWriter<>(schema);
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:153: if (!payloadType.isAssignableFrom(GenericRecord.class)
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:154: && !GenericRecord.class.isAssignableFrom(payloadType)) {
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:157: "the Avro codec decodes into GenericRecord, not " + payloadType.getSimpleName());
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:160: DatumReader<GenericRecord> reader = boundedReader(writerSchema, writerSchema);
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:196: public GenericRecord decodeEvolved(
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:206: DatumReader<GenericRecord> reader = boundedReader(writerSchema, readerSchema);
./messaging/messaging-schema-avro/src/main/java/dev/caskeleton/messaging/schema/avro/AvroMessageCodec.java:237: private DatumReader<GenericRecord> boundedReader(Schema writerSchema, Schema readerSchema) {
./adapter/outbound/messaging/src/test/java/dev/caskeleton/adapter/outbound/messaging/contract/ContractCatalogCompilerTest.java:340: void rejectsOpenRawWildcardMapJsonTreeInterfaceAndGenericRecordGraphs() {
./adapter/outbound/messaging/src/test/java/dev/caskeleton/adapter/outbound/messaging/contract/ContractCatalogCompilerTest.java:347: assertUnsupportedGraph(GenericRecordPayload.class, List.of("value"));
./adapter/outbound/messaging/src/test/java/dev/caskeleton/adapter/outbound/messaging/contract/ContractCatalogCompilerTest.java:561: private record GenericRecordPayload(GenericNested<String> value) implements IntegrationPayload {}