Associated Vulnerability
Title:Apache Flink 安全漏洞 (CVE-2020-17519)Description:Apache Flink是美国阿帕奇软件(Apache)基金会的一款开源的分布式流数据处理引擎。该产品主要使用Java和Scala语言编写。 Apache Flink 版本 1.11.0 至 版本1.11.2 存在安全漏洞,该漏洞允许攻击者通过JobManager进程的REST接口读取JobManager本地文件系统上的任何文件。
Readme
# Apache Flink
Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities.
Learn more about Flink at [https://flink.apache.org/](https://flink.apache.org/)
### Features
* A streaming-first runtime that supports both batch processing and data streaming programs
* Elegant and fluent APIs in Java and Scala
* A runtime that supports very high throughput and low event latency at the same time
* Support for *event time* and *out-of-order* processing in the DataStream API, based on the *Dataflow Model*
* Flexible windowing (time, count, sessions, custom triggers) across different time semantics (event time, processing time)
* Fault-tolerance with *exactly-once* processing guarantees
* Natural back-pressure in streaming programs
* Libraries for Graph processing (batch), Machine Learning (batch), and Complex Event Processing (streaming)
* Built-in support for iterative programs (BSP) in the DataSet (batch) API
* Custom memory management for efficient and robust switching between in-memory and out-of-core data processing algorithms
* Compatibility layers for Apache Hadoop MapReduce
* Integration with YARN, HDFS, HBase, and other components of the Apache Hadoop ecosystem
### Streaming Example
```scala
case class WordWithCount(word: String, count: Long)
val text = env.socketTextStream(host, port, '\n')
val windowCounts = text.flatMap { w => w.split("\\s") }
.map { w => WordWithCount(w, 1) }
.keyBy("word")
.timeWindow(Time.seconds(5))
.sum("count")
windowCounts.print()
```
### Batch Example
```scala
case class WordWithCount(word: String, count: Long)
val text = env.readTextFile(path)
val counts = text.flatMap { w => w.split("\\s") }
.map { w => WordWithCount(w, 1) }
.groupBy("word")
.sum("count")
counts.writeAsCsv(outputPath)
```
## Building Apache Flink from Source
Prerequisites for building Flink:
* Unix-like environment (we use Linux, Mac OS X, Cygwin, WSL)
* Git
* Maven (we recommend version 3.2.5 and require at least 3.1.1)
* Java 8 or 11 (Java 9 or 10 may work)
```
git clone https://github.com/apache/flink.git
cd flink
mvn clean package -DskipTests # this will take up to 10 minutes
```
Flink is now installed in `build-target`.
*NOTE: Maven 3.3.x can build Flink, but will not properly shade away certain dependencies. Maven 3.1.1 creates the libraries properly.
To build unit tests with Java 8, use Java 8u51 or above to prevent failures in unit tests that use the PowerMock runner.*
## Developing Flink
The Flink committers use IntelliJ IDEA to develop the Flink codebase.
We recommend IntelliJ IDEA for developing projects that involve Scala code.
Minimal requirements for an IDE are:
* Support for Java and Scala (also mixed projects)
* Support for Maven with Java and Scala
### IntelliJ IDEA
The IntelliJ IDE supports Maven out of the box and offers a plugin for Scala development.
* IntelliJ download: [https://www.jetbrains.com/idea/](https://www.jetbrains.com/idea/)
* IntelliJ Scala Plugin: [https://plugins.jetbrains.com/plugin/?id=1347](https://plugins.jetbrains.com/plugin/?id=1347)
Check out our [Setting up IntelliJ](https://ci.apache.org/projects/flink/flink-docs-master/flinkDev/ide_setup.html#intellij-idea) guide for details.
### Eclipse Scala IDE
**NOTE:** From our experience, this setup does not work with Flink
due to deficiencies of the old Eclipse version bundled with Scala IDE 3.0.3 or
due to version incompatibilities with the bundled Scala version in Scala IDE 4.4.1.
**We recommend to use IntelliJ instead (see above)**
## Support
Don’t hesitate to ask!
Contact the developers and community on the [mailing lists](https://flink.apache.org/community.html#mailing-lists) if you need any help.
[Open an issue](https://issues.apache.org/jira/browse/FLINK) if you found a bug in Flink.
## Documentation
The documentation of Apache Flink is located on the website: [https://flink.apache.org](https://flink.apache.org)
or in the `docs/` directory of the source code.
## Fork and Contribute
This is an active open-source project. We are always open to people who want to use the system or contribute to it.
Contact us if you are looking for implementation tasks that fit your skills.
This article describes [how to contribute to Apache Flink](https://flink.apache.org/contributing/how-to-contribute.html).
## About
Apache Flink is an open source project of The Apache Software Foundation (ASF).
The Apache Flink project originated from the [Stratosphere](http://stratosphere.eu) research project.
File Snapshot
[4.0K] /data/pocs/d30966ea2519642187dab7a9a9665ba4a8862212
├── [2.9K] azure-pipelines.yml
├── [4.0K] docs
│ ├── [1016] 404.md
│ ├── [3.5K] annotations.xml
│ ├── [3.4K] build_docs.sh
│ ├── [1.7K] check_links.sh
│ ├── [4.0K] concepts
│ │ ├── [ 13K] flink-architecture.md
│ │ ├── [ 13K] flink-architecture.zh.md
│ │ ├── [7.5K] glossary.md
│ │ ├── [7.3K] glossary.zh.md
│ │ ├── [4.7K] index.md
│ │ ├── [4.8K] index.zh.md
│ │ ├── [ 18K] stateful-stream-processing.md
│ │ ├── [ 16K] stateful-stream-processing.zh.md
│ │ ├── [ 10K] timely-stream-processing.md
│ │ └── [ 10K] timely-stream-processing.zh.md
│ ├── [ 895] _config_dev_en.yml
│ ├── [ 916] _config_dev_zh.yml
│ ├── [4.5K] _config.yml
│ ├── [4.0K] connectors
│ │ ├── [ 948] index.md
│ │ └── [ 948] index.zh.md
│ ├── [3.7K] cse.xml
│ ├── [4.0K] dev
│ │ ├── [5.4K] application_parameters.md
│ │ ├── [5.4K] application_parameters.zh.md
│ │ ├── [4.0K] batch
│ │ │ ├── [7.9K] connectors.md
│ │ │ ├── [7.9K] connectors.zh.md
│ │ │ ├── [ 62K] dataset_transformations.md
│ │ │ ├── [ 62K] dataset_transformations.zh.md
│ │ │ ├── [ 17K] examples.md
│ │ │ ├── [ 16K] examples.zh.md
│ │ │ ├── [9.6K] hadoop_compatibility.md
│ │ │ ├── [9.6K] hadoop_compatibility.zh.md
│ │ │ ├── [100K] index.md
│ │ │ ├── [100K] index.zh.md
│ │ │ ├── [ 12K] iterations.md
│ │ │ ├── [ 12K] iterations.zh.md
│ │ │ ├── [3.8K] zip_elements_guide.md
│ │ │ └── [3.8K] zip_elements_guide.zh.md
│ │ ├── [2.6K] cluster_execution.md
│ │ ├── [2.6K] cluster_execution.zh.md
│ │ ├── [4.0K] connectors
│ │ │ ├── [ 12K] cassandra.md
│ │ │ ├── [ 12K] cassandra.zh.md
│ │ │ ├── [ 19K] elasticsearch.md
│ │ │ ├── [ 19K] elasticsearch.zh.md
│ │ │ ├── [6.4K] filesystem_sink.md
│ │ │ ├── [6.0K] filesystem_sink.zh.md
│ │ │ ├── [4.3K] guarantees.md
│ │ │ ├── [4.1K] guarantees.zh.md
│ │ │ ├── [3.8K] index.md
│ │ │ ├── [3.7K] index.zh.md
│ │ │ ├── [2.5K] jdbc.md
│ │ │ ├── [2.5K] jdbc.zh.md
│ │ │ ├── [ 32K] kafka.md
│ │ │ ├── [ 38K] kafka.zh.md
│ │ │ ├── [ 27K] kinesis.md
│ │ │ ├── [ 27K] kinesis.zh.md
│ │ │ ├── [4.9K] nifi.md
│ │ │ ├── [4.8K] nifi.zh.md
│ │ │ ├── [7.7K] pubsub.md
│ │ │ ├── [7.1K] pubsub.zh.md
│ │ │ ├── [7.2K] rabbitmq.md
│ │ │ ├── [6.7K] rabbitmq.zh.md
│ │ │ ├── [ 31K] streamfile_sink.md
│ │ │ ├── [ 30K] streamfile_sink.zh.md
│ │ │ ├── [3.9K] twitter.md
│ │ │ └── [3.5K] twitter.zh.md
│ │ ├── [4.6K] custom_serializers.md
│ │ ├── [4.4K] custom_serializers.zh.md
│ │ ├── [ 35K] datastream_api.md
│ │ ├── [ 35K] datastream_api.zh.md
│ │ ├── [3.9K] event_time.md
│ │ ├── [3.9K] event_timestamp_extractors.md
│ │ ├── [5.0K] event_timestamp_extractors.zh.md
│ │ ├── [ 19K] event_timestamps_watermarks.md
│ │ ├── [ 15K] event_timestamps_watermarks.zh.md
│ │ ├── [5.8K] event_time.zh.md
│ │ ├── [7.3K] execution_configuration.md
│ │ ├── [7.3K] execution_configuration.zh.md
│ │ ├── [ 849] execution.md
│ │ ├── [2.6K] execution_plans.md
│ │ ├── [2.6K] execution_plans.zh.md
│ │ ├── [ 843] execution.zh.md
│ │ ├── [ 966] index.md
│ │ ├── [ 944] index.zh.md
│ │ ├── [5.4K] java_lambdas.md
│ │ ├── [5.2K] java_lambdas.zh.md
│ │ ├── [ 919] libraries.md
│ │ ├── [ 916] libraries.zh.md
│ │ ├── [4.0K] libs
│ │ │ ├── [ 69K] cep.md
│ │ │ ├── [ 65K] cep.zh.md
│ │ │ ├── [4.0K] gelly
│ │ │ │ ├── [7.8K] bipartite_graph.md
│ │ │ │ ├── [7.8K] bipartite_graph.zh.md
│ │ │ │ ├── [ 13K] graph_algorithms.md
│ │ │ │ ├── [ 13K] graph_algorithms.zh.md
│ │ │ │ ├── [ 33K] graph_api.md
│ │ │ │ ├── [ 33K] graph_api.zh.md
│ │ │ │ ├── [ 21K] graph_generators.md
│ │ │ │ ├── [ 21K] graph_generators.zh.md
│ │ │ │ ├── [6.1K] index.md
│ │ │ │ ├── [6.1K] index.zh.md
│ │ │ │ ├── [ 38K] iterative_graph_processing.md
│ │ │ │ ├── [ 38K] iterative_graph_processing.zh.md
│ │ │ │ ├── [ 24K] library_methods.md
│ │ │ │ └── [ 24K] library_methods.zh.md
│ │ │ ├── [ 23K] state_processor_api.md
│ │ │ └── [ 23K] state_processor_api.zh.md
│ │ ├── [6.2K] local_execution.md
│ │ ├── [6.2K] local_execution.zh.md
│ │ ├── [1.6K] migration.md
│ │ ├── [1.6K] migration.zh.md
│ │ ├── [2.7K] packaging.md
│ │ ├── [2.7K] packaging.zh.md
│ │ ├── [6.7K] parallel.md
│ │ ├── [6.5K] parallel.zh.md
│ │ ├── [ 25K] project-configuration.md
│ │ ├── [ 25K] project-configuration.zh.md
│ │ ├── [4.0K] python
│ │ │ ├── [4.8K] faq.md
│ │ │ ├── [4.7K] faq.zh.md
│ │ │ ├── [ 838] index.md
│ │ │ ├── [ 838] index.zh.md
│ │ │ ├── [1.6K] installation.md
│ │ │ ├── [1.6K] installation.zh.md
│ │ │ ├── [6.5K] table_api_tutorial.md
│ │ │ ├── [6.7K] table_api_tutorial.zh.md
│ │ │ └── [4.0K] table-api-users-guide
│ │ │ ├── [ 937] built_in_functions.md
│ │ │ ├── [ 937] built_in_functions.zh.md
│ │ │ ├── [3.3K] conversion_of_pandas.md
│ │ │ ├── [3.1K] conversion_of_pandas.zh.md
│ │ │ ├── [5.3K] dependency_management.md
│ │ │ ├── [5.3K] dependency_management.zh.md
│ │ │ ├── [2.2K] index.md
│ │ │ ├── [2.1K] index.zh.md
│ │ │ ├── [ 24K] intro_to_table_api.md
│ │ │ ├── [ 24K] intro_to_table_api.zh.md
│ │ │ ├── [6.6K] metrics.md
│ │ │ ├── [6.7K] metrics.zh.md
│ │ │ ├── [1.4K] python_config.md
│ │ │ ├── [1.4K] python_config.zh.md
│ │ │ ├── [3.1K] python_types.md
│ │ │ ├── [3.0K] python_types.zh.md
│ │ │ ├── [ 32K] table_environment.md
│ │ │ ├── [ 32K] table_environment.zh.md
│ │ │ └── [4.0K] udfs
│ │ │ ├── [ 866] index.md
│ │ │ ├── [ 859] index.zh.md
│ │ │ ├── [ 10K] python_udfs.md
│ │ │ ├── [ 11K] python_udfs.zh.md
│ │ │ ├── [3.9K] vectorized_python_udfs.md
│ │ │ └── [3.8K] vectorized_python_udfs.zh.md
│ │ ├── [9.9K] scala_api_extensions.md
│ │ ├── [9.9K] scala_api_extensions.zh.md
│ │ ├── [4.0K] stream
│ │ │ ├── [3.1K] experimental.md
│ │ │ ├── [3.1K] experimental.zh.md
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [ 13K] asyncio.md
│ │ │ │ ├── [ 12K] asyncio.zh.md
│ │ │ │ ├── [ 40K] index.md
│ │ │ │ ├── [ 40K] index.zh.md
│ │ │ │ ├── [ 12K] joining.md
│ │ │ │ ├── [ 12K] joining.zh.md
│ │ │ │ ├── [ 15K] process_function.md
│ │ │ │ ├── [ 15K] process_function.zh.md
│ │ │ │ ├── [ 57K] windows.md
│ │ │ │ └── [ 57K] windows.zh.md
│ │ │ ├── [4.7K] side_output.md
│ │ │ ├── [4.7K] side_output.zh.md
│ │ │ ├── [ 24K] sources.md
│ │ │ ├── [ 24K] sources.zh.md
│ │ │ ├── [4.0K] state
│ │ │ │ ├── [ 13K] broadcast_state.md
│ │ │ │ ├── [ 12K] broadcast_state.zh.md
│ │ │ │ ├── [ 11K] checkpointing.md
│ │ │ │ ├── [9.8K] checkpointing.zh.md
│ │ │ │ ├── [ 26K] custom_serialization.md
│ │ │ │ ├── [ 26K] custom_serialization.zh.md
│ │ │ │ ├── [2.0K] index.md
│ │ │ │ ├── [1.9K] index.zh.md
│ │ │ │ ├── [ 15K] queryable_state.md
│ │ │ │ ├── [ 14K] queryable_state.zh.md
│ │ │ │ ├── [6.0K] schema_evolution.md
│ │ │ │ ├── [5.6K] schema_evolution.zh.md
│ │ │ │ ├── [2.2K] state_backends.md
│ │ │ │ ├── [2.2K] state_backends.zh.md
│ │ │ │ ├── [ 34K] state.md
│ │ │ │ └── [ 31K] state.zh.md
│ │ │ ├── [ 20K] testing.md
│ │ │ └── [ 20K] testing.zh.md
│ │ ├── [4.0K] table
│ │ │ ├── [ 22K] catalogs.md
│ │ │ ├── [ 22K] catalogs.zh.md
│ │ │ ├── [ 70K] common.md
│ │ │ ├── [ 69K] common.zh.md
│ │ │ ├── [3.9K] config.md
│ │ │ ├── [3.7K] config.zh.md
│ │ │ ├── [102K] connect.md
│ │ │ ├── [4.0K] connectors
│ │ │ │ ├── [2.5K] blackhole.md
│ │ │ │ ├── [2.5K] blackhole.zh.md
│ │ │ │ ├── [4.8K] datagen.md
│ │ │ │ ├── [4.7K] datagen.zh.md
│ │ │ │ ├── [ 12K] elasticsearch.md
│ │ │ │ ├── [ 12K] elasticsearch.zh.md
│ │ │ │ ├── [ 18K] filesystem.md
│ │ │ │ ├── [ 18K] filesystem.zh.md
│ │ │ │ ├── [4.0K] formats
│ │ │ │ │ ├── [6.3K] avro.md
│ │ │ │ │ ├── [6.2K] avro.zh.md
│ │ │ │ │ ├── [6.7K] canal.md
│ │ │ │ │ ├── [6.6K] canal.zh.md
│ │ │ │ │ ├── [7.7K] csv.md
│ │ │ │ │ ├── [7.7K] csv.zh.md
│ │ │ │ │ ├── [8.9K] debezium.md
│ │ │ │ │ ├── [8.6K] debezium.zh.md
│ │ │ │ │ ├── [3.0K] index.md
│ │ │ │ │ ├── [3.1K] index.zh.md
│ │ │ │ │ ├── [6.2K] json.md
│ │ │ │ │ ├── [6.4K] json.zh.md
│ │ │ │ │ ├── [4.8K] orc.md
│ │ │ │ │ ├── [4.7K] orc.zh.md
│ │ │ │ │ ├── [5.3K] parquet.md
│ │ │ │ │ └── [5.3K] parquet.zh.md
│ │ │ │ ├── [ 10K] hbase.md
│ │ │ │ ├── [9.6K] hbase.zh.md
│ │ │ │ ├── [ 10K] index.md
│ │ │ │ ├── [ 10K] index.zh.md
│ │ │ │ ├── [ 23K] jdbc.md
│ │ │ │ ├── [ 23K] jdbc.zh.md
│ │ │ │ ├── [ 11K] kafka.md
│ │ │ │ ├── [ 11K] kafka.zh.md
│ │ │ │ ├── [4.1K] print.md
│ │ │ │ └── [4.1K] print.zh.md
│ │ │ ├── [102K] connect.zh.md
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [3.4K] index.md
│ │ │ │ ├── [3.2K] index.zh.md
│ │ │ │ ├── [158K] systemFunctions.md
│ │ │ │ ├── [162K] systemFunctions.zh.md
│ │ │ │ ├── [ 75K] udfs.md
│ │ │ │ └── [ 72K] udfs.zh.md
│ │ │ ├── [4.0K] hive
│ │ │ │ ├── [ 12K] hive_catalog.md
│ │ │ │ ├── [ 12K] hive_catalog.zh.md
│ │ │ │ ├── [ 10K] hive_dialect.md
│ │ │ │ ├── [ 10K] hive_dialect.zh.md
│ │ │ │ ├── [5.2K] hive_functions.md
│ │ │ │ ├── [5.3K] hive_functions.zh.md
│ │ │ │ ├── [7.3K] hive_read_write.md
│ │ │ │ ├── [7.3K] hive_read_write.zh.md
│ │ │ │ ├── [8.8K] hive_streaming.md
│ │ │ │ ├── [8.8K] hive_streaming.zh.md
│ │ │ │ ├── [ 13K] index.md
│ │ │ │ └── [ 13K] index.zh.md
│ │ │ ├── [8.2K] index.md
│ │ │ ├── [7.6K] index.zh.md
│ │ │ ├── [ 34K] legacySourceSinks.md
│ │ │ ├── [ 35K] legacySourceSinks.zh.md
│ │ │ ├── [3.9K] modules.md
│ │ │ ├── [3.9K] modules.zh.md
│ │ │ ├── [ 30K] sourceSinks.md
│ │ │ ├── [ 30K] sourceSinks.zh.md
│ │ │ ├── [4.0K] sql
│ │ │ │ ├── [5.8K] alter.md
│ │ │ │ ├── [5.8K] alter.zh.md
│ │ │ │ ├── [ 19K] create.md
│ │ │ │ ├── [ 18K] create.zh.md
│ │ │ │ ├── [7.5K] describe.md
│ │ │ │ ├── [7.4K] describe.zh.md
│ │ │ │ ├── [5.5K] drop.md
│ │ │ │ ├── [5.4K] drop.zh.md
│ │ │ │ ├── [6.0K] explain.md
│ │ │ │ ├── [6.0K] explain.zh.md
│ │ │ │ ├── [3.5K] hints.md
│ │ │ │ ├── [3.5K] hints.zh.md
│ │ │ │ ├── [8.2K] index.md
│ │ │ │ ├── [8.2K] index.zh.md
│ │ │ │ ├── [9.6K] insert.md
│ │ │ │ ├── [9.2K] insert.zh.md
│ │ │ │ ├── [ 55K] queries.md
│ │ │ │ ├── [ 53K] queries.zh.md
│ │ │ │ ├── [6.4K] show.md
│ │ │ │ ├── [6.4K] show.zh.md
│ │ │ │ ├── [5.1K] use.md
│ │ │ │ └── [5.0K] use.zh.md
│ │ │ ├── [ 36K] sqlClient.md
│ │ │ ├── [ 33K] sqlClient.zh.md
│ │ │ ├── [4.0K] streaming
│ │ │ │ ├── [ 14K] dynamic_tables.md
│ │ │ │ ├── [ 12K] dynamic_tables.zh.md
│ │ │ │ ├── [2.3K] index.md
│ │ │ │ ├── [2.0K] index.zh.md
│ │ │ │ ├── [ 16K] joins.md
│ │ │ │ ├── [ 16K] joins.zh.md
│ │ │ │ ├── [ 40K] match_recognize.md
│ │ │ │ ├── [ 37K] match_recognize.zh.md
│ │ │ │ ├── [7.6K] query_configuration.md
│ │ │ │ ├── [7.6K] query_configuration.zh.md
│ │ │ │ ├── [ 12K] temporal_tables.md
│ │ │ │ ├── [ 11K] temporal_tables.zh.md
│ │ │ │ ├── [ 17K] time_attributes.md
│ │ │ │ └── [ 16K] time_attributes.zh.md
│ │ │ ├── [149K] tableApi.md
│ │ │ ├── [149K] tableApi.zh.md
│ │ │ ├── [4.0K] tuning
│ │ │ │ ├── [ 898] index.md
│ │ │ │ ├── [ 898] index.zh.md
│ │ │ │ ├── [ 14K] streaming_aggregation_optimization.md
│ │ │ │ └── [ 13K] streaming_aggregation_optimization.zh.md
│ │ │ ├── [ 61K] types.md
│ │ │ └── [ 58K] types.zh.md
│ │ ├── [9.4K] task_failure_recovery.md
│ │ ├── [8.9K] task_failure_recovery.zh.md
│ │ ├── [ 24K] types_serialization.md
│ │ ├── [ 23K] types_serialization.zh.md
│ │ ├── [8.4K] user_defined_functions.md
│ │ └── [8.4K] user_defined_functions.zh.md
│ ├── [4.0K] docker
│ │ ├── [1012] Dockerfile
│ │ └── [1.9K] run.sh
│ ├── [4.0K] downloads
│ │ └── [1.8K] setup-pyflink-virtual-env.sh
│ ├── [4.0K] fig
│ │ ├── [ 49K] application-my-app-state-processor-api.png
│ │ ├── [ 22K] async_io.svg
│ │ ├── [ 54K] back_pressure_sampling_high.png
│ │ ├── [ 53K] back_pressure_sampling_in_progress.png
│ │ ├── [ 58K] back_pressure_sampling_ok.png
│ │ ├── [ 17K] back_pressure_sampling.png
│ │ ├── [ 48K] bipartite_graph_projections.png
│ │ ├── [172K] bounded-unbounded.png
│ │ ├── [163K] checkpointing.svg
│ │ ├── [109K] checkpoint_monitoring-details.png
│ │ ├── [ 57K] checkpoint_monitoring-details_subtasks.png
│ │ ├── [ 36K] checkpoint_monitoring-details_summary.png
│ │ ├── [ 82K] checkpoint_monitoring-history.png
│ │ ├── [ 43K] checkpoint_monitoring-summary.png
│ │ ├── [ 52K] checkpoints.svg
│ │ ├── [ 28K] checkpoint_tuning.svg
│ │ ├── [ 11K] click-event-count-example.svg
│ │ ├── [ 38K] ClientJmTm.svg
│ │ ├── [4.1K] connected-streams.svg
│ │ ├── [ 49K] database-my-app-state-processor-api.png
│ │ ├── [144K] detailed-mem-model.svg
│ │ ├── [ 40K] distributed-runtime.svg
│ │ ├── [ 34K] event_processing_time.svg
│ │ ├── [217K] flink-application-sources-sinks.png
│ │ ├── [ 12K] flink-docker-playground.svg
│ │ ├── [ 25K] FlinkOnK8s.svg
│ │ ├── [ 14K] FlinkOnYarn.svg
│ │ ├── [ 64K] fraud-transactions.svg
│ │ ├── [ 18K] gelly-example-graph.png
│ │ ├── [ 56K] gelly-filter.png
│ │ ├── [ 30K] gelly-gsa-sssp1.png
│ │ ├── [ 23K] gelly-reduceOnEdges.png
│ │ ├── [ 34K] gelly-reduceOnNeighbors.png
│ │ ├── [ 49K] gelly-union.png
│ │ ├── [ 28K] gelly-vc-sssp1.png
│ │ ├── [9.8K] interval-join.svg
│ │ ├── [327K] iterations_delta_iterate_operator_example.png
│ │ ├── [111K] iterations_delta_iterate_operator.png
│ │ ├── [101K] iterations_iterate_operator_example.png
│ │ ├── [ 62K] iterations_iterate_operator.png
│ │ ├── [ 53K] iterations_supersteps.png
│ │ ├── [ 56K] job_and_execution_graph.svg
│ │ ├── [ 57K] jobmanager_ha_overview.png
│ │ ├── [ 56K] job_status.svg
│ │ ├── [ 19K] keyBy.png
│ │ ├── [8.2K] levels_of_abstraction.svg
│ │ ├── [ 805] LICENSE.txt
│ │ ├── [416K] local_recovery.png
│ │ ├── [169K] local-state.png
│ │ ├── [ 23K] non-windowed.svg
│ │ ├── [255K] overview-stack-0.9.png
│ │ ├── [126K] parallel_dataflow.svg
│ │ ├── [ 57K] parallel-job.png
│ │ ├── [ 49K] parallel_kafka_watermarks.svg
│ │ ├── [ 32K] parallel_streams_watermarks.svg
│ │ ├── [8.7K] per_split_watermarks.svg
│ │ ├── [137K] plan_visualizer.png
│ │ ├── [ 36K] playground-webui-failure.png
│ │ ├── [ 18K] playground-webui.png
│ │ ├── [ 76K] processes.svg
│ │ ├── [ 46K] process_mem_model.svg
│ │ ├── [ 76K] process_model.svg
│ │ ├── [ 28K] program_dataflow.svg
│ │ ├── [ 40K] projects_dependencies.svg
│ │ ├── [ 22K] rescale.svg
│ │ ├── [7.7K] session-window-join.svg
│ │ ├── [ 71K] session-windows.svg
│ │ ├── [ 51K] simple_mem_model.svg
│ │ ├── [7.4K] sliding-window-join.svg
│ │ ├── [ 47K] sliding-windows.svg
│ │ ├── [163K] slot_sharing.svg
│ │ ├── [968K] slots_parallelism.svg
│ │ ├── [ 37K] slots.svg
│ │ ├── [ 21K] source_components.svg
│ │ ├── [ 11K] source_reader.svg
│ │ ├── [265K] spend-report-console.png
│ │ ├── [203K] spend-report-grafana.png
│ │ ├── [903K] sql_client_demo.gif
│ │ ├── [ 39K] ssl_internal_external.svg
│ │ ├── [ 35K] stack.png
│ │ ├── [ 61K] stack.svg
│ │ ├── [ 47K] state_machine.svg
│ │ ├── [ 38K] state_partitioning.svg
│ │ ├── [ 32K] stream_aligning.svg
│ │ ├── [ 15K] stream_barriers.svg
│ │ ├── [ 98K] streamfilesink_bucketing.png
│ │ ├── [ 32K] stream_unaligning.svg
│ │ ├── [ 16K] stream_watermark_in_order.svg
│ │ ├── [ 16K] stream_watermark_out_of_order.svg
│ │ ├── [ 94K] table_connectors.svg
│ │ ├── [4.0K] table-streaming
│ │ │ ├── [121K] append-mode.png
│ │ │ ├── [352K] distinct_split.png
│ │ │ ├── [453K] local_agg.png
│ │ │ ├── [ 80K] minibatch_agg.png
│ │ │ ├── [307K] query-groupBy-cnt.png
│ │ │ ├── [195K] query-groupBy-window-cnt.png
│ │ │ ├── [ 90K] redo-mode.png
│ │ │ ├── [ 97K] stream-query-stream.png
│ │ │ └── [ 79K] undo-redo-mode.png
│ │ ├── [103K] tasks_chains.svg
│ │ ├── [ 68K] tasks_slots.svg
│ │ ├── [3.3K] transformation.svg
│ │ ├── [8.4K] tumbling-window-join.svg
│ │ ├── [ 44K] tumbling-windows.svg
│ │ ├── [197K] udagg-mechanism.png
│ │ ├── [147K] udtagg-mechanism.png
│ │ ├── [ 78K] vertex-centric supersteps.png
│ │ ├── [ 29K] window-assigners.svg
│ │ └── [ 17K] windows.svg
│ ├── [4.0K] flinkDev
│ │ ├── [6.0K] building.md
│ │ ├── [5.8K] building.zh.md
│ │ ├── [8.5K] ide_setup.md
│ │ ├── [8.5K] ide_setup.zh.md
│ │ ├── [ 961] index.md
│ │ └── [ 951] index.zh.md
│ ├── [1.3K] Gemfile
│ ├── [2.2K] Gemfile.lock
│ ├── [4.0K] _includes
│ │ ├── [4.0K] generated
│ │ │ ├── [8.2K] akka_configuration.html
│ │ │ ├── [1.5K] algorithm_configuration.html
│ │ │ ├── [3.6K] all_jobmanager_section.html
│ │ │ ├── [6.4K] all_taskmanager_network_section.html
│ │ │ ├── [5.3K] all_taskmanager_section.html
│ │ │ ├── [2.9K] blob_server_configuration.html
│ │ │ ├── [4.3K] checkpointing_configuration.html
│ │ │ ├── [ 945] client_configuration.html
│ │ │ ├── [3.1K] cluster_configuration.html
│ │ │ ├── [1.3K] common_high_availability_section.html
│ │ │ ├── [ 946] common_high_availability_zk_section.html
│ │ │ ├── [4.5K] common_host_port_section.html
│ │ │ ├── [ 13K] common_memory_section.html
│ │ │ ├── [1.4K] common_miscellaneous_section.html
│ │ │ ├── [3.1K] common_state_backends_section.html
│ │ │ ├── [4.8K] core_configuration.html
│ │ │ ├── [1.6K] deployment_configuration.html
│ │ │ ├── [1.3K] deprecated_file_sinks_section.html
│ │ │ ├── [3.1K] environment_configuration.html
│ │ │ ├── [5.2K] execution_checkpointing_configuration.html
│ │ │ ├── [8.7K] execution_config_configuration.html
│ │ │ ├── [1.3K] execution_configuration.html
│ │ │ ├── [2.6K] expert_class_loading_section.html
│ │ │ ├── [ 891] expert_cluster_section.html
│ │ │ ├── [3.3K] expert_fault_tolerance_section.html
│ │ │ ├── [1000] expert_high_availability_section.html
│ │ │ ├── [3.8K] expert_high_availability_zk_section.html
│ │ │ ├── [2.9K] expert_rest_section.html
│ │ │ ├── [2.0K] expert_rocksdb_section.html
│ │ │ ├── [1.8K] expert_scheduling_section.html
│ │ │ ├── [3.1K] expert_security_ssl_section.html
│ │ │ ├── [1.6K] expert_state_backends_section.html
│ │ │ ├── [2.1K] external_resource_configuration.html
│ │ │ ├── [1.6K] failure_rate_restart_strategy_configuration.html
│ │ │ ├── [1.7K] file_system_configuration.html
│ │ │ ├── [1.4K] fixed_delay_restart_strategy_configuration.html
│ │ │ ├── [ 885] heartbeat_manager_configuration.html
│ │ │ ├── [5.9K] high_availability_configuration.html
│ │ │ ├── [4.4K] high_availability_zookeeper_configuration.html
│ │ │ ├── [2.8K] history_server_configuration.html
│ │ │ ├── [2.4K] influxdb_reporter_configuration.html
│ │ │ ├── [9.5K] job_manager_configuration.html
│ │ │ ├── [1.5K] kerberos_configuration.html
│ │ │ ├── [9.4K] kubernetes_config_configuration.html
│ │ │ ├── [3.9K] mesos_configuration.html
│ │ │ ├── [4.2K] mesos_task_manager_configuration.html
│ │ │ ├── [6.9K] metric_configuration.html
│ │ │ ├── [7.3K] netty_shuffle_environment_configuration.html
│ │ │ ├── [2.4K] network_netty_configuration.html
│ │ │ ├── [4.3K] optimizer_config_configuration.html
│ │ │ ├── [1.7K] optimizer_configuration.html
│ │ │ ├── [8.2K] pipeline_configuration.html
│ │ │ ├── [2.5K] prometheus_push_gateway_reporter_configuration.html
│ │ │ ├── [7.1K] python_configuration.html
│ │ │ ├── [2.8K] queryable_state_configuration.html
│ │ │ ├── [2.5K] resource_manager_configuration.html
│ │ │ ├── [1.5K] restart_strategy_configuration.html
│ │ │ ├── [4.0K] rest_configuration.html
│ │ │ ├── [124K] rest_v1_dispatcher.html
│ │ │ ├── [4.7K] rocks_db_configurable_configuration.html
│ │ │ ├── [4.4K] rocks_db_configuration.html
│ │ │ ├── [7.9K] rocks_db_native_metric_configuration.html
│ │ │ ├── [1017] savepoint_config_configuration.html
│ │ │ ├── [1.5K] security_auth_kerberos_section.html
│ │ │ ├── [ 974] security_auth_zk_section.html
│ │ │ ├── [ 12K] security_configuration.html
│ │ │ ├── [6.1K] security_ssl_section.html
│ │ │ ├── [ 866] shuffle_service_configuration.html
│ │ │ ├── [2.7K] state_backend_rocksdb_section.html
│ │ │ ├── [1023] stream_pipeline_configuration.html
│ │ │ ├── [1.3K] table_config_configuration.html
│ │ │ ├── [5.1K] task_manager_configuration.html
│ │ │ ├── [8.9K] task_manager_memory_configuration.html
│ │ │ ├── [3.7K] web_configuration.html
│ │ │ ├── [9.8K] yarn_config_configuration.html
│ │ │ └── [ 974] zoo_keeper_configuration.html
│ │ ├── [1.3K] latex_commands.html
│ │ └── [7.6K] sidenav.html
│ ├── [3.9K] index.md
│ ├── [3.7K] index.zh.md
│ ├── [4.0K] internals
│ │ ├── [7.0K] filesystems.md
│ │ ├── [7.0K] filesystems.zh.md
│ │ ├── [ 924] index.md
│ │ ├── [ 918] index.zh.md
│ │ ├── [6.9K] job_scheduling.md
│ │ ├── [6.5K] job_scheduling.zh.md
│ │ ├── [ 13K] task_lifecycle.md
│ │ └── [ 13K] task_lifecycle.zh.md
│ ├── [4.0K] _layouts
│ │ ├── [1.2K] 404_base.html
│ │ ├── [5.4K] base.html
│ │ ├── [2.7K] plain.html
│ │ └── [1.5K] redirect.html
│ ├── [4.0K] learn-flink
│ │ ├── [8.3K] datastream_api.md
│ │ ├── [7.9K] datastream_api.zh.md
│ │ ├── [ 21K] etl.md
│ │ ├── [ 19K] etl.zh.md
│ │ ├── [ 12K] event_driven.md
│ │ ├── [ 12K] event_driven.zh.md
│ │ ├── [9.0K] fault_tolerance.md
│ │ ├── [8.5K] fault_tolerance.zh.md
│ │ ├── [9.4K] index.md
│ │ ├── [9.2K] index.zh.md
│ │ ├── [ 19K] streaming_analytics.md
│ │ └── [ 19K] streaming_analytics.zh.md
│ ├── [4.0K] monitoring
│ │ ├── [4.0K] application_profiling.md
│ │ ├── [4.0K] application_profiling.zh.md
│ │ ├── [3.8K] back_pressure.md
│ │ ├── [3.5K] back_pressure.zh.md
│ │ ├── [6.8K] checkpoint_monitoring.md
│ │ ├── [6.7K] checkpoint_monitoring.zh.md
│ │ ├── [ 11K] debugging_classloading.md
│ │ ├── [ 11K] debugging_classloading.zh.md
│ │ ├── [2.4K] debugging_event_time.md
│ │ ├── [2.4K] debugging_event_time.zh.md
│ │ ├── [4.1K] historyserver.md
│ │ ├── [4.1K] historyserver.zh.md
│ │ ├── [ 953] index.md
│ │ ├── [ 937] index.zh.md
│ │ ├── [5.4K] logging.md
│ │ ├── [5.4K] logging.zh.md
│ │ ├── [ 64K] metrics.md
│ │ ├── [ 63K] metrics.zh.md
│ │ ├── [ 846] README.md
│ │ ├── [3.5K] rest_api.md
│ │ └── [3.5K] rest_api.zh.md
│ ├── [4.0K] ops
│ │ ├── [ 33K] cli.md
│ │ ├── [ 33K] cli.zh.md
│ │ ├── [ 19K] config.md
│ │ ├── [ 19K] config.zh.md
│ │ ├── [4.0K] deployment
│ │ │ ├── [5.9K] cluster_setup.md
│ │ │ ├── [5.9K] cluster_setup.zh.md
│ │ │ ├── [ 22K] docker.md
│ │ │ ├── [ 22K] docker.zh.md
│ │ │ ├── [5.0K] hadoop.md
│ │ │ ├── [5.0K] hadoop.zh.md
│ │ │ ├── [ 12K] index.md
│ │ │ ├── [ 12K] index.zh.md
│ │ │ ├── [ 19K] kubernetes.md
│ │ │ ├── [ 19K] kubernetes.zh.md
│ │ │ ├── [5.7K] local.md
│ │ │ ├── [5.7K] local.zh.md
│ │ │ ├── [ 11K] mesos.md
│ │ │ ├── [ 11K] mesos.zh.md
│ │ │ ├── [ 13K] native_kubernetes.md
│ │ │ ├── [ 12K] native_kubernetes.zh.md
│ │ │ ├── [ 19K] yarn_setup.md
│ │ │ └── [ 19K] yarn_setup.zh.md
│ │ ├── [ 19K] external_resources.md
│ │ ├── [ 18K] external_resources.zh.md
│ │ ├── [4.0K] filesystems
│ │ │ ├── [3.6K] azure.md
│ │ │ ├── [3.4K] azure.zh.md
│ │ │ ├── [3.2K] common.md
│ │ │ ├── [3.0K] common.zh.md
│ │ │ ├── [7.4K] index.md
│ │ │ ├── [6.8K] index.zh.md
│ │ │ ├── [3.5K] oss.md
│ │ │ ├── [3.4K] oss.zh.md
│ │ │ ├── [8.5K] s3.md
│ │ │ └── [7.6K] s3.zh.md
│ │ ├── [ 950] index.md
│ │ ├── [ 934] index.zh.md
│ │ ├── [ 13K] jobmanager_high_availability.md
│ │ ├── [ 13K] jobmanager_high_availability.zh.md
│ │ ├── [4.0K] memory
│ │ │ ├── [ 852] index.md
│ │ │ ├── [ 844] index.zh.md
│ │ │ ├── [ 19K] mem_migration.md
│ │ │ ├── [ 19K] mem_migration.zh.md
│ │ │ ├── [8.8K] mem_setup_jobmanager.md
│ │ │ ├── [8.4K] mem_setup_jobmanager.zh.md
│ │ │ ├── [ 11K] mem_setup.md
│ │ │ ├── [ 16K] mem_setup_tm.md
│ │ │ ├── [ 16K] mem_setup_tm.zh.md
│ │ │ ├── [ 11K] mem_setup.zh.md
│ │ │ ├── [4.5K] mem_trouble.md
│ │ │ ├── [4.2K] mem_trouble.zh.md
│ │ │ ├── [5.1K] mem_tuning.md
│ │ │ └── [5.1K] mem_tuning.zh.md
│ │ ├── [5.3K] plugins.md
│ │ ├── [5.3K] plugins.zh.md
│ │ ├── [4.8K] production_ready.md
│ │ ├── [4.8K] production_ready.zh.md
│ │ ├── [6.9K] python_shell.md
│ │ ├── [6.7K] python_shell.zh.md
│ │ ├── [10.0K] scala_shell.md
│ │ ├── [10.0K] scala_shell.zh.md
│ │ ├── [6.5K] security-kerberos.md
│ │ ├── [6.5K] security-kerberos.zh.md
│ │ ├── [ 16K] security-ssl.md
│ │ ├── [ 16K] security-ssl.zh.md
│ │ ├── [4.0K] state
│ │ │ ├── [7.0K] checkpoints.md
│ │ │ ├── [4.1K] checkpoints.zh.md
│ │ │ ├── [ 857] index.md
│ │ │ ├── [ 849] index.zh.md
│ │ │ ├── [ 21K] large_state_tuning.md
│ │ │ ├── [ 21K] large_state_tuning.zh.md
│ │ │ ├── [ 13K] savepoints.md
│ │ │ ├── [ 12K] savepoints.zh.md
│ │ │ ├── [ 22K] state_backends.md
│ │ │ └── [ 21K] state_backends.zh.md
│ │ ├── [ 24K] upgrading.md
│ │ └── [ 24K] upgrading.zh.md
│ ├── [4.0K] page
│ │ ├── [4.0K] css
│ │ │ ├── [2.1K] codetabs.css
│ │ │ ├── [5.5K] flink.css
│ │ │ └── [4.4K] syntax.css
│ │ ├── [1.1K] favicon.ico
│ │ ├── [4.0K] font-awesome
│ │ │ ├── [4.0K] css
│ │ │ │ ├── [ 34K] font-awesome.css
│ │ │ │ └── [ 28K] font-awesome.min.css
│ │ │ └── [4.0K] fonts
│ │ │ ├── [122K] FontAwesome.otf
│ │ │ ├── [ 75K] fontawesome-webfont.eot
│ │ │ ├── [382K] fontawesome-webfont.svg
│ │ │ ├── [149K] fontawesome-webfont.ttf
│ │ │ ├── [ 88K] fontawesome-webfont.woff
│ │ │ └── [ 70K] fontawesome-webfont.woff2
│ │ ├── [4.0K] img
│ │ │ ├── [ 805] LICENSE.txt
│ │ │ ├── [ 18K] navbar-brand-logo.jpg
│ │ │ ├── [ 82K] quickstart_cluster.png
│ │ │ ├── [4.0K] quickstart-example
│ │ │ │ ├── [281K] jobmanager-job.png
│ │ │ │ └── [245K] jobmanager-overview.png
│ │ │ └── [4.0K] quickstart-setup
│ │ │ ├── [149K] jobmanager-1.png
│ │ │ ├── [159K] jobmanager-2.png
│ │ │ └── [175K] jobmanager-3.png
│ │ └── [4.0K] js
│ │ ├── [6.4K] flink.js
│ │ └── [ 87K] jquery.min.js
│ ├── [4.0K] _plugins
│ │ ├── [1.0K] build_time.rb
│ │ ├── [1.8K] gh_link.rb
│ │ ├── [1.4K] include_without_header.rb
│ │ ├── [1.1K] info.rb
│ │ ├── [1.1K] panel.rb
│ │ ├── [2.7K] removeDuplicateLicenseHeaders.rb
│ │ ├── [1.1K] top.rb
│ │ └── [1.3K] warn.rb
│ ├── [5.8K] README.md
│ ├── [4.0K] redirects
│ │ ├── [ 877] als.md
│ │ ├── [ 882] aws.md
│ │ ├── [ 916] back_pressure.md
│ │ ├── [ 886] basic_api_concepts2.md
│ │ ├── [ 887] basic_api_concepts.md
│ │ ├── [ 899] batch_fault_tolerance.md
│ │ ├── [ 890] batch_fault_tolerance.zh.md
│ │ ├── [ 872] best_practices.md
│ │ ├── [ 891] building.md
│ │ ├── [ 912] cassandra.md
│ │ ├── [ 872] cep.md
│ │ ├── [ 852] cli.md
│ │ ├── [ 894] cluster_execution.md
│ │ ├── [ 873] concepts.md
│ │ ├── [ 879] connectors.md
│ │ ├── [ 884] contribution_guide.md
│ │ ├── [ 881] cross_validation.md
│ │ ├── [ 886] datastream_api.md
│ │ ├── [ 921] datastream-walkthrough.md
│ │ ├── [ 925] dependencies.md
│ │ ├── [ 881] distance_metrics.md
│ │ ├── [ 915] elasticsearch2_2.md
│ │ ├── [ 926] elasticsearch2.md
│ │ ├── [ 924] elasticsearch.md
│ │ ├── [ 883] event_time.md
│ │ ├── [ 958] event_timestamp_extractors.md
│ │ ├── [ 941] event_timestamps_watermarks.md
│ │ ├── [ 933] example_quickstart.md
│ │ ├── [ 885] examples_index.md
│ │ ├── [ 891] examples.md
│ │ ├── [ 909] fault_tolerance.md
│ │ ├── [ 925] filesystem_sink.md
│ │ ├── [ 881] filesystems.md
│ │ ├── [ 875] flinkml_quickstart.md
│ │ ├── [ 951] flink-operations-playground.md
│ │ ├── [ 889] gce_setup.md
│ │ ├── [ 880] gelly.md
│ │ ├── [ 946] getting-started-dependencies.md
│ │ ├── [ 873] getting-started.md
│ │ ├── [ 898] ide_setup.md
│ │ ├── [ 920] java-quickstart.md
│ │ ├── [ 925] java_quickstart.md
│ │ ├── [ 900] kafka.md
│ │ ├── [ 906] kinesis.md
│ │ ├── [ 876] knn.md
│ │ ├── [ 904] linking_with_flink.md
│ │ ├── [ 904] linking_with_optional_modules.md
│ │ ├── [ 888] local_execution.md
│ │ ├── [ 911] local_setup_tutorial.md
│ │ ├── [ 873] mapr.md
│ │ ├── [ 871] metrics.md
│ │ ├── [ 876] min_max_scaler.md
│ │ ├── [ 858] ml.md
│ │ ├── [ 901] multiple_linear_regression.md
│ │ ├── [ 873] optimization.md
│ │ ├── [ 906] oss.md
│ │ ├── [ 893] pipelines.md
│ │ ├── [ 887] polynomial_features.md
│ │ ├── [ 887] programming_guide.md
│ │ ├── [ 952] projectsetup_dependencies.md
│ │ ├── [ 938] projectsetup_dependencies.zh.md
│ │ ├── [ 944] projectsetup_java_api_quickstart.md
│ │ ├── [ 936] projectsetup_java_api_quickstart.zh.md
│ │ ├── [ 947] projectsetup_scala_api_quickstart.md
│ │ ├── [ 939] projectsetup_scala_api_quickstart.zh.md
│ │ ├── [ 879] python_shell.md
│ │ ├── [ 923] python_table_tutorial.md
│ │ ├── [ 927] python_table_walkthrough.md
│ │ ├── [ 901] rest_api.md
│ │ ├── [ 899] restart_strategies.md
│ │ ├── [ 899] restart_strategies.zh.md
│ │ ├── [ 889] savepoints.md
│ │ ├── [ 903] scala_api_extensions.md
│ │ ├── [ 921] scala-quickstart.md
│ │ ├── [ 916] scala_quickstart.md
│ │ ├── [ 876] scala_shell.md
│ │ ├── [ 901] setup_quickstart.md
│ │ ├── [ 880] sos.md
│ │ ├── [ 867] sql.md
│ │ ├── [ 879] standard_scaler.md
│ │ ├── [ 901] state_backends.md
│ │ ├── [ 894] state.md
│ │ ├── [ 888] streaming_guide.md
│ │ ├── [ 867] svm.md
│ │ ├── [ 871] table_api.md
│ │ ├── [ 868] table.md
│ │ ├── [ 906] table-walkthrough.md
│ │ ├── [ 880] training.md
│ │ ├── [ 917] tutorials_flink_on_windows.md
│ │ ├── [ 902] tutorials_local_setup.md
│ │ ├── [ 860] tutorials_overview.md
│ │ ├── [ 919] types_serialization.md
│ │ ├── [ 920] windows_local_setup.md
│ │ └── [ 922] windows.md
│ ├── [4.0K] release-notes
│ │ ├── [ 26K] flink-1.10.md
│ │ ├── [ 26K] flink-1.10.zh.md
│ │ ├── [ 25K] flink-1.11.md
│ │ ├── [ 25K] flink-1.11.zh.md
│ │ ├── [5.4K] flink-1.5.md
│ │ ├── [5.4K] flink-1.5.zh.md
│ │ ├── [2.2K] flink-1.6.md
│ │ ├── [2.2K] flink-1.6.zh.md
│ │ ├── [7.7K] flink-1.7.md
│ │ ├── [7.7K] flink-1.7.zh.md
│ │ ├── [ 10K] flink-1.8.md
│ │ ├── [ 10K] flink-1.8.zh.md
│ │ ├── [ 14K] flink-1.9.md
│ │ └── [ 14K] flink-1.9.zh.md
│ ├── [1.2K] search-results.md
│ └── [4.0K] try-flink
│ ├── [ 35K] datastream_api.md
│ ├── [ 35K] datastream_api.zh.md
│ ├── [ 28K] flink-operations-playground.md
│ ├── [ 28K] flink-operations-playground.zh.md
│ ├── [ 948] index.md
│ ├── [ 947] index.zh.md
│ ├── [2.9K] local_installation.md
│ ├── [2.9K] local_installation.zh.md
│ ├── [1.0K] python_table_api.md
│ ├── [1.0K] python_table_api.zh.md
│ ├── [ 13K] table_api.md
│ └── [ 13K] table_api.zh.md
├── [4.0K] flink-annotations
│ ├── [1.3K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] main
│ └── [4.0K] java
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ └── [4.0K] annotation
│ ├── [4.0K] docs
│ │ ├── [1.2K] ConfigGroup.java
│ │ ├── [1.6K] ConfigGroups.java
│ │ └── [5.4K] Documentation.java
│ ├── [1.4K] Experimental.java
│ ├── [1.2K] Internal.java
│ ├── [1.5K] PublicEvolving.java
│ ├── [1.4K] Public.java
│ └── [1.5K] VisibleForTesting.java
├── [4.0K] flink-clients
│ ├── [5.9K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] client
│ │ │ ├── [4.0K] cli
│ │ │ │ ├── [4.6K] AbstractCustomCommandLine.java
│ │ │ │ ├── [1.7K] ApplicationDeployer.java
│ │ │ │ ├── [1.8K] CancelOptions.java
│ │ │ │ ├── [1.2K] CliArgsException.java
│ │ │ │ ├── [1.8K] ClientOptions.java
│ │ │ │ ├── [ 39K] CliFrontend.java
│ │ │ │ ├── [ 21K] CliFrontendParser.java
│ │ │ │ ├── [1.3K] CommandLineOptions.java
│ │ │ │ ├── [2.4K] CustomCommandLine.java
│ │ │ │ ├── [1.5K] DefaultCLI.java
│ │ │ │ ├── [3.4K] ExecutionConfigAccessor.java
│ │ │ │ ├── [5.7K] GenericCLI.java
│ │ │ │ ├── [1.7K] ListOptions.java
│ │ │ │ ├── [6.1K] ProgramOptions.java
│ │ │ │ ├── [3.7K] ProgramOptionsUtils.java
│ │ │ │ ├── [1.8K] SavepointOptions.java
│ │ │ │ └── [1.9K] StopOptions.java
│ │ │ ├── [5.5K] ClientUtils.java
│ │ │ ├── [4.0K] deployment
│ │ │ │ ├── [2.5K] AbstractContainerizedClusterClientFactory.java
│ │ │ │ ├── [4.0K] application
│ │ │ │ │ ├── [4.4K] ApplicationClusterEntryPoint.java
│ │ │ │ │ ├── [2.9K] ApplicationConfiguration.java
│ │ │ │ │ ├── [ 11K] ApplicationDispatcherBootstrap.java
│ │ │ │ │ ├── [4.0K] ApplicationDispatcherGatewayServiceFactory.java
│ │ │ │ │ ├── [3.3K] ApplicationDispatcherLeaderProcessFactoryFactory.java
│ │ │ │ │ ├── [1.4K] ApplicationExecutionException.java
│ │ │ │ │ ├── [2.0K] ApplicationRunner.java
│ │ │ │ │ ├── [8.7K] ClassPathPackagedProgramRetriever.java
│ │ │ │ │ ├── [4.0K] cli
│ │ │ │ │ │ └── [2.8K] ApplicationClusterDeployer.java
│ │ │ │ │ ├── [3.6K] DetachedApplicationRunner.java
│ │ │ │ │ ├── [5.0K] EmbeddedJobClient.java
│ │ │ │ │ ├── [4.0K] executors
│ │ │ │ │ │ ├── [3.2K] EmbeddedExecutorFactory.java
│ │ │ │ │ │ ├── [5.6K] EmbeddedExecutor.java
│ │ │ │ │ │ ├── [2.9K] EmbeddedExecutorServiceLoader.java
│ │ │ │ │ │ ├── [1.4K] EmbeddedJobClientCreator.java
│ │ │ │ │ │ ├── [2.8K] WebSubmissionExecutorFactory.java
│ │ │ │ │ │ └── [2.6K] WebSubmissionExecutorServiceLoader.java
│ │ │ │ │ ├── [4.6K] JarManifestParser.java
│ │ │ │ │ ├── [3.9K] JobStatusPollingUtils.java
│ │ │ │ │ └── [3.0K] WebSubmissionJobClient.java
│ │ │ │ ├── [2.6K] ClusterClientFactory.java
│ │ │ │ ├── [5.0K] ClusterClientJobClientAdapter.java
│ │ │ │ ├── [1.5K] ClusterClientServiceLoader.java
│ │ │ │ ├── [1.3K] ClusterDeploymentException.java
│ │ │ │ ├── [3.9K] ClusterDescriptor.java
│ │ │ │ ├── [1.3K] ClusterRetrieveException.java
│ │ │ │ ├── [2.6K] ClusterSpecification.java
│ │ │ │ ├── [3.1K] DefaultClusterClientServiceLoader.java
│ │ │ │ ├── [4.0K] executors
│ │ │ │ │ ├── [3.4K] AbstractJobClusterExecutor.java
│ │ │ │ │ ├── [3.2K] AbstractSessionClusterExecutor.java
│ │ │ │ │ ├── [1.7K] LocalExecutorFactory.java
│ │ │ │ │ ├── [4.0K] LocalExecutor.java
│ │ │ │ │ ├── [2.7K] PipelineExecutorUtils.java
│ │ │ │ │ ├── [1.6K] RemoteExecutorFactory.java
│ │ │ │ │ └── [1.4K] RemoteExecutor.java
│ │ │ │ ├── [2.1K] StandaloneClientFactory.java
│ │ │ │ ├── [3.2K] StandaloneClusterDescriptor.java
│ │ │ │ └── [1.1K] StandaloneClusterId.java
│ │ │ ├── [3.1K] FlinkPipelineTranslationUtil.java
│ │ │ ├── [1.6K] FlinkPipelineTranslator.java
│ │ │ ├── [3.4K] PlanTranslator.java
│ │ │ ├── [4.0K] program
│ │ │ │ ├── [6.6K] ClusterClient.java
│ │ │ │ ├── [1.2K] ClusterClientProvider.java
│ │ │ │ ├── [5.7K] ContextEnvironment.java
│ │ │ │ ├── [5.9K] MiniClusterClient.java
│ │ │ │ ├── [1.9K] OptimizerPlanEnvironment.java
│ │ │ │ ├── [ 19K] PackagedProgram.java
│ │ │ │ ├── [1.3K] PackagedProgramRetriever.java
│ │ │ │ ├── [8.5K] PackagedProgramUtils.java
│ │ │ │ ├── [7.4K] PerJobMiniClusterFactory.java
│ │ │ │ ├── [1.1K] ProgramAbortException.java
│ │ │ │ ├── [2.8K] ProgramInvocationException.java
│ │ │ │ ├── [1.2K] ProgramMissingJobException.java
│ │ │ │ ├── [1.4K] ProgramParametrizationException.java
│ │ │ │ ├── [4.0K] rest
│ │ │ │ │ ├── [3.1K] RestClusterClientConfiguration.java
│ │ │ │ │ ├── [ 29K] RestClusterClient.java
│ │ │ │ │ └── [4.0K] retry
│ │ │ │ │ ├── [1.8K] ExponentialWaitStrategy.java
│ │ │ │ │ └── [1.3K] WaitStrategy.java
│ │ │ │ ├── [5.9K] StreamContextEnvironment.java
│ │ │ │ └── [2.1K] StreamPlanEnvironment.java
│ │ │ └── [2.3K] StreamGraphTranslator.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ ├── [ 840] org.apache.flink.client.deployment.ClusterClientFactory
│ │ └── [ 914] org.apache.flink.core.execution.PipelineExecutorFactory
│ └── [4.0K] test
│ ├── [4.0K] assembly
│ │ ├── [1.2K] test-assembly-test-user-classloader-job-jar.xml
│ │ ├── [1.2K] test-assembly-test-user-classloader-job-lib-jar.xml
│ │ └── [1.2K] test-assembly.xml
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] client
│ │ ├── [4.0K] cli
│ │ │ ├── [1.8K] ClientOptionsTest.java
│ │ │ ├── [5.2K] CliFrontendCancelTest.java
│ │ │ ├── [3.3K] CliFrontendInfoTest.java
│ │ │ ├── [4.0K] CliFrontendListTest.java
│ │ │ ├── [ 13K] CliFrontendPackageProgramTest.java
│ │ │ ├── [7.9K] CliFrontendRunTest.java
│ │ │ ├── [9.8K] CliFrontendSavepointTest.java
│ │ │ ├── [8.3K] CliFrontendStopWithSavepointTest.java
│ │ │ ├── [1.3K] CliFrontendTestBase.java
│ │ │ ├── [3.2K] CliFrontendTestUtils.java
│ │ │ ├── [4.4K] DefaultCLITest.java
│ │ │ ├── [4.8K] GenericCLITest.java
│ │ │ └── [4.0K] util
│ │ │ ├── [2.3K] DummyClusterClientFactory.java
│ │ │ ├── [1.7K] DummyClusterClientServiceLoader.java
│ │ │ ├── [2.5K] DummyClusterDescriptor.java
│ │ │ ├── [1.8K] DummyCustomCommandLine.java
│ │ │ └── [1.4K] MockedCliFrontend.java
│ │ ├── [4.0K] deployment
│ │ │ ├── [4.0K] application
│ │ │ │ ├── [ 23K] ApplicationDispatcherBootstrapTest.java
│ │ │ │ ├── [ 15K] ClassPathPackagedProgramRetrieverTest.java
│ │ │ │ ├── [5.7K] JarManifestParserTest.java
│ │ │ │ └── [5.6K] JobStatusPollingUtilsTest.java
│ │ │ └── [5.3K] ClusterClientServiceLoaderTest.java
│ │ ├── [2.3K] ExecutionEnvironmentTest.java
│ │ ├── [4.0K] program
│ │ │ ├── [ 16K] ClientTest.java
│ │ │ ├── [3.5K] ExecutionPlanAfterExecutionTest.java
│ │ │ ├── [4.0K] ExecutionPlanCreationTest.java
│ │ │ ├── [2.7K] OptimizerPlanEnvironmentTest.java
│ │ │ ├── [2.7K] PackagedProgramTest.java
│ │ │ ├── [6.4K] PackagedProgramUtilsPipelineTest.java
│ │ │ ├── [2.3K] PackagedProgramUtilsTest.java
│ │ │ ├── [6.4K] PerJobMiniClusterFactoryTest.java
│ │ │ ├── [4.0K] rest
│ │ │ │ ├── [1.9K] RestClusterClientConfigurationTest.java
│ │ │ │ ├── [ 13K] RestClusterClientSavepointTriggerTest.java
│ │ │ │ ├── [ 35K] RestClusterClientTest.java
│ │ │ │ ├── [4.0K] retry
│ │ │ │ │ └── [2.9K] ExponentialWaitStrategyTest.java
│ │ │ │ └── [2.8K] TestRestServerEndpoint.java
│ │ │ └── [5.3K] TestingClusterClient.java
│ │ └── [4.0K] testjar
│ │ ├── [1.2K] JobWithExternalDependency.java
│ │ ├── [1.6K] MultiExecuteJob.java
│ │ ├── [1.4K] TestJobInfo.java
│ │ ├── [2.5K] TestJob.java
│ │ ├── [1.9K] TestUserClassLoaderJob.java
│ │ └── [1.0K] TestUserClassLoaderJobLib.java
│ └── [4.0K] resources
│ ├── [4.0K] invalidtestconfig
│ │ └── [1.1K] flink-conf.yaml
│ ├── [1.3K] log4j2-test.properties
│ ├── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ └── [1.1K] org.apache.flink.client.deployment.ClusterClientFactory
│ ├── [4.0K] testconfig
│ │ └── [1.1K] flink-conf.yaml
│ ├── [4.0K] testconfigwithinvalidyarn
│ │ └── [1.1K] flink-conf.yaml
│ └── [4.0K] testconfigwithyarn
│ └── [1.1K] flink-conf.yaml
├── [4.0K] flink-connectors
│ ├── [4.0K] flink-connector-base
│ │ ├── [2.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] connector
│ │ │ └── [4.0K] base
│ │ │ └── [4.0K] source
│ │ │ ├── [4.0K] event
│ │ │ │ └── [1.3K] NoMoreSplitsEvent.java
│ │ │ └── [4.0K] reader
│ │ │ ├── [4.0K] fetcher
│ │ │ │ ├── [2.4K] AddSplitsTask.java
│ │ │ │ ├── [3.7K] FetchTask.java
│ │ │ │ ├── [2.1K] SingleThreadFetcherManager.java
│ │ │ │ ├── [ 11K] SplitFetcher.java
│ │ │ │ ├── [7.0K] SplitFetcherManager.java
│ │ │ │ └── [1.5K] SplitFetcherTask.java
│ │ │ ├── [1.9K] RecordEmitter.java
│ │ │ ├── [3.1K] RecordsBySplits.java
│ │ │ ├── [1.4K] RecordsWithSplitIds.java
│ │ │ ├── [2.3K] SingleThreadMultiplexSourceReaderBase.java
│ │ │ ├── [9.6K] SourceReaderBase.java
│ │ │ ├── [1.9K] SourceReaderOptions.java
│ │ │ ├── [4.0K] splitreader
│ │ │ │ ├── [2.3K] SplitReader.java
│ │ │ │ ├── [1.1K] SplitsAddition.java
│ │ │ │ └── [1.2K] SplitsChange.java
│ │ │ ├── [2.9K] SplitsRecordIterator.java
│ │ │ └── [4.0K] synchronization
│ │ │ ├── [2.6K] FutureCompletingBlockingQueue.java
│ │ │ └── [2.4K] FutureNotifier.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] connector
│ │ │ └── [4.0K] base
│ │ │ └── [4.0K] source
│ │ │ └── [4.0K] reader
│ │ │ ├── [3.5K] CoordinatedSourceITCase.java
│ │ │ ├── [4.0K] fetcher
│ │ │ │ └── [3.9K] SplitFetcherTest.java
│ │ │ ├── [4.0K] mocks
│ │ │ │ ├── [5.2K] MockBaseSource.java
│ │ │ │ ├── [1.5K] MockRecordEmitter.java
│ │ │ │ ├── [2.5K] MockSourceReader.java
│ │ │ │ ├── [2.8K] MockSplitEnumerator.java
│ │ │ │ └── [3.9K] MockSplitReader.java
│ │ │ ├── [4.9K] SourceReaderBaseTest.java
│ │ │ ├── [7.6K] SourceReaderTestBase.java
│ │ │ └── [4.0K] synchronization
│ │ │ └── [4.1K] FutureNotifierTest.java
│ │ └── [4.0K] resources
│ │ └── [1.2K] log4j2-test.properties
│ ├── [4.0K] flink-connector-cassandra
│ │ ├── [7.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ └── [4.0K] connectors
│ │ │ │ │ └── [4.0K] cassandra
│ │ │ │ │ ├── [3.3K] CassandraInputFormatBase.java
│ │ │ │ │ ├── [2.1K] CassandraInputFormat.java
│ │ │ │ │ ├── [4.5K] CassandraOutputFormatBase.java
│ │ │ │ │ ├── [1.4K] CassandraOutputFormat.java
│ │ │ │ │ ├── [2.6K] CassandraPojoInputFormat.java
│ │ │ │ │ ├── [4.7K] CassandraPojoOutputFormat.java
│ │ │ │ │ ├── [1.4K] CassandraRowOutputFormat.java
│ │ │ │ │ └── [1.5K] CassandraTupleOutputFormat.java
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] cassandra
│ │ │ │ ├── [2.3K] AbstractCassandraTupleSink.java
│ │ │ │ ├── [3.8K] CassandraAppendTableSink.java
│ │ │ │ ├── [5.0K] CassandraCommitter.java
│ │ │ │ ├── [2.2K] CassandraFailureHandler.java
│ │ │ │ ├── [3.9K] CassandraPojoSink.java
│ │ │ │ ├── [1.9K] CassandraRowSink.java
│ │ │ │ ├── [5.3K] CassandraRowWriteAheadSink.java
│ │ │ │ ├── [1.9K] CassandraScalaProductSink.java
│ │ │ │ ├── [4.2K] CassandraSinkBaseConfig.java
│ │ │ │ ├── [5.4K] CassandraSinkBase.java
│ │ │ │ ├── [ 20K] CassandraSink.java
│ │ │ │ ├── [1.9K] CassandraTupleSink.java
│ │ │ │ ├── [5.3K] CassandraTupleWriteAheadSink.java
│ │ │ │ ├── [1.5K] ClusterBuilder.java
│ │ │ │ ├── [1.3K] MapperOptions.java
│ │ │ │ └── [1.3K] NoOpCassandraFailureHandler.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 684] NOTICE
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] batch
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] cassandra
│ │ │ │ ├── [2.0K] CustomCassandraAnnotatedPojo.java
│ │ │ │ └── [4.0K] example
│ │ │ │ ├── [3.2K] BatchExample.java
│ │ │ │ └── [3.4K] BatchPojoExample.java
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] cassandra
│ │ │ ├── [ 24K] CassandraConnectorITCase.java
│ │ │ ├── [ 15K] CassandraSinkBaseTest.java
│ │ │ ├── [4.6K] CassandraTupleWriteAheadSinkTest.java
│ │ │ ├── [4.0K] example
│ │ │ │ ├── [2.5K] CassandraPojoSinkExample.java
│ │ │ │ ├── [2.5K] CassandraTupleSinkExample.java
│ │ │ │ ├── [4.0K] CassandraTupleWriteAheadSinkExample.java
│ │ │ │ └── [1.7K] Message.java
│ │ │ ├── [1.8K] Pojo.java
│ │ │ ├── [1.8K] PojoNoAnnotatedKeyspace.java
│ │ │ └── [3.0K] ResultSetFutures.java
│ │ └── [4.0K] resources
│ │ ├── [1.6K] cassandra.yaml
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-elasticsearch5
│ │ ├── [9.9K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] elasticsearch5
│ │ │ │ ├── [4.9K] Elasticsearch5ApiCallBridge.java
│ │ │ │ └── [4.8K] ElasticsearchSink.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [1.6K] LICENSE.base64
│ │ │ │ ├── [7.0K] LICENSE.hdrhistogram
│ │ │ │ ├── [1.1K] LICENSE.joptsimple
│ │ │ │ ├── [1.6K] LICENSE.jsr166y
│ │ │ │ ├── [1.4K] LICENSE.jzlib
│ │ │ │ └── [1.6K] LICENSE.webbit
│ │ │ └── [3.9K] NOTICE
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ ├── [4.0K] elasticsearch
│ │ │ │ └── [2.7K] EmbeddedElasticsearchNodeEnvironmentImpl.java
│ │ │ └── [4.0K] elasticsearch5
│ │ │ └── [3.7K] ElasticsearchSinkITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-elasticsearch6
│ │ ├── [5.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ ├── [4.0K] elasticsearch
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [2.7K] Elasticsearch6Configuration.java
│ │ │ │ │ ├── [6.7K] Elasticsearch6DynamicSinkFactory.java
│ │ │ │ │ └── [8.1K] Elasticsearch6DynamicSink.java
│ │ │ │ └── [4.0K] elasticsearch6
│ │ │ │ ├── [4.8K] Elasticsearch6ApiCallBridge.java
│ │ │ │ ├── [2.8K] Elasticsearch6BulkProcessorIndexer.java
│ │ │ │ ├── [2.7K] Elasticsearch6UpsertTableSinkFactory.java
│ │ │ │ ├── [9.1K] Elasticsearch6UpsertTableSink.java
│ │ │ │ ├── [8.6K] ElasticsearchSink.java
│ │ │ │ └── [1.4K] RestClientFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 873] org.apache.flink.table.factories.Factory
│ │ │ └── [ 872] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ ├── [4.0K] elasticsearch
│ │ │ │ ├── [2.5K] EmbeddedElasticsearchNodeEnvironmentImpl.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [7.3K] Elasticsearch6DynamicSinkFactoryTest.java
│ │ │ │ ├── [ 11K] Elasticsearch6DynamicSinkITCase.java
│ │ │ │ └── [8.6K] Elasticsearch6DynamicSinkTest.java
│ │ │ └── [4.0K] elasticsearch6
│ │ │ ├── [8.0K] Elasticsearch6UpsertTableSinkFactoryTest.java
│ │ │ └── [3.4K] ElasticsearchSinkITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-elasticsearch7
│ │ ├── [5.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ ├── [4.0K] elasticsearch
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [2.5K] Elasticsearch7Configuration.java
│ │ │ │ │ ├── [6.5K] Elasticsearch7DynamicSinkFactory.java
│ │ │ │ │ └── [8.1K] Elasticsearch7DynamicSink.java
│ │ │ │ └── [4.0K] elasticsearch7
│ │ │ │ ├── [4.9K] Elasticsearch7ApiCallBridge.java
│ │ │ │ ├── [2.8K] Elasticsearch7BulkProcessorIndexer.java
│ │ │ │ ├── [2.7K] Elasticsearch7UpsertTableSinkFactory.java
│ │ │ │ ├── [9.1K] Elasticsearch7UpsertTableSink.java
│ │ │ │ ├── [9.0K] ElasticsearchSink.java
│ │ │ │ └── [1.4K] RestClientFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 873] org.apache.flink.table.factories.Factory
│ │ │ └── [ 872] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ ├── [4.0K] elasticsearch
│ │ │ │ ├── [2.5K] EmbeddedElasticsearchNodeEnvironmentImpl.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [6.9K] Elasticsearch7DynamicSinkFactoryTest.java
│ │ │ │ ├── [ 11K] Elasticsearch7DynamicSinkITCase.java
│ │ │ │ └── [8.6K] Elasticsearch7DynamicSinkTest.java
│ │ │ └── [4.0K] elasticsearch7
│ │ │ ├── [7.9K] Elasticsearch7UpsertTableSinkFactoryTest.java
│ │ │ └── [3.4K] ElasticsearchSinkITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-elasticsearch-base
│ │ ├── [5.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] elasticsearch
│ │ │ │ ├── [3.4K] ActionRequestFailureHandler.java
│ │ │ │ ├── [2.4K] BufferingNoOpRequestIndexer.java
│ │ │ │ ├── [4.3K] ElasticsearchApiCallBridge.java
│ │ │ │ ├── [ 18K] ElasticsearchSinkBase.java
│ │ │ │ ├── [2.7K] ElasticsearchSinkFunction.java
│ │ │ │ ├── [ 17K] ElasticsearchUpsertTableSinkBase.java
│ │ │ │ ├── [ 16K] ElasticsearchUpsertTableSinkFactoryBase.java
│ │ │ │ ├── [4.0K] index
│ │ │ │ │ ├── [1.4K] AbstractTimeIndexGenerator.java
│ │ │ │ │ ├── [1.5K] IndexGeneratorBase.java
│ │ │ │ │ ├── [ 11K] IndexGeneratorFactory.java
│ │ │ │ │ ├── [1.3K] IndexGenerator.java
│ │ │ │ │ └── [1.1K] StaticIndexGenerator.java
│ │ │ │ ├── [2.9K] PreElasticsearch6BulkProcessorIndexer.java
│ │ │ │ ├── [2.8K] RequestIndexer.java
│ │ │ │ ├── [4.0K] table
│ │ │ │ │ ├── [1.4K] AbstractTimeIndexGenerator.java
│ │ │ │ │ ├── [5.8K] ElasticsearchConfiguration.java
│ │ │ │ │ ├── [5.5K] ElasticsearchOptions.java
│ │ │ │ │ ├── [3.5K] ElasticsearchValidationUtils.java
│ │ │ │ │ ├── [1.5K] IndexGeneratorBase.java
│ │ │ │ │ ├── [ 10K] IndexGeneratorFactory.java
│ │ │ │ │ ├── [1.4K] IndexGenerator.java
│ │ │ │ │ ├── [4.1K] KeyExtractor.java
│ │ │ │ │ ├── [2.3K] RequestFactory.java
│ │ │ │ │ ├── [4.8K] RowElasticsearchSinkFunction.java
│ │ │ │ │ └── [1.2K] StaticIndexGenerator.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [1.8K] ElasticsearchUtils.java
│ │ │ │ ├── [1.5K] IgnoringFailureHandler.java
│ │ │ │ ├── [1.7K] NoOpFailureHandler.java
│ │ │ │ └── [2.0K] RetryRejectedExecutionFailureHandler.java
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] descriptors
│ │ │ ├── [ 12K] Elasticsearch.java
│ │ │ └── [8.5K] ElasticsearchValidator.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] elasticsearch
│ │ │ │ ├── [ 22K] ElasticsearchSinkBaseTest.java
│ │ │ │ ├── [7.0K] ElasticsearchSinkTestBase.java
│ │ │ │ ├── [8.4K] ElasticsearchUpsertTableSinkFactoryTestBase.java
│ │ │ │ ├── [2.2K] EmbeddedElasticsearchNodeEnvironment.java
│ │ │ │ ├── [4.0K] index
│ │ │ │ │ └── [8.5K] IndexGeneratorTest.java
│ │ │ │ ├── [4.0K] table
│ │ │ │ │ ├── [7.7K] IndexGeneratorFactoryTest.java
│ │ │ │ │ ├── [4.3K] KeyExtractorTest.java
│ │ │ │ │ └── [2.2K] TestContext.java
│ │ │ │ └── [4.0K] testutils
│ │ │ │ ├── [4.0K] ElasticsearchResource.java
│ │ │ │ └── [5.2K] SourceSinkDataTestKit.java
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] descriptors
│ │ │ └── [6.0K] ElasticsearchTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-filesystem
│ │ ├── [5.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] fs
│ │ │ ├── [ 11K] AvroKeyValueSinkWriter.java
│ │ │ ├── [4.0K] bucketing
│ │ │ │ ├── [1.3K] BasePathBucketer.java
│ │ │ │ ├── [2.0K] Bucketer.java
│ │ │ │ ├── [ 48K] BucketingSink.java
│ │ │ │ └── [4.4K] DateTimeBucketer.java
│ │ │ ├── [1.1K] Clock.java
│ │ │ ├── [5.3K] SequenceFileWriter.java
│ │ │ ├── [2.7K] StreamWriterBase.java
│ │ │ ├── [3.6K] StringWriter.java
│ │ │ ├── [1.1K] SystemClock.java
│ │ │ └── [2.5K] Writer.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] fs
│ │ │ ├── [2.1K] AvroKeyValueSinkWriterTest.java
│ │ │ ├── [4.0K] bucketing
│ │ │ │ ├── [9.6K] BucketingSinkFaultToleranceITCase.java
│ │ │ │ ├── [2.8K] BucketingSinkFsInitTest.java
│ │ │ │ ├── [ 11K] BucketingSinkMigrationTest.java
│ │ │ │ ├── [ 34K] BucketingSinkTest.java
│ │ │ │ ├── [2.8K] BucketingSinkTestUtils.java
│ │ │ │ └── [1.9K] DateTimeBucketerTest.java
│ │ │ ├── [1.5K] SequenceFileWriterTest.java
│ │ │ ├── [2.4K] StreamWriterBaseComparator.java
│ │ │ └── [4.0K] StringWriterTest.java
│ │ └── [4.0K] resources
│ │ ├── [1.6K] bucketing-sink-migration-test-flink1.10-snapshot
│ │ ├── [1.6K] bucketing-sink-migration-test-flink1.11-snapshot
│ │ ├── [1.8K] bucketing-sink-migration-test-flink1.3-snapshot
│ │ ├── [1.8K] bucketing-sink-migration-test-flink1.4-snapshot
│ │ ├── [1.6K] bucketing-sink-migration-test-flink1.5-snapshot
│ │ ├── [1.7K] bucketing-sink-migration-test-flink1.6-snapshot
│ │ ├── [1.9K] bucketing-sink-migration-test-flink1.7-snapshot
│ │ ├── [1.6K] bucketing-sink-migration-test-flink1.8-snapshot
│ │ ├── [1.6K] bucketing-sink-migration-test-flink1.9-snapshot
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-gcp-pubsub
│ │ ├── [2.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] gcp
│ │ │ └── [4.0K] pubsub
│ │ │ ├── [4.7K] BlockingGrpcPubSubSubscriber.java
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [1.8K] AcknowledgeIdsForCheckpoint.java
│ │ │ │ ├── [4.9K] AcknowledgeOnCheckpoint.java
│ │ │ │ ├── [1020] Acknowledger.java
│ │ │ │ ├── [3.1K] PubSubDeserializationSchema.java
│ │ │ │ ├── [1.5K] PubSubSubscriberFactory.java
│ │ │ │ └── [1.3K] PubSubSubscriber.java
│ │ │ ├── [2.8K] DefaultPubSubSubscriberFactory.java
│ │ │ ├── [2.2K] DeserializationSchemaWrapper.java
│ │ │ ├── [ 11K] PubSubSink.java
│ │ │ ├── [ 14K] PubSubSource.java
│ │ │ └── [2.9K] PubSubSubscriberFactoryForEmulator.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] gcp
│ │ │ └── [4.0K] pubsub
│ │ │ ├── [4.0K] common
│ │ │ │ └── [5.9K] AcknowledgeOnCheckpointTest.java
│ │ │ ├── [3.4K] DeserializationSchemaWrapperTest.java
│ │ │ ├── [8.0K] PubSubConsumingTest.java
│ │ │ └── [5.9K] PubSubSourceTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-connector-hbase
│ │ ├── [ 11K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] addons
│ │ │ │ │ └── [4.0K] hbase
│ │ │ │ │ └── [1.4K] TableInputFormat.java
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ └── [4.0K] hbase
│ │ │ │ │ ├── [8.6K] HBaseDynamicTableFactory.java
│ │ │ │ │ ├── [9.4K] HBaseTableFactory.java
│ │ │ │ │ ├── [4.0K] options
│ │ │ │ │ │ ├── [3.4K] HBaseOptions.java
│ │ │ │ │ │ └── [4.2K] HBaseWriteOptions.java
│ │ │ │ │ ├── [4.0K] sink
│ │ │ │ │ │ ├── [3.7K] HBaseDynamicTableSink.java
│ │ │ │ │ │ ├── [1.5K] HBaseMutationConverter.java
│ │ │ │ │ │ ├── [8.8K] HBaseSinkFunction.java
│ │ │ │ │ │ ├── [4.9K] HBaseUpsertTableSink.java
│ │ │ │ │ │ ├── [1.8K] LegacyMutationConverter.java
│ │ │ │ │ │ └── [2.0K] RowDataToMutationConverter.java
│ │ │ │ │ ├── [4.0K] source
│ │ │ │ │ │ ├── [9.3K] AbstractTableInputFormat.java
│ │ │ │ │ │ ├── [4.1K] HBaseDynamicTableSource.java
│ │ │ │ │ │ ├── [3.5K] HBaseInputFormat.java
│ │ │ │ │ │ ├── [5.5K] HBaseLookupFunction.java
│ │ │ │ │ │ ├── [3.3K] HBaseRowDataInputFormat.java
│ │ │ │ │ │ ├── [5.5K] HBaseRowDataLookupFunction.java
│ │ │ │ │ │ ├── [3.9K] HBaseRowInputFormat.java
│ │ │ │ │ │ ├── [6.7K] HBaseTableSource.java
│ │ │ │ │ │ └── [2.5K] TableInputSplit.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [3.2K] HBaseConfigurationUtil.java
│ │ │ │ │ ├── [7.1K] HBaseReadWriteHelper.java
│ │ │ │ │ ├── [ 15K] HBaseSerde.java
│ │ │ │ │ ├── [ 13K] HBaseTableSchema.java
│ │ │ │ │ └── [6.9K] HBaseTypeUtils.java
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] descriptors
│ │ │ │ ├── [4.9K] HBase.java
│ │ │ │ └── [2.8K] HBaseValidator.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 840] org.apache.flink.table.factories.Factory
│ │ │ └── [ 833] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] connector
│ │ │ └── [4.0K] hbase
│ │ │ ├── [4.0K] example
│ │ │ │ ├── [1.1K] HBaseFlinkTestConstants.java
│ │ │ │ ├── [2.8K] HBaseReadExample.java
│ │ │ │ ├── [7.5K] HBaseWriteExample.java
│ │ │ │ └── [3.5K] HBaseWriteStreamExample.java
│ │ │ ├── [ 23K] HBaseConnectorITCase.java
│ │ │ ├── [4.2K] HBaseDescriptorTest.java
│ │ │ ├── [ 13K] HBaseDynamicTableFactoryTest.java
│ │ │ ├── [8.6K] HBaseTableFactoryTest.java
│ │ │ ├── [4.2K] HBaseTablePlanTest.java
│ │ │ └── [4.0K] util
│ │ │ ├── [7.5K] HBaseTestBase.java
│ │ │ ├── [6.5K] HBaseTestingClusterAutoStarter.java
│ │ │ └── [ 944] PlannerType.java
│ │ └── [4.0K] resources
│ │ ├── [1.3K] log4j2-test.properties
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] connector
│ │ └── [4.0K] hbase
│ │ └── [1.4K] HBaseTablePlanTest.xml
│ ├── [4.0K] flink-connector-hive
│ │ ├── [ 34K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] connectors
│ │ │ │ │ └── [4.0K] hive
│ │ │ │ │ ├── [1.8K] ConsumeOrder.java
│ │ │ │ │ ├── [1.2K] FlinkHiveException.java
│ │ │ │ │ ├── [1.6K] HadoopFileSystemFactory.java
│ │ │ │ │ ├── [3.1K] HiveDynamicTableFactory.java
│ │ │ │ │ ├── [2.3K] HiveOptions.java
│ │ │ │ │ ├── [3.2K] HiveRowDataPartitionComputer.java
│ │ │ │ │ ├── [2.8K] HiveRowPartitionComputer.java
│ │ │ │ │ ├── [3.2K] HiveTableFactory.java
│ │ │ │ │ ├── [4.8K] HiveTableMetaStoreFactory.java
│ │ │ │ │ ├── [3.2K] HiveTablePartition.java
│ │ │ │ │ ├── [ 14K] HiveTableSink.java
│ │ │ │ │ ├── [ 22K] HiveTableSource.java
│ │ │ │ │ ├── [1.9K] JobConfWrapper.java
│ │ │ │ │ ├── [4.0K] read
│ │ │ │ │ │ ├── [3.7K] DirectoryMonitorDiscovery.java
│ │ │ │ │ │ ├── [ 12K] HiveContinuousMonitoringFunction.java
│ │ │ │ │ │ ├── [7.0K] HiveMapredSplitReader.java
│ │ │ │ │ │ ├── [3.6K] HiveTableFileInputFormat.java
│ │ │ │ │ │ ├── [ 13K] HiveTableInputFormat.java
│ │ │ │ │ │ ├── [2.4K] HiveTableInputSplit.java
│ │ │ │ │ │ ├── [3.4K] HiveVectorizedOrcSplitReader.java
│ │ │ │ │ │ ├── [3.0K] HiveVectorizedParquetSplitReader.java
│ │ │ │ │ │ ├── [2.1K] PartitionDiscovery.java
│ │ │ │ │ │ ├── [1.9K] SplitReader.java
│ │ │ │ │ │ └── [7.3K] TimestampedHiveInputSplit.java
│ │ │ │ │ └── [4.0K] write
│ │ │ │ │ ├── [2.6K] HiveBulkWriterFactory.java
│ │ │ │ │ ├── [2.5K] HiveOutputFormatFactory.java
│ │ │ │ │ └── [8.0K] HiveWriterFactory.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ └── [4.0K] hive
│ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ ├── [1.3K] HiveMetastoreClientFactory.java
│ │ │ │ │ │ ├── [ 11K] HiveMetastoreClientWrapper.java
│ │ │ │ │ │ ├── [7.5K] HiveShim.java
│ │ │ │ │ │ ├── [4.6K] HiveShimLoader.java
│ │ │ │ │ │ ├── [ 15K] HiveShimV100.java
│ │ │ │ │ │ ├── [ 951] HiveShimV101.java
│ │ │ │ │ │ ├── [3.8K] HiveShimV110.java
│ │ │ │ │ │ ├── [ 952] HiveShimV111.java
│ │ │ │ │ │ ├── [8.2K] HiveShimV120.java
│ │ │ │ │ │ ├── [ 952] HiveShimV121.java
│ │ │ │ │ │ ├── [ 952] HiveShimV122.java
│ │ │ │ │ │ ├── [2.5K] HiveShimV200.java
│ │ │ │ │ │ ├── [ 952] HiveShimV201.java
│ │ │ │ │ │ ├── [7.2K] HiveShimV210.java
│ │ │ │ │ │ ├── [ 952] HiveShimV211.java
│ │ │ │ │ │ ├── [ 952] HiveShimV220.java
│ │ │ │ │ │ ├── [3.9K] HiveShimV230.java
│ │ │ │ │ │ ├── [ 952] HiveShimV231.java
│ │ │ │ │ │ ├── [ 952] HiveShimV232.java
│ │ │ │ │ │ ├── [ 952] HiveShimV233.java
│ │ │ │ │ │ ├── [ 952] HiveShimV234.java
│ │ │ │ │ │ ├── [ 952] HiveShimV235.java
│ │ │ │ │ │ ├── [ 952] HiveShimV236.java
│ │ │ │ │ │ ├── [ 12K] HiveShimV310.java
│ │ │ │ │ │ ├── [ 952] HiveShimV311.java
│ │ │ │ │ │ └── [ 952] HiveShimV312.java
│ │ │ │ │ ├── [4.0K] descriptors
│ │ │ │ │ │ ├── [2.5K] HiveCatalogDescriptor.java
│ │ │ │ │ │ └── [1.6K] HiveCatalogValidator.java
│ │ │ │ │ ├── [4.0K] factories
│ │ │ │ │ │ ├── [3.6K] HiveCatalogFactory.java
│ │ │ │ │ │ └── [5.4K] HiveFunctionDefinitionFactory.java
│ │ │ │ │ ├── [1.2K] HiveCatalogConfig.java
│ │ │ │ │ ├── [ 60K] HiveCatalog.java
│ │ │ │ │ ├── [4.0K] HiveDatabaseUtil.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [3.7K] HiveReflectionUtils.java
│ │ │ │ │ ├── [ 16K] HiveStatsUtil.java
│ │ │ │ │ ├── [ 19K] HiveTableUtil.java
│ │ │ │ │ └── [ 12K] HiveTypeUtil.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ └── [4.0K] hive
│ │ │ │ │ ├── [4.0K] conversion
│ │ │ │ │ │ ├── [ 20K] HiveInspectors.java
│ │ │ │ │ │ ├── [1.2K] HiveObjectConversion.java
│ │ │ │ │ │ ├── [1.2K] IdentityConversion.java
│ │ │ │ │ │ └── [1.5K] WritableHiveObjectConversion.java
│ │ │ │ │ ├── [1.8K] DeferredObjectAdapter.java
│ │ │ │ │ ├── [1.4K] FlinkHiveUDFException.java
│ │ │ │ │ ├── [2.3K] HiveFunction.java
│ │ │ │ │ ├── [2.6K] HiveFunctionWrapper.java
│ │ │ │ │ ├── [8.4K] HiveGenericUDAF.java
│ │ │ │ │ ├── [3.9K] HiveGenericUDF.java
│ │ │ │ │ ├── [5.6K] HiveGenericUDTF.java
│ │ │ │ │ ├── [3.6K] HiveScalarFunction.java
│ │ │ │ │ ├── [5.2K] HiveSimpleUDF.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [2.5K] HiveFunctionUtil.java
│ │ │ │ └── [4.0K] module
│ │ │ │ └── [4.0K] hive
│ │ │ │ ├── [1.7K] HiveModuleDescriptor.java
│ │ │ │ ├── [1.4K] HiveModuleDescriptorValidator.java
│ │ │ │ ├── [2.5K] HiveModuleFactory.java
│ │ │ │ └── [3.2K] HiveModule.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 528] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 900] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] connectors
│ │ │ │ └── [4.0K] hive
│ │ │ │ ├── [ 17K] FlinkStandaloneHiveRunner.java
│ │ │ │ ├── [8.8K] FlinkStandaloneHiveServerContext.java
│ │ │ │ ├── [ 23K] HiveDialectITCase.java
│ │ │ │ ├── [4.3K] HiveLookupJoinITCase.java
│ │ │ │ ├── [3.5K] HiveOutputFormatFactoryTest.java
│ │ │ │ ├── [1.2K] HiveRunnerShim.java
│ │ │ │ ├── [2.5K] HiveRunnerShimLoader.java
│ │ │ │ ├── [1.5K] HiveRunnerShimV3.java
│ │ │ │ ├── [1.5K] HiveRunnerShimV4.java
│ │ │ │ ├── [4.7K] HiveTableFactoryTest.java
│ │ │ │ ├── [ 20K] HiveTableSinkITCase.java
│ │ │ │ ├── [ 30K] HiveTableSourceITCase.java
│ │ │ │ ├── [4.0K] read
│ │ │ │ │ ├── [2.9K] DirectoryMonitorDiscoveryTest.java
│ │ │ │ │ └── [1.7K] HiveTableFileInputFormatTest.java
│ │ │ │ └── [ 33K] TableEnvHiveConnectorITCase.java
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] catalog
│ │ │ │ └── [4.0K] hive
│ │ │ │ ├── [4.0K] descriptors
│ │ │ │ │ └── [1.7K] HiveCatalogDescriptorTest.java
│ │ │ │ ├── [4.0K] factories
│ │ │ │ │ └── [5.3K] HiveCatalogFactoryTest.java
│ │ │ │ ├── [6.4K] HiveCatalogDataTypeTest.java
│ │ │ │ ├── [ 14K] HiveCatalogGenericMetadataTest.java
│ │ │ │ ├── [ 12K] HiveCatalogHiveMetadataTest.java
│ │ │ │ ├── [ 14K] HiveCatalogITCase.java
│ │ │ │ ├── [2.5K] HiveCatalogMetadataTestBase.java
│ │ │ │ ├── [2.7K] HiveCatalogTest.java
│ │ │ │ ├── [ 10K] HiveCatalogUseBlinkITCase.java
│ │ │ │ ├── [9.0K] HiveTestUtils.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [3.1K] HiveTableUtilTest.java
│ │ │ ├── [4.0K] functions
│ │ │ │ └── [4.0K] hive
│ │ │ │ ├── [3.9K] HiveGenericUDAFTest.java
│ │ │ │ ├── [8.7K] HiveGenericUDFTest.java
│ │ │ │ ├── [7.5K] HiveGenericUDTFTest.java
│ │ │ │ ├── [7.1K] HiveSimpleUDFTest.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [1.9K] TestGenericUDFArray.java
│ │ │ │ ├── [2.0K] TestGenericUDFStructSize.java
│ │ │ │ ├── [2.4K] TestHiveGenericUDF.java
│ │ │ │ ├── [1.2K] TestHiveSimpleUDF.java
│ │ │ │ ├── [1.8K] TestHiveUDFArray.java
│ │ │ │ ├── [1.5K] TestHiveUDFMap.java
│ │ │ │ └── [2.4K] TestHiveUDTF.java
│ │ │ ├── [1.5K] HiveVersionTestUtil.java
│ │ │ └── [4.0K] module
│ │ │ └── [4.0K] hive
│ │ │ ├── [1.8K] HiveModuleDescriptorTest.java
│ │ │ ├── [1.7K] HiveModuleFactoryTest.java
│ │ │ └── [6.6K] HiveModuleTest.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] csv
│ │ │ ├── [ 15] test2.csv
│ │ │ ├── [ 190] test3.csv
│ │ │ └── [ 12] test.csv
│ │ ├── [1.3K] hive-site.xml
│ │ ├── [1.3K] log4j2-test.properties
│ │ └── [4.0K] test-catalog-factory-conf
│ │ └── [1.5K] hive-site.xml
│ ├── [4.0K] flink-connector-jdbc
│ │ ├── [4.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] io
│ │ │ │ │ └── [4.0K] jdbc
│ │ │ │ │ ├── [6.3K] JDBCInputFormat.java
│ │ │ │ │ ├── [6.5K] JDBCOutputFormat.java
│ │ │ │ │ └── [4.0K] split
│ │ │ │ │ ├── [1.6K] GenericParameterValuesProvider.java
│ │ │ │ │ ├── [2.4K] NumericBetweenParametersProvider.java
│ │ │ │ │ └── [1.4K] ParameterValuesProvider.java
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ └── [4.0K] jdbc
│ │ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ │ ├── [ 13K] AbstractJdbcCatalog.java
│ │ │ │ │ │ ├── [4.0K] factory
│ │ │ │ │ │ │ └── [3.4K] JdbcCatalogFactory.java
│ │ │ │ │ │ ├── [3.0K] JdbcCatalog.java
│ │ │ │ │ │ ├── [2.0K] JdbcCatalogUtils.java
│ │ │ │ │ │ ├── [ 13K] PostgresCatalog.java
│ │ │ │ │ │ └── [2.9K] PostgresTablePath.java
│ │ │ │ │ ├── [4.0K] dialect
│ │ │ │ │ │ ├── [3.5K] AbstractDialect.java
│ │ │ │ │ │ ├── [3.4K] DerbyDialect.java
│ │ │ │ │ │ ├── [5.6K] JdbcDialect.java
│ │ │ │ │ │ ├── [1.4K] JdbcDialects.java
│ │ │ │ │ │ ├── [4.1K] MySQLDialect.java
│ │ │ │ │ │ └── [4.1K] PostgresDialect.java
│ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ ├── [2.8K] AbstractJdbcOutputFormat.java
│ │ │ │ │ │ ├── [4.0K] connection
│ │ │ │ │ │ │ ├── [1.1K] JdbcConnectionProvider.java
│ │ │ │ │ │ │ └── [2.4K] SimpleJdbcConnectionProvider.java
│ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ ├── [9.5K] AbstractJdbcRowConverter.java
│ │ │ │ │ │ │ ├── [1.3K] DerbyRowConverter.java
│ │ │ │ │ │ │ ├── [1.7K] JdbcRowConverter.java
│ │ │ │ │ │ │ ├── [1.3K] MySQLRowConverter.java
│ │ │ │ │ │ │ └── [4.3K] PostgresRowConverter.java
│ │ │ │ │ │ ├── [4.0K] executor
│ │ │ │ │ │ │ ├── [3.6K] BufferReduceStatementExecutor.java
│ │ │ │ │ │ │ ├── [4.3K] InsertOrUpdateJdbcExecutor.java
│ │ │ │ │ │ │ ├── [2.0K] JdbcBatchStatementExecutor.java
│ │ │ │ │ │ │ ├── [2.6K] KeyedBatchStatementExecutor.java
│ │ │ │ │ │ │ └── [2.5K] SimpleBatchStatementExecutor.java
│ │ │ │ │ │ ├── [2.4K] GenericJdbcSinkFunction.java
│ │ │ │ │ │ ├── [ 11K] JdbcBatchingOutputFormat.java
│ │ │ │ │ │ ├── [4.0K] options
│ │ │ │ │ │ │ ├── [4.2K] JdbcDmlOptions.java
│ │ │ │ │ │ │ ├── [1.7K] JdbcInsertOptions.java
│ │ │ │ │ │ │ ├── [2.9K] JdbcLookupOptions.java
│ │ │ │ │ │ │ ├── [4.2K] JdbcOptions.java
│ │ │ │ │ │ │ ├── [4.5K] JdbcReadOptions.java
│ │ │ │ │ │ │ └── [1.4K] JdbcTypedQueryOptions.java
│ │ │ │ │ │ └── [5.4K] TableJdbcUpsertOutputFormat.java
│ │ │ │ │ ├── [2.7K] JdbcConnectionOptions.java
│ │ │ │ │ ├── [2.9K] JdbcExecutionOptions.java
│ │ │ │ │ ├── [ 14K] JdbcInputFormat.java
│ │ │ │ │ ├── [4.5K] JdbcOutputFormat.java
│ │ │ │ │ ├── [3.2K] JdbcSink.java
│ │ │ │ │ ├── [1.5K] JdbcStatementBuilder.java
│ │ │ │ │ ├── [4.0K] split
│ │ │ │ │ │ ├── [1.5K] JdbcGenericParameterValuesProvider.java
│ │ │ │ │ │ ├── [4.0K] JdbcNumericBetweenParametersProvider.java
│ │ │ │ │ │ └── [1.4K] JdbcParameterValuesProvider.java
│ │ │ │ │ ├── [4.0K] table
│ │ │ │ │ │ ├── [9.7K] JdbcDynamicOutputFormatBuilder.java
│ │ │ │ │ │ ├── [ 12K] JdbcDynamicTableFactory.java
│ │ │ │ │ │ ├── [4.2K] JdbcDynamicTableSink.java
│ │ │ │ │ │ ├── [6.2K] JdbcDynamicTableSource.java
│ │ │ │ │ │ ├── [9.8K] JdbcLookupFunction.java
│ │ │ │ │ │ ├── [ 13K] JdbcRowDataInputFormat.java
│ │ │ │ │ │ ├── [7.9K] JdbcRowDataLookupFunction.java
│ │ │ │ │ │ ├── [8.7K] JdbcTableSource.java
│ │ │ │ │ │ ├── [ 10K] JdbcTableSourceSinkFactory.java
│ │ │ │ │ │ └── [7.4K] JdbcUpsertTableSink.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [5.3K] JdbcTypeUtil.java
│ │ │ │ │ └── [7.7K] JdbcUtils.java
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] descriptors
│ │ │ │ ├── [2.6K] JdbcCatalogDescriptor.java
│ │ │ │ ├── [1.7K] JdbcCatalogValidator.java
│ │ │ │ └── [6.2K] JdbcValidator.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 844] org.apache.flink.table.factories.Factory
│ │ │ └── [ 914] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] api
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] io
│ │ │ │ └── [4.0K] jdbc
│ │ │ │ ├── [ 13K] JDBCInputFormatTest.java
│ │ │ │ └── [8.7K] JDBCOutputFormatTest.java
│ │ │ ├── [4.0K] connector
│ │ │ │ └── [4.0K] jdbc
│ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ ├── [4.0K] factory
│ │ │ │ │ │ └── [3.3K] JdbcCatalogFactoryTest.java
│ │ │ │ │ ├── [1.4K] JdbcCatalogUtilsTest.java
│ │ │ │ │ ├── [5.5K] PostgresCatalogITCase.java
│ │ │ │ │ ├── [ 12K] PostgresCatalogTestBase.java
│ │ │ │ │ ├── [5.4K] PostgresCatalogTest.java
│ │ │ │ │ └── [1.1K] PostgresTablePathTest.java
│ │ │ │ ├── [1.1K] DbMetadata.java
│ │ │ │ ├── [1.6K] DerbyDbMetadata.java
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [7.2K] JdbcFullTest.java
│ │ │ │ │ └── [5.9K] JdbcTableOutputFormatTest.java
│ │ │ │ ├── [2.8K] JdbcDataTestBase.java
│ │ │ │ ├── [7.1K] JdbcDataTypeTest.java
│ │ │ │ ├── [ 13K] JdbcInputFormatTest.java
│ │ │ │ ├── [3.5K] JdbcITCase.java
│ │ │ │ ├── [3.8K] JdbcLookupFunctionTest.java
│ │ │ │ ├── [ 12K] JdbcOutputFormatTest.java
│ │ │ │ ├── [1.4K] JdbcTestBase.java
│ │ │ │ ├── [7.2K] JdbcTestFixture.java
│ │ │ │ ├── [4.0K] split
│ │ │ │ │ └── [3.5K] NumericBetweenParametersProviderTest.java
│ │ │ │ ├── [4.0K] table
│ │ │ │ │ ├── [3.8K] JdbcAppendOnlyWriterTest.java
│ │ │ │ │ ├── [ 15K] JdbcDynamicOutputFormatTest.java
│ │ │ │ │ ├── [ 10K] JdbcDynamicTableFactoryTest.java
│ │ │ │ │ ├── [ 13K] JdbcDynamicTableSinkITCase.java
│ │ │ │ │ ├── [6.1K] JdbcDynamicTableSourceITCase.java
│ │ │ │ │ ├── [5.7K] JdbcLookupTableITCase.java
│ │ │ │ │ ├── [3.4K] JdbcLookupTestBase.java
│ │ │ │ │ ├── [ 12K] JdbcRowDataInputFormatTest.java
│ │ │ │ │ ├── [3.9K] JdbcRowDataLookupFunctionTest.java
│ │ │ │ │ ├── [1.7K] JdbcTablePlanTest.java
│ │ │ │ │ ├── [6.8K] JdbcTableSourceITCase.java
│ │ │ │ │ ├── [9.8K] JdbcTableSourceSinkFactoryTest.java
│ │ │ │ │ ├── [ 11K] JdbcUpsertTableSinkITCase.java
│ │ │ │ │ └── [6.6K] UnsignedTypeConversionITCase.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ └── [1.8K] JdbcTypeUtilTest.java
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] descriptors
│ │ │ └── [2.0K] JdbcCatalogDescriptorTest.java
│ │ └── [4.0K] resources
│ │ ├── [1.3K] log4j2-test.properties
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] connector
│ │ └── [4.0K] jdbc
│ │ └── [4.0K] table
│ │ └── [1.4K] JdbcTablePlanTest.xml
│ ├── [4.0K] flink-connector-kafka
│ │ ├── [7.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] kafka
│ │ │ │ ├── [ 13K] FlinkKafkaConsumer.java
│ │ │ │ ├── [1.0K] FlinkKafkaErrorCode.java
│ │ │ │ ├── [1.5K] FlinkKafkaException.java
│ │ │ │ ├── [3.1K] FlinkKafkaProducer011.java
│ │ │ │ ├── [ 66K] FlinkKafkaProducer.java
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [ 13K] FlinkKafkaInternalProducer.java
│ │ │ │ │ ├── [7.1K] Handover.java
│ │ │ │ │ ├── [ 20K] KafkaConsumerThread.java
│ │ │ │ │ ├── [8.7K] KafkaFetcher.java
│ │ │ │ │ ├── [3.6K] KafkaPartitionDiscoverer.java
│ │ │ │ │ ├── [ 10K] KafkaShuffleFetcher.java
│ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ └── [1.4K] KafkaMetricMutableWrapper.java
│ │ │ │ │ └── [3.6K] TransactionalIdsGenerator.java
│ │ │ │ ├── [1.9K] KafkaTableSink.java
│ │ │ │ ├── [3.8K] KafkaTableSource.java
│ │ │ │ ├── [2.9K] KafkaTableSourceSinkFactory.java
│ │ │ │ ├── [4.0K] shuffle
│ │ │ │ │ ├── [3.8K] FlinkKafkaShuffleConsumer.java
│ │ │ │ │ ├── [ 19K] FlinkKafkaShuffle.java
│ │ │ │ │ ├── [6.7K] FlinkKafkaShuffleProducer.java
│ │ │ │ │ └── [1.8K] StreamKafkaShuffleSink.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [2.5K] KafkaDynamicSink.java
│ │ │ │ ├── [3.3K] KafkaDynamicSource.java
│ │ │ │ └── [2.7K] KafkaDynamicTableFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 857] org.apache.flink.table.factories.Factory
│ │ │ └── [ 854] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] kafka
│ │ │ ├── [9.5K] FlinkKafkaInternalProducerITCase.java
│ │ │ ├── [ 25K] FlinkKafkaProducerITCase.java
│ │ │ ├── [2.2K] FlinkKafkaProducerMigrationOperatorTest.java
│ │ │ ├── [3.0K] FlinkKafkaProducerMigrationTest.java
│ │ │ ├── [4.8K] FlinkKafkaProducerStateSerializerTest.java
│ │ │ ├── [4.7K] FlinkKafkaProducerTest.java
│ │ │ ├── [ 11K] KafkaITCase.java
│ │ │ ├── [1.5K] KafkaProducerAtLeastOnceITCase.java
│ │ │ ├── [2.3K] KafkaProducerExactlyOnceITCase.java
│ │ │ ├── [6.6K] KafkaSerializerUpgradeTest.java
│ │ │ ├── [3.1K] KafkaTableSourceSinkFactoryTest.java
│ │ │ ├── [ 16K] KafkaTestEnvironmentImpl.java
│ │ │ ├── [2.1K] NextTransactionalIdHintSerializerTest.java
│ │ │ ├── [4.0K] shuffle
│ │ │ │ ├── [7.4K] KafkaShuffleExactlyOnceITCase.java
│ │ │ │ ├── [ 18K] KafkaShuffleITCase.java
│ │ │ │ └── [9.2K] KafkaShuffleTestBase.java
│ │ │ └── [4.0K] table
│ │ │ ├── [9.5K] KafkaChangelogTableITCase.java
│ │ │ ├── [3.2K] KafkaDynamicTableFactoryTest.java
│ │ │ └── [1.2K] KafkaTableITCase.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] context-state-serializer-1.11
│ │ │ ├── [ 126] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [6.7K] debezium-data-schema-exclude.txt
│ │ ├── [2.0K] kafka-0.11-migration-kafka-producer-flink-1.10-snapshot
│ │ ├── [2.0K] kafka-0.11-migration-kafka-producer-flink-1.11-snapshot
│ │ ├── [2.0K] kafka-0.11-migration-kafka-producer-flink-1.8-snapshot
│ │ ├── [2.0K] kafka-0.11-migration-kafka-producer-flink-1.9-snapshot
│ │ ├── [1.2K] kafka-migration-kafka-producer-flink-1.10-snapshot
│ │ ├── [1.2K] kafka-migration-kafka-producer-flink-1.11-snapshot
│ │ ├── [1.2K] kafka-migration-kafka-producer-flink-1.8-snapshot
│ │ ├── [1.2K] kafka-migration-kafka-producer-flink-1.9-snapshot
│ │ ├── [1.6K] log4j2-test.properties
│ │ └── [4.0K] transaction-state-serializer-1.11
│ │ ├── [ 134] serializer-snapshot
│ │ └── [ 17] test-data
│ ├── [4.0K] flink-connector-kafka-0.10
│ │ ├── [8.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] kafka
│ │ │ │ ├── [ 15K] FlinkKafkaConsumer010.java
│ │ │ │ ├── [ 18K] FlinkKafkaProducer010.java
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [7.1K] Handover.java
│ │ │ │ │ ├── [8.6K] Kafka010Fetcher.java
│ │ │ │ │ ├── [3.6K] Kafka010PartitionDiscoverer.java
│ │ │ │ │ └── [ 21K] KafkaConsumerThread.java
│ │ │ │ ├── [1.9K] Kafka010TableSink.java
│ │ │ │ ├── [4.0K] Kafka010TableSource.java
│ │ │ │ ├── [2.9K] Kafka010TableSourceSinkFactory.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [2.5K] Kafka010DynamicSink.java
│ │ │ │ ├── [3.4K] Kafka010DynamicSource.java
│ │ │ │ └── [2.7K] Kafka010DynamicTableFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 860] org.apache.flink.table.factories.Factory
│ │ │ └── [ 857] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] kafka
│ │ │ ├── [2.2K] FlinkKafkaProducerTest.java
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [9.7K] HandoverTest.java
│ │ │ │ ├── [ 16K] Kafka010FetcherTest.java
│ │ │ │ └── [ 42K] KafkaConsumerThreadTest.java
│ │ │ ├── [ 11K] Kafka010ITCase.java
│ │ │ ├── [1.2K] Kafka010ProducerITCase.java
│ │ │ ├── [2.2K] Kafka010SecuredRunITCase.java
│ │ │ ├── [3.2K] Kafka010TableSourceSinkFactoryTest.java
│ │ │ ├── [ 16K] KafkaTestEnvironmentImpl.java
│ │ │ └── [4.0K] table
│ │ │ ├── [3.2K] Kafka010DynamicTableFactoryTest.java
│ │ │ └── [1.2K] Kafka010TableITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.6K] log4j2-test.properties
│ ├── [4.0K] flink-connector-kafka-0.11
│ │ ├── [8.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] kafka
│ │ │ │ ├── [1.0K] FlinkKafka011ErrorCode.java
│ │ │ │ ├── [1.6K] FlinkKafka011Exception.java
│ │ │ │ ├── [7.1K] FlinkKafkaConsumer011.java
│ │ │ │ ├── [ 54K] FlinkKafkaProducer011.java
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [ 15K] FlinkKafkaProducer.java
│ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ └── [1.4K] KafkaMetricMutableWrapper.java
│ │ │ │ │ └── [3.6K] TransactionalIdsGenerator.java
│ │ │ │ ├── [2.0K] Kafka011TableSink.java
│ │ │ │ ├── [4.0K] Kafka011TableSource.java
│ │ │ │ ├── [2.9K] Kafka011TableSourceSinkFactory.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [2.5K] Kafka011DynamicSink.java
│ │ │ │ ├── [3.5K] Kafka011DynamicSource.java
│ │ │ │ └── [2.7K] Kafka011DynamicTableFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 860] org.apache.flink.table.factories.Factory
│ │ │ └── [ 857] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] kafka
│ │ │ ├── [ 25K] FlinkKafkaProducer011ITCase.java
│ │ │ ├── [3.0K] FlinkKafkaProducer011MigrationTest.java
│ │ │ ├── [4.9K] FlinkKafkaProducer011StateSerializerTest.java
│ │ │ ├── [8.9K] FlinkKafkaProducerITCase.java
│ │ │ ├── [2.2K] FlinkKafkaProducerTest.java
│ │ │ ├── [4.0K] internal
│ │ │ │ └── [3.1K] TransactionalIdsGeneratorTest.java
│ │ │ ├── [ 11K] Kafka011ITCase.java
│ │ │ ├── [1.5K] Kafka011ProducerAtLeastOnceITCase.java
│ │ │ ├── [2.3K] Kafka011ProducerExactlyOnceITCase.java
│ │ │ ├── [6.6K] Kafka011SerializerUpgradeTest.java
│ │ │ ├── [3.2K] Kafka011TableSourceSinkFactoryTest.java
│ │ │ ├── [ 17K] KafkaTestEnvironmentImpl.java
│ │ │ ├── [2.1K] NextTransactionalIdHintSerializerTest.java
│ │ │ └── [4.0K] table
│ │ │ ├── [3.2K] Kafka011DynamicTableFactoryTest.java
│ │ │ └── [1.2K] Kafka011TableITCase.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] context-state-serializer-1.11
│ │ │ ├── [ 129] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [2.0K] kafka-migration-kafka-producer-flink-1.10-snapshot
│ │ ├── [2.0K] kafka-migration-kafka-producer-flink-1.11-snapshot
│ │ ├── [2.0K] kafka-migration-kafka-producer-flink-1.8-snapshot
│ │ ├── [2.0K] kafka-migration-kafka-producer-flink-1.9-snapshot
│ │ ├── [1.6K] log4j2-test.properties
│ │ └── [4.0K] transaction-state-serializer-1.11
│ │ ├── [ 137] serializer-snapshot
│ │ └── [ 17] test-data
│ ├── [4.0K] flink-connector-kafka-base
│ │ ├── [7.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] streaming
│ │ │ │ ├── [4.0K] connectors
│ │ │ │ │ └── [4.0K] kafka
│ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ ├── [1.4K] OffsetCommitMode.java
│ │ │ │ │ │ ├── [2.0K] OffsetCommitModes.java
│ │ │ │ │ │ └── [2.1K] StartupMode.java
│ │ │ │ │ ├── [ 47K] FlinkKafkaConsumerBase.java
│ │ │ │ │ ├── [ 15K] FlinkKafkaProducerBase.java
│ │ │ │ │ ├── [4.0K] internals
│ │ │ │ │ │ ├── [ 23K] AbstractFetcher.java
│ │ │ │ │ │ ├── [9.3K] AbstractPartitionDiscoverer.java
│ │ │ │ │ │ ├── [ 15K] ClosableBlockingQueue.java
│ │ │ │ │ │ ├── [3.9K] ExceptionProxy.java
│ │ │ │ │ │ ├── [1.7K] KafkaCommitCallback.java
│ │ │ │ │ │ ├── [2.4K] KafkaDeserializationSchemaWrapper.java
│ │ │ │ │ │ ├── [3.5K] KafkaSerializationSchemaWrapper.java
│ │ │ │ │ │ ├── [2.5K] KafkaTopicPartitionAssigner.java
│ │ │ │ │ │ ├── [4.2K] KafkaTopicPartition.java
│ │ │ │ │ │ ├── [2.8K] KafkaTopicPartitionLeader.java
│ │ │ │ │ │ ├── [3.9K] KafkaTopicPartitionState.java
│ │ │ │ │ │ ├── [2.4K] KafkaTopicPartitionStateSentinel.java
│ │ │ │ │ │ ├── [3.5K] KafkaTopicPartitionStateWithWatermarkGenerator.java
│ │ │ │ │ │ ├── [2.6K] KafkaTopicsDescriptor.java
│ │ │ │ │ │ ├── [1.9K] KeyedSerializationSchemaWrapper.java
│ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ ├── [2.4K] KafkaConsumerMetricConstants.java
│ │ │ │ │ │ │ └── [1.3K] KafkaMetricWrapper.java
│ │ │ │ │ │ └── [1.7K] SourceContextWatermarkOutputAdapter.java
│ │ │ │ │ ├── [2.4K] KafkaContextAware.java
│ │ │ │ │ ├── [3.2K] KafkaDeserializationSchema.java
│ │ │ │ │ ├── [2.4K] KafkaSerializationSchema.java
│ │ │ │ │ ├── [5.5K] KafkaTableSinkBase.java
│ │ │ │ │ ├── [ 13K] KafkaTableSourceBase.java
│ │ │ │ │ ├── [ 19K] KafkaTableSourceSinkFactoryBase.java
│ │ │ │ │ ├── [4.0K] partitioner
│ │ │ │ │ │ ├── [2.9K] FlinkFixedPartitioner.java
│ │ │ │ │ │ └── [2.1K] FlinkKafkaPartitioner.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [4.8K] KafkaDynamicSinkBase.java
│ │ │ │ │ ├── [8.7K] KafkaDynamicSourceBase.java
│ │ │ │ │ ├── [7.4K] KafkaDynamicTableFactoryBase.java
│ │ │ │ │ └── [ 14K] KafkaOptions.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [4.0K] serialization
│ │ │ │ ├── [3.0K] JSONKeyValueDeserializationSchema.java
│ │ │ │ ├── [2.3K] KeyedDeserializationSchema.java
│ │ │ │ ├── [2.1K] KeyedSerializationSchema.java
│ │ │ │ └── [7.1K] TypeInformationKeyValueSerializationSchema.java
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] descriptors
│ │ │ ├── [ 11K] Kafka.java
│ │ │ └── [ 10K] KafkaValidator.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] kafka
│ │ │ │ ├── [3.3K] FlinkFixedPartitionerTest.java
│ │ │ │ ├── [ 15K] FlinkKafkaConsumerBaseMigrationTest.java
│ │ │ │ ├── [ 50K] FlinkKafkaConsumerBaseTest.java
│ │ │ │ ├── [ 17K] FlinkKafkaProducerBaseTest.java
│ │ │ │ ├── [4.0K] internals
│ │ │ │ │ ├── [8.8K] AbstractFetcherTest.java
│ │ │ │ │ ├── [ 19K] AbstractFetcherWatermarksTest.java
│ │ │ │ │ ├── [ 21K] AbstractPartitionDiscovererTest.java
│ │ │ │ │ ├── [ 15K] ClosableBlockingQueueTest.java
│ │ │ │ │ ├── [1.9K] KafkaTopicPartitionTest.java
│ │ │ │ │ └── [2.1K] KafkaTopicsDescriptorTest.java
│ │ │ │ ├── [5.1K] JSONKeyValueDeserializationSchemaTest.java
│ │ │ │ ├── [ 84K] KafkaConsumerTestBase.java
│ │ │ │ ├── [6.0K] KafkaMigrationTestBase.java
│ │ │ │ ├── [ 20K] KafkaProducerTestBase.java
│ │ │ │ ├── [9.8K] KafkaShortRetentionTestBase.java
│ │ │ │ ├── [ 19K] KafkaTableSourceSinkFactoryTestBase.java
│ │ │ │ ├── [ 11K] KafkaTestBase.java
│ │ │ │ ├── [1.5K] KafkaTestBaseWithFlink.java
│ │ │ │ ├── [7.5K] KafkaTestEnvironment.java
│ │ │ │ ├── [4.0K] table
│ │ │ │ │ ├── [ 17K] KafkaDynamicTableFactoryTestBase.java
│ │ │ │ │ └── [9.0K] KafkaTableTestBase.java
│ │ │ │ └── [4.0K] testutils
│ │ │ │ ├── [1.9K] ClusterCommunicationUtils.java
│ │ │ │ ├── [7.0K] DataGenerators.java
│ │ │ │ ├── [3.5K] FailingIdentityMapper.java
│ │ │ │ ├── [1.3K] FakeStandardProducerConfig.java
│ │ │ │ ├── [4.1K] IntegerSource.java
│ │ │ │ ├── [1.9K] PartitionValidatingMapper.java
│ │ │ │ ├── [4.5K] TestPartitionDiscoverer.java
│ │ │ │ ├── [2.4K] TestSourceContext.java
│ │ │ │ ├── [1.4K] ThrottledMapper.java
│ │ │ │ ├── [1.7K] Tuple2FlinkPartitioner.java
│ │ │ │ ├── [3.1K] ValidatingExactlyOnceSink.java
│ │ │ │ └── [1.5K] ZooKeeperStringSerializer.java
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] descriptors
│ │ │ ├── [4.2K] KafkaTest.java
│ │ │ └── [2.7K] KafkaValidatorTest.java
│ │ └── [4.0K] resources
│ │ ├── [1.3K] kafka-consumer-migration-test-flink1.10-empty-state-snapshot
│ │ ├── [1.4K] kafka-consumer-migration-test-flink1.10-snapshot
│ │ ├── [1.1K] kafka-consumer-migration-test-flink1.11-empty-state-snapshot
│ │ ├── [1.2K] kafka-consumer-migration-test-flink1.11-snapshot
│ │ ├── [6.3K] kafka-consumer-migration-test-flink1.4-empty-state-snapshot
│ │ ├── [6.4K] kafka-consumer-migration-test-flink1.4-snapshot
│ │ ├── [6.3K] kafka-consumer-migration-test-flink1.5-empty-state-snapshot
│ │ ├── [6.4K] kafka-consumer-migration-test-flink1.5-snapshot
│ │ ├── [6.5K] kafka-consumer-migration-test-flink1.6-empty-state-snapshot
│ │ ├── [6.5K] kafka-consumer-migration-test-flink1.6-snapshot
│ │ ├── [8.3K] kafka-consumer-migration-test-flink1.7-empty-state-snapshot
│ │ ├── [8.3K] kafka-consumer-migration-test-flink1.7-snapshot
│ │ ├── [1.3K] kafka-consumer-migration-test-flink1.8-empty-state-snapshot
│ │ ├── [1.4K] kafka-consumer-migration-test-flink1.8-snapshot
│ │ ├── [1.3K] kafka-consumer-migration-test-flink1.9-empty-state-snapshot
│ │ ├── [1.4K] kafka-consumer-migration-test-flink1.9-snapshot
│ │ └── [1.6K] log4j2-test.properties
│ ├── [4.0K] flink-connector-kinesis
│ │ ├── [7.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] connectors
│ │ │ │ └── [4.0K] kinesis
│ │ │ │ ├── [4.0K] config
│ │ │ │ │ ├── [5.3K] AWSConfigConstants.java
│ │ │ │ │ ├── [9.4K] ConsumerConfigConstants.java
│ │ │ │ │ └── [2.1K] ProducerConfigConstants.java
│ │ │ │ ├── [2.8K] FlinkDynamoDBStreamsConsumer.java
│ │ │ │ ├── [ 21K] FlinkKinesisConsumer.java
│ │ │ │ ├── [ 14K] FlinkKinesisProducer.java
│ │ │ │ ├── [4.0K] internals
│ │ │ │ │ ├── [3.9K] DynamoDBStreamsDataFetcher.java
│ │ │ │ │ ├── [ 51K] KinesisDataFetcher.java
│ │ │ │ │ └── [ 18K] ShardConsumer.java
│ │ │ │ ├── [1.8K] KinesisPartitioner.java
│ │ │ │ ├── [2.3K] KinesisShardAssigner.java
│ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ ├── [2.0K] KinesisConsumerMetricConstants.java
│ │ │ │ │ └── [3.2K] ShardMetricsReporter.java
│ │ │ │ ├── [4.0K] model
│ │ │ │ │ ├── [2.5K] DynamoDBStreamsShardHandle.java
│ │ │ │ │ ├── [4.5K] KinesisStreamShard.java
│ │ │ │ │ ├── [3.1K] KinesisStreamShardState.java
│ │ │ │ │ ├── [2.8K] SentinelSequenceNumber.java
│ │ │ │ │ ├── [3.3K] SequenceNumber.java
│ │ │ │ │ ├── [3.4K] StreamShardHandle.java
│ │ │ │ │ └── [6.2K] StreamShardMetadata.java
│ │ │ │ ├── [4.0K] proxy
│ │ │ │ │ ├── [5.1K] DynamoDBStreamsProxy.java
│ │ │ │ │ ├── [2.6K] GetShardListResult.java
│ │ │ │ │ ├── [3.9K] KinesisProxyInterface.java
│ │ │ │ │ └── [ 23K] KinesisProxy.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ ├── [1.6K] DynamoDBStreamsSchema.java
│ │ │ │ │ ├── [3.4K] KinesisDeserializationSchema.java
│ │ │ │ │ ├── [2.8K] KinesisDeserializationSchemaWrapper.java
│ │ │ │ │ └── [2.2K] KinesisSerializationSchema.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [ 10K] AWSUtil.java
│ │ │ │ ├── [2.7K] BeanDeserializerModifierForIgnorables.java
│ │ │ │ ├── [6.2K] JobManagerWatermarkTracker.java
│ │ │ │ ├── [ 17K] KinesisConfigUtil.java
│ │ │ │ ├── [8.5K] RecordEmitter.java
│ │ │ │ ├── [1.3K] TimeoutLatch.java
│ │ │ │ └── [3.6K] WatermarkTracker.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ └── [1.7K] LICENSE.protobuf
│ │ │ └── [ 22K] NOTICE
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] kinesis
│ │ │ ├── [4.0K] examples
│ │ │ │ ├── [2.4K] ConsumeFromDynamoDBStreams.java
│ │ │ │ ├── [2.2K] ConsumeFromKinesis.java
│ │ │ │ └── [3.0K] ProduceIntoKinesis.java
│ │ │ ├── [ 20K] FlinkKinesisConsumerMigrationTest.java
│ │ │ ├── [ 45K] FlinkKinesisConsumerTest.java
│ │ │ ├── [ 18K] FlinkKinesisProducerTest.java
│ │ │ ├── [4.0K] internals
│ │ │ │ ├── [ 35K] KinesisDataFetcherTest.java
│ │ │ │ └── [ 10K] ShardConsumerTest.java
│ │ │ ├── [2.5K] KinesisConsumerTest.java
│ │ │ ├── [4.0K] manualtests
│ │ │ │ ├── [4.9K] ManualConsumerProducerTest.java
│ │ │ │ ├── [5.8K] ManualExactlyOnceTest.java
│ │ │ │ ├── [9.4K] ManualExactlyOnceWithStreamReshardingTest.java
│ │ │ │ └── [3.5K] ManualProducerTest.java
│ │ │ ├── [4.0K] model
│ │ │ │ ├── [3.9K] DynamoDBStreamsShardHandleTest.java
│ │ │ │ ├── [1.2K] SentinelSequenceNumberTest.java
│ │ │ │ └── [1.5K] StreamShardHandleTest.java
│ │ │ ├── [4.0K] proxy
│ │ │ │ └── [ 17K] KinesisProxyTest.java
│ │ │ ├── [4.0K] testutils
│ │ │ │ ├── [2.1K] AlwaysThrowsDeserializationSchema.java
│ │ │ │ ├── [6.2K] ExactlyOnceValidatingConsumerThread.java
│ │ │ │ ├── [ 19K] FakeKinesisBehavioursFactory.java
│ │ │ │ ├── [4.2K] KinesisEventsGeneratorProducerThread.java
│ │ │ │ ├── [5.2K] KinesisPubsubClient.java
│ │ │ │ ├── [1.1K] KinesisShardIdGenerator.java
│ │ │ │ ├── [2.3K] TestableFlinkKinesisConsumer.java
│ │ │ │ ├── [3.8K] TestableKinesisDataFetcherForShardConsumerException.java
│ │ │ │ ├── [5.6K] TestableKinesisDataFetcher.java
│ │ │ │ ├── [2.7K] TestRuntimeContext.java
│ │ │ │ ├── [2.1K] TestSourceContext.java
│ │ │ │ └── [1.4K] TestUtils.java
│ │ │ └── [4.0K] util
│ │ │ ├── [2.7K] AWSUtilTest.java
│ │ │ ├── [3.2K] JobManagerWatermarkTrackerTest.java
│ │ │ ├── [ 21K] KinesisConfigUtilTest.java
│ │ │ ├── [4.4K] RecordEmitterTest.java
│ │ │ └── [3.4K] WatermarkTrackerTest.java
│ │ └── [4.0K] resources
│ │ ├── [2.8K] kinesis-consumer-migration-test-flink1.10-empty-snapshot
│ │ ├── [2.9K] kinesis-consumer-migration-test-flink1.10-snapshot
│ │ ├── [2.8K] kinesis-consumer-migration-test-flink1.11-empty-snapshot
│ │ ├── [2.9K] kinesis-consumer-migration-test-flink1.11-snapshot
│ │ ├── [ 14K] kinesis-consumer-migration-test-flink1.3-empty-snapshot
│ │ ├── [ 14K] kinesis-consumer-migration-test-flink1.3-snapshot
│ │ ├── [ 13K] kinesis-consumer-migration-test-flink1.4-empty-snapshot
│ │ ├── [ 13K] kinesis-consumer-migration-test-flink1.4-snapshot
│ │ ├── [ 18K] kinesis-consumer-migration-test-flink1.7-empty-snapshot
│ │ ├── [ 18K] kinesis-consumer-migration-test-flink1.7-snapshot
│ │ ├── [2.8K] kinesis-consumer-migration-test-flink1.8-empty-snapshot
│ │ ├── [2.9K] kinesis-consumer-migration-test-flink1.8-snapshot
│ │ ├── [2.8K] kinesis-consumer-migration-test-flink1.9-empty-snapshot
│ │ └── [2.9K] kinesis-consumer-migration-test-flink1.9-snapshot
│ ├── [4.0K] flink-connector-nifi
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] nifi
│ │ │ ├── [1.2K] NiFiDataPacketBuilder.java
│ │ │ ├── [1.3K] NiFiDataPacket.java
│ │ │ ├── [2.7K] NiFiSink.java
│ │ │ ├── [4.6K] NiFiSource.java
│ │ │ └── [1.4K] StandardNiFiDataPacket.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] examples
│ │ │ ├── [2.4K] NiFiSinkTopologyExample.java
│ │ │ └── [2.3K] NiFiSourceTopologyExample.java
│ │ └── [4.0K] resources
│ │ └── [ 16K] NiFi_Flink.xml
│ ├── [4.0K] flink-connector-rabbitmq
│ │ ├── [2.3K] pom.xml
│ │ ├── [ 759] README.md
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] rabbitmq
│ │ │ ├── [4.0K] common
│ │ │ │ └── [ 14K] RMQConnectionConfig.java
│ │ │ ├── [8.5K] RMQSink.java
│ │ │ ├── [2.5K] RMQSinkPublishOptions.java
│ │ │ ├── [ 11K] RMQSource.java
│ │ │ ├── [1.0K] SerializableReturnListener.java
│ │ │ └── [1.3K] Util.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] connectors
│ │ └── [4.0K] rabbitmq
│ │ ├── [4.0K] common
│ │ │ └── [3.0K] RMQConnectionConfigTest.java
│ │ ├── [ 11K] RMQSinkTest.java
│ │ └── [ 18K] RMQSourceTest.java
│ ├── [4.0K] flink-connector-twitter
│ │ ├── [3.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] twitter
│ │ │ └── [6.2K] TwitterSource.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [ 490] NOTICE
│ ├── [4.0K] flink-hadoop-compatibility
│ │ ├── [6.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ ├── [4.0K] hadoop
│ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ ├── [2.7K] HadoopInputFormatCommonBase.java
│ │ │ │ │ │ │ └── [1.7K] HadoopOutputFormatCommonBase.java
│ │ │ │ │ │ ├── [4.0K] mapred
│ │ │ │ │ │ │ ├── [ 10K] HadoopInputFormatBase.java
│ │ │ │ │ │ │ ├── [2.4K] HadoopInputFormat.java
│ │ │ │ │ │ │ ├── [7.6K] HadoopOutputFormatBase.java
│ │ │ │ │ │ │ ├── [1.9K] HadoopOutputFormat.java
│ │ │ │ │ │ │ ├── [4.0K] utils
│ │ │ │ │ │ │ │ └── [5.1K] HadoopUtils.java
│ │ │ │ │ │ │ └── [4.0K] wrapper
│ │ │ │ │ │ │ ├── [1.1K] HadoopDummyProgressable.java
│ │ │ │ │ │ │ ├── [1.8K] HadoopDummyReporter.java
│ │ │ │ │ │ │ └── [4.2K] HadoopInputSplit.java
│ │ │ │ │ │ └── [4.0K] mapreduce
│ │ │ │ │ │ ├── [ 11K] HadoopInputFormatBase.java
│ │ │ │ │ │ ├── [2.6K] HadoopInputFormat.java
│ │ │ │ │ │ ├── [9.4K] HadoopOutputFormatBase.java
│ │ │ │ │ │ ├── [1.7K] HadoopOutputFormat.java
│ │ │ │ │ │ ├── [4.0K] utils
│ │ │ │ │ │ │ └── [2.0K] HadoopUtils.java
│ │ │ │ │ │ └── [4.0K] wrapper
│ │ │ │ │ │ └── [3.4K] HadoopInputSplit.java
│ │ │ │ │ └── [4.0K] typeutils
│ │ │ │ │ ├── [4.0K] runtime
│ │ │ │ │ │ ├── [5.4K] WritableComparator.java
│ │ │ │ │ │ └── [6.2K] WritableSerializer.java
│ │ │ │ │ └── [4.5K] WritableTypeInfo.java
│ │ │ │ └── [4.0K] hadoopcompatibility
│ │ │ │ ├── [5.5K] HadoopInputs.java
│ │ │ │ ├── [1.9K] HadoopUtils.java
│ │ │ │ └── [4.0K] mapred
│ │ │ │ ├── [5.0K] HadoopMapFunction.java
│ │ │ │ ├── [7.1K] HadoopReduceCombineFunction.java
│ │ │ │ ├── [5.8K] HadoopReduceFunction.java
│ │ │ │ └── [4.0K] wrapper
│ │ │ │ ├── [2.0K] HadoopOutputCollector.java
│ │ │ │ └── [2.6K] HadoopTupleUnwrappingIterator.java
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] api
│ │ │ │ └── [4.0K] scala
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ ├── [4.0K] mapred
│ │ │ │ │ ├── [1.6K] HadoopInputFormat.scala
│ │ │ │ │ └── [1.5K] HadoopOutputFormat.scala
│ │ │ │ └── [4.0K] mapreduce
│ │ │ │ ├── [1.6K] HadoopInputFormat.scala
│ │ │ │ └── [1.3K] HadoopOutputFormat.scala
│ │ │ └── [4.0K] hadoopcompatibility
│ │ │ └── [4.0K] scala
│ │ │ └── [5.3K] HadoopInputs.scala
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] api
│ │ │ │ └── [4.0K] java
│ │ │ │ ├── [4.0K] hadoop
│ │ │ │ │ ├── [4.0K] mapred
│ │ │ │ │ │ ├── [ 10K] HadoopInputFormatTest.java
│ │ │ │ │ │ ├── [7.7K] HadoopOutputFormatTest.java
│ │ │ │ │ │ └── [4.0K] wrapper
│ │ │ │ │ │ └── [5.8K] HadoopInputSplitTest.java
│ │ │ │ │ └── [4.0K] mapreduce
│ │ │ │ │ ├── [8.0K] HadoopInputFormatTest.java
│ │ │ │ │ └── [7.1K] HadoopOutputFormatTest.java
│ │ │ │ └── [4.0K] typeutils
│ │ │ │ ├── [4.0K] runtime
│ │ │ │ │ ├── [2.3K] StringArrayWritable.java
│ │ │ │ │ ├── [2.1K] WritableComparatorTest.java
│ │ │ │ │ ├── [1.7K] WritableComparatorUUIDTest.java
│ │ │ │ │ ├── [2.1K] WritableID.java
│ │ │ │ │ ├── [2.2K] WritableSerializerTest.java
│ │ │ │ │ ├── [4.7K] WritableSerializerUpgradeTest.java
│ │ │ │ │ └── [1.6K] WritableSerializerUUIDTest.java
│ │ │ │ ├── [6.8K] WritableExtractionTest.java
│ │ │ │ └── [1.9K] WritableTypeInfoTest.java
│ │ │ ├── [4.0K] hadoopcompatibility
│ │ │ │ └── [1.3K] HadoopUtilsTest.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] hadoopcompatibility
│ │ │ ├── [4.0K] mapred
│ │ │ │ ├── [4.0K] example
│ │ │ │ │ └── [4.8K] HadoopMapredCompatWordCount.java
│ │ │ │ ├── [7.8K] HadoopIOFormatsITCase.java
│ │ │ │ ├── [6.4K] HadoopMapFunctionITCase.java
│ │ │ │ ├── [2.0K] HadoopMapredITCase.java
│ │ │ │ ├── [8.6K] HadoopReduceCombineFunctionITCase.java
│ │ │ │ ├── [6.7K] HadoopReduceFunctionITCase.java
│ │ │ │ ├── [3.2K] HadoopTestData.java
│ │ │ │ ├── [4.4K] WordCountMapredITCase.java
│ │ │ │ └── [4.0K] wrapper
│ │ │ │ └── [5.6K] HadoopTupleUnwrappingIteratorTest.java
│ │ │ └── [4.0K] mapreduce
│ │ │ ├── [4.0K] example
│ │ │ │ └── [4.8K] WordCount.java
│ │ │ ├── [2.1K] HadoopInputOutputITCase.java
│ │ │ └── [4.5K] WordCountMapreduceITCase.java
│ │ ├── [4.0K] resources
│ │ │ ├── [1.3K] log4j2-test.properties
│ │ │ └── [4.0K] writeable-serializer-1.11
│ │ │ ├── [ 187] serializer-snapshot
│ │ │ └── [ 7] test-data
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] api
│ │ └── [4.0K] hadoopcompatibility
│ │ └── [4.0K] scala
│ │ ├── [1.3K] ScalaWritableTypeInfoTest.scala
│ │ ├── [3.0K] WordCountMapredITCase.scala
│ │ └── [3.1K] WordCountMapreduceITCase.scala
│ ├── [4.0K] flink-hcatalog
│ │ ├── [6.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] hcatalog
│ │ │ ├── [ 13K] HCatInputFormatBase.java
│ │ │ └── [4.0K] java
│ │ │ └── [4.3K] HCatInputFormat.java
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] hcatalog
│ │ └── [4.0K] scala
│ │ └── [9.1K] HCatInputFormat.scala
│ ├── [4.0K] flink-sql-connector-elasticsearch6
│ │ ├── [5.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [1.9K] NOTICE
│ ├── [4.0K] flink-sql-connector-elasticsearch7
│ │ ├── [5.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [2.2K] NOTICE
│ ├── [4.0K] flink-sql-connector-hive-1.2.2
│ │ ├── [4.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ ├── [1.4K] LICENSE.javolution
│ │ │ ├── [1.4K] LICENSE.jodd
│ │ │ ├── [1.5K] LICENSE.kryo
│ │ │ ├── [1.5K] LICENSE.minlog
│ │ │ ├── [1.7K] LICENSE.protobuf
│ │ │ └── [1.5K] LICENSE.reflectasm
│ │ └── [1.7K] NOTICE
│ ├── [4.0K] flink-sql-connector-hive-2.2.0
│ │ ├── [3.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ ├── [1.4K] LICENSE.javolution
│ │ │ ├── [1.4K] LICENSE.jodd
│ │ │ ├── [1.5K] LICENSE.kryo
│ │ │ ├── [1.5K] LICENSE.minlog
│ │ │ └── [1.7K] LICENSE.protobuf
│ │ └── [1.9K] NOTICE
│ ├── [4.0K] flink-sql-connector-hive-2.3.6
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ ├── [1.5K] LICENSE.javolution
│ │ │ ├── [1.4K] LICENSE.jodd
│ │ │ ├── [1.3K] LICENSE.kryo
│ │ │ ├── [1.3K] LICENSE.minlog
│ │ │ ├── [1.7K] LICENSE.protobuf
│ │ │ ├── [1.3K] LICENSE.reflectasm
│ │ │ └── [1.1K] LICENSE.slf4j-api
│ │ └── [2.1K] NOTICE
│ ├── [4.0K] flink-sql-connector-hive-3.1.2
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ ├── [1.5K] LICENSE.javolution
│ │ │ ├── [1.3K] LICENSE.jodd
│ │ │ ├── [1.3K] LICENSE.kryo
│ │ │ ├── [1.3K] LICENSE.minlog
│ │ │ ├── [1.7K] LICENSE.protobuf
│ │ │ └── [1.3K] LICENSE.reflectasm
│ │ └── [2.1K] NOTICE
│ ├── [4.0K] flink-sql-connector-kafka
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [ 356] NOTICE
│ ├── [4.0K] flink-sql-connector-kafka-0.10
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [ 364] NOTICE
│ ├── [4.0K] flink-sql-connector-kafka-0.11
│ │ ├── [3.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [ 364] NOTICE
│ └── [4.0K] pom.xml
├── [4.0K] flink-container
│ ├── [2.3K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] container
│ │ └── [4.0K] entrypoint
│ │ ├── [2.2K] StandaloneApplicationClusterConfiguration.java
│ │ ├── [4.6K] StandaloneApplicationClusterConfigurationParserFactory.java
│ │ └── [5.4K] StandaloneApplicationClusterEntryPoint.java
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] container
│ │ └── [4.0K] entrypoint
│ │ └── [ 10K] StandaloneApplicationClusterConfigurationParserFactoryTest.java
│ └── [4.0K] resources
│ └── [1.3K] log4j2-test.properties
├── [4.0K] flink-contrib
│ ├── [4.0K] flink-connector-wikiedits
│ │ ├── [1.8K] pom.xml
│ │ ├── [1.2K] README.md
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] wikiedits
│ │ │ ├── [5.5K] WikipediaEditEventIrcStream.java
│ │ │ ├── [5.1K] WikipediaEditEvent.java
│ │ │ └── [3.2K] WikipediaEditsSource.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] wikiedits
│ │ │ └── [5.4K] WikipediaEditsSourceTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [1.5K] pom.xml
│ └── [ 218] README.md
├── [4.0K] flink-core
│ ├── [8.1K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] api
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [4.0K] accumulators
│ │ │ │ │ ├── [8.0K] AccumulatorHelper.java
│ │ │ │ │ ├── [2.6K] Accumulator.java
│ │ │ │ │ ├── [2.3K] AverageAccumulator.java
│ │ │ │ │ ├── [2.5K] DoubleCounter.java
│ │ │ │ │ ├── [2.5K] DoubleMaximum.java
│ │ │ │ │ ├── [2.5K] DoubleMinimum.java
│ │ │ │ │ ├── [2.5K] Histogram.java
│ │ │ │ │ ├── [2.4K] IntCounter.java
│ │ │ │ │ ├── [2.5K] IntMaximum.java
│ │ │ │ │ ├── [2.5K] IntMinimum.java
│ │ │ │ │ ├── [1.8K] ListAccumulator.java
│ │ │ │ │ ├── [2.4K] LongCounter.java
│ │ │ │ │ ├── [2.5K] LongMaximum.java
│ │ │ │ │ ├── [2.5K] LongMinimum.java
│ │ │ │ │ ├── [3.3K] SerializedListAccumulator.java
│ │ │ │ │ └── [1.1K] SimpleAccumulator.java
│ │ │ │ ├── [4.0K] aggregators
│ │ │ │ │ ├── [4.1K] Aggregator.java
│ │ │ │ │ ├── [3.4K] AggregatorRegistry.java
│ │ │ │ │ ├── [1.8K] AggregatorWithName.java
│ │ │ │ │ ├── [1.2K] ConvergenceCriterion.java
│ │ │ │ │ ├── [1.6K] DoubleSumAggregator.java
│ │ │ │ │ ├── [1.7K] DoubleZeroConvergence.java
│ │ │ │ │ ├── [1.5K] LongSumAggregator.java
│ │ │ │ │ └── [1.6K] LongZeroConvergence.java
│ │ │ │ ├── [1001] Archiveable.java
│ │ │ │ ├── [2.9K] ArchivedExecutionConfig.java
│ │ │ │ ├── [4.0K] cache
│ │ │ │ │ └── [8.0K] DistributedCache.java
│ │ │ │ ├── [1.8K] CodeAnalysisMode.java
│ │ │ │ ├── [4.0K] distributions
│ │ │ │ │ ├── [2.6K] CommonRangeBoundaries.java
│ │ │ │ │ ├── [2.6K] DataDistribution.java
│ │ │ │ │ └── [1.2K] RangeBoundaries.java
│ │ │ │ ├── [4.0K] eventtime
│ │ │ │ │ ├── [1.8K] AscendingTimestampsWatermarks.java
│ │ │ │ │ ├── [2.7K] BoundedOutOfOrdernessWatermarks.java
│ │ │ │ │ ├── [1.5K] IngestionTimeAssigner.java
│ │ │ │ │ ├── [1.2K] NoWatermarksGenerator.java
│ │ │ │ │ ├── [1.3K] RecordTimestampAssigner.java
│ │ │ │ │ ├── [1.1K] SerializableTimestampAssigner.java
│ │ │ │ │ ├── [2.4K] TimestampAssigner.java
│ │ │ │ │ ├── [3.0K] TimestampAssignerSupplier.java
│ │ │ │ │ ├── [1.8K] WatermarkGenerator.java
│ │ │ │ │ ├── [2.1K] WatermarkGeneratorSupplier.java
│ │ │ │ │ ├── [3.7K] Watermark.java
│ │ │ │ │ ├── [1.4K] WatermarkOutput.java
│ │ │ │ │ ├── [8.6K] WatermarkOutputMultiplexer.java
│ │ │ │ │ ├── [7.9K] WatermarkStrategy.java
│ │ │ │ │ ├── [1.7K] WatermarkStrategyWithIdleness.java
│ │ │ │ │ ├── [1.8K] WatermarkStrategyWithTimestampAssigner.java
│ │ │ │ │ └── [4.3K] WatermarksWithIdleness.java
│ │ │ │ ├── [ 44K] ExecutionConfig.java
│ │ │ │ ├── [3.3K] ExecutionMode.java
│ │ │ │ ├── [4.0K] externalresource
│ │ │ │ │ ├── [1.8K] ExternalResourceDriverFactory.java
│ │ │ │ │ ├── [1.6K] ExternalResourceDriver.java
│ │ │ │ │ └── [1.5K] ExternalResourceInfo.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [2.7K] AbstractRichFunction.java
│ │ │ │ │ ├── [5.9K] AggregateFunction.java
│ │ │ │ │ ├── [3.4K] BroadcastVariableInitializer.java
│ │ │ │ │ ├── [2.7K] CoGroupFunction.java
│ │ │ │ │ ├── [2.2K] CombineFunction.java
│ │ │ │ │ ├── [2.2K] CrossFunction.java
│ │ │ │ │ ├── [2.2K] FilterFunction.java
│ │ │ │ │ ├── [2.9K] FlatJoinFunction.java
│ │ │ │ │ ├── [2.1K] FlatMapFunction.java
│ │ │ │ │ ├── [2.4K] FoldFunction.java
│ │ │ │ │ ├── [1.2K] Function.java
│ │ │ │ │ ├── [2.3K] GroupCombineFunction.java
│ │ │ │ │ ├── [2.6K] GroupReduceFunction.java
│ │ │ │ │ ├── [1.6K] InvalidTypesException.java
│ │ │ │ │ ├── [1.5K] IterationRuntimeContext.java
│ │ │ │ │ ├── [2.7K] JoinFunction.java
│ │ │ │ │ ├── [2.1K] MapFunction.java
│ │ │ │ │ ├── [2.2K] MapPartitionFunction.java
│ │ │ │ │ ├── [1.3K] Partitioner.java
│ │ │ │ │ ├── [2.6K] ReduceFunction.java
│ │ │ │ │ ├── [1.8K] RichAggregateFunction.java
│ │ │ │ │ ├── [1.7K] RichCoGroupFunction.java
│ │ │ │ │ ├── [1.6K] RichCrossFunction.java
│ │ │ │ │ ├── [1.5K] RichFilterFunction.java
│ │ │ │ │ ├── [1.7K] RichFlatJoinFunction.java
│ │ │ │ │ ├── [1.6K] RichFlatMapFunction.java
│ │ │ │ │ ├── [1.6K] RichFoldFunction.java
│ │ │ │ │ ├── [4.6K] RichFunction.java
│ │ │ │ │ ├── [1.7K] RichGroupCombineFunction.java
│ │ │ │ │ ├── [2.0K] RichGroupReduceFunction.java
│ │ │ │ │ ├── [1.6K] RichJoinFunction.java
│ │ │ │ │ ├── [1.5K] RichMapFunction.java
│ │ │ │ │ ├── [1.6K] RichMapPartitionFunction.java
│ │ │ │ │ ├── [1.5K] RichReduceFunction.java
│ │ │ │ │ ├── [ 17K] RuntimeContext.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [7.5K] AbstractRuntimeUDFContext.java
│ │ │ │ │ ├── [1.9K] CopyingIterator.java
│ │ │ │ │ ├── [1.5K] CopyingListCollector.java
│ │ │ │ │ ├── [2.3K] FunctionUtils.java
│ │ │ │ │ ├── [1.3K] ListCollector.java
│ │ │ │ │ ├── [1.1K] NoOpFunction.java
│ │ │ │ │ ├── [2.3K] PrintSinkOutputWriter.java
│ │ │ │ │ └── [4.5K] RuntimeUDFContext.java
│ │ │ │ ├── [1.2K] InputDependencyConstraint.java
│ │ │ │ ├── [1.8K] InvalidProgramException.java
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ ├── [ 14K] BinaryInputFormat.java
│ │ │ │ │ ├── [5.3K] BinaryOutputFormat.java
│ │ │ │ │ ├── [3.1K] BlockInfo.java
│ │ │ │ │ ├── [2.4K] CheckpointableInputFormat.java
│ │ │ │ │ ├── [1.2K] CleanupWhenUnsuccessful.java
│ │ │ │ │ ├── [4.0K] compression
│ │ │ │ │ │ ├── [1.6K] Bzip2InputStreamFactory.java
│ │ │ │ │ │ ├── [1.7K] DeflateInflaterInputStreamFactory.java
│ │ │ │ │ │ ├── [1.6K] GzipInflaterInputStreamFactory.java
│ │ │ │ │ │ ├── [1.7K] InflaterInputStreamFactory.java
│ │ │ │ │ │ └── [1.6K] XZInputStreamFactory.java
│ │ │ │ │ ├── [2.5K] DefaultInputSplitAssigner.java
│ │ │ │ │ ├── [ 25K] DelimitedInputFormat.java
│ │ │ │ │ ├── [ 35K] FileInputFormat.java
│ │ │ │ │ ├── [9.9K] FileOutputFormat.java
│ │ │ │ │ ├── [2.9K] FilePathFilter.java
│ │ │ │ │ ├── [1.4K] FinalizeOnMaster.java
│ │ │ │ │ ├── [ 17K] GenericCsvInputFormat.java
│ │ │ │ │ ├── [2.6K] GenericInputFormat.java
│ │ │ │ │ ├── [4.3K] GlobFilePathFilter.java
│ │ │ │ │ ├── [1.6K] InitializeOnMaster.java
│ │ │ │ │ ├── [5.7K] InputFormat.java
│ │ │ │ │ ├── [2.4K] InputStreamFSInputWrapper.java
│ │ │ │ │ ├── [ 12K] LocatableInputSplitAssigner.java
│ │ │ │ │ ├── [1.1K] NonParallelInput.java
│ │ │ │ │ ├── [3.3K] OutputFormat.java
│ │ │ │ │ ├── [1.4K] ParseException.java
│ │ │ │ │ ├── [4.0K] ratelimiting
│ │ │ │ │ │ ├── [1.7K] FlinkConnectorRateLimiter.java
│ │ │ │ │ │ └── [2.4K] GuavaFlinkConnectorRateLimiter.java
│ │ │ │ │ ├── [5.6K] ReplicatingInputFormat.java
│ │ │ │ │ ├── [2.7K] ReplicatingInputSplitAssigner.java
│ │ │ │ │ ├── [2.8K] RichInputFormat.java
│ │ │ │ │ ├── [1.9K] RichOutputFormat.java
│ │ │ │ │ ├── [1.4K] SerializedInputFormat.java
│ │ │ │ │ ├── [1.4K] SerializedOutputFormat.java
│ │ │ │ │ └── [4.0K] statistics
│ │ │ │ │ └── [2.1K] BaseStatistics.java
│ │ │ │ ├── [5.6K] JobExecutionResult.java
│ │ │ │ ├── [3.6K] JobID.java
│ │ │ │ ├── [3.5K] JobStatus.java
│ │ │ │ ├── [1.9K] JobSubmissionResult.java
│ │ │ │ ├── [1.5K] NonSerializableUserCodeException.java
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [5.1K] AbstractUdfOperator.java
│ │ │ │ │ ├── [4.0K] base
│ │ │ │ │ │ ├── [9.6K] BulkIterationBase.java
│ │ │ │ │ │ ├── [ 15K] CoGroupOperatorBase.java
│ │ │ │ │ │ ├── [9.6K] CoGroupRawOperatorBase.java
│ │ │ │ │ │ ├── [4.5K] CrossOperatorBase.java
│ │ │ │ │ │ ├── [ 12K] DeltaIterationBase.java
│ │ │ │ │ │ ├── [2.8K] FilterOperatorBase.java
│ │ │ │ │ │ ├── [3.3K] FlatMapOperatorBase.java
│ │ │ │ │ │ ├── [6.4K] GroupCombineOperatorBase.java
│ │ │ │ │ │ ├── [9.0K] GroupReduceOperatorBase.java
│ │ │ │ │ │ ├── [6.3K] InnerJoinOperatorBase.java
│ │ │ │ │ │ ├── [4.4K] JoinOperatorBase.java
│ │ │ │ │ │ ├── [3.2K] MapOperatorBase.java
│ │ │ │ │ │ ├── [3.5K] MapPartitionOperatorBase.java
│ │ │ │ │ │ ├── [ 12K] OuterJoinOperatorBase.java
│ │ │ │ │ │ ├── [4.0K] PartitionOperatorBase.java
│ │ │ │ │ │ ├── [9.9K] ReduceOperatorBase.java
│ │ │ │ │ │ └── [3.5K] SortPartitionOperatorBase.java
│ │ │ │ │ ├── [2.1K] BinaryOperatorInformation.java
│ │ │ │ │ ├── [ 23K] CollectionExecutor.java
│ │ │ │ │ ├── [5.0K] CompilerHints.java
│ │ │ │ │ ├── [9.4K] DualInputOperator.java
│ │ │ │ │ ├── [5.1K] DualInputSemanticProperties.java
│ │ │ │ │ ├── [ 10K] GenericDataSinkBase.java
│ │ │ │ │ ├── [8.7K] GenericDataSourceBase.java
│ │ │ │ │ ├── [1.0K] IterationOperator.java
│ │ │ │ │ ├── [ 16K] Keys.java
│ │ │ │ │ ├── [1.7K] OperatorInformation.java
│ │ │ │ │ ├── [ 11K] Operator.java
│ │ │ │ │ ├── [8.2K] Ordering.java
│ │ │ │ │ ├── [1.9K] Order.java
│ │ │ │ │ ├── [ 12K] ResourceSpec.java
│ │ │ │ │ ├── [3.4K] SemanticProperties.java
│ │ │ │ │ ├── [7.0K] SingleInputOperator.java
│ │ │ │ │ ├── [4.4K] SingleInputSemanticProperties.java
│ │ │ │ │ ├── [1.7K] UnaryOperatorInformation.java
│ │ │ │ │ ├── [2.3K] Union.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [5.0K] FieldList.java
│ │ │ │ │ ├── [7.5K] FieldSet.java
│ │ │ │ │ ├── [3.1K] JoinHashMap.java
│ │ │ │ │ ├── [5.9K] ListKeyGroupedIterator.java
│ │ │ │ │ ├── [4.0K] OperatorValidationUtils.java
│ │ │ │ │ ├── [1.6K] TypeComparable.java
│ │ │ │ │ ├── [1.9K] UserCodeClassWrapper.java
│ │ │ │ │ ├── [4.4K] UserCodeObjectWrapper.java
│ │ │ │ │ └── [2.7K] UserCodeWrapper.java
│ │ │ │ ├── [ 12K] Plan.java
│ │ │ │ ├── [1.8K] ProgramDescription.java
│ │ │ │ ├── [4.0K] resources
│ │ │ │ │ ├── [1.3K] CPUResource.java
│ │ │ │ │ ├── [1.3K] GPUResource.java
│ │ │ │ │ └── [3.6K] Resource.java
│ │ │ │ ├── [4.0K] restartstrategy
│ │ │ │ │ └── [10.0K] RestartStrategies.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ ├── [6.6K] AbstractDeserializationSchema.java
│ │ │ │ │ ├── [3.4K] BulkWriter.java
│ │ │ │ │ ├── [4.3K] DeserializationSchema.java
│ │ │ │ │ ├── [1.5K] Encoder.java
│ │ │ │ │ ├── [2.7K] SerializationSchema.java
│ │ │ │ │ ├── [2.1K] SimpleStringEncoder.java
│ │ │ │ │ ├── [3.4K] SimpleStringSchema.java
│ │ │ │ │ └── [4.1K] TypeInformationSerializationSchema.java
│ │ │ │ ├── [4.0K] state
│ │ │ │ │ ├── [3.8K] AggregatingStateDescriptor.java
│ │ │ │ │ ├── [2.0K] AggregatingState.java
│ │ │ │ │ ├── [2.9K] AppendingState.java
│ │ │ │ │ ├── [3.3K] BroadcastState.java
│ │ │ │ │ ├── [4.3K] FoldingStateDescriptor.java
│ │ │ │ │ ├── [1.9K] FoldingState.java
│ │ │ │ │ ├── [ 10K] KeyedStateStore.java
│ │ │ │ │ ├── [3.7K] ListStateDescriptor.java
│ │ │ │ │ ├── [2.9K] ListState.java
│ │ │ │ │ ├── [4.8K] MapStateDescriptor.java
│ │ │ │ │ ├── [4.1K] MapState.java
│ │ │ │ │ ├── [1.3K] MergingState.java
│ │ │ │ │ ├── [5.7K] OperatorStateStore.java
│ │ │ │ │ ├── [2.5K] ReadOnlyBroadcastState.java
│ │ │ │ │ ├── [3.7K] ReducingStateDescriptor.java
│ │ │ │ │ ├── [1.6K] ReducingState.java
│ │ │ │ │ ├── [ 14K] StateDescriptor.java
│ │ │ │ │ ├── [1.4K] State.java
│ │ │ │ │ ├── [ 15K] StateTtlConfig.java
│ │ │ │ │ ├── [5.0K] ValueStateDescriptor.java
│ │ │ │ │ └── [2.8K] ValueState.java
│ │ │ │ ├── [4.6K] TaskInfo.java
│ │ │ │ ├── [4.0K] time
│ │ │ │ │ ├── [2.9K] Deadline.java
│ │ │ │ │ └── [4.1K] Time.java
│ │ │ │ ├── [4.0K] typeinfo
│ │ │ │ │ ├── [2.1K] AtomicType.java
│ │ │ │ │ ├── [6.2K] BasicArrayTypeInfo.java
│ │ │ │ │ ├── [ 11K] BasicTypeInfo.java
│ │ │ │ │ ├── [1.8K] FractionalTypeInfo.java
│ │ │ │ │ ├── [1.9K] IntegerTypeInfo.java
│ │ │ │ │ ├── [5.2K] LocalTimeTypeInfo.java
│ │ │ │ │ ├── [2.4K] NothingTypeInfo.java
│ │ │ │ │ ├── [1.9K] NumericTypeInfo.java
│ │ │ │ │ ├── [9.5K] PrimitiveArrayTypeInfo.java
│ │ │ │ │ ├── [5.2K] SqlTimeTypeInfo.java
│ │ │ │ │ ├── [2.6K] TypeHint.java
│ │ │ │ │ ├── [2.4K] TypeInfoFactory.java
│ │ │ │ │ ├── [1.7K] TypeInfo.java
│ │ │ │ │ ├── [8.5K] TypeInformation.java
│ │ │ │ │ └── [ 20K] Types.java
│ │ │ │ └── [4.0K] typeutils
│ │ │ │ ├── [3.2K] BackwardsCompatibleSerializerSnapshot.java
│ │ │ │ ├── [4.0K] base
│ │ │ │ │ ├── [4.0K] array
│ │ │ │ │ │ ├── [2.0K] BooleanPrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.5K] BooleanPrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [1.9K] BytePrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.3K] BytePrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [1.9K] CharPrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.4K] CharPrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [2.0K] DoublePrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.4K] DoublePrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [1.9K] FloatPrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.4K] FloatPrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [1.9K] IntPrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.3K] IntPrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [2.0K] LongPrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.4K] LongPrimitiveArraySerializer.java
│ │ │ │ │ │ ├── [3.6K] PrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [1.9K] ShortPrimitiveArrayComparator.java
│ │ │ │ │ │ ├── [3.4K] ShortPrimitiveArraySerializer.java
│ │ │ │ │ │ └── [3.5K] StringArraySerializer.java
│ │ │ │ │ ├── [2.9K] BasicTypeComparator.java
│ │ │ │ │ ├── [3.8K] BigDecComparator.java
│ │ │ │ │ ├── [4.6K] BigDecSerializer.java
│ │ │ │ │ ├── [3.4K] BigIntComparator.java
│ │ │ │ │ ├── [4.5K] BigIntSerializer.java
│ │ │ │ │ ├── [2.0K] BooleanComparator.java
│ │ │ │ │ ├── [2.8K] BooleanSerializer.java
│ │ │ │ │ ├── [4.3K] BooleanValueComparator.java
│ │ │ │ │ ├── [3.0K] BooleanValueSerializer.java
│ │ │ │ │ ├── [2.0K] ByteComparator.java
│ │ │ │ │ ├── [2.8K] ByteSerializer.java
│ │ │ │ │ ├── [4.2K] ByteValueComparator.java
│ │ │ │ │ ├── [2.8K] ByteValueSerializer.java
│ │ │ │ │ ├── [2.0K] CharComparator.java
│ │ │ │ │ ├── [2.8K] CharSerializer.java
│ │ │ │ │ ├── [4.2K] CharValueComparator.java
│ │ │ │ │ ├── [2.8K] CharValueSerializer.java
│ │ │ │ │ ├── [2.5K] CollectionSerializerConfigSnapshot.java
│ │ │ │ │ ├── [3.1K] DateComparator.java
│ │ │ │ │ ├── [3.0K] DateSerializer.java
│ │ │ │ │ ├── [2.0K] DoubleComparator.java
│ │ │ │ │ ├── [2.8K] DoubleSerializer.java
│ │ │ │ │ ├── [4.4K] DoubleValueComparator.java
│ │ │ │ │ ├── [2.9K] DoubleValueSerializer.java
│ │ │ │ │ ├── [2.5K] EnumComparator.java
│ │ │ │ │ ├── [ 12K] EnumSerializer.java
│ │ │ │ │ ├── [2.0K] FloatComparator.java
│ │ │ │ │ ├── [2.8K] FloatSerializer.java
│ │ │ │ │ ├── [4.4K] FloatValueComparator.java
│ │ │ │ │ ├── [2.9K] FloatValueSerializer.java
│ │ │ │ │ ├── [4.9K] GenericArraySerializerConfigSnapshot.java
│ │ │ │ │ ├── [5.2K] GenericArraySerializer.java
│ │ │ │ │ ├── [3.4K] GenericArraySerializerSnapshot.java
│ │ │ │ │ ├── [3.3K] InstantComparator.java
│ │ │ │ │ ├── [3.6K] InstantSerializer.java
│ │ │ │ │ ├── [2.0K] IntComparator.java
│ │ │ │ │ ├── [2.8K] IntSerializer.java
│ │ │ │ │ ├── [4.2K] IntValueComparator.java
│ │ │ │ │ ├── [2.8K] IntValueSerializer.java
│ │ │ │ │ ├── [5.6K] ListSerializer.java
│ │ │ │ │ ├── [2.0K] ListSerializerSnapshot.java
│ │ │ │ │ ├── [5.4K] LocalDateComparator.java
│ │ │ │ │ ├── [3.2K] LocalDateSerializer.java
│ │ │ │ │ ├── [4.6K] LocalDateTimeComparator.java
│ │ │ │ │ ├── [3.8K] LocalDateTimeSerializer.java
│ │ │ │ │ ├── [3.7K] LocalTimeComparator.java
│ │ │ │ │ ├── [3.3K] LocalTimeSerializer.java
│ │ │ │ │ ├── [2.0K] LongComparator.java
│ │ │ │ │ ├── [2.8K] LongSerializer.java
│ │ │ │ │ ├── [4.2K] LongValueComparator.java
│ │ │ │ │ ├── [2.8K] LongValueSerializer.java
│ │ │ │ │ ├── [2.7K] MapSerializerConfigSnapshot.java
│ │ │ │ │ ├── [6.2K] MapSerializer.java
│ │ │ │ │ ├── [2.4K] MapSerializerSnapshot.java
│ │ │ │ │ ├── [5.0K] NormalizedKeyUtil.java
│ │ │ │ │ ├── [3.7K] NullValueComparator.java
│ │ │ │ │ ├── [2.8K] NullValueSerializer.java
│ │ │ │ │ ├── [2.0K] ShortComparator.java
│ │ │ │ │ ├── [2.8K] ShortSerializer.java
│ │ │ │ │ ├── [4.3K] ShortValueComparator.java
│ │ │ │ │ ├── [2.9K] ShortValueSerializer.java
│ │ │ │ │ ├── [3.1K] SqlDateSerializer.java
│ │ │ │ │ ├── [3.3K] SqlTimeSerializer.java
│ │ │ │ │ ├── [2.9K] SqlTimestampComparator.java
│ │ │ │ │ ├── [3.5K] SqlTimestampSerializer.java
│ │ │ │ │ ├── [2.9K] StringComparator.java
│ │ │ │ │ ├── [2.9K] StringSerializer.java
│ │ │ │ │ ├── [4.3K] StringValueComparator.java
│ │ │ │ │ ├── [3.4K] StringValueSerializer.java
│ │ │ │ │ ├── [1.4K] TypeSerializerSingleton.java
│ │ │ │ │ └── [2.8K] VoidSerializer.java
│ │ │ │ ├── [8.9K] CompositeSerializer.java
│ │ │ │ ├── [1.4K] CompositeTypeComparator.java
│ │ │ │ ├── [9.3K] CompositeType.java
│ │ │ │ ├── [3.8K] CompositeTypeSerializerConfigSnapshot.java
│ │ │ │ ├── [ 18K] CompositeTypeSerializerSnapshot.java
│ │ │ │ ├── [9.3K] CompositeTypeSerializerUtil.java
│ │ │ │ ├── [3.0K] GenericPairComparator.java
│ │ │ │ ├── [2.6K] GenericTypeSerializerConfigSnapshot.java
│ │ │ │ ├── [3.2K] GenericTypeSerializerSnapshot.java
│ │ │ │ ├── [1.5K] LegacySerializerSnapshotTransformer.java
│ │ │ │ ├── [8.6K] NestedSerializersSnapshotDelegate.java
│ │ │ │ ├── [4.0K] ParameterlessTypeSerializerConfig.java
│ │ │ │ ├── [1.4K] SameTypePairComparator.java
│ │ │ │ ├── [3.9K] SimpleTypeSerializerSnapshot.java
│ │ │ │ ├── [6.9K] SingleThreadAccessCheckingTypeSerializer.java
│ │ │ │ ├── [1.2K] TypeComparatorFactory.java
│ │ │ │ ├── [ 14K] TypeComparator.java
│ │ │ │ ├── [1.2K] TypePairComparatorFactory.java
│ │ │ │ ├── [2.2K] TypePairComparator.java
│ │ │ │ ├── [8.7K] TypeSerializerConfigSnapshot.java
│ │ │ │ ├── [1.2K] TypeSerializerFactory.java
│ │ │ │ ├── [8.8K] TypeSerializer.java
│ │ │ │ ├── [7.3K] TypeSerializerSchemaCompatibility.java
│ │ │ │ ├── [ 13K] TypeSerializerSerializationUtil.java
│ │ │ │ ├── [8.3K] TypeSerializerSnapshot.java
│ │ │ │ ├── [7.8K] TypeSerializerSnapshotSerializationUtil.java
│ │ │ │ ├── [2.9K] TypeSerializerUtils.java
│ │ │ │ └── [3.9K] UnloadableDummyTypeSerializer.java
│ │ │ ├── [4.0K] connector
│ │ │ │ └── [4.0K] source
│ │ │ │ ├── [2.4K] Boundedness.java
│ │ │ │ ├── [1.9K] ReaderInfo.java
│ │ │ │ ├── [4.9K] ReaderOutput.java
│ │ │ │ ├── [1.1K] SourceEvent.java
│ │ │ │ ├── [3.5K] Source.java
│ │ │ │ ├── [2.9K] SourceOutput.java
│ │ │ │ ├── [1.3K] SourceReaderContext.java
│ │ │ │ ├── [2.6K] SourceReader.java
│ │ │ │ ├── [1.1K] SourceSplit.java
│ │ │ │ ├── [4.1K] SplitEnumeratorContext.java
│ │ │ │ ├── [2.6K] SplitEnumerator.java
│ │ │ │ └── [1.6K] SplitsAssignment.java
│ │ │ ├── [4.0K] dag
│ │ │ │ ├── [ 979] Pipeline.java
│ │ │ │ └── [ 18K] Transformation.java
│ │ │ └── [4.0K] java
│ │ │ ├── [8.6K] ClosureCleaner.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [2.2K] KeySelector.java
│ │ │ │ └── [1.3K] NullByteKeySelector.java
│ │ │ ├── [4.0K] tuple
│ │ │ │ ├── [4.0K] builder
│ │ │ │ │ ├── [1.5K] Tuple0Builder.java
│ │ │ │ │ ├── [2.2K] Tuple10Builder.java
│ │ │ │ │ ├── [2.3K] Tuple11Builder.java
│ │ │ │ │ ├── [2.4K] Tuple12Builder.java
│ │ │ │ │ ├── [2.5K] Tuple13Builder.java
│ │ │ │ │ ├── [2.5K] Tuple14Builder.java
│ │ │ │ │ ├── [2.6K] Tuple15Builder.java
│ │ │ │ │ ├── [2.7K] Tuple16Builder.java
│ │ │ │ │ ├── [2.8K] Tuple17Builder.java
│ │ │ │ │ ├── [2.8K] Tuple18Builder.java
│ │ │ │ │ ├── [2.9K] Tuple19Builder.java
│ │ │ │ │ ├── [1.6K] Tuple1Builder.java
│ │ │ │ │ ├── [3.0K] Tuple20Builder.java
│ │ │ │ │ ├── [3.1K] Tuple21Builder.java
│ │ │ │ │ ├── [3.2K] Tuple22Builder.java
│ │ │ │ │ ├── [3.2K] Tuple23Builder.java
│ │ │ │ │ ├── [3.3K] Tuple24Builder.java
│ │ │ │ │ ├── [3.4K] Tuple25Builder.java
│ │ │ │ │ ├── [1.7K] Tuple2Builder.java
│ │ │ │ │ ├── [1.7K] Tuple3Builder.java
│ │ │ │ │ ├── [1.8K] Tuple4Builder.java
│ │ │ │ │ ├── [1.9K] Tuple5Builder.java
│ │ │ │ │ ├── [2.0K] Tuple6Builder.java
│ │ │ │ │ ├── [2.0K] Tuple7Builder.java
│ │ │ │ │ ├── [2.1K] Tuple8Builder.java
│ │ │ │ │ └── [2.2K] Tuple9Builder.java
│ │ │ │ ├── [2.7K] Tuple0.java
│ │ │ │ ├── [9.7K] Tuple10.java
│ │ │ │ ├── [ 10K] Tuple11.java
│ │ │ │ ├── [ 11K] Tuple12.java
│ │ │ │ ├── [ 11K] Tuple13.java
│ │ │ │ ├── [ 12K] Tuple14.java
│ │ │ │ ├── [ 13K] Tuple15.java
│ │ │ │ ├── [ 13K] Tuple16.java
│ │ │ │ ├── [ 14K] Tuple17.java
│ │ │ │ ├── [ 14K] Tuple18.java
│ │ │ │ ├── [ 15K] Tuple19.java
│ │ │ │ ├── [4.9K] Tuple1.java
│ │ │ │ ├── [ 15K] Tuple20.java
│ │ │ │ ├── [ 16K] Tuple21.java
│ │ │ │ ├── [ 17K] Tuple22.java
│ │ │ │ ├── [ 17K] Tuple23.java
│ │ │ │ ├── [ 18K] Tuple24.java
│ │ │ │ ├── [ 18K] Tuple25.java
│ │ │ │ ├── [5.6K] Tuple2.java
│ │ │ │ ├── [6.0K] Tuple3.java
│ │ │ │ ├── [6.5K] Tuple4.java
│ │ │ │ ├── [7.0K] Tuple5.java
│ │ │ │ ├── [7.6K] Tuple6.java
│ │ │ │ ├── [8.1K] Tuple7.java
│ │ │ │ ├── [8.6K] Tuple8.java
│ │ │ │ ├── [9.2K] Tuple9.java
│ │ │ │ └── [5.7K] Tuple.java
│ │ │ └── [4.0K] typeutils
│ │ │ ├── [4.9K] AvroUtils.java
│ │ │ ├── [1.8K] EitherTypeInfoFactory.java
│ │ │ ├── [3.7K] EitherTypeInfo.java
│ │ │ ├── [3.6K] EnumTypeInfo.java
│ │ │ ├── [3.7K] GenericTypeInfo.java
│ │ │ ├── [1.7K] InputTypeConfigurable.java
│ │ │ ├── [3.8K] ListTypeInfo.java
│ │ │ ├── [4.3K] MapTypeInfo.java
│ │ │ ├── [3.9K] MissingTypeInfo.java
│ │ │ ├── [2.7K] MultisetTypeInfo.java
│ │ │ ├── [4.4K] ObjectArrayTypeInfo.java
│ │ │ ├── [2.5K] PojoField.java
│ │ │ ├── [ 13K] PojoTypeInfo.java
│ │ │ ├── [1.5K] ResultTypeQueryable.java
│ │ │ ├── [ 13K] RowTypeInfo.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [5.0K] CopyableValueComparator.java
│ │ │ │ ├── [5.5K] CopyableValueSerializer.java
│ │ │ │ ├── [2.0K] DataInputViewStream.java
│ │ │ │ ├── [1.4K] DataOutputViewStream.java
│ │ │ │ ├── [2.6K] EitherSerializerConfigSnapshot.java
│ │ │ │ ├── [5.8K] EitherSerializer.java
│ │ │ │ ├── [4.2K] EitherSerializerSnapshot.java
│ │ │ │ ├── [2.0K] FieldSerializer.java
│ │ │ │ ├── [5.0K] GenericTypeComparator.java
│ │ │ │ ├── [2.3K] JavaEitherSerializerSnapshot.java
│ │ │ │ ├── [4.0K] kryo
│ │ │ │ │ ├── [3.1K] JavaSerializer.java
│ │ │ │ │ ├── [1.7K] KryoSerializerDebugInitHelper.java
│ │ │ │ │ ├── [ 21K] KryoSerializer.java
│ │ │ │ │ ├── [ 14K] KryoSerializerSnapshotData.java
│ │ │ │ │ ├── [6.7K] KryoSerializerSnapshot.java
│ │ │ │ │ ├── [1.8K] MinlogForwarder.java
│ │ │ │ │ └── [8.1K] Serializers.java
│ │ │ │ ├── [6.1K] KryoRegistration.java
│ │ │ │ ├── [9.4K] KryoRegistrationSerializerConfigSnapshot.java
│ │ │ │ ├── [4.3K] KryoUtils.java
│ │ │ │ ├── [2.9K] MaskUtils.java
│ │ │ │ ├── [3.7K] NoFetchingInput.java
│ │ │ │ ├── [ 12K] NullableSerializer.java
│ │ │ │ ├── [6.7K] NullAwareComparator.java
│ │ │ │ ├── [ 10K] PojoComparator.java
│ │ │ │ ├── [3.1K] PojoFieldUtils.java
│ │ │ │ ├── [ 39K] PojoSerializer.java
│ │ │ │ ├── [ 13K] PojoSerializerSnapshotData.java
│ │ │ │ ├── [ 23K] PojoSerializerSnapshot.java
│ │ │ │ ├── [ 15K] RowComparator.java
│ │ │ │ ├── [ 12K] RowSerializer.java
│ │ │ │ ├── [2.4K] RuntimeComparatorFactory.java
│ │ │ │ ├── [1.7K] RuntimePairComparatorFactory.java
│ │ │ │ ├── [3.7K] RuntimeSerializerFactory.java
│ │ │ │ ├── [3.8K] Tuple0Serializer.java
│ │ │ │ ├── [1.3K] Tuple0SerializerSnapshot.java
│ │ │ │ ├── [9.4K] TupleComparatorBase.java
│ │ │ │ ├── [4.9K] TupleComparator.java
│ │ │ │ ├── [3.3K] TupleSerializerBase.java
│ │ │ │ ├── [2.9K] TupleSerializerConfigSnapshot.java
│ │ │ │ ├── [5.6K] TupleSerializer.java
│ │ │ │ ├── [3.1K] TupleSerializerSnapshot.java
│ │ │ │ ├── [5.2K] ValueComparator.java
│ │ │ │ └── [7.3K] ValueSerializer.java
│ │ │ ├── [7.7K] TupleTypeInfoBase.java
│ │ │ ├── [8.3K] TupleTypeInfo.java
│ │ │ ├── [1.7K] TypeExtractionException.java
│ │ │ ├── [ 12K] TypeExtractionUtils.java
│ │ │ ├── [ 81K] TypeExtractor.java
│ │ │ └── [ 11K] ValueTypeInfo.java
│ │ ├── [4.0K] configuration
│ │ │ ├── [ 13K] AkkaOptions.java
│ │ │ ├── [2.1K] AlgorithmOptions.java
│ │ │ ├── [4.7K] BlobServerOptions.java
│ │ │ ├── [8.2K] CheckpointingOptions.java
│ │ │ ├── [4.5K] ClusterOptions.java
│ │ │ ├── [ 70K] ConfigConstants.java
│ │ │ ├── [9.6K] ConfigOption.java
│ │ │ ├── [9.0K] ConfigOptions.java
│ │ │ ├── [ 36K] Configuration.java
│ │ │ ├── [8.0K] ConfigurationUtils.java
│ │ │ ├── [4.5K] ConfigUtils.java
│ │ │ ├── [ 18K] CoreOptions.java
│ │ │ ├── [ 12K] DelegatingConfiguration.java
│ │ │ ├── [1.3K] DeploymentOptionsInternal.java
│ │ │ ├── [2.2K] DeploymentOptions.java
│ │ │ ├── [4.0K] description
│ │ │ │ ├── [1014] BlockElement.java
│ │ │ │ ├── [1.1K] DescriptionElement.java
│ │ │ │ ├── [3.3K] Description.java
│ │ │ │ ├── [3.1K] Formatter.java
│ │ │ │ ├── [2.2K] HtmlFormatter.java
│ │ │ │ ├── [1009] InlineElement.java
│ │ │ │ ├── [1.2K] LineBreakElement.java
│ │ │ │ ├── [1.9K] LinkElement.java
│ │ │ │ ├── [1.7K] ListElement.java
│ │ │ │ └── [2.8K] TextElement.java
│ │ │ ├── [2.4K] ExecutionOptions.java
│ │ │ ├── [7.0K] ExternalResourceOptions.java
│ │ │ ├── [2.1K] FallbackKey.java
│ │ │ ├── [7.4K] GlobalConfiguration.java
│ │ │ ├── [2.0K] HeartbeatManagerOptions.java
│ │ │ ├── [ 11K] HighAvailabilityOptions.java
│ │ │ ├── [4.1K] HistoryServerOptions.java
│ │ │ ├── [2.2K] IllegalConfigurationException.java
│ │ │ ├── [ 15K] JobManagerOptions.java
│ │ │ ├── [ 12K] MemorySize.java
│ │ │ ├── [9.1K] MetricOptions.java
│ │ │ ├── [ 15K] NettyShuffleEnvironmentOptions.java
│ │ │ ├── [3.1K] OptimizerOptions.java
│ │ │ ├── [1.4K] PipelineOptionsInternal.java
│ │ │ ├── [ 10K] PipelineOptions.java
│ │ │ ├── [5.9K] QueryableStateOptions.java
│ │ │ ├── [1.9K] ReadableConfig.java
│ │ │ ├── [7.3K] ResourceManagerOptions.java
│ │ │ ├── [5.4K] RestartStrategyOptions.java
│ │ │ ├── [6.6K] RestOptions.java
│ │ │ ├── [ 20K] SecurityOptions.java
│ │ │ ├── [6.0K] StructuredOptionsSplitter.java
│ │ │ ├── [ 26K] TaskManagerOptions.java
│ │ │ ├── [2.2K] UnmodifiableConfiguration.java
│ │ │ ├── [7.1K] WebOptions.java
│ │ │ └── [1.5K] WritableConfig.java
│ │ ├── [4.0K] core
│ │ │ ├── [4.0K] execution
│ │ │ │ ├── [3.5K] DefaultExecutorServiceLoader.java
│ │ │ │ ├── [2.6K] DetachedJobExecutionResult.java
│ │ │ │ ├── [3.3K] JobClient.java
│ │ │ │ ├── [2.2K] JobListener.java
│ │ │ │ ├── [1.6K] PipelineExecutorFactory.java
│ │ │ │ ├── [1.9K] PipelineExecutor.java
│ │ │ │ └── [1.8K] PipelineExecutorServiceLoader.java
│ │ │ ├── [4.0K] fs
│ │ │ │ ├── [1.6K] BlockLocation.java
│ │ │ │ ├── [2.2K] CloseableRegistry.java
│ │ │ │ ├── [2.9K] ClosingFSDataInputStream.java
│ │ │ │ ├── [3.1K] ClosingFSDataOutputStream.java
│ │ │ │ ├── [3.2K] ConnectionLimitingFactory.java
│ │ │ │ ├── [1.8K] EntropyInjectingFileSystem.java
│ │ │ │ ├── [5.7K] EntropyInjector.java
│ │ │ │ ├── [3.5K] FileInputSplit.java
│ │ │ │ ├── [2.2K] FileStatus.java
│ │ │ │ ├── [1.8K] FileSystemFactory.java
│ │ │ │ ├── [ 45K] FileSystem.java
│ │ │ │ ├── [1.3K] FileSystemKind.java
│ │ │ │ ├── [4.6K] FileSystemSafetyNet.java
│ │ │ │ ├── [1.9K] FSDataInputStream.java
│ │ │ │ ├── [2.4K] FSDataInputStreamWrapper.java
│ │ │ │ ├── [4.9K] FSDataOutputStream.java
│ │ │ │ ├── [2.0K] FSDataOutputStreamWrapper.java
│ │ │ │ ├── [ 35K] LimitedConnectionsFileSystem.java
│ │ │ │ ├── [4.0K] local
│ │ │ │ │ ├── [1.6K] LocalBlockLocation.java
│ │ │ │ │ ├── [2.5K] LocalDataInputStream.java
│ │ │ │ │ ├── [2.2K] LocalDataOutputStream.java
│ │ │ │ │ ├── [2.5K] LocalFileStatus.java
│ │ │ │ │ ├── [1.3K] LocalFileSystemFactory.java
│ │ │ │ │ ├── [ 10K] LocalFileSystem.java
│ │ │ │ │ ├── [6.3K] LocalRecoverableFsDataOutputStream.java
│ │ │ │ │ ├── [2.2K] LocalRecoverable.java
│ │ │ │ │ ├── [3.2K] LocalRecoverableSerializer.java
│ │ │ │ │ └── [4.4K] LocalRecoverableWriter.java
│ │ │ │ ├── [1.3K] OutputStreamAndPath.java
│ │ │ │ ├── [ 15K] Path.java
│ │ │ │ ├── [5.8K] PluginFileSystemFactory.java
│ │ │ │ ├── [3.6K] RecoverableFsDataOutputStream.java
│ │ │ │ ├── [9.0K] RecoverableWriter.java
│ │ │ │ ├── [2.2K] RefCountedFile.java
│ │ │ │ ├── [6.9K] SafetyNetCloseableRegistry.java
│ │ │ │ ├── [5.0K] SafetyNetWrapperFileSystem.java
│ │ │ │ ├── [1.5K] UnsupportedFileSystemSchemeException.java
│ │ │ │ ├── [1.9K] UnsupportedSchemeFactory.java
│ │ │ │ └── [1.1K] WrappingProxyCloseable.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [2.6K] GenericInputSplit.java
│ │ │ │ ├── [1.8K] InputSplitAssigner.java
│ │ │ │ ├── [1.3K] InputSplit.java
│ │ │ │ ├── [1.9K] InputSplitSource.java
│ │ │ │ ├── [2.2K] InputStatus.java
│ │ │ │ ├── [2.0K] IOReadableWritable.java
│ │ │ │ ├── [3.3K] LocatableInputSplit.java
│ │ │ │ ├── [3.3K] PostVersionedIOReadableWritable.java
│ │ │ │ ├── [6.7K] SimpleVersionedSerialization.java
│ │ │ │ ├── [2.7K] SimpleVersionedSerializer.java
│ │ │ │ ├── [2.9K] VersionedIOReadableWritable.java
│ │ │ │ ├── [1.2K] Versioned.java
│ │ │ │ └── [1.4K] VersionMismatchException.java
│ │ │ ├── [4.0K] memory
│ │ │ │ ├── [1.5K] ByteArrayInputStreamWithPos.java
│ │ │ │ ├── [2.9K] ByteArrayOutputStreamWithPos.java
│ │ │ │ ├── [ 10K] DataInputDeserializer.java
│ │ │ │ ├── [2.5K] DataInputView.java
│ │ │ │ ├── [1.4K] DataInputViewStreamWrapper.java
│ │ │ │ ├── [ 11K] DataOutputSerializer.java
│ │ │ │ ├── [2.0K] DataOutputView.java
│ │ │ │ ├── [1.9K] DataOutputViewStreamWrapper.java
│ │ │ │ ├── [7.0K] HeapMemorySegment.java
│ │ │ │ ├── [ 11K] HybridMemorySegment.java
│ │ │ │ ├── [7.6K] MemorySegmentFactory.java
│ │ │ │ ├── [2.6K] MemorySegmentInputStreamWithPos.java
│ │ │ │ ├── [ 60K] MemorySegment.java
│ │ │ │ ├── [1.2K] MemorySegmentProvider.java
│ │ │ │ ├── [1.2K] MemorySegmentSource.java
│ │ │ │ ├── [1.4K] MemorySegmentWritable.java
│ │ │ │ ├── [6.1K] MemoryUtils.java
│ │ │ │ ├── [1.2K] SeekableDataInputView.java
│ │ │ │ └── [1.2K] SeekableDataOutputView.java
│ │ │ └── [4.0K] plugin
│ │ │ ├── [3.1K] DefaultPluginManager.java
│ │ │ ├── [3.8K] DirectoryBasedPluginFinder.java
│ │ │ ├── [2.4K] PluginConfig.java
│ │ │ ├── [2.1K] PluginDescriptor.java
│ │ │ ├── [1.4K] PluginFinder.java
│ │ │ ├── [1.8K] Plugin.java
│ │ │ ├── [7.0K] PluginLoader.java
│ │ │ ├── [1.5K] PluginManager.java
│ │ │ └── [2.0K] PluginUtils.java
│ │ ├── [4.0K] types
│ │ │ ├── [3.3K] BooleanValue.java
│ │ │ ├── [4.1K] ByteValue.java
│ │ │ ├── [4.3K] CharValue.java
│ │ │ ├── [2.4K] CopyableValue.java
│ │ │ ├── [2.0K] DeserializationException.java
│ │ │ ├── [3.6K] DoubleValue.java
│ │ │ ├── [6.6K] Either.java
│ │ │ ├── [3.5K] FloatValue.java
│ │ │ ├── [4.3K] IntValue.java
│ │ │ ├── [2.8K] JavaToValueConverter.java
│ │ │ ├── [2.5K] KeyFieldOutOfBoundsException.java
│ │ │ ├── [2.2K] Key.java
│ │ │ ├── [7.4K] ListValue.java
│ │ │ ├── [4.3K] LongValue.java
│ │ │ ├── [5.7K] MapValue.java
│ │ │ ├── [3.1K] NormalizableKey.java
│ │ │ ├── [1.0K] Nothing.java
│ │ │ ├── [2.7K] NullFieldException.java
│ │ │ ├── [2.6K] NullKeyFieldException.java
│ │ │ ├── [3.2K] NullValue.java
│ │ │ ├── [4.0K] parser
│ │ │ │ ├── [4.3K] BigDecParser.java
│ │ │ │ ├── [3.9K] BigIntParser.java
│ │ │ │ ├── [2.9K] BooleanParser.java
│ │ │ │ ├── [1.6K] BooleanValueParser.java
│ │ │ │ ├── [4.5K] ByteParser.java
│ │ │ │ ├── [2.6K] ByteValueParser.java
│ │ │ │ ├── [3.8K] DoubleParser.java
│ │ │ │ ├── [2.1K] DoubleValueParser.java
│ │ │ │ ├── [ 10K] FieldParser.java
│ │ │ │ ├── [3.8K] FloatParser.java
│ │ │ │ ├── [2.1K] FloatValueParser.java
│ │ │ │ ├── [4.8K] IntParser.java
│ │ │ │ ├── [2.7K] IntValueParser.java
│ │ │ │ ├── [5.3K] LongParser.java
│ │ │ │ ├── [3.0K] LongValueParser.java
│ │ │ │ ├── [4.8K] ShortParser.java
│ │ │ │ ├── [2.7K] ShortValueParser.java
│ │ │ │ ├── [3.8K] SqlDateParser.java
│ │ │ │ ├── [3.6K] SqlTimeParser.java
│ │ │ │ ├── [3.9K] SqlTimestampParser.java
│ │ │ │ ├── [3.4K] StringParser.java
│ │ │ │ └── [3.5K] StringValueParser.java
│ │ │ ├── [ 58K] Record.java
│ │ │ ├── [1.1K] ResettableValue.java
│ │ │ ├── [8.2K] Row.java
│ │ │ ├── [3.5K] RowKind.java
│ │ │ ├── [2.5K] SerializableOptional.java
│ │ │ ├── [4.2K] ShortValue.java
│ │ │ ├── [ 24K] StringValue.java
│ │ │ └── [1.3K] Value.java
│ │ └── [4.0K] util
│ │ ├── [5.4K] AbstractCloseableRegistry.java
│ │ ├── [6.0K] AbstractID.java
│ │ ├── [1.3K] ArrayUtils.java
│ │ ├── [1.5K] AutoCloseableAsync.java
│ │ ├── [3.7K] ChildFirstClassLoader.java
│ │ ├── [4.0K] clock
│ │ │ ├── [2.0K] Clock.java
│ │ │ ├── [2.1K] ManualClock.java
│ │ │ └── [1.8K] SystemClock.java
│ │ ├── [1.5K] CloseableIterable.java
│ │ ├── [4.8K] CloseableIterator.java
│ │ ├── [3.0K] CollectionUtil.java
│ │ ├── [1.2K] Collector.java
│ │ ├── [4.0K] concurrent
│ │ │ ├── [1.4K] FutureConsumerWithException.java
│ │ │ └── [2.5K] NeverCompleteFuture.java
│ │ ├── [1.3K] ConfigurationException.java
│ │ ├── [1.5K] Disposable.java
│ │ ├── [2.0K] DynamicCodeLoadingException.java
│ │ ├── [ 21K] ExceptionUtils.java
│ │ ├── [3.5K] ExecutorUtils.java
│ │ ├── [ 24K] FileUtils.java
│ │ ├── [1.7K] FlinkException.java
│ │ ├── [1.7K] FlinkRuntimeException.java
│ │ ├── [2.3K] FlinkUserCodeClassLoader.java
│ │ ├── [4.0K] function
│ │ │ ├── [2.0K] BiConsumerWithException.java
│ │ │ ├── [2.2K] BiFunctionWithException.java
│ │ │ ├── [1.5K] CheckedSupplier.java
│ │ │ ├── [3.8K] FunctionUtils.java
│ │ │ ├── [1.4K] FunctionWithException.java
│ │ │ ├── [1.2K] LongFunctionWithException.java
│ │ │ ├── [1.4K] QuadConsumer.java
│ │ │ ├── [1.5K] QuadFunction.java
│ │ │ ├── [1.3K] RunnableWithException.java
│ │ │ ├── [1.3K] SupplierWithException.java
│ │ │ ├── [1.4K] ThrowingConsumer.java
│ │ │ ├── [1.8K] ThrowingRunnable.java
│ │ │ ├── [1.3K] TriConsumer.java
│ │ │ ├── [1.4K] TriFunction.java
│ │ │ └── [2.3K] TriFunctionWithException.java
│ │ ├── [ 27K] InstantiationUtil.java
│ │ ├── [7.9K] IOUtils.java
│ │ ├── [1.1K] IterableIterator.java
│ │ ├── [1.7K] IterableUtils.java
│ │ ├── [2.5K] JarUtils.java
│ │ ├── [ 14K] JavaGcCleanerWrapper.java
│ │ ├── [3.3K] LambdaUtil.java
│ │ ├── [9.7K] LinkedOptionalMap.java
│ │ ├── [3.9K] LinkedOptionalMapSerializer.java
│ │ ├── [5.4K] LongValueSequenceIterator.java
│ │ ├── [7.6K] MathUtils.java
│ │ ├── [2.4K] MutableObjectIterator.java
│ │ ├── [ 15K] NetUtils.java
│ │ ├── [5.2K] NumberSequenceIterator.java
│ │ ├── [5.0K] OperatingSystem.java
│ │ ├── [1.7K] OptionalConsumer.java
│ │ ├── [3.6K] OptionalFailure.java
│ │ ├── [3.6K] OutputTag.java
│ │ ├── [ 11K] Preconditions.java
│ │ ├── [4.3K] ProcessorArchitecture.java
│ │ ├── [4.3K] PropertiesUtil.java
│ │ ├── [1.2K] RefCounted.java
│ │ ├── [8.0K] ReflectionUtil.java
│ │ ├── [4.9K] ResourceGuard.java
│ │ ├── [1.1K] SerializableObject.java
│ │ ├── [5.9K] SerializedThrowable.java
│ │ ├── [3.3K] SerializedValue.java
│ │ ├── [3.2K] ShutdownHookUtil.java
│ │ ├── [2.3K] SplittableIterator.java
│ │ ├── [1.5K] StateMigrationException.java
│ │ ├── [1.8K] StringBasedID.java
│ │ ├── [ 10K] StringUtils.java
│ │ ├── [4.7K] StringValueUtils.java
│ │ ├── [3.6K] TaskManagerExceptionUtils.java
│ │ ├── [2.6K] TemporaryClassLoaderContext.java
│ │ ├── [3.1K] TernaryBoolean.java
│ │ ├── [1.5K] ThrowableCatchingRunnable.java
│ │ ├── [7.6K] TimeUtils.java
│ │ ├── [1.4K] TraversableOnceException.java
│ │ ├── [2.6K] UnionIterator.java
│ │ ├── [2.4K] Visitable.java
│ │ ├── [1.4K] Visitor.java
│ │ ├── [1.1K] WrappingProxy.java
│ │ ├── [2.2K] WrappingProxyUtil.java
│ │ ├── [2.4K] WrappingRuntimeException.java
│ │ └── [2.1K] XORShiftRandom.java
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] api
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [4.0K] accumulators
│ │ │ │ │ ├── [3.3K] AverageAccumulatorTest.java
│ │ │ │ │ ├── [2.1K] DoubleMaximumTest.java
│ │ │ │ │ ├── [2.1K] DoubleMinimumTest.java
│ │ │ │ │ ├── [2.0K] IntMaximumTest.java
│ │ │ │ │ ├── [2.0K] IntMinimumTest.java
│ │ │ │ │ ├── [2.2K] LongMaximumTest.java
│ │ │ │ │ └── [2.2K] LongMinimumTest.java
│ │ │ │ ├── [4.0K] eventtime
│ │ │ │ │ ├── [2.1K] AscendingTimestampsWatermarksTest.java
│ │ │ │ │ ├── [2.9K] BoundedOutOfOrdernessWatermarksTest.java
│ │ │ │ │ ├── [1.3K] TestingWatermarkOutput.java
│ │ │ │ │ ├── [1.5K] WatermarkMatchers.java
│ │ │ │ │ ├── [ 15K] WatermarkOutputMultiplexerTest.java
│ │ │ │ │ ├── [7.7K] WatermarkStrategyTest.java
│ │ │ │ │ └── [3.4K] WatermarksWithIdlenessTest.java
│ │ │ │ ├── [8.5K] ExecutionConfigFromConfigurationTest.java
│ │ │ │ ├── [ 13K] ExecutionConfigTest.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [7.1K] RuntimeUDFContextTest.java
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ ├── [6.0K] BinaryInputFormatTest.java
│ │ │ │ │ ├── [2.1K] DefaultFilterTest.java
│ │ │ │ │ ├── [ 10K] DelimitedInputFormatSamplingTest.java
│ │ │ │ │ ├── [ 18K] DelimitedInputFormatTest.java
│ │ │ │ │ ├── [ 12K] EnumerateNestedFilesTest.java
│ │ │ │ │ ├── [ 29K] FileInputFormatTest.java
│ │ │ │ │ ├── [ 18K] FileOutputFormatTest.java
│ │ │ │ │ ├── [ 26K] GenericCsvInputFormatTest.java
│ │ │ │ │ ├── [5.6K] GlobFilePathFilterTest.java
│ │ │ │ │ ├── [1.3K] InputStreamFSInputWrapperTest.java
│ │ │ │ │ ├── [2.0K] RichInputFormatTest.java
│ │ │ │ │ └── [2.0K] RichOutputFormatTest.java
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [4.0K] base
│ │ │ │ │ │ ├── [4.6K] FlatMapOperatorCollectionTest.java
│ │ │ │ │ │ ├── [5.9K] InnerJoinOperatorBaseTest.java
│ │ │ │ │ │ ├── [5.3K] MapOperatorTest.java
│ │ │ │ │ │ ├── [8.8K] OuterJoinOperatorBaseTest.java
│ │ │ │ │ │ └── [4.3K] PartitionMapOperatorTest.java
│ │ │ │ │ ├── [9.6K] DualInputSemanticPropertiesTest.java
│ │ │ │ │ ├── [ 20K] ExpressionKeysTest.java
│ │ │ │ │ ├── [4.5K] GenericDataSinkBaseTest.java
│ │ │ │ │ ├── [4.4K] GenericDataSourceBaseTest.java
│ │ │ │ │ ├── [1.8K] OrderingTest.java
│ │ │ │ │ ├── [7.4K] ResourceSpecTest.java
│ │ │ │ │ ├── [6.1K] SelectorFunctionKeysTest.java
│ │ │ │ │ ├── [6.4K] SingleInputSemanticPropertiesTest.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [3.2K] FieldListTest.java
│ │ │ │ │ ├── [3.3K] FieldSetTest.java
│ │ │ │ │ ├── [2.9K] NonRichGenericInputFormat.java
│ │ │ │ │ ├── [1.1K] TestIOData.java
│ │ │ │ │ ├── [1.5K] TestNonRichInputFormat.java
│ │ │ │ │ ├── [1.5K] TestNonRichOutputFormat.java
│ │ │ │ │ ├── [2.0K] TestRichInputFormat.java
│ │ │ │ │ └── [1.6K] TestRichOutputFormat.java
│ │ │ │ ├── [4.0K] resources
│ │ │ │ │ ├── [4.6K] ResourceTest.java
│ │ │ │ │ └── [1.2K] TestResource.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ ├── [4.6K] AbstractDeserializationSchemaTest.java
│ │ │ │ │ ├── [1.8K] SimpleStringSchemaTest.java
│ │ │ │ │ └── [3.3K] TypeInformationSerializationSchemaTest.java
│ │ │ │ ├── [4.0K] state
│ │ │ │ │ ├── [4.3K] ListStateDescriptorTest.java
│ │ │ │ │ ├── [5.0K] MapStateDescriptorTest.java
│ │ │ │ │ ├── [3.3K] ReducingStateDescriptorTest.java
│ │ │ │ │ ├── [ 10K] StateDescriptorTest.java
│ │ │ │ │ ├── [3.2K] StateTtlConfigTest.java
│ │ │ │ │ └── [3.5K] ValueStateDescriptorTest.java
│ │ │ │ ├── [4.0K] typeinfo
│ │ │ │ │ ├── [1.6K] BasicArrayTypeInfoTest.java
│ │ │ │ │ ├── [1.6K] BasicTypeInfoTest.java
│ │ │ │ │ ├── [1.3K] FractionalTypeInfoTest.java
│ │ │ │ │ ├── [1.3K] IntegerTypeInfoTest.java
│ │ │ │ │ ├── [1.2K] LocalTimeTypeInfoTest.java
│ │ │ │ │ ├── [1.2K] NothingTypeInfoTest.java
│ │ │ │ │ ├── [1.5K] NumericTypeInfoTest.java
│ │ │ │ │ ├── [1.6K] PrimitiveArrayTypeInfoTest.java
│ │ │ │ │ ├── [1.2K] SqlTimeTypeInfoTest.java
│ │ │ │ │ ├── [2.3K] TypeHintTest.java
│ │ │ │ │ └── [2.4K] TypeInformationTest.java
│ │ │ │ └── [4.0K] typeutils
│ │ │ │ ├── [4.0K] base
│ │ │ │ │ ├── [4.0K] array
│ │ │ │ │ │ ├── [1.6K] BooleanPrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.8K] BooleanPrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.5K] BytePrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [2.1K] BytePrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.4K] CharPrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.6K] CharPrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.5K] DoublePrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.9K] DoublePrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.5K] FloatPrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.9K] FloatPrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.5K] IntPrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.7K] IntPrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.5K] LongPrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.7K] LongPrimitiveArraySerializerTest.java
│ │ │ │ │ │ ├── [1.6K] PrimitiveArrayComparatorTestBase.java
│ │ │ │ │ │ ├── [4.3K] PrimitiveArraySerializerUpgradeTest.java
│ │ │ │ │ │ ├── [ 16K] PrimitiveArraySerializerUpgradeTestSpecifications.java
│ │ │ │ │ │ ├── [1.5K] ShortPrimitiveArrayComparatorTest.java
│ │ │ │ │ │ ├── [1.8K] ShortPrimitiveArraySerializerTest.java
│ │ │ │ │ │ └── [2.6K] StringArraySerializerTest.java
│ │ │ │ │ ├── [8.4K] BasicTypeSerializerUpgradeTest.java
│ │ │ │ │ ├── [ 31K] BasicTypeSerializerUpgradeTestSpecifications.java
│ │ │ │ │ ├── [2.0K] BigDecComparatorTest.java
│ │ │ │ │ ├── [1.7K] BigDecSerializerTest.java
│ │ │ │ │ ├── [2.0K] BigIntComparatorTest.java
│ │ │ │ │ ├── [1.7K] BigIntSerializerTest.java
│ │ │ │ │ ├── [1.6K] BooleanComparatorTest.java
│ │ │ │ │ ├── [1.7K] BooleanSerializerTest.java
│ │ │ │ │ ├── [1.5K] BooleanValueComparatorTest.java
│ │ │ │ │ ├── [1.7K] BooleanValueSerializerTest.java
│ │ │ │ │ ├── [2.1K] ByteComparatorTest.java
│ │ │ │ │ ├── [1.8K] ByteSerializerTest.java
│ │ │ │ │ ├── [2.1K] ByteValueComparatorTest.java
│ │ │ │ │ ├── [1.8K] ByteValueSerializerTest.java
│ │ │ │ │ ├── [1.9K] CharComparatorTest.java
│ │ │ │ │ ├── [1.8K] CharSerializerTest.java
│ │ │ │ │ ├── [1.9K] CharValueComparatorTest.java
│ │ │ │ │ ├── [1.8K] CharValueSerializerTest.java
│ │ │ │ │ ├── [1.8K] DateComparatorTest.java
│ │ │ │ │ ├── [1.6K] DateSerializerTest.java
│ │ │ │ │ ├── [2.0K] DoubleComparatorTest.java
│ │ │ │ │ ├── [1.8K] DoubleSerializerTest.java
│ │ │ │ │ ├── [1.9K] DoubleValueComparatorTest.java
│ │ │ │ │ ├── [1.9K] DoubleValueSerializerTest.java
│ │ │ │ │ ├── [4.5K] EnumSerializerCompatibilityTest.java
│ │ │ │ │ ├── [ 10K] EnumSerializerTest.java
│ │ │ │ │ ├── [6.0K] EnumSerializerUpgradeTest.java
│ │ │ │ │ ├── [1.9K] FloatComparatorTest.java
│ │ │ │ │ ├── [1.9K] FloatSerializerTest.java
│ │ │ │ │ ├── [1.9K] FloatValueComparatorTest.java
│ │ │ │ │ ├── [1.9K] FloatValueSerializerTest.java
│ │ │ │ │ ├── [1.8K] InstantComparatorTest.java
│ │ │ │ │ ├── [2.0K] InstantSerializerTest.java
│ │ │ │ │ ├── [2.0K] IntComparatorTest.java
│ │ │ │ │ ├── [1.6K] IntSerializerTest.java
│ │ │ │ │ ├── [1.9K] IntValueComparatorTest.java
│ │ │ │ │ ├── [1.7K] IntValueSerializerTest.java
│ │ │ │ │ ├── [2.5K] ListSerializerTest.java
│ │ │ │ │ ├── [3.8K] ListSerializerUpgradeTest.java
│ │ │ │ │ ├── [1.6K] LocalDateComparatorTest.java
│ │ │ │ │ ├── [1.6K] LocalDateSerializerTest.java
│ │ │ │ │ ├── [1.9K] LocalDateTimeComparatorTest.java
│ │ │ │ │ ├── [1.9K] LocalDateTimeSerializerTest.java
│ │ │ │ │ ├── [1.6K] LocalTimeComparatorTest.java
│ │ │ │ │ ├── [1.6K] LocalTimeSerializerTest.java
│ │ │ │ │ ├── [2.0K] LongComparatorTest.java
│ │ │ │ │ ├── [1.5K] LongSerializerTest.java
│ │ │ │ │ ├── [1.9K] LongValueComparatorTest.java
│ │ │ │ │ ├── [1.8K] LongValueSerializerTest.java
│ │ │ │ │ ├── [2.8K] MapSerializerTest.java
│ │ │ │ │ ├── [4.0K] MapSerializerUpgradeTest.java
│ │ │ │ │ ├── [2.2K] ShortComparatorTest.java
│ │ │ │ │ ├── [1.8K] ShortSerializerTest.java
│ │ │ │ │ ├── [2.2K] ShortValueComparatorTest.java
│ │ │ │ │ ├── [1.8K] ShortValueSerializerTest.java
│ │ │ │ │ ├── [1.6K] SqlDateComparatorTest.java
│ │ │ │ │ ├── [1.5K] SqlDateSerializerTest.java
│ │ │ │ │ ├── [1.6K] SqlTimeComparatorTest.java
│ │ │ │ │ ├── [1.5K] SqlTimeSerializerTest.java
│ │ │ │ │ ├── [1.9K] SqlTimestampComparatorTest.java
│ │ │ │ │ ├── [1.8K] SqlTimestampSerializerTest.java
│ │ │ │ │ ├── [1.6K] StringComparatorTest.java
│ │ │ │ │ ├── [1.5K] StringSerializerTest.java
│ │ │ │ │ ├── [1.7K] StringValueComparatorTest.java
│ │ │ │ │ ├── [2.1K] StringValueSerializerTest.java
│ │ │ │ │ └── [ 923] TestEnum.java
│ │ │ │ ├── [6.3K] ClassRelocator.java
│ │ │ │ ├── [ 16K] ComparatorTestBase.java
│ │ │ │ ├── [8.6K] CompositeSerializerTest.java
│ │ │ │ ├── [ 20K] CompositeTypeSerializerSnapshotTest.java
│ │ │ │ ├── [5.4K] CompositeTypeSerializerUpgradeTest.java
│ │ │ │ ├── [7.0K] CompositeTypeSerializerUtilTest.java
│ │ │ │ ├── [ 18K] SerializerTestBase.java
│ │ │ │ ├── [2.8K] SerializerTestInstance.java
│ │ │ │ ├── [1.5K] ThreadContextClassLoader.java
│ │ │ │ ├── [4.6K] TypeInformationTestBase.java
│ │ │ │ ├── [7.9K] TypeSerializerMatchers.java
│ │ │ │ ├── [ 15K] TypeSerializerSerializationUtilTest.java
│ │ │ │ ├── [4.8K] TypeSerializerSnapshotTest.java
│ │ │ │ └── [ 21K] TypeSerializerUpgradeTestBase.java
│ │ │ ├── [4.0K] connector
│ │ │ │ └── [4.0K] source
│ │ │ │ └── [4.0K] mocks
│ │ │ │ ├── [3.0K] MockSource.java
│ │ │ │ ├── [3.8K] MockSourceReader.java
│ │ │ │ ├── [3.3K] MockSourceSplit.java
│ │ │ │ ├── [1.6K] MockSourceSplitSerializer.java
│ │ │ │ ├── [1.9K] MockSplitEnumeratorCheckpointSerializer.java
│ │ │ │ └── [4.2K] MockSplitEnumerator.java
│ │ │ ├── [4.0K] dag
│ │ │ │ └── [2.5K] TransformationTest.java
│ │ │ └── [4.0K] java
│ │ │ ├── [ 13K] ClosureCleanerTest.java
│ │ │ ├── [4.0K] tuple
│ │ │ │ ├── [1.5K] Tuple2Test.java
│ │ │ │ └── [ 18K] TupleGenerator.java
│ │ │ └── [4.0K] typeutils
│ │ │ ├── [9.6K] CompositeTypeTest.java
│ │ │ ├── [1.5K] EitherTypeInfoTest.java
│ │ │ ├── [1.3K] EnumTypeInfoTest.java
│ │ │ ├── [1.3K] GenericTypeInfoTest.java
│ │ │ ├── [ 12K] LambdaExtractionTest.java
│ │ │ ├── [1.3K] ListTypeInfoTest.java
│ │ │ ├── [1.4K] MapTypeInfoTest.java
│ │ │ ├── [1.6K] MissingTypeInfoTest.java
│ │ │ ├── [1.4K] MultisetTypeInfoTest.java
│ │ │ ├── [1.4K] ObjectArrayTypeInfoTest.java
│ │ │ ├── [ 31K] PojoTypeExtractionTest.java
│ │ │ ├── [3.1K] PojoTypeInformationTest.java
│ │ │ ├── [2.3K] PojoTypeInfoTest.java
│ │ │ ├── [5.7K] RowTypeInfoTest.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [7.4K] AbstractGenericArraySerializerTest.java
│ │ │ │ ├── [9.8K] AbstractGenericTypeComparatorTest.java
│ │ │ │ ├── [ 11K] AbstractGenericTypeSerializerTest.java
│ │ │ │ ├── [5.3K] CopyableSerializerUpgradeTest.java
│ │ │ │ ├── [1.8K] CopyableValueComparatorTest.java
│ │ │ │ ├── [2.4K] DataInputViewStreamTest.java
│ │ │ │ ├── [1.9K] EitherSerializerCommonTest.java
│ │ │ │ ├── [9.2K] EitherSerializerTest.java
│ │ │ │ ├── [4.2K] GenericPairComparatorTest.java
│ │ │ │ ├── [4.0K] kryo
│ │ │ │ │ ├── [7.2K] KryoClearedBufferTest.java
│ │ │ │ │ ├── [1.3K] KryoGenericArraySerializerTest.java
│ │ │ │ │ ├── [1.3K] KryoGenericTypeComparatorTest.java
│ │ │ │ │ ├── [4.6K] KryoGenericTypeSerializerTest.java
│ │ │ │ │ ├── [3.9K] KryoPojosForMigrationTests.java
│ │ │ │ │ ├── [3.2K] KryoSerializerClassLoadingTest.java
│ │ │ │ │ ├── [ 11K] KryoSerializerCompatibilityTest.java
│ │ │ │ │ ├── [2.2K] KryoSerializerConcurrencyCheckInactiveITCase.java
│ │ │ │ │ ├── [5.7K] KryoSerializerConcurrencyTest.java
│ │ │ │ │ ├── [6.4K] KryoSerializerSnapshotTest.java
│ │ │ │ │ ├── [ 10K] KryoSerializerUpgradeTest.java
│ │ │ │ │ ├── [2.6K] KryoWithCustomSerializersTest.java
│ │ │ │ │ └── [3.8K] SerializersTest.java
│ │ │ │ ├── [5.8K] LegacyRowSerializerTest.java
│ │ │ │ ├── [4.2K] MultidimensionalArraySerializerTest.java
│ │ │ │ ├── [2.8K] NullableSerializerTest.java
│ │ │ │ ├── [5.2K] NullableSerializerUpgradeTest.java
│ │ │ │ ├── [2.5K] PojoComparatorTest.java
│ │ │ │ ├── [1.5K] PojoContainingTuple.java
│ │ │ │ ├── [1.4K] PojoGenericTypeSerializerTest.java
│ │ │ │ ├── [ 14K] PojoSerializerSnapshotTest.java
│ │ │ │ ├── [ 20K] PojoSerializerTest.java
│ │ │ │ ├── [5.4K] PojoSerializerUpgradeTest.java
│ │ │ │ ├── [ 29K] PojoSerializerUpgradeTestSpecifications.java
│ │ │ │ ├── [2.8K] PojoSubclassComparatorTest.java
│ │ │ │ ├── [4.9K] PojoSubclassSerializerTest.java
│ │ │ │ ├── [5.1K] RowComparatorTest.java
│ │ │ │ ├── [3.4K] RowComparatorWithManyFieldsTests.java
│ │ │ │ ├── [6.1K] RowSerializerTest.java
│ │ │ │ ├── [4.9K] RowSerializerUpgradeTest.java
│ │ │ │ ├── [4.5K] SubclassFromInterfaceSerializerTest.java
│ │ │ │ ├── [7.8K] TestDataOutputSerializer.java
│ │ │ │ ├── [4.0K] tuple
│ │ │ │ │ └── [4.0K] base
│ │ │ │ │ ├── [1.6K] TupleComparatorTestBase.java
│ │ │ │ │ └── [3.5K] TuplePairComparatorTestBase.java
│ │ │ │ ├── [2.8K] TupleComparatorILD2Test.java
│ │ │ │ ├── [3.0K] TupleComparatorILD3Test.java
│ │ │ │ ├── [3.1K] TupleComparatorILDC3Test.java
│ │ │ │ ├── [2.8K] TupleComparatorILDX1Test.java
│ │ │ │ ├── [2.9K] TupleComparatorILDXC2Test.java
│ │ │ │ ├── [2.8K] TupleComparatorISD1Test.java
│ │ │ │ ├── [2.9K] TupleComparatorISD2Test.java
│ │ │ │ ├── [3.0K] TupleComparatorISD3Test.java
│ │ │ │ ├── [7.0K] TupleComparatorTTT1Test.java
│ │ │ │ ├── [7.4K] TupleComparatorTTT2Test.java
│ │ │ │ ├── [7.7K] TupleComparatorTTT3Test.java
│ │ │ │ ├── [9.6K] TupleSerializerTest.java
│ │ │ │ ├── [4.1K] TupleSerializerUpgradeTest.java
│ │ │ │ ├── [1.8K] ValueComparatorTest.java
│ │ │ │ ├── [1.6K] ValueComparatorUUIDTest.java
│ │ │ │ ├── [1.9K] ValueID.java
│ │ │ │ ├── [4.1K] ValueSerializerUpgradeTest.java
│ │ │ │ └── [1.5K] ValueSerializerUUIDTest.java
│ │ │ ├── [2.6K] TupleTypeInfoTest.java
│ │ │ ├── [7.2K] TypeExtractorInputFormatsTest.java
│ │ │ ├── [ 74K] TypeExtractorTest.java
│ │ │ ├── [ 13K] TypeInfoFactoryTest.java
│ │ │ └── [2.2K] ValueTypeInfoTest.java
│ │ ├── [4.0K] configuration
│ │ │ ├── [4.0K] ConfigOptionTest.java
│ │ │ ├── [ 18K] ConfigurationConversionsTest.java
│ │ │ ├── [3.3K] ConfigurationParsingInvalidFormatsTest.java
│ │ │ ├── [ 13K] ConfigurationTest.java
│ │ │ ├── [3.0K] ConfigurationUtilsTest.java
│ │ │ ├── [4.5K] ConfigUtilsTest.java
│ │ │ ├── [2.2K] CoreOptionsTest.java
│ │ │ ├── [3.6K] DelegatingConfigurationTest.java
│ │ │ ├── [4.0K] description
│ │ │ │ └── [3.8K] DescriptionHtmlTest.java
│ │ │ ├── [3.4K] FilesystemSchemeConfigTest.java
│ │ │ ├── [5.0K] GlobalConfigurationTest.java
│ │ │ ├── [2.0K] MemorySizePrettyPrintingTest.java
│ │ │ ├── [9.1K] MemorySizeTest.java
│ │ │ ├── [2.6K] ParentFirstPatternsTest.java
│ │ │ ├── [7.6K] ReadableWritableConfigurationTest.java
│ │ │ ├── [1.8K] RestOptionsTest.java
│ │ │ ├── [2.8K] StructuredOptionsSplitterEscapeTest.java
│ │ │ ├── [5.4K] StructuredOptionsSplitterTest.java
│ │ │ └── [3.2K] UnmodifiableConfigurationTest.java
│ │ ├── [4.0K] core
│ │ │ ├── [4.0K] fs
│ │ │ │ ├── [6.8K] AbstractCloseableRegistryTest.java
│ │ │ │ ├── [ 13K] AbstractRecoverableWriterTest.java
│ │ │ │ ├── [1.8K] CloseableRegistryTest.java
│ │ │ │ ├── [7.9K] EntropyInjectorTest.java
│ │ │ │ ├── [6.0K] FileSystemBehaviorTestSuite.java
│ │ │ │ ├── [4.9K] FileSystemTest.java
│ │ │ │ ├── [1.6K] FileSystemTestUtils.java
│ │ │ │ ├── [8.2K] InitOutputPathTest.java
│ │ │ │ ├── [4.9K] LimitedConnectionsConfigurationTest.java
│ │ │ │ ├── [6.6K] LimitedConnectionsFileSystemDelegationTest.java
│ │ │ │ ├── [ 22K] LimitedConnectionsFileSystemTest.java
│ │ │ │ ├── [4.0K] local
│ │ │ │ │ ├── [1.6K] LocalFileSystemBehaviorTest.java
│ │ │ │ │ ├── [1.5K] LocalFileSystemRecoverableWriterTest.java
│ │ │ │ │ └── [ 14K] LocalFileSystemTest.java
│ │ │ │ ├── [7.5K] PathTest.java
│ │ │ │ ├── [3.0K] RefCountedFileTest.java
│ │ │ │ └── [7.3K] SafetyNetCloseableRegistryTest.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [3.5K] DefaultSplitAssignerTest.java
│ │ │ │ ├── [ 16K] LocatableSplitAssignerTest.java
│ │ │ │ ├── [4.0K] PostVersionedIOReadableWritableTest.java
│ │ │ │ ├── [4.2K] SimpleVersionedSerializationTest.java
│ │ │ │ └── [3.9K] VersionedIOWriteableTest.java
│ │ │ ├── [4.0K] memory
│ │ │ │ ├── [3.7K] ByteArrayInputStreamWithPosTest.java
│ │ │ │ ├── [3.6K] ByteArrayOutputStreamWithPosTest.java
│ │ │ │ ├── [9.3K] CrossSegmentTypeTest.java
│ │ │ │ ├── [1.7K] DataInputDeserializerTest.java
│ │ │ │ ├── [3.9K] DataInputOutputSerializerTest.java
│ │ │ │ ├── [4.9K] EndiannessAccessChecks.java
│ │ │ │ ├── [2.3K] HeapMemorySegmentTest.java
│ │ │ │ ├── [1.5K] HybridOffHeapDirectMemorySegmentTest.java
│ │ │ │ ├── [2.1K] HybridOffHeapMemorySegmentTest.java
│ │ │ │ ├── [1.5K] HybridOffHeapUnsafeMemorySegmentTest.java
│ │ │ │ ├── [3.2K] HybridOnHeapMemorySegmentTest.java
│ │ │ │ ├── [3.3K] MemorySegmentChecksTest.java
│ │ │ │ ├── [2.0K] MemorySegmentFactoryTest.java
│ │ │ │ ├── [ 62K] MemorySegmentTestBase.java
│ │ │ │ ├── [ 30K] MemorySegmentUndersizedTest.java
│ │ │ │ └── [ 30K] OperationsOnFreedSegmentTest.java
│ │ │ └── [4.0K] plugin
│ │ │ ├── [4.2K] DirectoryBasedPluginFinderTest.java
│ │ │ ├── [2.6K] PluginConfigTest.java
│ │ │ └── [1.4K] TestingPluginManager.java
│ │ ├── [4.0K] testutils
│ │ │ ├── [1.5K] ArtificialCNFExceptionThrowingClassLoader.java
│ │ │ ├── [9.6K] ClassLoaderUtils.java
│ │ │ ├── [2.8K] ClassLoaderUtilsTest.java
│ │ │ ├── [2.3K] CustomEqualityMatcher.java
│ │ │ ├── [5.0K] DeeplyEqualsChecker.java
│ │ │ ├── [1.8K] EntropyInjectingTestFileSystem.java
│ │ │ ├── [4.0K] migration
│ │ │ │ ├── [1.9K] MigrationVersion.java
│ │ │ │ └── [ 10K] SchemaCompatibilityTestingSerializer.java
│ │ │ ├── [4.0K] serialization
│ │ │ │ └── [4.0K] types
│ │ │ │ ├── [2.2K] AsciiStringType.java
│ │ │ │ ├── [1.8K] BooleanType.java
│ │ │ │ ├── [2.1K] ByteArrayType.java
│ │ │ │ ├── [2.4K] ByteSubArrayType.java
│ │ │ │ ├── [1.8K] ByteType.java
│ │ │ │ ├── [1.8K] CharType.java
│ │ │ │ ├── [1.9K] DoubleType.java
│ │ │ │ ├── [1.8K] FloatType.java
│ │ │ │ ├── [1.8K] IntType.java
│ │ │ │ ├── [1.8K] LongType.java
│ │ │ │ ├── [1.5K] SerializationTestTypeFactory.java
│ │ │ │ ├── [1.1K] SerializationTestType.java
│ │ │ │ ├── [1.8K] ShortType.java
│ │ │ │ ├── [1.8K] UnsignedByteType.java
│ │ │ │ ├── [1.9K] UnsignedShortType.java
│ │ │ │ └── [2.8K] Util.java
│ │ │ ├── [2.5K] TestConfigUtils.java
│ │ │ ├── [2.8K] TestFileSystem.java
│ │ │ └── [4.1K] TestFileUtils.java
│ │ ├── [4.0K] types
│ │ │ ├── [2.1K] BasicTypeInfoTest.java
│ │ │ ├── [3.1K] CopyableValueTest.java
│ │ │ ├── [3.7K] JavaToValueConverterTest.java
│ │ │ ├── [5.3K] NormalizableKeyTest.java
│ │ │ ├── [4.0K] parser
│ │ │ │ ├── [2.2K] BigDecParserTest.java
│ │ │ │ ├── [1.8K] BigIntParserTest.java
│ │ │ │ ├── [1.5K] BooleanParserTest.java
│ │ │ │ ├── [1.8K] BooleanValueParserTest.java
│ │ │ │ ├── [1.7K] ByteParserTest.java
│ │ │ │ ├── [1.9K] ByteValueParserTest.java
│ │ │ │ ├── [1.9K] DoubleParserTest.java
│ │ │ │ ├── [2.3K] DoubleValueParserTest.java
│ │ │ │ ├── [5.5K] FieldParserTest.java
│ │ │ │ ├── [1.9K] FloatParserTest.java
│ │ │ │ ├── [2.2K] FloatValueParserTest.java
│ │ │ │ ├── [1.8K] IntParserTest.java
│ │ │ │ ├── [1.9K] IntValueParserTest.java
│ │ │ │ ├── [1.8K] LongParserTest.java
│ │ │ │ ├── [2.1K] LongValueParserTest.java
│ │ │ │ ├── [ 14K] ParserTestBase.java
│ │ │ │ ├── [2.0K] QuotedStringParserTest.java
│ │ │ │ ├── [2.3K] QuotedStringValueParserTest.java
│ │ │ │ ├── [1.8K] ShortParserTest.java
│ │ │ │ ├── [2.0K] ShortValueParserTest.java
│ │ │ │ ├── [1.7K] SqlDateParserTest.java
│ │ │ │ ├── [1.7K] SqlTimeParserTest.java
│ │ │ │ ├── [2.2K] SqlTimestampParserTest.java
│ │ │ │ ├── [1.6K] UnquotedStringParserTest.java
│ │ │ │ ├── [1.8K] UnquotedStringValueParserTest.java
│ │ │ │ └── [7.8K] VarLengthStringParserTest.java
│ │ │ ├── [8.2K] PrimitiveDataTypeTest.java
│ │ │ ├── [2.7K] RecordITCase.java
│ │ │ ├── [ 29K] RecordTest.java
│ │ │ ├── [2.8K] RowTest.java
│ │ │ ├── [ 12K] StringSerializationTest.java
│ │ │ └── [5.4K] StringValueSerializationTest.java
│ │ └── [4.0K] util
│ │ ├── [5.5K] AbstractIDTest.java
│ │ ├── [1.9K] ArrayUtilsTest.java
│ │ ├── [2.5K] CloseableIteratorTest.java
│ │ ├── [2.3K] CoreMatchers.java
│ │ ├── [3.6K] ExceptionUtilsTest.java
│ │ ├── [ 18K] FileUtilsTest.java
│ │ ├── [2.2K] FlinkUserCodeClassLoaderTest.java
│ │ ├── [8.4K] InstantiationUtilTest.java
│ │ ├── [1.4K] IterableUtilsTest.java
│ │ ├── [1.5K] JavaGcCleanerWrapperTest.java
│ │ ├── [2.6K] LambdaUtilTest.java
│ │ ├── [6.6K] LinkedOptionalMapTest.java
│ │ ├── [3.3K] LongValueSequenceIteratorTest.java
│ │ ├── [6.9K] MathUtilTest.java
│ │ ├── [6.8K] MethodForwardingTestUtil.java
│ │ ├── [7.9K] NetUtilsTest.java
│ │ ├── [2.9K] NumberSequenceIteratorTest.java
│ │ ├── [1.5K] OutputTagTest.java
│ │ ├── [1.4K] ProcessorArchitectureTest.java
│ │ ├── [1.6K] PropertiesUtilTest.java
│ │ ├── [4.5K] ResourceGuardTest.java
│ │ ├── [2.2K] SerializedValueTest.java
│ │ ├── [2.5K] StringUtilsTest.java
│ │ ├── [2.5K] StringValueUtilsTest.java
│ │ ├── [1.7K] TemporaryClassLoaderContextTest.java
│ │ ├── [2.5K] TernaryBooleanTest.java
│ │ ├── [2.0K] TimeUtilsPrettyPrintingTest.java
│ │ ├── [6.8K] TimeUtilsTest.java
│ │ ├── [3.4K] UnionIteratorTest.java
│ │ └── [2.2K] WrappingProxyUtilTest.java
│ └── [ 12K] resources
│ ├── [ 126] abstractID-with-toString-field
│ ├── [ 160] abstractID-with-toString-field-set
│ ├── [4.0K] big-dec-serializer-1.11
│ │ ├── [ 94] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] big-int-serializer-1.11
│ │ ├── [ 94] serializer-snapshot
│ │ └── [ 19] test-data
│ ├── [4.0K] boolean-primitive-array-serializer-1.11
│ │ ├── [ 130] serializer-snapshot
│ │ └── [ 6] test-data
│ ├── [4.0K] boolean-serializer-1.11
│ │ ├── [ 96] serializer-snapshot
│ │ └── [ 1] test-data
│ ├── [4.0K] boolean-value-serializer-1.11
│ │ ├── [ 106] serializer-snapshot
│ │ └── [ 1] test-data
│ ├── [4.0K] byte-primitive-array-serializer-1.11
│ │ ├── [ 124] serializer-snapshot
│ │ └── [ 14] test-data
│ ├── [4.0K] byte-serializer-1.11
│ │ ├── [ 90] serializer-snapshot
│ │ └── [ 1] test-data
│ ├── [4.0K] byte-value-serializer-1.11
│ │ ├── [ 100] serializer-snapshot
│ │ └── [ 1] test-data
│ ├── [4.0K] char-primitive-array-serializer-1.11
│ │ ├── [ 124] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] char-serializer-1.11
│ │ ├── [ 90] serializer-snapshot
│ │ └── [ 2] test-data
│ ├── [4.0K] char-value-serializer-1.11
│ │ ├── [ 100] serializer-snapshot
│ │ └── [ 2] test-data
│ ├── [4.0K] copyable-value-serializer-1.11
│ │ ├── [ 199] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] date-serializer-1.11
│ │ ├── [ 90] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] double-primitive-array-serializer-1.11
│ │ ├── [ 128] serializer-snapshot
│ │ └── [ 84] test-data
│ ├── [4.0K] double-serializer-1.11
│ │ ├── [ 94] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] double-value-serializer-1.11
│ │ ├── [ 104] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] either-serializer-1.11
│ │ ├── [ 276] serializer-snapshot
│ │ └── [ 13] test-data
│ ├── [4.0K] enum-serializer-1.11
│ │ ├── [ 188] serializer-snapshot
│ │ └── [ 4] test-data
│ ├── [4.0K] enum-serializerreconfig-1.11
│ │ ├── [ 163] serializer-snapshot
│ │ └── [ 4] test-data
│ ├── [ 240] flink-1.6-string-array-serializer-data
│ ├── [ 416] flink-1.6-string-array-serializer-snapshot
│ ├── [ 10] flink-1.6-void-serializer-data
│ ├── [ 390] flink-1.6-void-serializer-snapshot
│ ├── [ 240] flink-1.7-string-array-serializer-data
│ ├── [ 182] flink-1.7-string-array-serializer-snapshot
│ ├── [4.0K] float-primitive-array-serializer-1.11
│ │ ├── [ 126] serializer-snapshot
│ │ └── [ 44] test-data
│ ├── [4.0K] float-serializer-1.11
│ │ ├── [ 92] serializer-snapshot
│ │ └── [ 4] test-data
│ ├── [4.0K] float-value-serializer-1.11
│ │ ├── [ 102] serializer-snapshot
│ │ └── [ 4] test-data
│ ├── [4.0K] generic-array-serializer-1.11
│ │ ├── [ 211] serializer-snapshot
│ │ └── [ 19] test-data
│ ├── [4.0K] int-primitive-array-serializer-1.11
│ │ ├── [ 122] serializer-snapshot
│ │ └── [ 44] test-data
│ ├── [4.0K] int-serializer-1.11
│ │ ├── [ 88] serializer-snapshot
│ │ └── [ 4] test-data
│ ├── [4.0K] int-value-serializer-1.11
│ │ ├── [ 98] serializer-snapshot
│ │ └── [ 4] test-data
│ ├── [4.0K] kryo-custom-type-serializer-changed-registration-order-1.11
│ │ ├── [1.7K] serializer-snapshot
│ │ └── [ 7] test-data
│ ├── [1.3K] kryo-serializer-flink1.3-snapshot
│ ├── [4.0K] kryo-type-serializer-changed-registration-order-1.11
│ │ ├── [1.5K] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] kryo-type-serializer-empty-config-1.11
│ │ ├── [ 745] serializer-snapshot
│ │ └── [ 90] test-data
│ ├── [4.0K] kryo-type-serializer-unrelated-config-after-restore-1.11
│ │ ├── [ 745] serializer-snapshot
│ │ └── [ 90] test-data
│ ├── [4.0K] list-serializer-1.11
│ │ ├── [ 185] serializer-snapshot
│ │ └── [ 17] test-data
│ ├── [1.3K] log4j2-test.properties
│ ├── [4.0K] long-primitive-array-serializer-1.11
│ │ ├── [ 124] serializer-snapshot
│ │ └── [ 84] test-data
│ ├── [4.0K] long-serializer-1.11
│ │ ├── [ 90] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] long-value-serializer-1.11
│ │ ├── [ 100] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] map-serializer-1.11
│ │ ├── [ 268] serializer-snapshot
│ │ └── [ 25] test-data
│ ├── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ └── [ 942] org.apache.flink.core.fs.FileSystemFactory
│ ├── [4.0K] nullable-not-padded-serializer-1.11
│ │ ├── [ 209] serializer-snapshot
│ │ └── [ 1] test-data
│ ├── [4.0K] nullable-padded-serializer-1.11
│ │ ├── [ 209] serializer-snapshot
│ │ └── [ 9] test-data
│ ├── [4.0K] null-value-serializer-1.11
│ │ ├── [ 100] serializer-snapshot
│ │ └── [ 0] test-data
│ ├── [4.0K] pojo-serializer-identical-schema-1.11
│ │ ├── [1.2K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-identical-schema-1.7
│ │ ├── [1.2K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-identical-schema-1.8
│ │ ├── [1.2K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-identical-schema-1.9
│ │ ├── [1.2K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-1.11
│ │ ├── [ 294] serializer-snapshot
│ │ └── [ 6] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-1.7
│ │ ├── [ 294] serializer-snapshot
│ │ └── [ 6] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-1.8
│ │ ├── [ 294] serializer-snapshot
│ │ └── [ 6] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-1.9
│ │ ├── [ 294] serializer-snapshot
│ │ └── [ 6] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-in-registered-subclass-1.11
│ │ ├── [2.5K] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-in-registered-subclass-1.7
│ │ ├── [2.5K] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-in-registered-subclass-1.8
│ │ ├── [2.5K] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] pojo-serializer-with-different-field-types-in-registered-subclass-1.9
│ │ ├── [2.5K] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] pojo-serializer-with-different-subclass-registration-order-1.11
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-different-subclass-registration-order-1.7
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-different-subclass-registration-order-1.8
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-different-subclass-registration-order-1.9
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-missing-registered-subclass-1.11
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-missing-registered-subclass-1.7
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-missing-registered-subclass-1.8
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-missing-registered-subclass-1.9
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-1.11
│ │ ├── [ 686] serializer-snapshot
│ │ └── [ 28] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-1.7
│ │ ├── [ 686] serializer-snapshot
│ │ └── [ 28] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-1.8
│ │ ├── [ 686] serializer-snapshot
│ │ └── [ 28] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-1.9
│ │ ├── [ 686] serializer-snapshot
│ │ └── [ 28] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-in-registered-subclass-1.11
│ │ ├── [1.1K] serializer-snapshot
│ │ └── [ 27] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-in-registered-subclass-1.7
│ │ ├── [1.1K] serializer-snapshot
│ │ └── [ 27] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-in-registered-subclass-1.8
│ │ ├── [1.1K] serializer-snapshot
│ │ └── [ 27] test-data
│ ├── [4.0K] pojo-serializer-with-modified-schema-in-registered-subclass-1.9
│ │ ├── [1.1K] serializer-snapshot
│ │ └── [ 27] test-data
│ ├── [4.0K] pojo-serializer-with-new-and-missing-registered-subclasses-1.11
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-new-and-missing-registered-subclasses-1.7
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-new-and-missing-registered-subclasses-1.8
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-new-and-missing-registered-subclasses-1.9
│ │ ├── [4.3K] serializer-snapshot
│ │ └── [ 21] test-data
│ ├── [4.0K] pojo-serializer-with-new-registered-subclass-1.11
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-new-registered-subclass-1.7
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-new-registered-subclass-1.8
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-new-registered-subclass-1.9
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-non-registered-subclass-1.11
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-non-registered-subclass-1.7
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-non-registered-subclass-1.8
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] pojo-serializer-with-non-registered-subclass-1.9
│ │ ├── [2.7K] serializer-snapshot
│ │ └── [ 134] test-data
│ ├── [4.0K] row-serializer-1.10
│ │ ├── [ 465] serializer-snapshot
│ │ └── [ 20] test-data
│ ├── [4.0K] row-serializer-1.11
│ │ ├── [ 465] serializer-snapshot
│ │ └── [ 20] test-data
│ ├── [1.7K] serialized-kryo-serializer-1.3
│ ├── [4.0K] short-primitive-array-serializer-1.11
│ │ ├── [ 126] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] short-serializer-1.11
│ │ ├── [ 92] serializer-snapshot
│ │ └── [ 2] test-data
│ ├── [4.0K] short-value-serializer-1.11
│ │ ├── [ 102] serializer-snapshot
│ │ └── [ 2] test-data
│ ├── [4.0K] sql-date-serializer-1.11
│ │ ├── [ 96] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] sql-time-serializer-1.11
│ │ ├── [ 96] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] sql-timestamp-serializer-1.11
│ │ ├── [ 106] serializer-snapshot
│ │ └── [ 12] test-data
│ ├── [4.0K] string-array-serializer-1.11
│ │ ├── [ 110] serializer-snapshot
│ │ └── [ 24] test-data
│ ├── [4.0K] string-serializer-1.11
│ │ ├── [ 94] serializer-snapshot
│ │ └── [ 37] test-data
│ ├── [4.0K] string-value-serializer-1.11
│ │ ├── [ 104] serializer-snapshot
│ │ └── [ 37] test-data
│ ├── [4.0K] tuple-serializer-1.11
│ │ ├── [ 401] serializer-snapshot
│ │ └── [ 22] test-data
│ ├── [ 11] type-with-avro-serialized-using-kryo
│ ├── [ 31] type-without-avro-serialized-using-kryo
│ └── [4.0K] value-serializer-1.11
│ ├── [ 175] serializer-snapshot
│ └── [ 9] test-data
├── [4.0K] flink-dist
│ ├── [ 25K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] assemblies
│ │ │ ├── [9.3K] bin.xml
│ │ │ ├── [6.2K] opt.xml
│ │ │ └── [4.3K] plugins.xml
│ │ ├── [4.0K] flink-bin
│ │ │ ├── [4.0K] bin
│ │ │ │ ├── [ 19K] config.sh
│ │ │ │ ├── [1.3K] find-flink-home.sh
│ │ │ │ ├── [2.3K] flink
│ │ │ │ ├── [3.9K] flink-console.sh
│ │ │ │ ├── [6.3K] flink-daemon.sh
│ │ │ │ ├── [1.5K] historyserver.sh
│ │ │ │ ├── [2.2K] jobmanager.sh
│ │ │ │ ├── [1.8K] standalone-job.sh
│ │ │ │ ├── [1.8K] start-cluster.sh
│ │ │ │ ├── [1.8K] start-zookeeper-quorum.sh
│ │ │ │ ├── [1.6K] stop-cluster.sh
│ │ │ │ ├── [1.8K] stop-zookeeper-quorum.sh
│ │ │ │ ├── [3.6K] taskmanager.sh
│ │ │ │ └── [2.2K] zookeeper.sh
│ │ │ ├── [4.0K] conf
│ │ │ │ ├── [2.6K] log4j-cli.properties
│ │ │ │ ├── [2.7K] log4j-console.properties
│ │ │ │ ├── [2.1K] log4j.properties
│ │ │ │ ├── [1.8K] log4j-session.properties
│ │ │ │ ├── [2.7K] logback-console.xml
│ │ │ │ ├── [1.5K] logback-session.xml
│ │ │ │ ├── [2.3K] logback.xml
│ │ │ │ ├── [ 15] masters
│ │ │ │ ├── [ 10] workers
│ │ │ │ └── [1.4K] zoo.cfg
│ │ │ ├── [4.0K] kubernetes-bin
│ │ │ │ ├── [1.4K] kubernetes-entry.sh
│ │ │ │ └── [1.7K] kubernetes-session.sh
│ │ │ ├── [4.0K] mesos-bin
│ │ │ │ ├── [1.1K] mesos-appmaster-job.sh
│ │ │ │ ├── [1.1K] mesos-appmaster.sh
│ │ │ │ ├── [1.8K] mesos-jobmanager.sh
│ │ │ │ └── [1.8K] mesos-taskmanager.sh
│ │ │ ├── [4.0K] plugins
│ │ │ │ └── [ 654] README.txt
│ │ │ ├── [1.3K] README.txt
│ │ │ └── [4.0K] yarn-bin
│ │ │ └── [1.7K] yarn-session.sh
│ │ └── [4.0K] resources
│ │ ├── [ 10K] flink-conf.yaml
│ │ ├── [1.2K] log4j-bash-utils.properties
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ ├── [1.4K] LICENSE.grizzled-slf4j
│ │ │ ├── [ 17K] LICENSE.javax.activation
│ │ │ ├── [ 17K] LICENSE.jaxb
│ │ │ ├── [1.5K] LICENSE.kryo
│ │ │ ├── [1.5K] LICENSE.minlog
│ │ │ ├── [1.5K] LICENSE.scala
│ │ │ ├── [1.1K] LICENSE.scopt
│ │ │ └── [1.1K] LICENSE.slf4j-api
│ │ └── [2.4K] NOTICE
│ └── [4.0K] test
│ ├── [4.0K] bin
│ │ ├── [1.7K] runBashJavaUtilsCmd.sh
│ │ └── [1.3K] runExtractLoggingOutputs.sh
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] dist
│ │ ├── [4.7K] BashJavaUtilsITCase.java
│ │ └── [1.7K] JavaBashTestBase.java
│ └── [4.0K] resources
│ └── [1.3K] log4j2-test.properties
├── [4.0K] flink-docs
│ ├── [7.8K] pom.xml
│ ├── [2.7K] README.md
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] docs
│ │ │ ├── [4.0K] configuration
│ │ │ │ ├── [ 21K] ConfigOptionsDocGenerator.java
│ │ │ │ └── [1.3K] OptionsClassLocation.java
│ │ │ ├── [4.0K] rest
│ │ │ │ └── [ 13K] RestAPIDocGenerator.java
│ │ │ └── [4.0K] util
│ │ │ └── [1.4K] Utils.java
│ │ └── [4.0K] resources
│ │ └── [1.2K] log4j.properties
│ └── [4.0K] test
│ └── [4.0K] java
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ └── [4.0K] docs
│ ├── [4.0K] configuration
│ │ ├── [ 21K] ConfigOptionsDocGeneratorTest.java
│ │ ├── [ 13K] ConfigOptionsDocsCompletenessITCase.java
│ │ └── [4.0K] data
│ │ └── [2.0K] TestCommonOptions.java
│ └── [4.0K] rest
│ ├── [4.0K] data
│ │ ├── [2.8K] TestEmptyMessageHeaders.java
│ │ └── [2.9K] TestExcludeMessageHeaders.java
│ └── [3.4K] RestAPIDocGeneratorTest.java
├── [4.0K] flink-end-to-end-tests
│ ├── [4.0K] flink-batch-sql-test
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] sql
│ │ └── [4.0K] tests
│ │ └── [5.3K] BatchSQLTestProgram.java
│ ├── [4.0K] flink-bucketing-sink-test
│ │ ├── [3.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [6.4K] BucketingSinkTestProgram.java
│ ├── [4.0K] flink-cli-test
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [4.8K] PeriodicStreamingJob.java
│ ├── [4.0K] flink-confluent-schema-registry
│ │ ├── [4.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] avro
│ │ │ └── [1.1K] user.avsc
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] schema
│ │ └── [4.0K] registry
│ │ └── [4.0K] test
│ │ └── [4.1K] TestAvroConsumerConfluent.java
│ ├── [4.0K] flink-connector-gcp-pubsub-emulator-tests
│ │ ├── [3.7K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] connectors
│ │ │ └── [4.0K] gcp
│ │ │ └── [4.0K] pubsub
│ │ │ ├── [4.1K] CheckPubSubEmulatorTest.java
│ │ │ ├── [5.1K] EmulatedPubSubSinkTest.java
│ │ │ ├── [5.0K] EmulatedPubSubSourceTest.java
│ │ │ └── [4.0K] emulator
│ │ │ ├── [9.4K] GCloudEmulatorManager.java
│ │ │ ├── [3.0K] GCloudUnitTestBase.java
│ │ │ └── [8.2K] PubsubHelper.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-dataset-allround-test
│ │ ├── [2.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] batch
│ │ └── [4.0K] tests
│ │ ├── [7.0K] DataSetAllroundTestProgram.java
│ │ └── [4.2K] Generator.java
│ ├── [4.0K] flink-dataset-fine-grained-recovery-test
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] batch
│ │ │ └── [4.0K] tests
│ │ │ ├── [1.8K] BlockingIncrementingMapFunction.java
│ │ │ ├── [1.7K] DataSetFineGrainedRecoveryTestProgram.java
│ │ │ └── [4.0K] util
│ │ │ └── [3.5K] FileBasedOneShotLatch.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] batch
│ │ └── [4.0K] tests
│ │ └── [4.0K] util
│ │ └── [2.4K] FileBasedOneShotLatchTest.java
│ ├── [4.0K] flink-datastream-allround-test
│ │ ├── [4.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] avro
│ │ │ │ └── [1.5K] ComplexPayloadAvro.avsc
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] tests
│ │ │ ├── [4.0K] artificialstate
│ │ │ │ ├── [7.1K] ArtificalOperatorStateMapper.java
│ │ │ │ ├── [3.1K] ArtificialKeyedStateMapper.java
│ │ │ │ ├── [4.0K] builder
│ │ │ │ │ ├── [2.8K] ArtificialListStateBuilder.java
│ │ │ │ │ ├── [2.6K] ArtificialMapStateBuilder.java
│ │ │ │ │ ├── [1.8K] ArtificialStateBuilder.java
│ │ │ │ │ └── [2.2K] ArtificialValueStateBuilder.java
│ │ │ │ ├── [2.4K] ComplexPayload.java
│ │ │ │ └── [4.6K] StatefulComplexPayloadSerializer.java
│ │ │ ├── [ 26K] DataStreamAllroundTestJobFactory.java
│ │ │ ├── [ 10K] DataStreamAllroundTestProgram.java
│ │ │ ├── [2.1K] Event.java
│ │ │ ├── [2.8K] FailureMapper.java
│ │ │ ├── [2.7K] SemanticsCheckMapper.java
│ │ │ ├── [8.9K] SequenceGeneratorSource.java
│ │ │ ├── [2.9K] SingleThreadAccessCheckingTypeInfo.java
│ │ │ ├── [7.0K] SlidingWindowCheckMapper.java
│ │ │ └── [2.1K] TestOperatorEnum.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [2.9K] AllroundMiniClusterTest.java
│ ├── [4.0K] flink-distributed-cache-via-blob-test
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [4.4K] DistributedCacheViaBlobTestProgram.java
│ ├── [4.0K] flink-elasticsearch5-test
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [4.1K] Elasticsearch5SinkExample.java
│ ├── [4.0K] flink-elasticsearch6-test
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [5.3K] Elasticsearch6SinkExample.java
│ ├── [4.0K] flink-elasticsearch7-test
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [5.1K] Elasticsearch7SinkExample.java
│ ├── [4.0K] flink-end-to-end-tests-common
│ │ ├── [4.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] tests
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [4.0K] activation
│ │ │ │ │ └── [2.4K] OperatingSystemRestriction.java
│ │ │ │ ├── [1.5K] AutoClosablePath.java
│ │ │ │ ├── [6.9K] AutoClosableProcess.java
│ │ │ │ ├── [4.0K] cache
│ │ │ │ │ ├── [6.1K] AbstractDownloadCache.java
│ │ │ │ │ ├── [1.3K] DownloadCacheFactory.java
│ │ │ │ │ ├── [2.0K] DownloadCache.java
│ │ │ │ │ ├── [1.2K] LolCacheFactory.java
│ │ │ │ │ ├── [1.9K] LolCache.java
│ │ │ │ │ ├── [1.9K] PersistingDownloadCacheFactory.java
│ │ │ │ │ ├── [2.9K] PersistingDownloadCache.java
│ │ │ │ │ ├── [2.4K] TravisDownloadCacheFactory.java
│ │ │ │ │ └── [2.6K] TravisDownloadCache.java
│ │ │ │ ├── [4.0K] categories
│ │ │ │ │ ├── [ 954] Dummy.java
│ │ │ │ │ ├── [ 961] PreCommit.java
│ │ │ │ │ ├── [ 977] TravisGroup1.java
│ │ │ │ │ ├── [ 978] TravisGroup2.java
│ │ │ │ │ ├── [ 977] TravisGroup3.java
│ │ │ │ │ ├── [ 978] TravisGroup4.java
│ │ │ │ │ ├── [ 977] TravisGroup5.java
│ │ │ │ │ └── [ 977] TravisGroup6.java
│ │ │ │ ├── [3.9K] CommandLineWrapper.java
│ │ │ │ ├── [4.0K] flink
│ │ │ │ │ ├── [1.4K] ClusterController.java
│ │ │ │ │ ├── [ 10K] FlinkDistribution.java
│ │ │ │ │ ├── [1.4K] FlinkResourceFactory.java
│ │ │ │ │ ├── [2.9K] FlinkResource.java
│ │ │ │ │ ├── [2.7K] FlinkResourceSetup.java
│ │ │ │ │ ├── [ 941] JarLocation.java
│ │ │ │ │ ├── [1.6K] JarOperation.java
│ │ │ │ │ ├── [ 936] JobController.java
│ │ │ │ │ ├── [3.4K] JobSubmission.java
│ │ │ │ │ ├── [2.2K] LocalStandaloneFlinkResourceFactory.java
│ │ │ │ │ ├── [7.0K] LocalStandaloneFlinkResource.java
│ │ │ │ │ └── [2.8K] SQLJobSubmission.java
│ │ │ │ ├── [4.0K] parameters
│ │ │ │ │ └── [1.9K] ParameterProperty.java
│ │ │ │ ├── [4.2K] TestUtils.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [3.1K] FactoryUtils.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 908] org.apache.flink.tests.util.cache.DownloadCacheFactory
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] tests
│ │ └── [4.0K] util
│ │ └── [2.2K] TestUtilsTest.java
│ ├── [4.0K] flink-end-to-end-tests-common-kafka
│ │ ├── [8.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] tests
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] kafka
│ │ │ ├── [1.3K] KafkaResourceFactory.java
│ │ │ ├── [4.1K] KafkaResource.java
│ │ │ ├── [1.9K] LocalStandaloneKafkaResourceFactory.java
│ │ │ └── [ 14K] LocalStandaloneKafkaResource.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] tests
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] kafka
│ │ │ ├── [ 10K] SQLClientKafkaITCase.java
│ │ │ └── [7.0K] StreamingKafkaITCase.java
│ │ └── [4.0K] resources
│ │ ├── [2.5K] kafka_e2e.sql
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-heavy-deployment-stress-test
│ │ ├── [2.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] deployment
│ │ └── [5.3K] HeavyDeploymentStressTestProgram.java
│ ├── [4.0K] flink-high-parallelism-iterations-test
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] batch
│ │ └── [2.9K] HighParallelismIterationsTestProgram.java
│ ├── [4.0K] flink-local-recovery-and-allocation-test
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [ 17K] StickyAllocationAndLocalRecoveryTestJob.java
│ ├── [4.0K] flink-metrics-availability-test
│ │ ├── [2.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] pache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] tests
│ │ │ └── [6.9K] MetricsAvailabilityITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-reporter-prometheus-test
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] prometheus
│ │ │ └── [4.0K] tests
│ │ │ └── [ 11K] PrometheusReporterEndToEndITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-netty-shuffle-memory-control-test
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [4.9K] NettyShuffleMemoryControlTestProgram.java
│ ├── [4.0K] flink-parent-child-classloading-test-lib-package
│ │ ├── [2.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] tests
│ │ │ └── [1.2K] ParentChildTestingVehicle.java
│ │ └── [4.0K] resources
│ │ └── [ 978] parent-child-test.properties
│ ├── [4.0K] flink-parent-child-classloading-test-program
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] tests
│ │ │ ├── [3.2K] ClassLoaderTestProgram.java
│ │ │ └── [1.2K] ParentChildTestingVehicle.java
│ │ └── [4.0K] resources
│ │ └── [ 979] parent-child-test.properties
│ ├── [4.0K] flink-plugins-test
│ │ ├── [4.0K] another-dummy-fs
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [4.0K] anotherdummy
│ │ │ │ ├── [2.0K] AnotherDummyFSFactory.java
│ │ │ │ ├── [1.5K] AnotherDummyFSFileStatus.java
│ │ │ │ ├── [4.7K] AnotherDummyFSFileSystem.java
│ │ │ │ └── [1.6K] AnotherDummyFSInputStream.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 836] org.apache.flink.core.fs.FileSystemFactory
│ │ ├── [4.0K] dummy-fs
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [4.0K] dummy
│ │ │ │ ├── [1.9K] DummyFSFactory.java
│ │ │ │ ├── [1.5K] DummyFSFileStatus.java
│ │ │ │ ├── [4.6K] DummyFSFileSystem.java
│ │ │ │ └── [1.6K] DummyFSInputStream.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 822] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] flink-python-test
│ │ ├── [3.0K] pom.xml
│ │ ├── [4.0K] python
│ │ │ ├── [1.2K] add_one.py
│ │ │ └── [3.1K] python_job.py
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] python
│ │ └── [4.0K] tests
│ │ ├── [2.1K] BlinkBatchPythonUdfSqlJob.java
│ │ ├── [2.2K] BlinkStreamPythonUdfSqlJob.java
│ │ ├── [2.0K] FlinkBatchPythonUdfSqlJob.java
│ │ └── [2.2K] FlinkStreamPythonUdfSqlJob.java
│ ├── [4.0K] flink-queryable-state-test
│ │ ├── [4.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [4.0K] queryablestate
│ │ ├── [1.7K] EmailId.java
│ │ ├── [2.6K] EmailInformation.java
│ │ ├── [1.9K] Email.java
│ │ ├── [1.4K] LabelSurrogate.java
│ │ ├── [1.1K] QsConstants.java
│ │ ├── [4.1K] QsStateClient.java
│ │ └── [5.9K] QsStateProducer.java
│ ├── [4.0K] flink-quickstart-test
│ │ ├── [2.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] quickstarts
│ │ │ └── [4.0K] test
│ │ │ └── [3.5K] Elasticsearch5SinkExample.java
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] quickstarts
│ │ └── [4.0K] test
│ │ └── [2.9K] Elasticsearch5SinkExample.scala
│ ├── [4.0K] flink-rocksdb-state-memory-control-test
│ │ ├── [2.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [6.4K] RocksDBStateMemoryControlTestProgram.java
│ ├── [4.0K] flink-sql-client-test
│ │ ├── [6.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ └── [4.0K] toolbox
│ │ └── [1.2K] StringRegexReplaceFunction.java
│ ├── [4.0K] flink-state-evolution-test
│ │ ├── [3.6K] pom.xml
│ │ ├── [4.0K] savepoints
│ │ │ ├── [4.0K] 1.6
│ │ │ │ └── [9.9K] _metadata
│ │ │ └── [4.0K] 1.7
│ │ │ └── [8.3K] _metadata
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] avro
│ │ │ └── [1.2K] Address.avsc
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] avro
│ │ │ └── [4.0K] generated
│ │ │ └── [ 17K] Address.java
│ │ └── [4.0K] test
│ │ └── [5.4K] StatefulStreamingJob.java
│ ├── [4.0K] flink-streaming-file-sink-test
│ │ ├── [2.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [5.7K] StreamingFileSinkProgram.java
│ ├── [4.0K] flink-streaming-kafka010-test
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] kafka
│ │ └── [4.0K] test
│ │ └── [3.0K] Kafka010Example.java
│ ├── [4.0K] flink-streaming-kafka011-test
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] kafka
│ │ └── [4.0K] test
│ │ └── [3.0K] Kafka011Example.java
│ ├── [4.0K] flink-streaming-kafka-test
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] kafka
│ │ └── [4.0K] test
│ │ └── [3.2K] KafkaExample.java
│ ├── [4.0K] flink-streaming-kafka-test-base
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] kafka
│ │ └── [4.0K] test
│ │ └── [4.0K] base
│ │ ├── [2.1K] CustomWatermarkExtractor.java
│ │ ├── [2.1K] KafkaEvent.java
│ │ ├── [1.8K] KafkaEventSchema.java
│ │ ├── [2.1K] KafkaExampleUtil.java
│ │ └── [1.9K] RollingAdditionMapper.java
│ ├── [4.0K] flink-streaming-kinesis-test
│ │ ├── [3.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] kinesis
│ │ └── [4.0K] test
│ │ ├── [4.1K] KinesisExample.java
│ │ └── [4.0K] KinesisExampleTest.java
│ ├── [4.0K] flink-stream-sql-test
│ │ ├── [2.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] sql
│ │ └── [4.0K] tests
│ │ └── [ 12K] StreamSQLTestProgram.java
│ ├── [4.0K] flink-stream-stateful-job-upgrade-test
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ └── [ 10K] StatefulStreamJobUpgradeTestProgram.java
│ ├── [4.0K] flink-stream-state-ttl-test
│ │ ├── [2.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] tests
│ │ ├── [3.8K] DataStreamStateTTLTestProgram.java
│ │ ├── [3.4K] MonotonicTTLTimeProvider.java
│ │ ├── [3.6K] StubStateBackend.java
│ │ ├── [1.4K] TtlStateUpdate.java
│ │ ├── [2.8K] TtlStateUpdateSource.java
│ │ ├── [3.0K] TtlTestConfig.java
│ │ ├── [6.5K] TtlVerifyUpdateFunction.java
│ │ └── [4.0K] verify
│ │ ├── [3.8K] AbstractTtlStateVerifier.java
│ │ ├── [3.4K] TtlAggregatingStateVerifier.java
│ │ ├── [2.8K] TtlFoldingStateVerifier.java
│ │ ├── [2.5K] TtlListStateVerifier.java
│ │ ├── [3.4K] TtlMapStateVerifier.java
│ │ ├── [2.7K] TtlReducingStateVerifier.java
│ │ ├── [1.9K] TtlStateVerifier.java
│ │ ├── [1.9K] TtlUpdateContext.java
│ │ ├── [2.2K] TtlValueStateVerifier.java
│ │ ├── [2.1K] TtlVerificationContext.java
│ │ └── [4.6K] ValueWithTs.java
│ ├── [4.0K] flink-tpcds-test
│ │ ├── [2.5K] pom.xml
│ │ ├── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] tpcds
│ │ │ ├── [4.0K] schema
│ │ │ │ ├── [1.3K] Column.java
│ │ │ │ ├── [1.4K] TpcdsSchema.java
│ │ │ │ └── [ 26K] TpcdsSchemaProvider.java
│ │ │ ├── [4.0K] stats
│ │ │ │ ├── [2.2K] CatalogTableStats.java
│ │ │ │ └── [ 66K] TpcdsStatsProvider.java
│ │ │ ├── [7.1K] TpcdsTestProgram.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [6.9K] AnswerFormatter.java
│ │ │ └── [8.7K] TpcdsResultComparator.java
│ │ └── [4.0K] tpcds-tool
│ │ ├── [4.0K] answer_set
│ │ │ ├── [1.2K] 10.ans
│ │ │ ├── [6.2K] 11.ans
│ │ │ ├── [ 36K] 12.ans
│ │ │ ├── [ 288] 13.ans
│ │ │ ├── [7.3K] 14a_NULLS_FIRST.ans
│ │ │ ├── [3.2K] 14a_SQL_SERVER.ans
│ │ │ ├── [ 13K] 14b_NULLS_FIRST.ans
│ │ │ ├── [5.2K] 15_NULLS_FIRST.ans
│ │ │ ├── [3.1K] 15_NULLS_LAST.ans
│ │ │ ├── [ 150] 16.ans
│ │ │ ├── [1.5K] 17.ans
│ │ │ ├── [9.1K] 18_NULLS_FIRST.ans
│ │ │ ├── [ 15K] 18_NULLS_LAST.ans
│ │ │ ├── [5.3K] 18_SQL_SERVER.ans
│ │ │ ├── [ 14K] 19.ans
│ │ │ ├── [1.7K] 1.ans
│ │ │ ├── [ 36K] 20_NULLS_FIRST.ans
│ │ │ ├── [ 36K] 20_NULLS_LAST.ans
│ │ │ ├── [2.8K] 21_NULLS_FIRST.ans
│ │ │ ├── [6.0K] 21_NULLS_LAST.ans
│ │ │ ├── [ 14K] 22_NULLS_FIRST.ans
│ │ │ ├── [ 21K] 22_NULLS_LAST.ans
│ │ │ ├── [ 33] 23a_NULLS_FIRST.ans
│ │ │ ├── [ 378] 23b_NULLS_FIRST.ans
│ │ │ ├── [ 414] 23_NULLS_LAST.ans
│ │ │ ├── [ 669] 24a.ans
│ │ │ ├── [ 802] 24b.ans
│ │ │ ├── [1.0K] 25.ans
│ │ │ ├── [6.1K] 26.ans
│ │ │ ├── [7.5K] 27_NULLS_FIRST.ans
│ │ │ ├── [7.5K] 27_NULLS_LAST.ans
│ │ │ ├── [ 597] 28.ans
│ │ │ ├── [1.0K] 29.ans
│ │ │ ├── [562K] 2.ans
│ │ │ ├── [ 23K] 30.ans
│ │ │ ├── [6.3K] 31.ans
│ │ │ ├── [ 72] 32.ans
│ │ │ ├── [2.6K] 33.ans
│ │ │ ├── [ 41K] 34_NULLS_FIRST.ans
│ │ │ ├── [ 41K] 34_NULLS_LAST.ans
│ │ │ ├── [ 31K] 35_NULLS_FIRST.ans
│ │ │ ├── [ 31K] 35_NULLS_LAST.ans
│ │ │ ├── [9.9K] 36_NULLS_FIRST.ans
│ │ │ ├── [ 15K] 36_NULLS_LAST.ans
│ │ │ ├── [ 705] 37.ans
│ │ │ ├── [ 34] 38.ans
│ │ │ ├── [ 17K] 39a.ans
│ │ │ ├── [1.1K] 39b.ans
│ │ │ ├── [7.5K] 3.ans
│ │ │ ├── [4.5K] 40.ans
│ │ │ ├── [ 143] 41.ans
│ │ │ ├── [1.2K] 42.ans
│ │ │ ├── [ 646] 43.ans
│ │ │ ├── [1019] 44.ans
│ │ │ ├── [2.2K] 45.ans
│ │ │ ├── [ 27K] 46_NULLS_FIRST.ans
│ │ │ ├── [ 21K] 46_NULLS_LAST.ans
│ │ │ ├── [ 28K] 47.ans
│ │ │ ├── [ 54] 48.ans
│ │ │ ├── [1.9K] 49.ans
│ │ │ ├── [1.1K] 4.ans
│ │ │ ├── [2.6K] 50.ans
│ │ │ ├── [7.7K] 51.ans
│ │ │ ├── [8.4K] 52.ans
│ │ │ ├── [2.2K] 53.ans
│ │ │ ├── [ 117] 54.ans
│ │ │ ├── [7.3K] 55.ans
│ │ │ ├── [2.9K] 56_NULLS_FIRST.ans
│ │ │ ├── [2.9K] 56_NULLS_LAST.ans
│ │ │ ├── [ 23K] 57.ans
│ │ │ ├── [ 485] 58.ans
│ │ │ ├── [ 23K] 59.ans
│ │ │ ├── [6.6K] 5_NULLS_FIRST.ans
│ │ │ ├── [7.8K] 5_NULLS_LAST.ans
│ │ │ ├── [2.9K] 60.ans
│ │ │ ├── [ 198] 61.ans
│ │ │ ├── [ 16K] 62_NULLS_FIRST.ans
│ │ │ ├── [ 16K] 62_NULLS_LAST.ans
│ │ │ ├── [2.1K] 63.ans
│ │ │ ├── [3.1K] 64.ans
│ │ │ ├── [ 31K] 65_NULLS_FIRST.ans
│ │ │ ├── [ 31K] 65_NULLS_LAST.ans
│ │ │ ├── [2.8K] 66_NULLS_FIRST.ans
│ │ │ ├── [4.8K] 66_NULLS_LAST.ans
│ │ │ ├── [ 32K] 67_NULLS_FIRST.ans
│ │ │ ├── [ 28K] 67_NULLS_LAST.ans
│ │ │ ├── [6.8K] 68_NULLS_FIRST.ans
│ │ │ ├── [ 23K] 68_NULLS_LAST.ans
│ │ │ ├── [9.0K] 69.ans
│ │ │ ├── [ 658] 6_NULLS_FIRST.ans
│ │ │ ├── [ 658] 6_NULLS_LAST.ans
│ │ │ ├── [ 388] 70.ans
│ │ │ ├── [ 122] 70_SQL_SERVER.ans
│ │ │ ├── [399K] 71_NULLS_FIRST.ans
│ │ │ ├── [ 72K] 71_NULLS_LAST.ans
│ │ │ ├── [ 26K] 72_NULLS_FIRST.ans
│ │ │ ├── [ 26K] 72_NULLS_LAST.ans
│ │ │ ├── [ 804] 73.ans
│ │ │ ├── [4.2K] 74.ans
│ │ │ ├── [ 13K] 75.ans
│ │ │ ├── [9.6K] 76_NULLS_FIRST.ans
│ │ │ ├── [ 12K] 76_NULLS_LAST.ans
│ │ │ ├── [2.7K] 77_NULLS_FIRST.ans
│ │ │ ├── [2.7K] 77_NULLS_LAST.ans
│ │ │ ├── [2.0K] 77_SQL_SERVER.ans
│ │ │ ├── [ 16K] 78.ans
│ │ │ ├── [3.2K] 79_NULLS_FIRST.ans
│ │ │ ├── [ 12K] 79_NULLS_LAST.ans
│ │ │ ├── [5.6K] 7.ans
│ │ │ ├── [6.6K] 80_NULLS_FIRST.ans
│ │ │ ├── [7.8K] 80_NULLS_LAST.ans
│ │ │ ├── [ 36K] 81.ans
│ │ │ ├── [ 939] 82.ans
│ │ │ ├── [2.2K] 83.ans
│ │ │ ├── [ 907] 84.ans
│ │ │ ├── [ 597] 85.ans
│ │ │ ├── [9.9K] 86_NULLS_FIRST.ans
│ │ │ ├── [ 14K] 86_NULLS_LAST.ans
│ │ │ ├── [ 36] 87.ans
│ │ │ ├── [ 300] 88.ans
│ │ │ ├── [ 29K] 89.ans
│ │ │ ├── [ 493] 8.ans
│ │ │ ├── [ 120] 8_SQL_SERVER.ans
│ │ │ ├── [ 39] 90.ans
│ │ │ ├── [ 369] 91.ans
│ │ │ ├── [ 69] 92.ans
│ │ │ ├── [ 695] 93_NULLS_FIRST.ans
│ │ │ ├── [2.6K] 93_NULLS_LAST.ans
│ │ │ ├── [ 150] 94.ans
│ │ │ ├── [ 150] 95.ans
│ │ │ ├── [ 36] 96.ans
│ │ │ ├── [ 60] 97.ans
│ │ │ ├── [888K] 98_NULLS_FIRST.ans
│ │ │ ├── [888K] 98_NULLS_LAST.ans
│ │ │ ├── [6.7K] 99_NULLS_FIRST.ans
│ │ │ ├── [ 14K] 99_NULLS_LAST.ans
│ │ │ └── [ 168] 9.ans
│ │ ├── [5.8K] data_generator.sh
│ │ ├── [4.0K] query
│ │ │ ├── [1.9K] query10.sql
│ │ │ ├── [2.9K] query11.sql
│ │ │ ├── [ 911] query12.sql
│ │ │ ├── [1.6K] query13.sql
│ │ │ ├── [3.6K] query14a.sql
│ │ │ ├── [3.9K] query14b.sql
│ │ │ ├── [ 699] query15.sql
│ │ │ ├── [1.1K] query16.sql
│ │ │ ├── [1.7K] query17.sql
│ │ │ ├── [1.3K] query18.sql
│ │ │ ├── [ 820] query19.sql
│ │ │ ├── [ 772] query1.sql
│ │ │ ├── [ 926] query20.sql
│ │ │ ├── [1.2K] query21.sql
│ │ │ ├── [ 727] query22.sql
│ │ │ ├── [1.8K] query23a.sql
│ │ │ ├── [2.2K] query23b.sql
│ │ │ ├── [1.3K] query24a.sql
│ │ │ ├── [1.3K] query24b.sql
│ │ │ ├── [1.1K] query25.sql
│ │ │ ├── [ 800] query26.sql
│ │ │ ├── [ 865] query27.sql
│ │ │ ├── [2.3K] query28.sql
│ │ │ ├── [1.3K] query29.sql
│ │ │ ├── [2.2K] query2.sql
│ │ │ ├── [1.3K] query30.sql
│ │ │ ├── [1.8K] query31.sql
│ │ │ ├── [ 859] query32.sql
│ │ │ ├── [2.0K] query33.sql
│ │ │ ├── [1.5K] query34.sql
│ │ │ ├── [1.7K] query35.sql
│ │ │ ├── [ 935] query36.sql
│ │ │ ├── [ 674] query37.sql
│ │ │ ├── [1.0K] query38.sql
│ │ │ ├── [1.2K] query39a.sql
│ │ │ ├── [1.2K] query39b.sql
│ │ │ ├── [ 622] query3.sql
│ │ │ ├── [1.0K] query40.sql
│ │ │ ├── [2.0K] query41.sql
│ │ │ ├── [ 636] query42.sql
│ │ │ ├── [1.1K] query43.sql
│ │ │ ├── [1.7K] query44.sql
│ │ │ ├── [ 842] query45.sql
│ │ │ ├── [1.4K] query46.sql
│ │ │ ├── [1.9K] query47.sql
│ │ │ ├── [1.3K] query48.sql
│ │ │ ├── [3.8K] query49.sql
│ │ │ ├── [4.3K] query4.sql
│ │ │ ├── [1.7K] query50.sql
│ │ │ ├── [1.8K] query51.sql
│ │ │ ├── [ 608] query52.sql
│ │ │ ├── [1.2K] query53.sql
│ │ │ ├── [1.8K] query54.sql
│ │ │ ├── [ 480] query55.sql
│ │ │ ├── [2.0K] query56.sql
│ │ │ ├── [1.7K] query57.sql
│ │ │ ├── [2.4K] query58.sql
│ │ │ ├── [2.1K] query59.sql
│ │ │ ├── [4.0K] query5.sql
│ │ │ ├── [1.9K] query60.sql
│ │ │ ├── [1.4K] query61.sql
│ │ │ ├── [1.3K] query62.sql
│ │ │ ├── [1.4K] query63.sql
│ │ │ ├── [3.6K] query64.sql
│ │ │ ├── [1008] query65.sql
│ │ │ ├── [7.4K] query66.sql
│ │ │ ├── [1.3K] query67.sql
│ │ │ ├── [1.6K] query68.sql
│ │ │ ├── [1.5K] query69.sql
│ │ │ ├── [ 824] query6.sql
│ │ │ ├── [1.3K] query70.sql
│ │ │ ├── [1.7K] query71.sql
│ │ │ ├── [1.3K] query72.sql
│ │ │ ├── [1.3K] query73.sql
│ │ │ ├── [2.1K] query74.sql
│ │ │ ├── [3.2K] query75.sql
│ │ │ ├── [1.3K] query76.sql
│ │ │ ├── [3.3K] query77.sql
│ │ │ ├── [2.3K] query78.sql
│ │ │ ├── [1.0K] query79.sql
│ │ │ ├── [ 791] query7.sql
│ │ │ ├── [3.0K] query80.sql
│ │ │ ├── [1.4K] query81.sql
│ │ │ ├── [ 672] query82.sql
│ │ │ ├── [1.9K] query83.sql
│ │ │ ├── [ 770] query84.sql
│ │ │ ├── [2.1K] query85.sql
│ │ │ ├── [ 803] query86.sql
│ │ │ ├── [1.0K] query87.sql
│ │ │ ├── [5.2K] query88.sql
│ │ │ ├── [1.1K] query89.sql
│ │ │ ├── [6.1K] query8.sql
│ │ │ ├── [1.1K] query90.sql
│ │ │ ├── [1.2K] query91.sql
│ │ │ ├── [ 890] query92.sql
│ │ │ ├── [ 939] query93.sql
│ │ │ ├── [1002] query94.sql
│ │ │ ├── [1.2K] query95.sql
│ │ │ ├── [ 562] query96.sql
│ │ │ ├── [1.1K] query97.sql
│ │ │ ├── [ 902] query98.sql
│ │ │ ├── [1.3K] query99.sql
│ │ │ └── [2.2K] query9.sql
│ │ └── [ 0] README.md
│ ├── [4.0K] flink-tpch-test
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ └── [4.0K] tpch
│ │ ├── [3.7K] TpchDataGenerator.java
│ │ └── [3.8K] TpchResultComparator.java
│ ├── [ 11K] pom.xml
│ ├── [4.2K] README.md
│ ├── [ 19K] run-nightly-tests.sh
│ ├── [3.4K] run-pre-commit-tests.sh
│ ├── [2.5K] run-single-test.sh
│ └── [4.0K] test-scripts
│ ├── [2.3K] common_docker.sh
│ ├── [1.3K] common_dummy_fs.sh
│ ├── [5.7K] common_ha.sh
│ ├── [6.9K] common_kubernetes.sh
│ ├── [3.3K] common_mesos_docker.sh
│ ├── [4.0K] common_s3_minio.sh
│ ├── [5.1K] common_s3_operations.sh
│ ├── [2.7K] common_s3.sh
│ ├── [ 25K] common.sh
│ ├── [6.5K] common_ssl.sh
│ ├── [2.0K] common_utils.sh
│ ├── [7.6K] common_yarn_docker.sh
│ ├── [4.0K] container-scripts
│ │ ├── [4.6K] docker-compose.nat.yml
│ │ ├── [2.1K] docker-compose.test.yml
│ │ ├── [1.9K] job-cluster-job.yaml.template
│ │ ├── [1.3K] job-cluster-service.yaml
│ │ └── [1.7K] task-manager-deployment.yaml.template
│ ├── [4.0K] docker-hadoop-secure-cluster
│ │ ├── [6.4K] bootstrap.sh
│ │ ├── [4.0K] config
│ │ │ ├── [1.1K] container-executor.cfg
│ │ │ ├── [2.3K] core-site.xml
│ │ │ ├── [6.3K] hdfs-site.xml
│ │ │ ├── [ 636] keystore.jks
│ │ │ ├── [1.3K] krb5.conf
│ │ │ ├── [1.7K] mapred-site.xml
│ │ │ ├── [1.0K] ssh_config
│ │ │ ├── [2.3K] ssl-client.xml
│ │ │ ├── [2.3K] ssl-server.xml
│ │ │ └── [6.6K] yarn-site.xml
│ │ ├── [2.3K] docker-compose.yml
│ │ ├── [5.5K] Dockerfile
│ │ └── [2.9K] README.md
│ ├── [4.0K] docker-mesos-cluster
│ │ ├── [2.1K] docker-compose.yml
│ │ └── [1.3K] Dockerfile
│ ├── [3.8K] elasticsearch-common.sh
│ ├── [7.0K] kafka-common.sh
│ ├── [3.8K] kafka_sql_common.sh
│ ├── [1.3K] python2_fileserver.py
│ ├── [1.2K] python3_fileserver.py
│ ├── [1.8K] queryable_state_base.sh
│ ├── [2.8K] test_azure_fs.sh
│ ├── [1.6K] test_batch_allround.sh
│ ├── [2.8K] test_batch_sql.sh
│ ├── [3.9K] test_batch_wordcount.sh
│ ├── [7.1K] test_cli.sh
│ ├── [4.8K] test_confluent_schema_registry.sh
│ ├── [4.0K] test-data
│ │ ├── [4.0K] tpch
│ │ │ ├── [4.0K] modified-query
│ │ │ │ ├── [ 629] q11.sql
│ │ │ │ ├── [1.4K] q15.sql
│ │ │ │ ├── [ 877] q20.sql
│ │ │ │ └── [ 436] q6.sql
│ │ │ ├── [4.0K] sink
│ │ │ │ ├── [ 938] q10.yaml
│ │ │ │ ├── [ 378] q11.yaml
│ │ │ │ ├── [ 492] q12.yaml
│ │ │ │ ├── [ 378] q13.yaml
│ │ │ │ ├── [ 298] q14.yaml
│ │ │ │ ├── [ 670] q15.yaml
│ │ │ │ ├── [ 560] q16.yaml
│ │ │ │ ├── [ 292] q17.yaml
│ │ │ │ ├── [ 776] q18.yaml
│ │ │ │ ├── [ 286] q19.yaml
│ │ │ │ ├── [1.1K] q1.yaml
│ │ │ │ ├── [ 382] q20.yaml
│ │ │ │ ├── [ 376] q21.yaml
│ │ │ │ ├── [ 478] q22.yaml
│ │ │ │ ├── [ 934] q2.yaml
│ │ │ │ ├── [ 572] q3.yaml
│ │ │ │ ├── [ 400] q4.yaml
│ │ │ │ ├── [ 374] q5.yaml
│ │ │ │ ├── [ 284] q6.yaml
│ │ │ │ ├── [ 572] q7.yaml
│ │ │ │ ├── [ 376] q8.yaml
│ │ │ │ └── [ 468] q9.yaml
│ │ │ └── [7.9K] source.yaml
│ │ └── [ 44] words
│ ├── [3.5K] test_datastream_walkthroughs.sh
│ ├── [2.8K] test_docker_embedded_job.sh
│ ├── [3.2K] test_ha_dataset.sh
│ ├── [4.6K] test_ha_datastream.sh
│ ├── [6.2K] test_ha_per_job_cluster_datastream.sh
│ ├── [2.5K] test_heavy_deployment.sh
│ ├── [1.7K] test_high_parallelism_iterations.sh
│ ├── [2.7K] test_kubernetes_application.sh
│ ├── [2.2K] test_kubernetes_embedded_job.sh
│ ├── [3.0K] test_kubernetes_session.sh
│ ├── [4.2K] test_local_recovery_and_scheduling.sh
│ ├── [2.1K] test_mesos_multiple_submissions.sh
│ ├── [1.6K] test_mesos_wordcount.sh
│ ├── [3.0K] test_nat.sh
│ ├── [2.0K] test_netty_shuffle_memory_control.sh
│ ├── [4.9K] test_pyflink.sh
│ ├── [5.4K] test_queryable_state_restart_tm.sh
│ ├── [2.0K] test_queryable_state.sh
│ ├── [5.2K] test_quickstarts.sh
│ ├── [4.9K] test_resume_externalized_checkpoints.sh
│ ├── [4.9K] test_resume_savepoint.sh
│ ├── [4.9K] test_rocksdb_state_memory_control.sh
│ ├── [4.9K] test-runner-common.sh
│ ├── [8.5K] test_sql_client.sh
│ ├── [3.1K] test_state_evolution.sh
│ ├── [3.0K] test_stateful_stream_job_upgrade.sh
│ ├── [2.3K] test_state_migration.sh
│ ├── [5.3K] test_streaming_bucketing.sh
│ ├── [4.1K] test_streaming_classloader.sh
│ ├── [1.7K] test_streaming_distributed_cache_via_blob.sh
│ ├── [1.6K] test_streaming_elasticsearch.sh
│ ├── [5.6K] test_streaming_file_sink.sh
│ ├── [1.1K] test_streaming_gcp_pubsub.sh
│ ├── [2.8K] test_streaming_kinesis.sh
│ ├── [1.8K] test_streaming_sql.sh
│ ├── [3.0K] test_stream_state_ttl.sh
│ ├── [6.2K] test_table_shaded_dependencies.sh
│ ├── [2.9K] test_table_walkthroughs.sh
│ ├── [3.6K] test_tpcds.sh
│ ├── [3.2K] test_tpch.sh
│ ├── [4.0K] test_yarn_application_kerberos_docker.sh
│ └── [3.5K] test_yarn_job_kerberos_docker.sh
├── [4.0K] flink-examples
│ ├── [4.0K] flink-examples-batch
│ │ ├── [ 12K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] examples
│ │ │ └── [4.0K] java
│ │ │ ├── [4.0K] clustering
│ │ │ │ ├── [ 10K] KMeans.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [5.9K] KMeansDataGenerator.java
│ │ │ │ └── [3.5K] KMeansData.java
│ │ │ ├── [4.0K] distcp
│ │ │ │ ├── [7.0K] DistCp.java
│ │ │ │ ├── [3.6K] FileCopyTaskInputFormat.java
│ │ │ │ ├── [1.4K] FileCopyTaskInputSplit.java
│ │ │ │ └── [1.7K] FileCopyTask.java
│ │ │ ├── [4.0K] graph
│ │ │ │ ├── [8.9K] ConnectedComponents.java
│ │ │ │ ├── [7.0K] EnumTriangles.java
│ │ │ │ ├── [9.8K] PageRank.java
│ │ │ │ ├── [4.9K] TransitiveClosureNaive.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [2.3K] ConnectedComponentsData.java
│ │ │ │ ├── [1.7K] EnumTrianglesData.java
│ │ │ │ ├── [4.0K] EnumTrianglesDataTypes.java
│ │ │ │ └── [2.1K] PageRankData.java
│ │ │ ├── [4.0K] misc
│ │ │ │ ├── [3.3K] CollectionExecutionExample.java
│ │ │ │ └── [3.1K] PiEstimation.java
│ │ │ ├── [4.0K] ml
│ │ │ │ ├── [8.1K] LinearRegression.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [3.4K] LinearRegressionDataGenerator.java
│ │ │ │ └── [2.7K] LinearRegressionData.java
│ │ │ ├── [4.0K] relational
│ │ │ │ ├── [8.5K] EmptyFieldsCountAccumulator.java
│ │ │ │ ├── [7.8K] TPCHQuery10.java
│ │ │ │ ├── [9.1K] TPCHQuery3.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [6.3K] WebLogDataGenerator.java
│ │ │ │ │ └── [ 34K] WebLogData.java
│ │ │ │ └── [ 10K] WebLogAnalysis.java
│ │ │ └── [4.0K] wordcount
│ │ │ ├── [4.0K] util
│ │ │ │ └── [3.0K] WordCountData.java
│ │ │ ├── [4.3K] WordCount.java
│ │ │ └── [4.4K] WordCountPojo.java
│ │ ├── [4.0K] resources
│ │ │ ├── [1.2K] log4j2.properties
│ │ │ └── [1.1K] logback.xml
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] examples
│ │ └── [4.0K] scala
│ │ ├── [4.0K] clustering
│ │ │ └── [8.0K] KMeans.scala
│ │ ├── [4.0K] graph
│ │ │ ├── [5.9K] ConnectedComponents.scala
│ │ │ ├── [3.5K] DeltaPageRank.scala
│ │ │ ├── [5.4K] EnumTriangles.scala
│ │ │ ├── [7.3K] PageRankBasic.scala
│ │ │ └── [3.1K] TransitiveClosureNaive.scala
│ │ ├── [4.0K] misc
│ │ │ └── [1.7K] PiEstimation.scala
│ │ ├── [4.0K] ml
│ │ │ └── [5.7K] LinearRegression.scala
│ │ ├── [4.0K] relational
│ │ │ ├── [6.5K] TPCHQuery10.scala
│ │ │ ├── [6.4K] TPCHQuery3.scala
│ │ │ └── [6.1K] WebLogAnalysis.scala
│ │ └── [4.0K] wordcount
│ │ └── [2.5K] WordCount.scala
│ ├── [4.0K] flink-examples-build-helper
│ │ ├── [4.0K] flink-examples-streaming-gcp-pubsub
│ │ │ ├── [3.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] examples
│ │ │ └── [4.0K] gcp
│ │ │ └── [4.0K] pubsub
│ │ │ ├── [1.9K] IntegerSerializer.java
│ │ │ ├── [3.3K] PubSubExample.java
│ │ │ └── [2.2K] PubSubPublisher.java
│ │ ├── [4.0K] flink-examples-streaming-state-machine
│ │ │ ├── [3.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 369] NOTICE
│ │ ├── [4.0K] flink-examples-streaming-twitter
│ │ │ └── [3.1K] pom.xml
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] flink-examples-streaming
│ │ ├── [ 18K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] streaming
│ │ │ │ └── [4.0K] examples
│ │ │ │ ├── [4.0K] async
│ │ │ │ │ └── [ 11K] AsyncIOExample.java
│ │ │ │ ├── [4.0K] gpu
│ │ │ │ │ └── [9.1K] MatrixVectorMul.java
│ │ │ │ ├── [4.0K] iteration
│ │ │ │ │ ├── [7.8K] IterateExample.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [1.6K] IterateExampleData.java
│ │ │ │ ├── [4.0K] join
│ │ │ │ │ ├── [4.5K] WindowJoin.java
│ │ │ │ │ └── [3.0K] WindowJoinSampleData.java
│ │ │ │ ├── [4.0K] ml
│ │ │ │ │ ├── [6.7K] IncrementalLearningSkeleton.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [1.6K] IncrementalLearningSkeletonData.java
│ │ │ │ ├── [4.0K] sideoutput
│ │ │ │ │ └── [5.4K] SideOutputExample.java
│ │ │ │ ├── [4.0K] socket
│ │ │ │ │ └── [3.9K] SocketWindowWordCount.java
│ │ │ │ ├── [4.0K] statemachine
│ │ │ │ │ ├── [4.0K] dfa
│ │ │ │ │ │ ├── [1.2K] EventTypeAndState.java
│ │ │ │ │ │ ├── [4.4K] State.java
│ │ │ │ │ │ └── [3.0K] Transition.java
│ │ │ │ │ ├── [4.0K] event
│ │ │ │ │ │ ├── [2.4K] Alert.java
│ │ │ │ │ │ ├── [2.8K] Event.java
│ │ │ │ │ │ └── [ 986] EventType.java
│ │ │ │ │ ├── [4.0K] generator
│ │ │ │ │ │ ├── [5.3K] EventsGenerator.java
│ │ │ │ │ │ ├── [2.3K] EventsGeneratorSource.java
│ │ │ │ │ │ └── [6.2K] StandaloneThreadedGenerator.java
│ │ │ │ │ ├── [4.0K] kafka
│ │ │ │ │ │ ├── [2.2K] EventDeSerializer.java
│ │ │ │ │ │ └── [3.2K] KafkaStandaloneGenerator.java
│ │ │ │ │ ├── [2.2K] KafkaEventsGeneratorJob.java
│ │ │ │ │ ├── [2.2K] README.md
│ │ │ │ │ └── [7.4K] StateMachineExample.java
│ │ │ │ ├── [4.0K] twitter
│ │ │ │ │ ├── [5.8K] TwitterExample.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [5.2K] TwitterExampleData.java
│ │ │ │ ├── [4.0K] utils
│ │ │ │ │ └── [2.8K] ThrottledIterator.java
│ │ │ │ ├── [4.0K] windowing
│ │ │ │ │ ├── [4.3K] GroupedProcessingTimeWindowExample.java
│ │ │ │ │ ├── [3.6K] SessionWindowing.java
│ │ │ │ │ ├── [6.2K] TopSpeedWindowing.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [1.1K] SessionWindowingData.java
│ │ │ │ │ │ └── [ 18K] TopSpeedWindowingExampleData.java
│ │ │ │ │ └── [3.5K] WindowWordCount.java
│ │ │ │ └── [4.0K] wordcount
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [2.7K] WordCountData.java
│ │ │ │ └── [4.4K] WordCount.java
│ │ │ ├── [4.0K] resources
│ │ │ │ ├── [1.2K] log4j2.properties
│ │ │ │ └── [1.1K] logback.xml
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] examples
│ │ │ ├── [4.0K] async
│ │ │ │ └── [2.1K] AsyncIOExample.scala
│ │ │ ├── [4.0K] iteration
│ │ │ │ └── [4.9K] IterateExample.scala
│ │ │ ├── [4.0K] join
│ │ │ │ ├── [2.4K] WindowJoinSampleData.scala
│ │ │ │ └── [3.6K] WindowJoin.scala
│ │ │ ├── [4.0K] ml
│ │ │ │ └── [6.1K] IncrementalLearningSkeleton.scala
│ │ │ ├── [4.0K] socket
│ │ │ │ └── [3.0K] SocketWindowWordCount.scala
│ │ │ ├── [4.0K] twitter
│ │ │ │ └── [5.2K] TwitterExample.scala
│ │ │ ├── [4.0K] windowing
│ │ │ │ ├── [2.8K] GroupedProcessingTimeWindowExample.scala
│ │ │ │ ├── [3.2K] SessionWindowing.scala
│ │ │ │ ├── [5.1K] TopSpeedWindowing.scala
│ │ │ │ └── [3.1K] WindowWordCount.scala
│ │ │ └── [4.0K] wordcount
│ │ │ └── [2.9K] WordCount.scala
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] examples
│ │ │ │ ├── [4.0K] join
│ │ │ │ │ └── [4.5K] WindowJoinData.java
│ │ │ │ └── [4.0K] windowing
│ │ │ │ └── [2.3K] TopSpeedWindowingExampleITCase.java
│ │ │ ├── [4.0K] scala
│ │ │ │ └── [4.0K] examples
│ │ │ │ └── [4.0K] windowing
│ │ │ │ └── [1.6K] TopSpeedWindowingExampleITCase.java
│ │ │ ├── [4.0K] socket
│ │ │ │ └── [4.5K] SocketWindowWordCountITCase.java
│ │ │ └── [5.9K] StreamingExamplesITCase.java
│ │ ├── [4.0K] resources
│ │ │ └── [1.3K] log4j2-test.properties
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] scala
│ │ └── [4.0K] examples
│ │ └── [5.5K] StreamingExamplesITCase.scala
│ ├── [4.0K] flink-examples-table
│ │ ├── [8.7K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] examples
│ │ │ └── [4.0K] java
│ │ │ ├── [4.0K] basics
│ │ │ │ ├── [4.5K] StreamSQLExample.java
│ │ │ │ ├── [3.6K] StreamWindowSQLExample.java
│ │ │ │ ├── [2.8K] WordCountSQL.java
│ │ │ │ └── [2.7K] WordCountTable.java
│ │ │ └── [4.0K] connectors
│ │ │ ├── [3.4K] ChangelogCsvDeserializer.java
│ │ │ ├── [3.0K] ChangelogCsvFormatFactory.java
│ │ │ ├── [3.0K] ChangelogCsvFormat.java
│ │ │ ├── [3.8K] ChangelogSocketExample.java
│ │ │ ├── [3.9K] SocketDynamicTableFactory.java
│ │ │ ├── [3.6K] SocketDynamicTableSource.java
│ │ │ └── [3.5K] SocketSourceFunction.java
│ │ ├── [4.0K] resources
│ │ │ ├── [1.2K] log4j2.properties
│ │ │ ├── [1.1K] logback.xml
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 930] org.apache.flink.table.factories.Factory
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ └── [4.0K] examples
│ │ └── [4.0K] scala
│ │ ├── [3.7K] StreamSQLExample.scala
│ │ ├── [2.4K] StreamTableExample.scala
│ │ ├── [5.8K] TPCHQuery3Table.scala
│ │ ├── [2.2K] WordCountSQL.scala
│ │ └── [2.1K] WordCountTable.scala
│ └── [3.2K] pom.xml
├── [4.0K] flink-external-resources
│ ├── [4.0K] flink-external-resource-gpu
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] externalresource
│ │ │ │ └── [4.0K] gpu
│ │ │ │ ├── [1.3K] GPUDriverFactory.java
│ │ │ │ ├── [6.1K] GPUDriver.java
│ │ │ │ └── [2.1K] GPUInfo.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [3.1K] gpu-discovery-common.sh
│ │ │ ├── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 837] org.apache.flink.api.common.externalresource.ExternalResourceDriverFactory
│ │ │ └── [1.8K] nvidia-gpu-discovery.sh
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] externalresource
│ │ │ └── [4.0K] gpu
│ │ │ ├── [2.6K] GPUDiscoveryScriptTest.java
│ │ │ └── [3.7K] GPUDriverTest.java
│ │ └── [4.0K] resources
│ │ ├── [2.6K] test-coordination-mode.sh
│ │ └── [1.9K] testing-gpu-discovery.sh
│ └── [1.4K] pom.xml
├── [4.0K] flink-filesystems
│ ├── [4.0K] flink-azure-fs-hadoop
│ │ ├── [7.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [4.0K] azurefs
│ │ │ │ ├── [3.3K] AbstractAzureFSFactory.java
│ │ │ │ ├── [1.0K] AzureFSFactory.java
│ │ │ │ ├── [1.7K] EnvironmentVariableKeyProvider.java
│ │ │ │ └── [1.0K] SecureAzureFSFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 895] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 874] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] azurefs
│ │ │ ├── [7.9K] AzureFileSystemBehaviorITCase.java
│ │ │ └── [2.9K] AzureFSFactoryTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-fs-hadoop-shaded
│ │ ├── [8.2K] pom.xml
│ │ ├── [1.9K] README.md
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ ├── [4.0K] conf
│ │ │ │ │ └── [109K] Configuration.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [1.8K] NativeCodeLoader.java
│ │ │ │ └── [3.8K] VersionInfo.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 97K] core-default-shaded.xml
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [1.6K] LICENSE-re2j
│ │ │ │ └── [1.3K] LICENSE-stax2api
│ │ │ └── [134K] NOTICE
│ │ └── [4.0K] test
│ │ └── [4.0K] resources
│ │ ├── [ 95K] core-default-testing.xml
│ │ └── [1.1K] core-site.xml
│ ├── [4.0K] flink-hadoop-fs
│ │ ├── [3.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] runtime
│ │ │ ├── [4.0K] fs
│ │ │ │ └── [4.0K] hdfs
│ │ │ │ ├── [3.7K] HadoopBlockLocation.java
│ │ │ │ ├── [4.7K] HadoopDataInputStream.java
│ │ │ │ ├── [2.0K] HadoopDataOutputStream.java
│ │ │ │ ├── [2.2K] HadoopFileStatus.java
│ │ │ │ ├── [7.9K] HadoopFileSystem.java
│ │ │ │ ├── [7.5K] HadoopFsFactory.java
│ │ │ │ ├── [2.2K] HadoopFsRecoverable.java
│ │ │ │ ├── [ 10K] HadoopRecoverableFsDataOutputStream.java
│ │ │ │ ├── [3.2K] HadoopRecoverableSerializer.java
│ │ │ │ └── [5.5K] HadoopRecoverableWriter.java
│ │ │ └── [4.0K] util
│ │ │ ├── [4.7K] HadoopConfigLoader.java
│ │ │ └── [8.2K] HadoopUtils.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] runtime
│ │ │ ├── [4.0K] fs
│ │ │ │ └── [4.0K] hdfs
│ │ │ │ ├── [5.2K] AbstractHadoopFileSystemITTest.java
│ │ │ │ ├── [9.8K] HadoopConfigLoadingTest.java
│ │ │ │ ├── [4.2K] HadoopDataInputStreamTest.java
│ │ │ │ ├── [2.8K] HadoopFreeFsFactoryTest.java
│ │ │ │ ├── [2.2K] HadoopFreeTests.java
│ │ │ │ ├── [2.0K] HadoopFsFactoryTest.java
│ │ │ │ ├── [2.4K] HadoopLocalFileSystemBehaviorTest.java
│ │ │ │ ├── [5.8K] HadoopRecoverableWriterOldHadoopWithNoTruncateSupportTest.java
│ │ │ │ ├── [2.9K] HadoopRecoverableWriterTest.java
│ │ │ │ ├── [2.9K] HdfsBehaviorTest.java
│ │ │ │ ├── [2.1K] HdfsKindTest.java
│ │ │ │ └── [3.0K] LimitedConnectionsConfigurationTest.java
│ │ │ └── [4.0K] util
│ │ │ └── [5.9K] HadoopUtilsTest.java
│ │ └── [4.0K] resources
│ │ ├── [1.1K] core-site.xml
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-mapr-fs
│ │ ├── [2.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] runtime
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [4.0K] maprfs
│ │ │ │ └── [7.5K] MapRFsFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 830] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ ├── [4.0K] com
│ │ │ │ └── [4.0K] mapr
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [2.6K] MapRFileSystem.java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] runtime
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] maprfs
│ │ │ ├── [2.0K] MapRFsFactoryTest.java
│ │ │ └── [4.1K] MapRNotInClassPathTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-oss-fs-hadoop
│ │ ├── [5.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [4.0K] osshadoop
│ │ │ │ └── [3.6K] OSSFileSystemFactory.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] licenses
│ │ │ │ └── [2.5K] LICENSE.jdom
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 944] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 833] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] fs
│ │ └── [4.0K] osshadoop
│ │ ├── [2.4K] HadoopOSSFileSystemBehaviorITCase.java
│ │ └── [3.2K] HadoopOSSFileSystemITCase.java
│ ├── [4.0K] flink-s3-fs-base
│ │ ├── [7.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ ├── [4.0K] com
│ │ │ │ └── [4.0K] amazonaws
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [4.0K] s3
│ │ │ │ └── [4.0K] model
│ │ │ │ └── [4.0K] transform
│ │ │ │ └── [144K] XmlResponsesSaxParser.java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] s3
│ │ │ └── [4.0K] common
│ │ │ ├── [6.6K] AbstractS3FileSystemFactory.java
│ │ │ ├── [5.1K] FlinkS3FileSystem.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [3.3K] BackPressuringExecutor.java
│ │ │ │ ├── [1.7K] OffsetAwareOutputStream.java
│ │ │ │ ├── [4.7K] RefCountedBufferingFileStream.java
│ │ │ │ ├── [2.6K] RefCountedFileWithStream.java
│ │ │ │ ├── [1.6K] RefCountedFSOutputStream.java
│ │ │ │ └── [3.6K] RefCountedTmpFileCreator.java
│ │ │ └── [4.0K] writer
│ │ │ ├── [2.9K] MultiPartUploadInfo.java
│ │ │ ├── [ 11K] RecoverableMultiPartUploadImpl.java
│ │ │ ├── [2.9K] RecoverableMultiPartUpload.java
│ │ │ ├── [4.9K] S3AccessHelper.java
│ │ │ ├── [4.2K] S3Committer.java
│ │ │ ├── [8.6K] S3RecoverableFsDataOutputStream.java
│ │ │ ├── [3.3K] S3Recoverable.java
│ │ │ ├── [4.3K] S3RecoverableMultipartUploadFactory.java
│ │ │ ├── [4.8K] S3RecoverableSerializer.java
│ │ │ └── [5.9K] S3RecoverableWriter.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] s3
│ │ │ └── [4.0K] common
│ │ │ ├── [3.2K] S3EntropyFsFactoryTest.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [4.7K] RefCountedBufferingFileStreamTest.java
│ │ │ │ └── [3.4K] RefCountedFileWithStreamTest.java
│ │ │ └── [4.0K] writer
│ │ │ ├── [2.1K] IncompletePartPrefixTest.java
│ │ │ ├── [ 16K] RecoverableMultiPartUploadImplTest.java
│ │ │ ├── [ 15K] S3RecoverableFsDataOutputStreamTest.java
│ │ │ └── [5.2K] S3RecoverableSerializerTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-s3-fs-hadoop
│ │ ├── [7.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] fs
│ │ │ │ └── [4.0K] s3hadoop
│ │ │ │ ├── [4.8K] HadoopS3AccessHelper.java
│ │ │ │ ├── [1.0K] S3AFileSystemFactory.java
│ │ │ │ └── [3.1K] S3FileSystemFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [ 17K] LICENSE.javax.activation
│ │ │ │ ├── [ 17K] LICENSE.jaxb
│ │ │ │ ├── [1.6K] LICENSE-re2j
│ │ │ │ └── [1.3K] LICENSE-stax2api
│ │ │ ├── [2.0K] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 881] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] s3hadoop
│ │ │ ├── [2.4K] HadoopS3FileSystemBehaviorITCase.java
│ │ │ ├── [2.4K] HadoopS3FileSystemITCase.java
│ │ │ ├── [1.6K] HadoopS3FileSystemsSchemesTest.java
│ │ │ ├── [3.4K] HadoopS3FileSystemTest.java
│ │ │ ├── [7.0K] HadoopS3RecoverableWriterExceptionITCase.java
│ │ │ └── [ 15K] HadoopS3RecoverableWriterITCase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-s3-fs-presto
│ │ ├── [ 12K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ ├── [4.0K] apache
│ │ │ │ │ └── [4.0K] flink
│ │ │ │ │ └── [4.0K] fs
│ │ │ │ │ └── [4.0K] s3presto
│ │ │ │ │ ├── [3.0K] S3FileSystemFactory.java
│ │ │ │ │ └── [1.0K] S3PFileSystemFactory.java
│ │ │ │ └── [4.0K] openjdk
│ │ │ │ └── [4.0K] jol
│ │ │ │ └── [4.0K] info
│ │ │ │ ├── [1.1K] ClassLayout.java
│ │ │ │ └── [1.1K] package-info.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [7.0K] LICENSE-hdrhistogram
│ │ │ │ ├── [ 17K] LICENSE.javax.activation
│ │ │ │ ├── [ 17K] LICENSE.jaxb
│ │ │ │ ├── [1.6K] LICENSE-re2j
│ │ │ │ └── [1.3K] LICENSE-stax2api
│ │ │ ├── [2.6K] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 880] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] s3presto
│ │ │ ├── [2.4K] PrestoS3FileSystemBehaviorITCase.java
│ │ │ ├── [5.1K] PrestoS3FileSystemITCase.java
│ │ │ ├── [4.3K] PrestoS3FileSystemTest.java
│ │ │ └── [3.2K] PrestoS3RecoverableWriterTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-swift-fs-hadoop
│ │ ├── [ 10K] pom.xml
│ │ ├── [2.3K] README.md
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ ├── [4.0K] flink
│ │ │ │ │ └── [4.0K] fs
│ │ │ │ │ └── [4.0K] openstackhadoop
│ │ │ │ │ └── [4.6K] SwiftFileSystemFactory.java
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ ├── [4.0K] conf
│ │ │ │ │ └── [ 99K] Configuration.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [3.1K] NativeCodeLoader.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 75K] core-default-shaded.xml
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [1.7K] LICENSE-protobuf
│ │ │ │ └── [1.5K] LICENSE-xmlenc
│ │ │ ├── [ 88K] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 841] org.apache.flink.core.fs.FileSystemFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] fs
│ │ │ └── [4.0K] openstackhadoop
│ │ │ └── [6.9K] HadoopSwiftFileSystemITCase.java
│ │ └── [4.0K] resources
│ │ ├── [ 74K] core-site.xml
│ │ └── [1.3K] log4j2-test.properties
│ └── [2.7K] pom.xml
├── [4.0K] flink-formats
│ ├── [4.0K] flink-avro
│ │ ├── [7.9K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] formats
│ │ │ │ │ └── [4.0K] avro
│ │ │ │ │ ├── [1.3K] AvroBuilder.java
│ │ │ │ │ ├── [1.7K] AvroBulkWriter.java
│ │ │ │ │ ├── [5.6K] AvroDeserializationSchema.java
│ │ │ │ │ ├── [8.7K] AvroFileSystemFormatFactory.java
│ │ │ │ │ ├── [3.9K] AvroFormatFactory.java
│ │ │ │ │ ├── [6.9K] AvroInputFormat.java
│ │ │ │ │ ├── [5.7K] AvroOutputFormat.java
│ │ │ │ │ ├── [ 12K] AvroRowDataDeserializationSchema.java
│ │ │ │ │ ├── [9.9K] AvroRowDataSerializationSchema.java
│ │ │ │ │ ├── [ 13K] AvroRowDeserializationSchema.java
│ │ │ │ │ ├── [3.5K] AvroRowFormatFactory.java
│ │ │ │ │ ├── [ 12K] AvroRowSerializationSchema.java
│ │ │ │ │ ├── [5.0K] AvroSerializationSchema.java
│ │ │ │ │ ├── [2.7K] AvroWriterFactory.java
│ │ │ │ │ ├── [3.7K] AvroWriters.java
│ │ │ │ │ ├── [3.0K] RegistryAvroDeserializationSchema.java
│ │ │ │ │ ├── [3.4K] RegistryAvroSerializationSchema.java
│ │ │ │ │ ├── [1.7K] SchemaCoder.java
│ │ │ │ │ ├── [4.0K] typeutils
│ │ │ │ │ │ ├── [6.9K] AvroFactory.java
│ │ │ │ │ │ ├── [ 11K] AvroSchemaConverter.java
│ │ │ │ │ │ ├── [1.7K] AvroSerializerDebugInitHelper.java
│ │ │ │ │ │ ├── [ 15K] AvroSerializer.java
│ │ │ │ │ │ ├── [7.8K] AvroSerializerSnapshot.java
│ │ │ │ │ │ ├── [4.1K] AvroTypeInfo.java
│ │ │ │ │ │ ├── [2.9K] GenericRecordAvroTypeInfo.java
│ │ │ │ │ │ └── [1.9K] SerializableAvroSchema.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [6.4K] AvroKryoSerializerUtils.java
│ │ │ │ │ ├── [5.3K] DataInputDecoder.java
│ │ │ │ │ ├── [4.7K] DataOutputEncoder.java
│ │ │ │ │ ├── [1.8K] FSDataInputStreamWrapper.java
│ │ │ │ │ └── [1.6K] MutableByteArrayInputStream.java
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] descriptors
│ │ │ │ ├── [2.2K] Avro.java
│ │ │ │ └── [1.9K] AvroValidator.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 888] org.apache.flink.table.factories.Factory
│ │ │ └── [ 833] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] assembly
│ │ │ └── [1.2K] test-assembly.xml
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] formats
│ │ │ │ └── [4.0K] avro
│ │ │ │ ├── [2.4K] AvroDeserializationSchemaTest.java
│ │ │ │ ├── [2.7K] AvroExternalJarProgramITCase.java
│ │ │ │ ├── [1.7K] AvroFilesystemITCase.java
│ │ │ │ ├── [1.3K] AvroFilesystemStreamITCase.java
│ │ │ │ ├── [4.6K] AvroFormatFactoryTest.java
│ │ │ │ ├── [2.6K] AvroInputFormatTypeExtractionTest.java
│ │ │ │ ├── [3.9K] AvroKryoClassloadingTest.java
│ │ │ │ ├── [4.0K] AvroKryoSerializerRegistrationsTest.java
│ │ │ │ ├── [7.1K] AvroOutputFormatITCase.java
│ │ │ │ ├── [7.9K] AvroOutputFormatTest.java
│ │ │ │ ├── [ 18K] AvroRecordInputFormatTest.java
│ │ │ │ ├── [7.9K] AvroRowDataDeSerializationSchemaTest.java
│ │ │ │ ├── [8.7K] AvroRowDeSerializationSchemaTest.java
│ │ │ │ ├── [3.6K] AvroRowFormatFactoryTest.java
│ │ │ │ ├── [2.2K] AvroSerializationSchemaTest.java
│ │ │ │ ├── [ 12K] AvroSplittableInputFormatTest.java
│ │ │ │ ├── [7.0K] AvroStreamingFileSinkITCase.java
│ │ │ │ ├── [ 15K] EncoderDecoderTest.java
│ │ │ │ ├── [3.8K] RegistryAvroDeserializationSchemaTest.java
│ │ │ │ ├── [4.0K] testjar
│ │ │ │ │ └── [5.7K] AvroExternalJarProgram.java
│ │ │ │ ├── [4.0K] typeutils
│ │ │ │ │ ├── [1.2K] AvroGenericArraySerializerTest.java
│ │ │ │ │ ├── [1.2K] AvroGenericTypeComparatorTest.java
│ │ │ │ │ ├── [1.2K] AvroGenericTypeSerializerTest.java
│ │ │ │ │ ├── [4.7K] AvroSchemaConverterTest.java
│ │ │ │ │ ├── [2.2K] AvroSerializerConcurrencyCheckInactiveITCase.java
│ │ │ │ │ ├── [2.7K] AvroSerializerConcurrencyTest.java
│ │ │ │ │ ├── [5.1K] AvroSerializerEmptyArrayTest.java
│ │ │ │ │ ├── [1.9K] AvroSerializerGenericRecordTest.java
│ │ │ │ │ ├── [8.8K] AvroSerializerSnapshotTest.java
│ │ │ │ │ ├── [1.7K] AvroSerializerTest.java
│ │ │ │ │ ├── [6.4K] AvroSerializerUpgradeTest.java
│ │ │ │ │ ├── [ 11K] AvroTypeExtractionTest.java
│ │ │ │ │ └── [1.7K] AvroTypeInfoTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [ 11K] AvroTestUtils.java
│ │ │ │ └── [4.9K] TestDataGenerator.java
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] descriptors
│ │ │ │ └── [2.4K] AvroTest.java
│ │ │ └── [4.0K] runtime
│ │ │ └── [4.0K] batch
│ │ │ └── [8.8K] AvroTypesITCase.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] avro
│ │ │ └── [5.3K] user.avsc
│ │ ├── [4.0K] generic-avro-serializer-1.11
│ │ │ ├── [ 370] serializer-snapshot
│ │ │ └── [ 51] test-data
│ │ ├── [1.3K] log4j2-test.properties
│ │ ├── [4.0K] specific-avro-serializer-1.11
│ │ │ ├── [ 380] serializer-snapshot
│ │ │ └── [ 51] test-data
│ │ └── [4.5K] testdata.avro
│ ├── [4.0K] flink-avro-confluent-registry
│ │ ├── [3.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] formats
│ │ │ │ └── [4.0K] avro
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] confluent
│ │ │ │ ├── [5.4K] ConfluentRegistryAvroDeserializationSchema.java
│ │ │ │ ├── [4.5K] ConfluentRegistryAvroSerializationSchema.java
│ │ │ │ └── [3.2K] ConfluentSchemaRegistryCoder.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 631] NOTICE
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] formats
│ │ └── [4.0K] avro
│ │ └── [4.0K] registry
│ │ └── [4.0K] confluent
│ │ └── [2.9K] ConfluentSchemaRegistryCoderTest.java
│ ├── [4.0K] flink-compress
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] formats
│ │ │ └── [4.0K] compress
│ │ │ ├── [4.7K] CompressWriterFactory.java
│ │ │ ├── [1.1K] CompressWriters.java
│ │ │ ├── [4.0K] extractor
│ │ │ │ ├── [1.2K] DefaultExtractor.java
│ │ │ │ └── [1.1K] Extractor.java
│ │ │ └── [4.0K] writers
│ │ │ ├── [1.9K] HadoopCompressionBulkWriter.java
│ │ │ └── [2.0K] NoCompressionBulkWriter.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] formats
│ │ │ └── [4.0K] compress
│ │ │ ├── [4.0K] CompressionFactoryITCase.java
│ │ │ ├── [6.6K] CompressWriterFactoryTest.java
│ │ │ └── [1.2K] CustomCompressionCodec.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-csv
│ │ ├── [3.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] formats
│ │ │ │ │ └── [4.0K] csv
│ │ │ │ │ ├── [4.0K] AbstractCsvInputFormat.java
│ │ │ │ │ ├── [ 11K] CsvFileSystemFormatFactory.java
│ │ │ │ │ ├── [9.3K] CsvFormatFactory.java
│ │ │ │ │ ├── [3.8K] CsvOptions.java
│ │ │ │ │ ├── [ 15K] CsvRowDataDeserializationSchema.java
│ │ │ │ │ ├── [ 17K] CsvRowDataSerializationSchema.java
│ │ │ │ │ ├── [ 13K] CsvRowDeserializationSchema.java
│ │ │ │ │ ├── [5.8K] CsvRowFormatFactory.java
│ │ │ │ │ ├── [9.5K] CsvRowSchemaConverter.java
│ │ │ │ │ ├── [ 13K] CsvRowSerializationSchema.java
│ │ │ │ │ └── [7.5K] RowCsvInputFormat.java
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] descriptors
│ │ │ │ ├── [7.1K] Csv.java
│ │ │ │ └── [3.5K] CsvValidator.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 884] org.apache.flink.table.factories.Factory
│ │ │ └── [ 831] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] formats
│ │ │ └── [4.0K] csv
│ │ │ ├── [3.0K] CsvFilesystemBatchITCase.java
│ │ │ ├── [1.3K] CsvFilesystemStreamITCase.java
│ │ │ ├── [1.4K] CsvFilesystemStreamSinkITCase.java
│ │ │ ├── [8.5K] CsvFormatFactoryTest.java
│ │ │ ├── [ 13K] CsvRowDataSerDeSchemaTest.java
│ │ │ ├── [ 11K] CsvRowDeSerializationSchemaTest.java
│ │ │ ├── [5.8K] CsvRowFormatFactoryTest.java
│ │ │ ├── [6.5K] RowCsvInputFormatSplitTest.java
│ │ │ └── [ 24K] RowCsvInputFormatTest.java
│ │ └── [4.0K] table
│ │ └── [4.0K] descriptors
│ │ └── [3.3K] CsvTest.java
│ ├── [4.0K] flink-hadoop-bulk
│ │ ├── [3.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] formats
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ └── [4.0K] bulk
│ │ │ │ ├── [4.0K] committer
│ │ │ │ │ └── [3.5K] HadoopRenameFileCommitter.java
│ │ │ │ ├── [1.7K] DefaultHadoopFileCommitterFactory.java
│ │ │ │ ├── [1.9K] HadoopFileCommitterFactory.java
│ │ │ │ ├── [1.7K] HadoopFileCommitter.java
│ │ │ │ ├── [2.3K] HadoopPathBasedBulkWriter.java
│ │ │ │ └── [9.7K] HadoopPathBasedPartFileWriter.java
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] functions
│ │ │ └── [4.0K] sink
│ │ │ └── [4.0K] filesystem
│ │ │ ├── [4.7K] HadoopPathBasedBulkFormatBuilder.java
│ │ │ └── [1.7K] SerializableConfiguration.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] formats
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ └── [4.0K] bulk
│ │ │ │ ├── [9.9K] AbstractFileCommitterTest.java
│ │ │ │ ├── [4.0K] committer
│ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ └── [1.6K] HDFSCluster.java
│ │ │ │ │ ├── [2.9K] HadoopRenameCommitterHDFSTest.java
│ │ │ │ │ └── [2.1K] HadoopRenameCommitterLocalFSTest.java
│ │ │ │ └── [6.8K] HadoopPathBasedPartFileWriterTest.java
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] functions
│ │ │ └── [4.0K] sink
│ │ │ └── [4.0K] filesystem
│ │ │ └── [1.2K] TestStreamingFileSinkFactory.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-json
│ │ ├── [4.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] formats
│ │ │ │ │ └── [4.0K] json
│ │ │ │ │ ├── [4.0K] canal
│ │ │ │ │ │ ├── [7.0K] CanalJsonDeserializationSchema.java
│ │ │ │ │ │ └── [4.3K] CanalJsonFormatFactory.java
│ │ │ │ │ ├── [4.0K] debezium
│ │ │ │ │ │ ├── [7.4K] DebeziumJsonDeserializationSchema.java
│ │ │ │ │ │ └── [4.9K] DebeziumJsonFormatFactory.java
│ │ │ │ │ ├── [9.0K] JsonFileSystemFormatFactory.java
│ │ │ │ │ ├── [5.8K] JsonFormatFactory.java
│ │ │ │ │ ├── [1.7K] JsonNodeDeserializationSchema.java
│ │ │ │ │ ├── [3.3K] JsonOptions.java
│ │ │ │ │ ├── [ 15K] JsonRowDataDeserializationSchema.java
│ │ │ │ │ ├── [ 11K] JsonRowDataSerializationSchema.java
│ │ │ │ │ ├── [ 19K] JsonRowDeserializationSchema.java
│ │ │ │ │ ├── [4.1K] JsonRowFormatFactory.java
│ │ │ │ │ ├── [ 13K] JsonRowSchemaConverter.java
│ │ │ │ │ ├── [ 14K] JsonRowSerializationSchema.java
│ │ │ │ │ ├── [2.4K] TimeFormats.java
│ │ │ │ │ └── [1.3K] TimestampFormat.java
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] descriptors
│ │ │ │ ├── [5.2K] Json.java
│ │ │ │ └── [2.9K] JsonValidator.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [1012] org.apache.flink.table.factories.Factory
│ │ │ └── [ 833] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] formats
│ │ │ │ ├── [4.0K] json
│ │ │ │ │ ├── [4.0K] canal
│ │ │ │ │ │ ├── [6.3K] CanalJsonDeserializationSchemaTest.java
│ │ │ │ │ │ └── [5.3K] CanalJsonFormatFactoryTest.java
│ │ │ │ │ ├── [4.0K] debezium
│ │ │ │ │ │ ├── [7.5K] DebeziumJsonDeserializationSchemaTest.java
│ │ │ │ │ │ └── [5.4K] DebeziumJsonFormatFactoryTest.java
│ │ │ │ │ ├── [1.9K] JsonBatchFileSystemITCase.java
│ │ │ │ │ ├── [7.5K] JsonFormatFactoryTest.java
│ │ │ │ │ ├── [1.3K] JsonFsStreamSinkITCase.java
│ │ │ │ │ ├── [1.7K] JsonNodeDeserializationSchemaTest.java
│ │ │ │ │ ├── [ 20K] JsonRowDataSerDeSchemaTest.java
│ │ │ │ │ ├── [ 14K] JsonRowDeserializationSchemaTest.java
│ │ │ │ │ ├── [5.4K] JsonRowFormatFactoryTest.java
│ │ │ │ │ ├── [4.1K] JsonRowSchemaConverterTest.java
│ │ │ │ │ └── [8.0K] JsonRowSerializationSchemaTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [5.2K] DeserializationSchemaMatcher.java
│ │ │ │ └── [6.4K] SerializationSchemaMatcher.java
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] descriptors
│ │ │ └── [4.8K] JsonTest.java
│ │ └── [4.0K] resources
│ │ ├── [5.0K] canal-data.txt
│ │ ├── [2.5K] complex-schema.json
│ │ ├── [6.7K] debezium-data-schema-exclude.txt
│ │ ├── [ 38K] debezium-data-schema-include.txt
│ │ ├── [5.8K] debezium-postgres-data-replica-identity.txt
│ │ ├── [6.2K] debezium-postgres-data-schema-exclude.txt
│ │ ├── [ 35K] debezium-postgres-data-schema-include.txt
│ │ └── [1.5K] reference-schema.json
│ ├── [4.0K] flink-orc
│ │ ├── [5.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] orc
│ │ │ │ ├── [ 44K] OrcBatchReader.java
│ │ │ │ ├── [2.5K] OrcColumnarRowSplitReader.java
│ │ │ │ ├── [6.6K] OrcFileSystemFormatFactory.java
│ │ │ │ ├── [6.4K] OrcInputFormat.java
│ │ │ │ ├── [3.7K] OrcRowInputFormat.java
│ │ │ │ ├── [2.2K] OrcRowSplitReader.java
│ │ │ │ ├── [ 14K] OrcSplitReader.java
│ │ │ │ ├── [7.0K] OrcSplitReaderUtil.java
│ │ │ │ ├── [ 18K] OrcTableSource.java
│ │ │ │ ├── [4.0K] shim
│ │ │ │ │ ├── [2.5K] OrcShim.java
│ │ │ │ │ ├── [6.9K] OrcShimV200.java
│ │ │ │ │ ├── [1.3K] OrcShimV210.java
│ │ │ │ │ └── [1.9K] OrcShimV230.java
│ │ │ │ ├── [2.2K] TimestampUtil.java
│ │ │ │ ├── [4.0K] vector
│ │ │ │ │ ├── [6.1K] AbstractOrcColumnVector.java
│ │ │ │ │ ├── [1.3K] HiveOrcBatchWrapper.java
│ │ │ │ │ ├── [1.5K] OrcBytesColumnVector.java
│ │ │ │ │ ├── [1.6K] OrcDecimalColumnVector.java
│ │ │ │ │ ├── [1.5K] OrcDoubleColumnVector.java
│ │ │ │ │ ├── [3.0K] OrcLegacyTimestampColumnVector.java
│ │ │ │ │ ├── [2.0K] OrcLongColumnVector.java
│ │ │ │ │ ├── [2.2K] OrcTimestampColumnVector.java
│ │ │ │ │ ├── [1.1K] OrcVectorizedBatchWrapper.java
│ │ │ │ │ ├── [4.8K] RowDataVectorizer.java
│ │ │ │ │ └── [3.0K] Vectorizer.java
│ │ │ │ └── [4.0K] writer
│ │ │ │ ├── [4.4K] OrcBulkWriterFactory.java
│ │ │ │ ├── [2.3K] OrcBulkWriter.java
│ │ │ │ └── [ 12K] PhysicalWriterImpl.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 830] org.apache.flink.table.factories.Factory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] orc
│ │ │ ├── [4.0K] data
│ │ │ │ └── [1.5K] Record.java
│ │ │ ├── [4.0K] OrcBatchReaderTest.java
│ │ │ ├── [ 13K] OrcColumnarRowSplitReaderTest.java
│ │ │ ├── [2.6K] OrcFileSystemITCase.java
│ │ │ ├── [1.3K] OrcFsStreamingSinkITCase.java
│ │ │ ├── [ 34K] OrcRowInputFormatTest.java
│ │ │ ├── [2.4K] OrcSplitReaderUtilTest.java
│ │ │ ├── [3.8K] OrcTableSourceITCase.java
│ │ │ ├── [ 12K] OrcTableSourceTest.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [3.4K] OrcBulkWriterTestUtil.java
│ │ │ │ └── [ 12K] OrcTestFileGenerator.java
│ │ │ ├── [4.0K] vector
│ │ │ │ └── [2.0K] RecordVectorizer.java
│ │ │ └── [4.0K] writer
│ │ │ ├── [2.8K] OrcBulkWriterITCase.java
│ │ │ └── [2.8K] OrcBulkWriterTest.java
│ │ └── [4.0K] resources
│ │ ├── [1.3K] log4j2-test.properties
│ │ ├── [ 10K] test-data-composites-with-nulls.orc
│ │ ├── [ 16K] test-data-decimal.orc
│ │ ├── [399K] test-data-flat.orc
│ │ ├── [ 845] test-data-nestedlist.orc
│ │ ├── [1.7K] test-data-nested.orc
│ │ ├── [1.2K] test-data-repeating.orc
│ │ └── [ 30K] test-data-timetypes.orc
│ ├── [4.0K] flink-orc-nohive
│ │ ├── [3.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] orc
│ │ │ └── [4.0K] nohive
│ │ │ ├── [6.2K] OrcNoHiveBulkWriterFactory.java
│ │ │ ├── [3.5K] OrcNoHiveSplitReaderUtil.java
│ │ │ ├── [4.0K] shim
│ │ │ │ └── [3.3K] OrcNoHiveShim.java
│ │ │ └── [4.0K] vector
│ │ │ ├── [6.4K] AbstractOrcNoHiveVector.java
│ │ │ ├── [1.3K] OrcNoHiveBatchWrapper.java
│ │ │ ├── [1.5K] OrcNoHiveBytesVector.java
│ │ │ ├── [1.6K] OrcNoHiveDecimalVector.java
│ │ │ ├── [1.5K] OrcNoHiveDoubleVector.java
│ │ │ ├── [2.0K] OrcNoHiveLongVector.java
│ │ │ └── [1.6K] OrcNoHiveTimestampVector.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] orc
│ │ └── [4.0K] nohive
│ │ └── [3.8K] OrcColumnarRowSplitReaderNoHiveTest.java
│ ├── [4.0K] flink-parquet
│ │ ├── [6.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] formats
│ │ │ │ └── [4.0K] parquet
│ │ │ │ ├── [4.0K] avro
│ │ │ │ │ └── [3.6K] ParquetAvroWriters.java
│ │ │ │ ├── [1.3K] ParquetBuilder.java
│ │ │ │ ├── [1.9K] ParquetBulkWriter.java
│ │ │ │ ├── [7.0K] ParquetFileSystemFormatFactory.java
│ │ │ │ ├── [ 10K] ParquetInputFormat.java
│ │ │ │ ├── [5.3K] ParquetMapInputFormat.java
│ │ │ │ ├── [4.6K] ParquetPojoInputFormat.java
│ │ │ │ ├── [1.7K] ParquetRowInputFormat.java
│ │ │ │ ├── [ 21K] ParquetTableSource.java
│ │ │ │ ├── [2.1K] ParquetWriterFactory.java
│ │ │ │ ├── [2.0K] PositionOutputStreamAdapter.java
│ │ │ │ ├── [4.0K] row
│ │ │ │ │ ├── [5.2K] ParquetRowDataBuilder.java
│ │ │ │ │ └── [9.9K] ParquetRowDataWriter.java
│ │ │ │ ├── [2.5K] StreamOutputFile.java
│ │ │ │ ├── [4.0K] utils
│ │ │ │ │ ├── [1.0K] ParentDataHolder.java
│ │ │ │ │ ├── [9.7K] ParquetRecordReader.java
│ │ │ │ │ ├── [ 20K] ParquetSchemaConverter.java
│ │ │ │ │ ├── [2.5K] ParquetTimestampUtils.java
│ │ │ │ │ ├── [ 13K] RowConverter.java
│ │ │ │ │ ├── [1.7K] RowMaterializer.java
│ │ │ │ │ ├── [2.0K] RowReadSupport.java
│ │ │ │ │ └── [1.6K] SerializableConfiguration.java
│ │ │ │ └── [4.0K] vector
│ │ │ │ ├── [ 12K] ParquetColumnarRowSplitReader.java
│ │ │ │ ├── [2.2K] ParquetDecimalVector.java
│ │ │ │ ├── [1.9K] ParquetDictionary.java
│ │ │ │ ├── [ 14K] ParquetSplitReaderUtil.java
│ │ │ │ └── [4.0K] reader
│ │ │ │ ├── [ 11K] AbstractColumnReader.java
│ │ │ │ ├── [3.2K] BooleanColumnReader.java
│ │ │ │ ├── [3.1K] ByteColumnReader.java
│ │ │ │ ├── [3.1K] BytesColumnReader.java
│ │ │ │ ├── [1.3K] ColumnReader.java
│ │ │ │ ├── [3.1K] DoubleColumnReader.java
│ │ │ │ ├── [4.9K] FixedLenBytesColumnReader.java
│ │ │ │ ├── [3.1K] FloatColumnReader.java
│ │ │ │ ├── [3.0K] IntColumnReader.java
│ │ │ │ ├── [3.0K] LongColumnReader.java
│ │ │ │ ├── [7.5K] RunLengthDecoder.java
│ │ │ │ ├── [2.7K] ShortColumnReader.java
│ │ │ │ └── [4.2K] TimestampColumnReader.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 846] org.apache.flink.table.factories.Factory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] formats
│ │ │ └── [4.0K] parquet
│ │ │ ├── [4.0K] avro
│ │ │ │ └── [7.4K] ParquetStreamingFileSinkITCase.java
│ │ │ ├── [2.9K] ParquetFileSystemITCase.java
│ │ │ ├── [1.3K] ParquetFsStreamingSinkITCase.java
│ │ │ ├── [4.3K] ParquetMapInputFormatTest.java
│ │ │ ├── [3.9K] ParquetPojoInputFormatTest.java
│ │ │ ├── [ 15K] ParquetRowInputFormatTest.java
│ │ │ ├── [4.3K] ParquetTableSourceITCase.java
│ │ │ ├── [9.0K] ParquetTableSourceTest.java
│ │ │ ├── [4.0K] pojo
│ │ │ │ └── [1.3K] PojoSimpleRecord.java
│ │ │ ├── [4.0K] row
│ │ │ │ └── [5.5K] ParquetRowDataWriterTest.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [ 12K] ParquetRecordReaderTest.java
│ │ │ │ ├── [5.1K] ParquetSchemaConverterTest.java
│ │ │ │ ├── [5.5K] ParquetWriterUtil.java
│ │ │ │ └── [8.1K] TestUtil.java
│ │ │ └── [4.0K] vector
│ │ │ └── [ 17K] ParquetColumnarRowSplitReaderTest.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] avro
│ │ │ ├── [1.3K] nested.avsc
│ │ │ ├── [ 396] simple.avsc
│ │ │ └── [ 324] testdata.avsc
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-sequence-file
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] formats
│ │ │ └── [4.0K] sequencefile
│ │ │ ├── [5.3K] SequenceFileWriterFactory.java
│ │ │ ├── [1.9K] SequenceFileWriter.java
│ │ │ └── [1.7K] SerializableHadoopConfiguration.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] formats
│ │ │ └── [4.0K] sequencefile
│ │ │ ├── [4.3K] SequenceStreamingFileSinkITCase.java
│ │ │ └── [3.6K] SerializableHadoopConfigurationTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-sql-orc
│ │ ├── [2.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ └── [1.7K] LICENSE.protobuf
│ │ └── [ 629] NOTICE
│ ├── [4.0K] flink-sql-parquet
│ │ ├── [3.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [ 688] NOTICE
│ └── [2.5K] pom.xml
├── [4.0K] flink-fs-tests
│ ├── [5.1K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] hdfstests
│ │ ├── [9.7K] ContinuousFileProcessingITCase.java
│ │ ├── [ 14K] ContinuousFileProcessingMigrationTest.java
│ │ ├── [ 37K] ContinuousFileProcessingTest.java
│ │ ├── [7.4K] DistributedCacheDfsTest.java
│ │ ├── [ 12K] HDFSTest.java
│ │ └── [2.3K] Utils.java
│ └── [4.0K] resources
│ ├── [1.3K] log4j2-test.properties
│ ├── [ 537] monitoring-function-migration-test-1496532000000-flink1.3-snapshot
│ ├── [ 537] monitoring-function-migration-test-1516897628000-flink1.4-snapshot
│ ├── [ 535] monitoring-function-migration-test-1533639934000-flink1.5-snapshot
│ ├── [ 616] monitoring-function-migration-test-1534696817000-flink1.6-snapshot
│ ├── [ 375] monitoring-function-migration-test-1544024599000-flink1.7-snapshot
│ ├── [ 316] monitoring-function-migration-test-1555215710000-flink1.8-snapshot
│ ├── [ 316] monitoring-function-migration-test-1567499868000-flink1.9-snapshot
│ ├── [ 316] monitoring-function-migration-test-1594559333000-flink1.10-snapshot
│ ├── [ 324] monitoring-function-migration-test-1594561663000-flink1.11-snapshot
│ ├── [2.6K] reader-migration-test-flink1.10-snapshot
│ ├── [2.6K] reader-migration-test-flink1.11-snapshot
│ ├── [2.8K] reader-migration-test-flink1.3-snapshot
│ ├── [2.8K] reader-migration-test-flink1.4-snapshot
│ ├── [2.8K] reader-migration-test-flink1.5-snapshot
│ ├── [2.8K] reader-migration-test-flink1.6-snapshot
│ ├── [2.8K] reader-migration-test-flink1.7-snapshot
│ ├── [2.6K] reader-migration-test-flink1.8-snapshot
│ └── [2.6K] reader-migration-test-flink1.9-snapshot
├── [4.0K] flink-java
│ ├── [2.4K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] java
│ │ │ ├── [4.0K] aggregation
│ │ │ │ ├── [1.1K] AggregationFunctionFactory.java
│ │ │ │ ├── [1.2K] AggregationFunction.java
│ │ │ │ ├── [1.5K] Aggregations.java
│ │ │ │ ├── [3.4K] MaxAggregationFunction.java
│ │ │ │ ├── [3.5K] MinAggregationFunction.java
│ │ │ │ ├── [7.8K] SumAggregationFunction.java
│ │ │ │ └── [1.2K] UnsupportedAggregationTypeException.java
│ │ │ ├── [2.0K] CollectionEnvironment.java
│ │ │ ├── [ 78K] DataSet.java
│ │ │ ├── [1.1K] ExecutionEnvironmentFactory.java
│ │ │ ├── [ 59K] ExecutionEnvironment.java
│ │ │ ├── [2.8K] ExecutionPlanUtil.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [1.7K] FirstReducer.java
│ │ │ │ ├── [2.4K] FlatMapIterator.java
│ │ │ │ ├── [1.5K] FormattingMapper.java
│ │ │ │ ├── [ 26K] FunctionAnnotation.java
│ │ │ │ ├── [1.7K] GroupReduceIterator.java
│ │ │ │ ├── [1.2K] IdPartitioner.java
│ │ │ │ ├── [2.8K] SampleInCoordinator.java
│ │ │ │ ├── [2.7K] SampleInPartition.java
│ │ │ │ ├── [2.4K] SampleWithFraction.java
│ │ │ │ ├── [3.4K] SelectByMaxFunction.java
│ │ │ │ ├── [3.3K] SelectByMinFunction.java
│ │ │ │ └── [ 27K] SemanticPropUtil.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [2.3K] BlockingShuffleOutputFormat.java
│ │ │ │ ├── [5.0K] CollectionInputFormat.java
│ │ │ │ ├── [4.6K] CsvInputFormat.java
│ │ │ │ ├── [7.6K] CsvOutputFormat.java
│ │ │ │ ├── [ 79K] CsvReader.java
│ │ │ │ ├── [1.4K] DiscardingOutputFormat.java
│ │ │ │ ├── [1.7K] IteratorInputFormat.java
│ │ │ │ ├── [3.0K] LocalCollectionOutputFormat.java
│ │ │ │ ├── [1.9K] ParallelIteratorInputFormat.java
│ │ │ │ ├── [7.9K] PojoCsvInputFormat.java
│ │ │ │ ├── [3.2K] PrimitiveInputFormat.java
│ │ │ │ ├── [3.1K] PrintingOutputFormat.java
│ │ │ │ ├── [7.5K] RowCsvInputFormat.java
│ │ │ │ ├── [ 15K] SplitDataProperties.java
│ │ │ │ ├── [3.4K] TextInputFormat.java
│ │ │ │ ├── [3.4K] TextOutputFormat.java
│ │ │ │ ├── [4.2K] TextValueInputFormat.java
│ │ │ │ ├── [3.7K] TupleCsvInputFormat.java
│ │ │ │ ├── [2.2K] TypeSerializerInputFormat.java
│ │ │ │ └── [2.2K] TypeSerializerOutputFormat.java
│ │ │ ├── [3.0K] LocalEnvironment.java
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [ 10K] AggregateOperator.java
│ │ │ │ ├── [2.1K] BulkIterationResultSet.java
│ │ │ │ ├── [ 29K] CoGroupOperator.java
│ │ │ │ ├── [4.1K] CoGroupRawOperator.java
│ │ │ │ ├── [ 49K] CrossOperator.java
│ │ │ │ ├── [1.2K] CustomUnaryOperation.java
│ │ │ │ ├── [ 11K] DataSink.java
│ │ │ │ ├── [4.8K] DataSource.java
│ │ │ │ ├── [ 13K] DeltaIteration.java
│ │ │ │ ├── [2.4K] DeltaIterationResultSet.java
│ │ │ │ ├── [5.7K] DistinctOperator.java
│ │ │ │ ├── [2.5K] FilterOperator.java
│ │ │ │ ├── [2.8K] FlatMapOperator.java
│ │ │ │ ├── [9.2K] GroupCombineOperator.java
│ │ │ │ ├── [3.1K] Grouping.java
│ │ │ │ ├── [ 13K] GroupReduceOperator.java
│ │ │ │ ├── [7.0K] IterativeDataSet.java
│ │ │ │ ├── [4.0K] join
│ │ │ │ │ ├── [1.6K] JoinFunctionAssigner.java
│ │ │ │ │ ├── [9.8K] JoinOperatorSetsBase.java
│ │ │ │ │ └── [1.1K] JoinType.java
│ │ │ │ ├── [ 76K] JoinOperator.java
│ │ │ │ ├── [5.9K] KeyFunctions.java
│ │ │ │ ├── [2.8K] MapOperator.java
│ │ │ │ ├── [2.9K] MapPartitionOperator.java
│ │ │ │ ├── [1.5K] NoOpOperator.java
│ │ │ │ ├── [5.5K] Operator.java
│ │ │ │ ├── [ 12K] OperatorTranslation.java
│ │ │ │ ├── [9.8K] PartitionOperator.java
│ │ │ │ ├── [ 27K] ProjectOperator.java
│ │ │ │ ├── [7.1K] ReduceOperator.java
│ │ │ │ ├── [2.3K] SingleInputOperator.java
│ │ │ │ ├── [ 13K] SingleInputUdfOperator.java
│ │ │ │ ├── [ 11K] SortedGrouping.java
│ │ │ │ ├── [8.3K] SortPartitionOperator.java
│ │ │ │ ├── [4.0K] translation
│ │ │ │ │ ├── [2.1K] CombineToGroupCombineWrapper.java
│ │ │ │ │ ├── [1.7K] KeyExtractingMapper.java
│ │ │ │ │ ├── [1.4K] KeyRemovingMapper.java
│ │ │ │ │ ├── [3.0K] PlanBothUnwrappingCoGroupOperator.java
│ │ │ │ │ ├── [2.1K] PlanFilterOperator.java
│ │ │ │ │ ├── [2.7K] PlanLeftUnwrappingCoGroupOperator.java
│ │ │ │ │ ├── [2.8K] PlanProjectOperator.java
│ │ │ │ │ ├── [2.8K] PlanRightUnwrappingCoGroupOperator.java
│ │ │ │ │ ├── [2.8K] PlanUnwrappingGroupCombineOperator.java
│ │ │ │ │ ├── [4.4K] PlanUnwrappingReduceGroupOperator.java
│ │ │ │ │ ├── [2.3K] PlanUnwrappingReduceOperator.java
│ │ │ │ │ ├── [2.9K] PlanUnwrappingSortedGroupCombineOperator.java
│ │ │ │ │ ├── [4.5K] PlanUnwrappingSortedReduceGroupOperator.java
│ │ │ │ │ ├── [2.4K] RichCombineToGroupCombineWrapper.java
│ │ │ │ │ ├── [2.2K] Tuple3UnwrappingIterator.java
│ │ │ │ │ ├── [2.0K] Tuple3WrappingCollector.java
│ │ │ │ │ ├── [1.8K] TupleLeftUnwrappingJoiner.java
│ │ │ │ │ ├── [1.8K] TupleRightUnwrappingJoiner.java
│ │ │ │ │ ├── [2.0K] TupleUnwrappingIterator.java
│ │ │ │ │ ├── [1.9K] TupleUnwrappingJoiner.java
│ │ │ │ │ ├── [1.9K] TupleWrappingCollector.java
│ │ │ │ │ ├── [2.0K] TwoKeyExtractingMapper.java
│ │ │ │ │ └── [2.0K] WrappingFunction.java
│ │ │ │ ├── [3.3K] TwoInputOperator.java
│ │ │ │ ├── [ 18K] TwoInputUdfOperator.java
│ │ │ │ ├── [4.0K] UdfOperator.java
│ │ │ │ ├── [2.6K] UnionOperator.java
│ │ │ │ └── [ 14K] UnsortedGrouping.java
│ │ │ ├── [3.4K] RemoteEnvironmentConfigUtils.java
│ │ │ ├── [6.9K] RemoteEnvironment.java
│ │ │ ├── [4.0K] sampling
│ │ │ │ ├── [4.1K] BernoulliSampler.java
│ │ │ │ ├── [4.1K] DistributedRandomSampler.java
│ │ │ │ ├── [1.5K] IntermediateSampleData.java
│ │ │ │ ├── [4.8K] PoissonSampler.java
│ │ │ │ ├── [1.9K] RandomSampler.java
│ │ │ │ ├── [4.2K] ReservoirSamplerWithoutReplacement.java
│ │ │ │ └── [4.1K] ReservoirSamplerWithReplacement.java
│ │ │ ├── [4.0K] summarize
│ │ │ │ ├── [4.0K] aggregation
│ │ │ │ │ ├── [1.4K] Aggregator.java
│ │ │ │ │ ├── [1.7K] BooleanSummaryAggregator.java
│ │ │ │ │ ├── [2.8K] CompensatedSum.java
│ │ │ │ │ ├── [3.0K] DoubleSummaryAggregator.java
│ │ │ │ │ ├── [3.1K] FloatSummaryAggregator.java
│ │ │ │ │ ├── [3.1K] IntegerSummaryAggregator.java
│ │ │ │ │ ├── [3.0K] LongSummaryAggregator.java
│ │ │ │ │ ├── [5.1K] NumericSummaryAggregator.java
│ │ │ │ │ ├── [1.7K] ObjectSummaryAggregator.java
│ │ │ │ │ ├── [3.2K] ShortSummaryAggregator.java
│ │ │ │ │ ├── [2.8K] StringSummaryAggregator.java
│ │ │ │ │ ├── [3.8K] SummaryAggregatorFactory.java
│ │ │ │ │ ├── [2.3K] TupleSummaryAggregator.java
│ │ │ │ │ └── [6.2K] ValueSummaryAggregator.java
│ │ │ │ ├── [1.8K] BooleanColumnSummary.java
│ │ │ │ ├── [1.6K] ColumnSummary.java
│ │ │ │ ├── [4.9K] NumericColumnSummary.java
│ │ │ │ ├── [1.6K] ObjectColumnSummary.java
│ │ │ │ └── [2.3K] StringColumnSummary.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [8.6K] AbstractParameterTool.java
│ │ │ │ ├── [1.7K] CollectionExecutorFactory.java
│ │ │ │ ├── [3.1K] CollectionPipelineExecutor.java
│ │ │ │ ├── [ 15K] DataSetUtils.java
│ │ │ │ ├── [8.8K] MultipleParameterTool.java
│ │ │ │ ├── [5.1K] Option.java
│ │ │ │ ├── [1.2K] OptionType.java
│ │ │ │ ├── [ 10K] ParameterTool.java
│ │ │ │ ├── [6.6K] PlanGenerator.java
│ │ │ │ ├── [1.8K] RequiredParametersException.java
│ │ │ │ └── [9.5K] RequiredParameters.java
│ │ │ └── [ 10K] Utils.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ └── [1.6K] org.apache.flink.core.execution.PipelineExecutorFactory
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] api
│ │ ├── [4.0K] common
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [9.1K] SequentialFormatTestBase.java
│ │ │ │ └── [3.3K] SerializedFormatTest.java
│ │ │ └── [4.0K] operators
│ │ │ ├── [4.0K] base
│ │ │ │ ├── [6.6K] CoGroupOperatorCollectionTest.java
│ │ │ │ ├── [7.3K] GroupReduceOperatorTest.java
│ │ │ │ ├── [5.5K] InnerJoinOperatorBaseTest.java
│ │ │ │ └── [6.4K] ReduceOperatorTest.java
│ │ │ ├── [2.4K] CollectionExecutionAccumulatorsTest.java
│ │ │ ├── [5.7K] CollectionExecutionIterationTest.java
│ │ │ └── [3.7K] CollectionExecutionWithBroadcastVariableTest.java
│ │ └── [4.0K] java
│ │ ├── [3.2K] ExecutorDiscoveryAndJobClientTest.java
│ │ ├── [4.0K] functions
│ │ │ ├── [8.7K] SelectByFunctionsTest.java
│ │ │ ├── [4.2K] SemanticPropertiesPrecedenceTest.java
│ │ │ ├── [ 13K] SemanticPropertiesProjectionTest.java
│ │ │ ├── [ 27K] SemanticPropertiesTranslationTest.java
│ │ │ └── [ 69K] SemanticPropUtilTest.java
│ │ ├── [4.0K] io
│ │ │ ├── [ 11K] CollectionInputFormatTest.java
│ │ │ ├── [ 46K] CsvInputFormatTest.java
│ │ │ ├── [3.0K] CsvOutputFormatTest.java
│ │ │ ├── [ 12K] CSVReaderTest.java
│ │ │ ├── [1.8K] FromElementsTest.java
│ │ │ ├── [5.4K] PrimitiveInputFormatTest.java
│ │ │ ├── [3.7K] PrintingOutputFormatTest.java
│ │ │ ├── [ 31K] RowCsvInputFormatTest.java
│ │ │ ├── [6.3K] TextInputFormatTest.java
│ │ │ └── [4.1K] TypeSerializerFormatTest.java
│ │ ├── [2.4K] MultipleInvokationsTest.java
│ │ ├── [4.0K] operator
│ │ │ ├── [3.7K] AggregateOperatorTest.java
│ │ │ ├── [ 20K] CoGroupOperatorTest.java
│ │ │ ├── [ 15K] CrossOperatorTest.java
│ │ │ ├── [9.6K] DataSinkTest.java
│ │ │ ├── [6.7K] DistinctOperatorTest.java
│ │ │ ├── [4.5K] FirstNOperatorTest.java
│ │ │ ├── [8.9K] FullOuterJoinOperatorTest.java
│ │ │ ├── [ 17K] GroupCombineOperatorTest.java
│ │ │ ├── [ 19K] GroupingTest.java
│ │ │ ├── [ 17K] GroupReduceOperatorTest.java
│ │ │ ├── [ 45K] JoinOperatorTest.java
│ │ │ ├── [8.8K] LeftOuterJoinOperatorTest.java
│ │ │ ├── [8.7K] MaxByOperatorTest.java
│ │ │ ├── [8.7K] MinByOperatorTest.java
│ │ │ ├── [2.5K] OperatorTest.java
│ │ │ ├── [ 13K] PartitionOperatorTest.java
│ │ │ ├── [4.3K] ProjectionOperatorTest.java
│ │ │ ├── [ 11K] ReduceOperatorTest.java
│ │ │ ├── [8.9K] RightOuterJoinOperatorTest.java
│ │ │ └── [9.5K] SortPartitionTest.java
│ │ ├── [4.0K] operators
│ │ │ ├── [4.5K] NamesTest.java
│ │ │ └── [4.0K] translation
│ │ │ ├── [2.8K] AggregateTranslationTest.java
│ │ │ ├── [3.3K] BulkIterationTranslationTest.java
│ │ │ ├── [5.4K] CoGroupSortTranslationTest.java
│ │ │ ├── [10.0K] DeltaIterationTranslationTest.java
│ │ │ ├── [9.8K] DistinctTranslationTest.java
│ │ │ ├── [7.8K] ReduceTranslationTests.java
│ │ │ └── [6.6K] UnionTranslationTest.java
│ │ ├── [4.0K] sampling
│ │ │ └── [ 17K] RandomSamplerTest.java
│ │ ├── [4.0K] summarize
│ │ │ └── [4.0K] aggregation
│ │ │ ├── [3.7K] AggregateCombineHarness.java
│ │ │ ├── [3.3K] BooleanSummaryAggregatorTest.java
│ │ │ ├── [2.2K] BooleanValueSummaryAggregatorTest.java
│ │ │ ├── [3.0K] CompensatedSumTest.java
│ │ │ ├── [7.7K] DoubleSummaryAggregatorTest.java
│ │ │ ├── [2.2K] DoubleValueSummaryAggregatorTest.java
│ │ │ ├── [7.3K] FloatSummaryAggregatorTest.java
│ │ │ ├── [2.2K] FloatValueSummaryAggregatorTest.java
│ │ │ ├── [5.1K] IntegerSummaryAggregatorTest.java
│ │ │ ├── [2.9K] IntegerValueSummaryAggregatorTest.java
│ │ │ ├── [5.0K] LongSummaryAggregatorTest.java
│ │ │ ├── [2.9K] LongValueSummaryAggregatorTest.java
│ │ │ ├── [5.4K] ShortSummaryAggregatorTest.java
│ │ │ ├── [2.9K] ShortValueSummaryAggregatorTest.java
│ │ │ ├── [3.6K] StringSummaryAggregatorTest.java
│ │ │ ├── [2.5K] StringValueSummaryAggregatorTest.java
│ │ │ └── [3.5K] SummaryAggregatorFactoryTest.java
│ │ ├── [2.3K] TestingJobClient.java
│ │ ├── [4.0K] tuple
│ │ │ └── [ 18K] TupleGenerator.java
│ │ ├── [3.1K] TypeExtractionTest.java
│ │ └── [4.0K] utils
│ │ ├── [ 22K] AbstractParameterToolTest.java
│ │ ├── [3.1K] CollectionExecutorTest.java
│ │ ├── [3.3K] MultipleParameterToolTest.java
│ │ ├── [3.3K] OptionsTest.java
│ │ ├── [6.4K] ParameterToolTest.java
│ │ ├── [2.8K] PlanGeneratorTest.java
│ │ └── [ 10K] RequiredParametersTest.java
│ └── [4.0K] resources
│ ├── [1.3K] log4j2-test.properties
│ └── [4.0K] META-INF
│ └── [4.0K] services
│ └── [ 868] org.apache.flink.core.execution.PipelineExecutorFactory
├── [4.0K] flink-jepsen
│ ├── [4.0K] bin
│ ├── [4.0K] docker
│ │ ├── [1.5K] docker-compose.yml
│ │ ├── [1.5K] Dockerfile-control
│ │ ├── [2.3K] Dockerfile-db
│ │ ├── [3.6K] run-tests.sh
│ │ ├── [ 993] sshd-run
│ │ ├── [4.0K] test-specs
│ │ │ ├── [1.1K] mesos-session.edn
│ │ │ ├── [1.1K] standalone-session.edn
│ │ │ ├── [1.6K] standalone-session-kafka.edn
│ │ │ ├── [1.1K] yarn-job.edn
│ │ │ └── [1.1K] yarn-session.edn
│ │ └── [1.2K] up.sh
│ ├── [1.4K] project.clj
│ ├── [ 13K] README.md
│ ├── [4.0K] src
│ │ └── [4.0K] jepsen
│ │ └── [4.0K] flink
│ │ ├── [9.4K] checker.clj
│ │ ├── [8.2K] client.clj
│ │ ├── [ 12K] db.clj
│ │ ├── [6.4K] flink.clj
│ │ ├── [4.3K] generator.clj
│ │ ├── [5.6K] hadoop.clj
│ │ ├── [3.0K] kafka.clj
│ │ ├── [6.4K] mesos.clj
│ │ ├── [4.9K] nemesis.clj
│ │ ├── [5.3K] utils.clj
│ │ └── [1.1K] zookeeper.clj
│ └── [4.0K] test
│ └── [4.0K] jepsen
│ └── [4.0K] flink
│ ├── [9.4K] checker_test.clj
│ ├── [8.4K] client_test.clj
│ ├── [1.4K] db_test.clj
│ ├── [1.4K] generator_test.clj
│ ├── [1.8K] utils_test.clj
│ └── [1.4K] zookeeper_test.clj
├── [4.0K] flink-kubernetes
│ ├── [6.1K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] kubernetes
│ │ │ ├── [4.0K] cli
│ │ │ │ └── [7.3K] KubernetesSessionCli.java
│ │ │ ├── [4.0K] configuration
│ │ │ │ ├── [1.5K] KubernetesConfigOptionsInternal.java
│ │ │ │ ├── [ 11K] KubernetesConfigOptions.java
│ │ │ │ ├── [2.8K] KubernetesDeploymentTarget.java
│ │ │ │ └── [1.4K] KubernetesResourceManagerConfiguration.java
│ │ │ ├── [4.0K] entrypoint
│ │ │ │ ├── [4.4K] KubernetesApplicationClusterEntrypoint.java
│ │ │ │ ├── [2.8K] KubernetesEntrypointUtils.java
│ │ │ │ ├── [4.3K] KubernetesResourceManagerFactory.java
│ │ │ │ ├── [2.3K] KubernetesSessionClusterEntrypoint.java
│ │ │ │ └── [2.1K] KubernetesWorkerResourceSpecFactory.java
│ │ │ ├── [4.0K] executors
│ │ │ │ ├── [1.8K] KubernetesSessionClusterExecutorFactory.java
│ │ │ │ └── [1.6K] KubernetesSessionClusterExecutor.java
│ │ │ ├── [4.0K] kubeclient
│ │ │ │ ├── [4.0K] decorators
│ │ │ │ │ ├── [2.6K] AbstractKubernetesStepDecorator.java
│ │ │ │ │ ├── [3.1K] ExternalServiceDecorator.java
│ │ │ │ │ ├── [6.6K] FlinkConfMountDecorator.java
│ │ │ │ │ ├── [6.9K] HadoopConfMountDecorator.java
│ │ │ │ │ ├── [5.2K] InitJobManagerDecorator.java
│ │ │ │ │ ├── [4.4K] InitTaskManagerDecorator.java
│ │ │ │ │ ├── [3.7K] InternalServiceDecorator.java
│ │ │ │ │ ├── [4.0K] JavaCmdJobManagerDecorator.java
│ │ │ │ │ ├── [4.2K] JavaCmdTaskManagerDecorator.java
│ │ │ │ │ └── [1.8K] KubernetesStepDecorator.java
│ │ │ │ ├── [1.2K] Endpoint.java
│ │ │ │ ├── [ 11K] Fabric8FlinkKubeClient.java
│ │ │ │ ├── [4.0K] factory
│ │ │ │ │ ├── [4.5K] KubernetesJobManagerFactory.java
│ │ │ │ │ └── [2.5K] KubernetesTaskManagerFactory.java
│ │ │ │ ├── [3.8K] FlinkKubeClient.java
│ │ │ │ ├── [2.4K] FlinkPod.java
│ │ │ │ ├── [3.2K] KubeClientFactory.java
│ │ │ │ ├── [1.5K] KubernetesJobManagerSpecification.java
│ │ │ │ ├── [4.0K] parameters
│ │ │ │ │ ├── [5.9K] AbstractKubernetesParameters.java
│ │ │ │ │ ├── [5.2K] KubernetesJobManagerParameters.java
│ │ │ │ │ ├── [3.3K] KubernetesParameters.java
│ │ │ │ │ └── [4.5K] KubernetesTaskManagerParameters.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [1.4K] KubernetesPod.java
│ │ │ │ ├── [2.5K] KubernetesPodsWatcher.java
│ │ │ │ ├── [1.2K] KubernetesResource.java
│ │ │ │ ├── [1.1K] KubernetesService.java
│ │ │ │ ├── [2.1K] KubernetesToleration.java
│ │ │ │ └── [1.1K] KubernetesWatch.java
│ │ │ ├── [2.8K] KubernetesClusterClientFactory.java
│ │ │ ├── [ 11K] KubernetesClusterDescriptor.java
│ │ │ ├── [ 13K] KubernetesResourceManager.java
│ │ │ ├── [2.1K] KubernetesWorkerNode.java
│ │ │ ├── [4.0K] taskmanager
│ │ │ │ └── [2.0K] KubernetesTaskExecutorRunner.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [3.3K] Constants.java
│ │ │ └── [8.4K] KubernetesUtils.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ └── [1.4K] LICENSE.automaton
│ │ ├── [1.0K] NOTICE
│ │ └── [4.0K] services
│ │ ├── [ 840] org.apache.flink.client.deployment.ClusterClientFactory
│ │ └── [ 859] org.apache.flink.core.execution.PipelineExecutorFactory
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] kubernetes
│ │ ├── [4.0K] cli
│ │ │ └── [ 12K] KubernetesSessionCliTest.java
│ │ ├── [4.0K] configuration
│ │ │ └── [2.8K] KubernetesDeploymentTargetTest.java
│ │ ├── [4.0K] entrypoint
│ │ │ └── [2.4K] KubernetesWorkerResourceSpecFactoryTest.java
│ │ ├── [4.0K] kubeclient
│ │ │ ├── [4.0K] decorators
│ │ │ │ ├── [4.4K] ExternalServiceDecoratorTest.java
│ │ │ │ ├── [8.8K] FlinkConfMountDecoratorTest.java
│ │ │ │ ├── [7.2K] HadoopConfMountDecoratorTest.java
│ │ │ │ ├── [7.2K] InitJobManagerDecoratorTest.java
│ │ │ │ ├── [8.0K] InitTaskManagerDecoratorTest.java
│ │ │ │ ├── [3.7K] InternalServiceDecoratorTest.java
│ │ │ │ ├── [ 11K] JavaCmdJobManagerDecoratorTest.java
│ │ │ │ └── [ 11K] JavaCmdTaskManagerDecoratorTest.java
│ │ │ ├── [9.7K] Fabric8FlinkKubeClientTest.java
│ │ │ ├── [4.0K] factory
│ │ │ │ ├── [ 12K] KubernetesJobManagerFactoryTest.java
│ │ │ │ └── [3.0K] KubernetesTaskManagerFactoryTest.java
│ │ │ ├── [3.7K] KubernetesJobManagerTestBase.java
│ │ │ ├── [3.8K] KubernetesTaskManagerTestBase.java
│ │ │ ├── [4.0K] parameters
│ │ │ │ ├── [3.7K] AbstractKubernetesParametersTest.java
│ │ │ │ ├── [7.0K] KubernetesJobManagerParametersTest.java
│ │ │ │ └── [5.3K] KubernetesTaskManagerParametersTest.java
│ │ │ └── [4.0K] resources
│ │ │ └── [3.7K] KubernetesPodsWatcherTest.java
│ │ ├── [4.2K] KubernetesClientTestBase.java
│ │ ├── [2.1K] KubernetesClusterClientFactoryTest.java
│ │ ├── [8.6K] KubernetesClusterDescriptorTest.java
│ │ ├── [ 29K] KubernetesResourceManagerTest.java
│ │ ├── [4.5K] KubernetesTestBase.java
│ │ ├── [1.7K] KubernetesTestUtils.java
│ │ ├── [1.8K] KubernetesWorkerNodeTest.java
│ │ ├── [2.5K] MixedDispatcher.java
│ │ ├── [2.2K] MixedKubernetesServer.java
│ │ └── [4.0K] utils
│ │ └── [3.0K] KubernetesUtilsTest.java
│ └── [4.0K] resources
│ └── [1.3K] log4j2-test.properties
├── [4.0K] flink-libraries
│ ├── [4.0K] flink-cep
│ │ ├── [3.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] cep
│ │ │ ├── [2.1K] CEP.java
│ │ │ ├── [1.1K] EventComparator.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [4.0K] adaptors
│ │ │ │ │ ├── [2.2K] PatternFlatSelectAdapter.java
│ │ │ │ │ ├── [2.2K] PatternSelectAdapter.java
│ │ │ │ │ ├── [3.7K] PatternTimeoutFlatSelectAdapter.java
│ │ │ │ │ └── [2.8K] PatternTimeoutSelectAdapter.java
│ │ │ │ ├── [3.0K] PatternProcessFunction.java
│ │ │ │ └── [3.0K] TimedOutPartialMatchHandler.java
│ │ │ ├── [4.0K] nfa
│ │ │ │ ├── [4.0K] aftermatch
│ │ │ │ │ ├── [5.1K] AfterMatchSkipStrategy.java
│ │ │ │ │ ├── [1.7K] NoSkipStrategy.java
│ │ │ │ │ ├── [1.7K] SkipPastLastStrategy.java
│ │ │ │ │ ├── [1.3K] SkipRelativeToWholeMatchStrategy.java
│ │ │ │ │ ├── [3.7K] SkipToElementStrategy.java
│ │ │ │ │ ├── [1.5K] SkipToFirstStrategy.java
│ │ │ │ │ ├── [1.5K] SkipToLastStrategy.java
│ │ │ │ │ └── [1.7K] SkipToNextStrategy.java
│ │ │ │ ├── [4.0K] compiler
│ │ │ │ │ ├── [ 36K] NFACompiler.java
│ │ │ │ │ └── [2.8K] NFAStateNameHandler.java
│ │ │ │ ├── [3.9K] ComputationState.java
│ │ │ │ ├── [8.0K] DeweyNumber.java
│ │ │ │ ├── [4.6K] MigrationUtils.java
│ │ │ │ ├── [ 36K] NFA.java
│ │ │ │ ├── [3.7K] NFAState.java
│ │ │ │ ├── [8.8K] NFAStateSerializer.java
│ │ │ │ ├── [2.7K] NFAStateSerializerSnapshot.java
│ │ │ │ ├── [4.0K] sharedbuffer
│ │ │ │ │ ├── [4.2K] EventId.java
│ │ │ │ │ ├── [6.7K] Lockable.java
│ │ │ │ │ ├── [2.3K] LockableTypeSerializerSnapshot.java
│ │ │ │ │ ├── [5.9K] NodeId.java
│ │ │ │ │ ├── [ 11K] SharedBufferAccessor.java
│ │ │ │ │ ├── [6.7K] SharedBufferEdge.java
│ │ │ │ │ ├── [8.2K] SharedBuffer.java
│ │ │ │ │ └── [5.4K] SharedBufferNode.java
│ │ │ │ ├── [ 13K] SharedBuffer.java
│ │ │ │ ├── [4.1K] State.java
│ │ │ │ ├── [1.2K] StateTransitionAction.java
│ │ │ │ └── [2.9K] StateTransition.java
│ │ │ ├── [4.0K] operator
│ │ │ │ ├── [ 19K] CepOperator.java
│ │ │ │ ├── [6.7K] CepRuntimeContext.java
│ │ │ │ └── [1.5K] StreamRecordComparator.java
│ │ │ ├── [4.0K] pattern
│ │ │ │ ├── [4.0K] conditions
│ │ │ │ │ ├── [2.2K] AndCondition.java
│ │ │ │ │ ├── [1.8K] BooleanConditions.java
│ │ │ │ │ ├── [4.1K] IterativeCondition.java
│ │ │ │ │ ├── [1.7K] NotCondition.java
│ │ │ │ │ ├── [2.2K] OrCondition.java
│ │ │ │ │ ├── [1.8K] RichAndCondition.java
│ │ │ │ │ ├── [2.6K] RichCompositeIterativeCondition.java
│ │ │ │ │ ├── [2.8K] RichIterativeCondition.java
│ │ │ │ │ ├── [1.4K] RichNotCondition.java
│ │ │ │ │ ├── [1.9K] RichOrCondition.java
│ │ │ │ │ ├── [1.7K] SimpleCondition.java
│ │ │ │ │ └── [1.6K] SubtypeCondition.java
│ │ │ │ ├── [2.2K] GroupPattern.java
│ │ │ │ ├── [1.2K] MalformedPatternException.java
│ │ │ │ ├── [ 21K] Pattern.java
│ │ │ │ └── [6.2K] Quantifier.java
│ │ │ ├── [2.2K] PatternFlatSelectFunction.java
│ │ │ ├── [2.4K] PatternFlatTimeoutFunction.java
│ │ │ ├── [5.5K] PatternProcessFunctionBuilder.java
│ │ │ ├── [2.1K] PatternSelectFunction.java
│ │ │ ├── [5.5K] PatternStreamBuilder.java
│ │ │ ├── [ 22K] PatternStream.java
│ │ │ ├── [2.3K] PatternTimeoutFunction.java
│ │ │ ├── [1.7K] RichPatternFlatSelectFunction.java
│ │ │ ├── [1.7K] RichPatternSelectFunction.java
│ │ │ └── [4.0K] time
│ │ │ ├── [1.5K] TimeContext.java
│ │ │ └── [1.2K] TimerService.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] cep
│ │ │ ├── [ 28K] CEPITCase.java
│ │ │ ├── [2.1K] Event.java
│ │ │ ├── [4.0K] nfa
│ │ │ │ ├── [ 33K] AfterMatchSkipITCase.java
│ │ │ │ ├── [4.0K] compiler
│ │ │ │ │ └── [9.4K] NFACompilerTest.java
│ │ │ │ ├── [2.5K] DeweyNumberTest.java
│ │ │ │ ├── [ 30K] GreedyITCase.java
│ │ │ │ ├── [ 37K] GroupITCase.java
│ │ │ │ ├── [ 15K] IterativeConditionsITCase.java
│ │ │ │ ├── [109K] NFAITCase.java
│ │ │ │ ├── [3.3K] NFAIterativeConditionTimeContextTest.java
│ │ │ │ ├── [7.0K] NFAStateAccessTest.java
│ │ │ │ ├── [8.7K] NFAStatusChangeITCase.java
│ │ │ │ ├── [ 13K] NFATest.java
│ │ │ │ ├── [ 39K] NotPatternITCase.java
│ │ │ │ ├── [ 20K] SameElementITCase.java
│ │ │ │ ├── [4.0K] sharedbuffer
│ │ │ │ │ ├── [2.3K] LockableTypeSerializerTest.java
│ │ │ │ │ ├── [3.9K] LockableTypeSerializerUpgradeTest.java
│ │ │ │ │ └── [ 13K] SharedBufferTest.java
│ │ │ │ ├── [ 23K] TimesOrMoreITCase.java
│ │ │ │ ├── [ 26K] TimesRangeITCase.java
│ │ │ │ └── [ 25K] UntilConditionITCase.java
│ │ │ ├── [ 12K] NFASerializerUpgradeTest.java
│ │ │ ├── [4.0K] operator
│ │ │ │ ├── [ 23K] CEPMigrationTest.java
│ │ │ │ ├── [ 49K] CEPOperatorTest.java
│ │ │ │ ├── [3.3K] CepOperatorTestUtilities.java
│ │ │ │ ├── [ 14K] CepProcessFunctionContextTest.java
│ │ │ │ ├── [ 18K] CEPRescalingTest.java
│ │ │ │ └── [ 11K] CepRuntimeContextTest.java
│ │ │ ├── [4.0K] pattern
│ │ │ │ └── [ 11K] PatternTest.java
│ │ │ ├── [1.6K] SubEvent.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [5.2K] CepOperatorBuilder.java
│ │ │ ├── [2.0K] EventBuilder.java
│ │ │ ├── [6.4K] NFATestHarness.java
│ │ │ ├── [2.9K] NFATestUtilities.java
│ │ │ ├── [1.7K] NFAUtils.java
│ │ │ ├── [2.3K] OutputAsserter.java
│ │ │ ├── [6.8K] TestSharedBuffer.java
│ │ │ └── [1.3K] TestTimerService.java
│ │ └── [4.0K] resources
│ │ ├── [7.3K] cep-migration-after-branching-flink1.10-snapshot
│ │ ├── [7.3K] cep-migration-after-branching-flink1.11-snapshot
│ │ ├── [ 21K] cep-migration-after-branching-flink1.3-snapshot
│ │ ├── [ 19K] cep-migration-after-branching-flink1.4-snapshot
│ │ ├── [ 19K] cep-migration-after-branching-flink1.5-snapshot
│ │ ├── [ 30K] cep-migration-after-branching-flink1.6-snapshot
│ │ ├── [ 27K] cep-migration-after-branching-flink1.7-snapshot
│ │ ├── [7.3K] cep-migration-after-branching-flink1.8-snapshot
│ │ ├── [7.3K] cep-migration-after-branching-flink1.9-snapshot
│ │ ├── [7.0K] cep-migration-conditions-flink1.10-snapshot
│ │ ├── [7.0K] cep-migration-conditions-flink1.11-snapshot
│ │ ├── [ 22K] cep-migration-conditions-flink1.3-snapshot
│ │ ├── [ 19K] cep-migration-conditions-flink1.4-snapshot
│ │ ├── [ 19K] cep-migration-conditions-flink1.5-snapshot
│ │ ├── [ 29K] cep-migration-conditions-flink1.6-snapshot
│ │ ├── [ 27K] cep-migration-conditions-flink1.7-snapshot
│ │ ├── [7.0K] cep-migration-conditions-flink1.8-snapshot
│ │ ├── [7.0K] cep-migration-conditions-flink1.9-snapshot
│ │ ├── [6.7K] cep-migration-single-pattern-afterwards-flink1.10-snapshot
│ │ ├── [6.7K] cep-migration-single-pattern-afterwards-flink1.11-snapshot
│ │ ├── [ 19K] cep-migration-single-pattern-afterwards-flink1.3-snapshot
│ │ ├── [ 16K] cep-migration-single-pattern-afterwards-flink1.4-snapshot
│ │ ├── [ 17K] cep-migration-single-pattern-afterwards-flink1.5-snapshot
│ │ ├── [ 29K] cep-migration-single-pattern-afterwards-flink1.6-snapshot
│ │ ├── [ 27K] cep-migration-single-pattern-afterwards-flink1.7-snapshot
│ │ ├── [6.7K] cep-migration-single-pattern-afterwards-flink1.8-snapshot
│ │ ├── [6.7K] cep-migration-single-pattern-afterwards-flink1.9-snapshot
│ │ ├── [7.1K] cep-migration-starting-new-pattern-flink1.10-snapshot
│ │ ├── [7.1K] cep-migration-starting-new-pattern-flink1.11-snapshot
│ │ ├── [ 21K] cep-migration-starting-new-pattern-flink1.3-snapshot
│ │ ├── [ 18K] cep-migration-starting-new-pattern-flink1.4-snapshot
│ │ ├── [ 19K] cep-migration-starting-new-pattern-flink1.5-snapshot
│ │ ├── [ 29K] cep-migration-starting-new-pattern-flink1.6-snapshot
│ │ ├── [ 27K] cep-migration-starting-new-pattern-flink1.7-snapshot
│ │ ├── [7.1K] cep-migration-starting-new-pattern-flink1.8-snapshot
│ │ ├── [7.1K] cep-migration-starting-new-pattern-flink1.9-snapshot
│ │ ├── [4.0K] dewey-number-serializer-1.11
│ │ │ ├── [ 98] serializer-snapshot
│ │ │ └── [ 8] test-data
│ │ ├── [4.0K] event-id-serializer-1.11
│ │ │ ├── [ 99] serializer-snapshot
│ │ │ └── [ 12] test-data
│ │ ├── [4.0K] lockable-type-serializer-1.11
│ │ │ ├── [ 188] serializer-snapshot
│ │ │ └── [ 10] test-data
│ │ ├── [1.3K] log4j2-test.properties
│ │ ├── [4.0K] nfa-state-serializer-1.11
│ │ │ ├── [ 477] serializer-snapshot
│ │ │ └── [ 8] test-data
│ │ ├── [4.0K] node-id-serializer-1.11
│ │ │ ├── [ 211] serializer-snapshot
│ │ │ └── [ 18] test-data
│ │ ├── [4.0K] shared-buffer-edge-serializer-1.11
│ │ │ ├── [ 447] serializer-snapshot
│ │ │ └── [ 26] test-data
│ │ └── [4.0K] shared-buffer-node-serializer-1.11
│ │ ├── [ 680] serializer-snapshot
│ │ └── [ 30] test-data
│ ├── [4.0K] flink-cep-scala
│ │ ├── [5.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] cep
│ │ │ └── [4.0K] scala
│ │ │ ├── [2.4K] CEP.scala
│ │ │ ├── [4.0K] conditions
│ │ │ │ └── [1.3K] Context.scala
│ │ │ ├── [2.0K] package.scala
│ │ │ ├── [4.0K] pattern
│ │ │ │ ├── [2.2K] GroupPattern.scala
│ │ │ │ ├── [1.9K] package.scala
│ │ │ │ └── [ 20K] Pattern.scala
│ │ │ └── [ 22K] PatternStream.scala
│ │ └── [4.0K] test
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] cep
│ │ └── [4.0K] scala
│ │ ├── [1.6K] CEPScalaAPICompletenessTest.scala
│ │ ├── [4.0K] pattern
│ │ │ ├── [1.6K] PatternScalaAPICompletenessTest.scala
│ │ │ └── [9.0K] PatternTest.scala
│ │ └── [6.5K] PatternStreamScalaJavaAPIInteroperabilityTest.scala
│ ├── [4.0K] flink-gelly
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] graph
│ │ │ ├── [3.2K] AnalyticHelper.java
│ │ │ ├── [4.0K] asm
│ │ │ │ ├── [4.0K] dataset
│ │ │ │ │ ├── [4.2K] ChecksumHashCode.java
│ │ │ │ │ ├── [3.0K] Collect.java
│ │ │ │ │ ├── [1.9K] Count.java
│ │ │ │ │ ├── [1.6K] DataSetAnalyticBase.java
│ │ │ │ │ └── [2.3K] DataSetAnalytic.java
│ │ │ │ ├── [4.0K] degree
│ │ │ │ │ ├── [4.0K] annotate
│ │ │ │ │ │ ├── [5.7K] DegreeAnnotationFunctions.java
│ │ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ │ ├── [2.4K] EdgeDegreesPair.java
│ │ │ │ │ │ │ ├── [2.2K] EdgeSourceDegrees.java
│ │ │ │ │ │ │ ├── [2.2K] EdgeTargetDegrees.java
│ │ │ │ │ │ │ ├── [8.2K] VertexDegrees.java
│ │ │ │ │ │ │ ├── [3.8K] VertexInDegree.java
│ │ │ │ │ │ │ └── [3.8K] VertexOutDegree.java
│ │ │ │ │ │ ├── [2.2K] package-info.java
│ │ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ │ ├── [3.4K] EdgeDegreePair.java
│ │ │ │ │ │ ├── [3.1K] EdgeSourceDegree.java
│ │ │ │ │ │ ├── [3.1K] EdgeTargetDegree.java
│ │ │ │ │ │ └── [4.7K] VertexDegree.java
│ │ │ │ │ └── [4.0K] filter
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ └── [7.5K] MaximumDegree.java
│ │ │ │ ├── [4.0K] result
│ │ │ │ │ ├── [2.6K] BinaryResultBase.java
│ │ │ │ │ ├── [2.0K] BinaryResult.java
│ │ │ │ │ ├── [1.1K] PrintableResult.java
│ │ │ │ │ ├── [1.2K] ResultBase.java
│ │ │ │ │ ├── [3.0K] TertiaryResultBase.java
│ │ │ │ │ ├── [1.7K] TertiaryResult.java
│ │ │ │ │ ├── [1.5K] TranslatableResult.java
│ │ │ │ │ ├── [2.3K] UnaryResultBase.java
│ │ │ │ │ └── [1.3K] UnaryResult.java
│ │ │ │ ├── [4.0K] simple
│ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ └── [2.3K] Simplify.java
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ └── [3.5K] Simplify.java
│ │ │ │ └── [4.0K] translate
│ │ │ │ ├── [1.6K] RichTranslateFunction.java
│ │ │ │ ├── [2.5K] TranslateEdgeValues.java
│ │ │ │ ├── [2.0K] TranslateFunction.java
│ │ │ │ ├── [2.8K] TranslateGraphIds.java
│ │ │ │ ├── [ 13K] Translate.java
│ │ │ │ ├── [2.5K] TranslateVertexValues.java
│ │ │ │ └── [4.0K] translators
│ │ │ │ ├── [1.3K] LongToLongValue.java
│ │ │ │ ├── [1.6K] LongValueAddOffset.java
│ │ │ │ ├── [1.5K] LongValueToSignedIntValue.java
│ │ │ │ ├── [1.4K] LongValueToStringValue.java
│ │ │ │ ├── [1.6K] LongValueToUnsignedIntValue.java
│ │ │ │ └── [1.2K] ToNullValue.java
│ │ │ ├── [4.0K] bipartite
│ │ │ │ ├── [1.8K] BipartiteEdge.java
│ │ │ │ ├── [ 12K] BipartiteGraph.java
│ │ │ │ └── [2.2K] Projection.java
│ │ │ ├── [1.4K] EdgeDirection.java
│ │ │ ├── [2.0K] Edge.java
│ │ │ ├── [1.7K] EdgeJoinFunction.java
│ │ │ ├── [1.4K] EdgeOrder.java
│ │ │ ├── [2.2K] EdgesFunction.java
│ │ │ ├── [2.2K] EdgesFunctionWithVertexValue.java
│ │ │ ├── [4.0K] generator
│ │ │ │ ├── [7.0K] CirculantGraph.java
│ │ │ │ ├── [2.1K] CompleteGraph.java
│ │ │ │ ├── [2.1K] CycleGraph.java
│ │ │ │ ├── [3.0K] EchoGraph.java
│ │ │ │ ├── [2.7K] EmptyGraph.java
│ │ │ │ ├── [1.5K] GraphGeneratorBase.java
│ │ │ │ ├── [1.6K] GraphGenerator.java
│ │ │ │ ├── [4.6K] GraphGeneratorUtils.java
│ │ │ │ ├── [5.1K] GridGraph.java
│ │ │ │ ├── [2.2K] HypercubeGraph.java
│ │ │ │ ├── [2.3K] PathGraph.java
│ │ │ │ ├── [4.0K] random
│ │ │ │ │ ├── [2.1K] BlockInfo.java
│ │ │ │ │ ├── [2.6K] GeneratorFactoryBase.java
│ │ │ │ │ ├── [2.0K] JDKRandomGeneratorFactory.java
│ │ │ │ │ ├── [2.0K] MersenneTwisterFactory.java
│ │ │ │ │ ├── [2.0K] RandomGenerableFactory.java
│ │ │ │ │ └── [1.5K] RandomGenerable.java
│ │ │ │ ├── [8.0K] RMatGraph.java
│ │ │ │ ├── [3.6K] SingletonEdgeGraph.java
│ │ │ │ └── [3.6K] StarGraph.java
│ │ │ ├── [1.0K] GraphAlgorithm.java
│ │ │ ├── [2.5K] GraphAnalyticBase.java
│ │ │ ├── [2.3K] GraphAnalytic.java
│ │ │ ├── [ 20K] GraphCsvReader.java
│ │ │ ├── [ 88K] Graph.java
│ │ │ ├── [4.0K] gsa
│ │ │ │ ├── [5.1K] ApplyFunction.java
│ │ │ │ ├── [4.7K] GatherFunction.java
│ │ │ │ ├── [ 16K] GatherSumApplyIteration.java
│ │ │ │ ├── [4.6K] GSAConfiguration.java
│ │ │ │ ├── [1.4K] Neighbor.java
│ │ │ │ └── [4.6K] SumFunction.java
│ │ │ ├── [4.8K] IterationConfiguration.java
│ │ │ ├── [4.0K] library
│ │ │ │ ├── [4.0K] clustering
│ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ ├── [5.8K] AverageClusteringCoefficient.java
│ │ │ │ │ │ ├── [4.9K] GlobalClusteringCoefficient.java
│ │ │ │ │ │ ├── [ 10K] LocalClusteringCoefficient.java
│ │ │ │ │ │ ├── [ 19K] TriadicCensus.java
│ │ │ │ │ │ └── [ 16K] TriangleListing.java
│ │ │ │ │ ├── [2.9K] TriangleListingBase.java
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ ├── [5.8K] AverageClusteringCoefficient.java
│ │ │ │ │ ├── [4.9K] GlobalClusteringCoefficient.java
│ │ │ │ │ ├── [9.8K] LocalClusteringCoefficient.java
│ │ │ │ │ ├── [6.7K] TriadicCensus.java
│ │ │ │ │ └── [ 11K] TriangleListing.java
│ │ │ │ ├── [6.7K] CommunityDetection.java
│ │ │ │ ├── [4.4K] ConnectedComponents.java
│ │ │ │ ├── [5.1K] GSAConnectedComponents.java
│ │ │ │ ├── [3.5K] GSASingleSourceShortestPaths.java
│ │ │ │ ├── [5.3K] LabelPropagation.java
│ │ │ │ ├── [4.0K] linkanalysis
│ │ │ │ │ ├── [1.5K] Functions.java
│ │ │ │ │ ├── [ 18K] HITS.java
│ │ │ │ │ └── [ 18K] PageRank.java
│ │ │ │ ├── [4.0K] metric
│ │ │ │ │ ├── [2.2K] ChecksumHashCode.java
│ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ ├── [ 11K] EdgeMetrics.java
│ │ │ │ │ │ └── [ 12K] VertexMetrics.java
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ ├── [ 10K] EdgeMetrics.java
│ │ │ │ │ └── [9.2K] VertexMetrics.java
│ │ │ │ ├── [4.0K] similarity
│ │ │ │ │ ├── [ 15K] AdamicAdar.java
│ │ │ │ │ └── [ 17K] JaccardIndex.java
│ │ │ │ ├── [3.6K] SingleSourceShortestPaths.java
│ │ │ │ ├── [ 17K] Summarization.java
│ │ │ │ └── [ 12K] TriangleEnumerator.java
│ │ │ ├── [2.4K] NeighborsFunction.java
│ │ │ ├── [2.5K] NeighborsFunctionWithVertexValue.java
│ │ │ ├── [4.0K] pregel
│ │ │ │ ├── [8.6K] ComputeFunction.java
│ │ │ │ ├── [2.2K] MessageCombiner.java
│ │ │ │ ├── [2.0K] MessageIterator.java
│ │ │ │ ├── [2.3K] VertexCentricConfiguration.java
│ │ │ │ └── [ 20K] VertexCentricIteration.java
│ │ │ ├── [1.7K] ReduceEdgesFunction.java
│ │ │ ├── [1.7K] ReduceNeighborsFunction.java
│ │ │ ├── [4.0K] spargel
│ │ │ │ ├── [8.5K] GatherFunction.java
│ │ │ │ ├── [1.7K] MessageIterator.java
│ │ │ │ ├── [ 11K] ScatterFunction.java
│ │ │ │ ├── [4.4K] ScatterGatherConfiguration.java
│ │ │ │ └── [ 27K] ScatterGatherIteration.java
│ │ │ ├── [2.3K] Triplet.java
│ │ │ ├── [4.0K] types
│ │ │ │ └── [4.0K] valuearray
│ │ │ │ ├── [4.6K] ByteValueArrayComparator.java
│ │ │ │ ├── [9.7K] ByteValueArray.java
│ │ │ │ ├── [2.9K] ByteValueArraySerializer.java
│ │ │ │ ├── [4.6K] CharValueArrayComparator.java
│ │ │ │ ├── [9.7K] CharValueArray.java
│ │ │ │ ├── [2.9K] CharValueArraySerializer.java
│ │ │ │ ├── [4.6K] DoubleValueArrayComparator.java
│ │ │ │ ├── [9.8K] DoubleValueArray.java
│ │ │ │ ├── [3.0K] DoubleValueArraySerializer.java
│ │ │ │ ├── [4.6K] FloatValueArrayComparator.java
│ │ │ │ ├── [9.7K] FloatValueArray.java
│ │ │ │ ├── [3.0K] FloatValueArraySerializer.java
│ │ │ │ ├── [4.6K] IntValueArrayComparator.java
│ │ │ │ ├── [9.6K] IntValueArray.java
│ │ │ │ ├── [2.9K] IntValueArraySerializer.java
│ │ │ │ ├── [4.6K] LongValueArrayComparator.java
│ │ │ │ ├── [9.7K] LongValueArray.java
│ │ │ │ ├── [2.9K] LongValueArraySerializer.java
│ │ │ │ ├── [4.3K] NullValueArrayComparator.java
│ │ │ │ ├── [6.5K] NullValueArray.java
│ │ │ │ ├── [2.9K] NullValueArraySerializer.java
│ │ │ │ ├── [4.6K] ShortValueArrayComparator.java
│ │ │ │ ├── [9.7K] ShortValueArray.java
│ │ │ │ ├── [2.9K] ShortValueArraySerializer.java
│ │ │ │ ├── [6.3K] StringValueArrayComparator.java
│ │ │ │ ├── [ 13K] StringValueArray.java
│ │ │ │ ├── [3.0K] StringValueArraySerializer.java
│ │ │ │ ├── [4.4K] ValueArrayFactory.java
│ │ │ │ ├── [3.1K] ValueArray.java
│ │ │ │ ├── [1.6K] ValueArrayTypeInfoFactory.java
│ │ │ │ └── [7.9K] ValueArrayTypeInfo.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [1.5K] EdgeToTuple2Map.java
│ │ │ │ ├── [1.4K] EdgeToTuple3Map.java
│ │ │ │ ├── [3.4K] GraphUtils.java
│ │ │ │ ├── [2.7K] MurmurHash.java
│ │ │ │ ├── [4.0K] proxy
│ │ │ │ │ ├── [4.0K] GraphAlgorithmWrappingBase.java
│ │ │ │ │ ├── [3.8K] GraphAlgorithmWrappingDataSet.java
│ │ │ │ │ ├── [4.6K] GraphAlgorithmWrappingGraph.java
│ │ │ │ │ └── [3.6K] OptionalBoolean.java
│ │ │ │ ├── [1.6K] Tuple2ToEdgeMap.java
│ │ │ │ ├── [1.5K] Tuple2ToVertexMap.java
│ │ │ │ ├── [1.5K] Tuple3ToEdgeMap.java
│ │ │ │ └── [1.4K] VertexToTuple2Map.java
│ │ │ ├── [4.0K] validation
│ │ │ │ ├── [1.3K] GraphValidator.java
│ │ │ │ └── [2.9K] InvalidVertexIdsValidator.java
│ │ │ ├── [1.4K] Vertex.java
│ │ │ └── [1.6K] VertexJoinFunction.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] graph
│ │ │ ├── [4.0K] asm
│ │ │ │ ├── [5.7K] AsmTestBase.java
│ │ │ │ ├── [4.0K] dataset
│ │ │ │ │ ├── [2.2K] ChecksumHashCodeTest.java
│ │ │ │ │ ├── [2.1K] CollectTest.java
│ │ │ │ │ └── [2.0K] CountTest.java
│ │ │ │ ├── [4.0K] degree
│ │ │ │ │ ├── [4.0K] annotate
│ │ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ │ ├── [3.1K] EdgeDegreesPairTest.java
│ │ │ │ │ │ │ ├── [3.0K] EdgeSourceDegreesTest.java
│ │ │ │ │ │ │ ├── [3.0K] EdgeTargetDegreesTest.java
│ │ │ │ │ │ │ ├── [4.0K] VertexDegreesTest.java
│ │ │ │ │ │ │ ├── [4.0K] VertexInDegreeTest.java
│ │ │ │ │ │ │ └── [4.1K] VertexOutDegreeTest.java
│ │ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ │ ├── [4.7K] EdgeDegreePairTest.java
│ │ │ │ │ │ ├── [4.6K] EdgeSourceDegreeTest.java
│ │ │ │ │ │ ├── [4.6K] EdgeTargetDegreeTest.java
│ │ │ │ │ │ └── [4.7K] VertexDegreeTest.java
│ │ │ │ │ └── [4.0K] filter
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ └── [2.9K] MaximumDegreeTest.java
│ │ │ │ ├── [4.0K] simple
│ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ └── [2.6K] SimplifyTest.java
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ └── [3.0K] SimplifyTest.java
│ │ │ │ └── [4.0K] translate
│ │ │ │ ├── [4.2K] TranslateTest.java
│ │ │ │ └── [4.0K] translators
│ │ │ │ ├── [2.2K] LongValueAddOffsetTest.java
│ │ │ │ ├── [2.0K] LongValueToSignedIntValueTest.java
│ │ │ │ ├── [1.7K] LongValueToStringValueTest.java
│ │ │ │ ├── [2.0K] LongValueToUnsignedIntValueTest.java
│ │ │ │ └── [1.8K] ToNullValueTest.java
│ │ │ ├── [4.0K] bipartite
│ │ │ │ ├── [1.9K] BipartiteEdgeTest.java
│ │ │ │ ├── [5.2K] BipartiteGraphTest.java
│ │ │ │ └── [2.4K] ProjectionTest.java
│ │ │ ├── [4.0K] generator
│ │ │ │ ├── [2.6K] CirculantGraphTest.java
│ │ │ │ ├── [2.7K] CompleteGraphTest.java
│ │ │ │ ├── [2.6K] CycleGraphTest.java
│ │ │ │ ├── [3.9K] EchoGraphTest.java
│ │ │ │ ├── [2.3K] EmptyGraphTest.java
│ │ │ │ ├── [1.1K] GraphGeneratorTestBase.java
│ │ │ │ ├── [2.9K] GridGraphTest.java
│ │ │ │ ├── [2.8K] HypercubeGraphTest.java
│ │ │ │ ├── [2.6K] PathGraphTest.java
│ │ │ │ ├── [2.3K] RMatGraphTest.java
│ │ │ │ ├── [2.7K] SingletonEdgeGraphTest.java
│ │ │ │ ├── [2.7K] StarGraphTest.java
│ │ │ │ └── [4.2K] TestUtils.java
│ │ │ ├── [4.0K] gsa
│ │ │ │ ├── [5.5K] GSACompilerTest.java
│ │ │ │ └── [5.9K] GSATranslationTest.java
│ │ │ ├── [4.0K] library
│ │ │ │ ├── [4.0K] clustering
│ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ ├── [2.7K] AverageClusteringCoefficientTest.java
│ │ │ │ │ │ ├── [2.7K] GlobalClusteringCoefficientTest.java
│ │ │ │ │ │ ├── [3.6K] LocalClusteringCoefficientTest.java
│ │ │ │ │ │ ├── [4.3K] TriadicCensusTest.java
│ │ │ │ │ │ └── [4.9K] TriangleListingTest.java
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ ├── [2.7K] AverageClusteringCoefficientTest.java
│ │ │ │ │ ├── [2.7K] GlobalClusteringCoefficientTest.java
│ │ │ │ │ ├── [3.7K] LocalClusteringCoefficientTest.java
│ │ │ │ │ ├── [3.3K] TriadicCensusTest.java
│ │ │ │ │ └── [4.4K] TriangleListingTest.java
│ │ │ │ ├── [3.9K] CommunityDetectionTest.java
│ │ │ │ ├── [3.3K] ConnectedComponentsWithRandomisedEdgesITCase.java
│ │ │ │ ├── [4.0K] linkanalysis
│ │ │ │ │ ├── [6.3K] HITSTest.java
│ │ │ │ │ └── [5.2K] PageRankTest.java
│ │ │ │ ├── [4.0K] metric
│ │ │ │ │ ├── [2.1K] ChecksumHashCodeTest.java
│ │ │ │ │ ├── [4.0K] directed
│ │ │ │ │ │ ├── [2.7K] EdgeMetricsTest.java
│ │ │ │ │ │ └── [3.7K] VertexMetricsTest.java
│ │ │ │ │ └── [4.0K] undirected
│ │ │ │ │ ├── [2.7K] EdgeMetricsTest.java
│ │ │ │ │ └── [3.6K] VertexMetricsTest.java
│ │ │ │ └── [4.0K] similarity
│ │ │ │ ├── [5.0K] AdamicAdarTest.java
│ │ │ │ └── [5.5K] JaccardIndexTest.java
│ │ │ ├── [4.0K] pregel
│ │ │ │ ├── [ 11K] PregelCompilerTest.java
│ │ │ │ └── [4.7K] PregelTranslationTest.java
│ │ │ ├── [4.0K] spargel
│ │ │ │ ├── [8.6K] SpargelCompilerTest.java
│ │ │ │ └── [8.2K] SpargelTranslationTest.java
│ │ │ ├── [4.0K] test
│ │ │ │ ├── [3.1K] CollectionModeSuperstepITCase.java
│ │ │ │ ├── [ 13K] GatherSumApplyConfigurationITCase.java
│ │ │ │ ├── [4.0K] operations
│ │ │ │ │ ├── [5.1K] DegreesITCase.java
│ │ │ │ │ ├── [4.7K] DegreesWithExceptionITCase.java
│ │ │ │ │ ├── [3.7K] FromCollectionITCase.java
│ │ │ │ │ ├── [7.4K] GraphCreationITCase.java
│ │ │ │ │ ├── [7.0K] GraphCreationWithCsvITCase.java
│ │ │ │ │ ├── [5.1K] GraphCreationWithMapperITCase.java
│ │ │ │ │ ├── [ 17K] GraphMutationsITCase.java
│ │ │ │ │ ├── [ 14K] GraphOperationsITCase.java
│ │ │ │ │ ├── [ 17K] JoinWithEdgesITCase.java
│ │ │ │ │ ├── [7.0K] JoinWithVerticesITCase.java
│ │ │ │ │ ├── [7.0K] MapEdgesITCase.java
│ │ │ │ │ ├── [7.1K] MapVerticesITCase.java
│ │ │ │ │ ├── [ 19K] ReduceOnEdgesMethodsITCase.java
│ │ │ │ │ ├── [3.9K] ReduceOnEdgesWithExceptionITCase.java
│ │ │ │ │ ├── [ 22K] ReduceOnNeighborMethodsITCase.java
│ │ │ │ │ ├── [5.9K] ReduceOnNeighborsWithExceptionITCase.java
│ │ │ │ │ └── [4.7K] TypeExtractorTest.java
│ │ │ │ ├── [ 25K] ScatterGatherConfigurationITCase.java
│ │ │ │ └── [ 12K] TestGraphUtils.java
│ │ │ ├── [4.0K] types
│ │ │ │ └── [4.0K] valuearray
│ │ │ │ ├── [1.8K] ByteValueArrayComparatorTest.java
│ │ │ │ ├── [2.7K] ByteValueArraySerializerTest.java
│ │ │ │ ├── [3.1K] ByteValueArrayTest.java
│ │ │ │ ├── [1.8K] CharValueArrayComparatorTest.java
│ │ │ │ ├── [2.7K] CharValueArraySerializerTest.java
│ │ │ │ ├── [4.3K] CharValueArrayTest.java
│ │ │ │ ├── [1.8K] DoubleValueArrayComparatorTest.java
│ │ │ │ ├── [2.7K] DoubleValueArraySerializerTest.java
│ │ │ │ ├── [3.2K] DoubleValueArrayTest.java
│ │ │ │ ├── [1.8K] FloatValueArrayComparatorTest.java
│ │ │ │ ├── [2.7K] FloatValueArraySerializerTest.java
│ │ │ │ ├── [3.2K] FloatValueArrayTest.java
│ │ │ │ ├── [1.8K] IntValueArrayComparatorTest.java
│ │ │ │ ├── [2.6K] IntValueArraySerializerTest.java
│ │ │ │ ├── [3.1K] IntValueArrayTest.java
│ │ │ │ ├── [1.8K] LongValueArrayComparatorTest.java
│ │ │ │ ├── [2.6K] LongValueArraySerializerTest.java
│ │ │ │ ├── [3.1K] LongValueArrayTest.java
│ │ │ │ ├── [1.8K] NullValueArrayComparatorTest.java
│ │ │ │ ├── [1.9K] NullValueArraySerializerTest.java
│ │ │ │ ├── [2.2K] NullValueArrayTest.java
│ │ │ │ ├── [1.8K] ShortValueArrayComparatorTest.java
│ │ │ │ ├── [2.7K] ShortValueArraySerializerTest.java
│ │ │ │ ├── [3.2K] ShortValueArrayTest.java
│ │ │ │ ├── [1.8K] StringValueArrayComparatorTest.java
│ │ │ │ ├── [2.8K] StringValueArraySerializerTest.java
│ │ │ │ ├── [4.3K] StringValueArrayTest.java
│ │ │ │ ├── [1.5K] ValueArraySerializerTestBase.java
│ │ │ │ ├── [ 19K] ValueArraySerializerUpgradeTest.java
│ │ │ │ └── [2.9K] ValueArrayTypeInfoTest.java
│ │ │ └── [4.0K] utils
│ │ │ └── [4.0K] proxy
│ │ │ └── [4.1K] OptionalBooleanTest.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] byte-value-array-serializer-1.11
│ │ │ ├── [ 107] serializer-snapshot
│ │ │ └── [ 6] test-data
│ │ ├── [4.0K] char-value-array-serializer-1.11
│ │ │ ├── [ 107] serializer-snapshot
│ │ │ └── [ 10] test-data
│ │ ├── [4.0K] double-value-array-serializer-1.11
│ │ │ ├── [ 111] serializer-snapshot
│ │ │ └── [ 20] test-data
│ │ ├── [ 240] flink-1.7-array-list-serializer-data
│ │ ├── [ 231] flink-1.7-array-list-serializer-snapshot
│ │ ├── [ 240] flink-1.7-avro-generic-type-serializer-address-data
│ │ ├── [ 370] flink-1.7-avro-generic-type-serializer-address-snapshot
│ │ ├── [ 240] flink-1.7-avro-type-serializer-address-data
│ │ ├── [ 380] flink-1.7-avro-type-serializer-address-snapshot
│ │ ├── [ 130] flink-1.7-either-serializer-data
│ │ ├── [ 383] flink-1.7-either-serializer-snapshot
│ │ ├── [4.0K] float-value-array-serializer-1.11
│ │ │ ├── [ 109] serializer-snapshot
│ │ │ └── [ 12] test-data
│ │ ├── [4.0K] int-value-array-serializer-1.11
│ │ │ ├── [ 105] serializer-snapshot
│ │ │ └── [ 12] test-data
│ │ ├── [4.0K] long-value-array-serializer-1.11
│ │ │ ├── [ 107] serializer-snapshot
│ │ │ └── [ 20] test-data
│ │ ├── [4.0K] null-value-array-serializer-1.11
│ │ │ ├── [ 107] serializer-snapshot
│ │ │ └── [ 4] test-data
│ │ ├── [4.0K] short-value-array-serializer-1.11
│ │ │ ├── [ 109] serializer-snapshot
│ │ │ └── [ 8] test-data
│ │ └── [4.0K] string-value-array-serializer-1.11
│ │ ├── [ 111] serializer-snapshot
│ │ └── [ 16] test-data
│ ├── [4.0K] flink-gelly-examples
│ │ ├── [7.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] graph
│ │ │ │ ├── [4.0K] drivers
│ │ │ │ │ ├── [2.6K] AdamicAdar.java
│ │ │ │ │ ├── [4.9K] ClusteringCoefficient.java
│ │ │ │ │ ├── [2.1K] ConnectedComponents.java
│ │ │ │ │ ├── [1.5K] DriverBase.java
│ │ │ │ │ ├── [2.6K] Driver.java
│ │ │ │ │ ├── [2.6K] EdgeList.java
│ │ │ │ │ ├── [4.1K] GraphMetrics.java
│ │ │ │ │ ├── [2.2K] HITS.java
│ │ │ │ │ ├── [4.0K] input
│ │ │ │ │ │ ├── [3.8K] CirculantGraph.java
│ │ │ │ │ │ ├── [1.8K] CompleteGraph.java
│ │ │ │ │ │ ├── [3.6K] CSV.java
│ │ │ │ │ │ ├── [1.8K] CycleGraph.java
│ │ │ │ │ │ ├── [2.1K] EchoGraph.java
│ │ │ │ │ │ ├── [1.8K] EmptyGraph.java
│ │ │ │ │ │ ├── [1.7K] GeneratedGraph.java
│ │ │ │ │ │ ├── [2.0K] GeneratedMultiGraph.java
│ │ │ │ │ │ ├── [4.4K] GridGraph.java
│ │ │ │ │ │ ├── [1.8K] HypercubeGraph.java
│ │ │ │ │ │ ├── [1.5K] InputBase.java
│ │ │ │ │ │ ├── [1.6K] Input.java
│ │ │ │ │ │ ├── [1.8K] PathGraph.java
│ │ │ │ │ │ ├── [4.0K] RMatGraph.java
│ │ │ │ │ │ ├── [1.9K] SingletonEdgeGraph.java
│ │ │ │ │ │ └── [1.8K] StarGraph.java
│ │ │ │ │ ├── [3.1K] JaccardIndex.java
│ │ │ │ │ ├── [4.0K] output
│ │ │ │ │ │ ├── [2.1K] CSV.java
│ │ │ │ │ │ ├── [1.7K] Hash.java
│ │ │ │ │ │ ├── [1.1K] OutputBase.java
│ │ │ │ │ │ ├── [1.3K] Output.java
│ │ │ │ │ │ └── [1.9K] Print.java
│ │ │ │ │ ├── [2.7K] PageRank.java
│ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ ├── [1.6K] BooleanParameter.java
│ │ │ │ │ │ ├── [3.7K] ChoiceParameter.java
│ │ │ │ │ │ ├── [5.8K] DoubleParameter.java
│ │ │ │ │ │ ├── [3.3K] IterationConvergence.java
│ │ │ │ │ │ ├── [3.6K] LongParameter.java
│ │ │ │ │ │ ├── [2.2K] ParameterizedBase.java
│ │ │ │ │ │ ├── [1.6K] Parameterized.java
│ │ │ │ │ │ ├── [1.9K] Parameter.java
│ │ │ │ │ │ ├── [2.0K] SimpleParameter.java
│ │ │ │ │ │ ├── [4.1K] Simplify.java
│ │ │ │ │ │ ├── [1.7K] StringParameter.java
│ │ │ │ │ │ └── [2.0K] Util.java
│ │ │ │ │ ├── [4.0K] transform
│ │ │ │ │ │ ├── [ 24K] GraphKeyTypeTransform.java
│ │ │ │ │ │ ├── [7.2K] LongValueWithProperHashCode.java
│ │ │ │ │ │ ├── [1.2K] Transformable.java
│ │ │ │ │ │ └── [2.0K] Transform.java
│ │ │ │ │ └── [4.5K] TriangleListing.java
│ │ │ │ ├── [4.0K] examples
│ │ │ │ │ ├── [4.0K] data
│ │ │ │ │ │ ├── [3.3K] CommunityDetectionData.java
│ │ │ │ │ │ ├── [2.0K] ConnectedComponentsDefaultData.java
│ │ │ │ │ │ ├── [3.4K] EuclideanGraphData.java
│ │ │ │ │ │ ├── [3.2K] IncrementalSSSPData.java
│ │ │ │ │ │ ├── [3.8K] LabelPropagationData.java
│ │ │ │ │ │ ├── [4.2K] MusicProfilesData.java
│ │ │ │ │ │ ├── [2.1K] PageRankData.java
│ │ │ │ │ │ ├── [2.2K] SingleSourceShortestPathsData.java
│ │ │ │ │ │ ├── [3.8K] SummarizationData.java
│ │ │ │ │ │ └── [2.5K] TriangleCountData.java
│ │ │ │ │ ├── [7.2K] EuclideanGraphWeighing.java
│ │ │ │ │ ├── [4.1K] GSAPageRank.java
│ │ │ │ │ ├── [6.5K] GSASingleSourceShortestPaths.java
│ │ │ │ │ ├── [10.0K] IncrementalSSSP.java
│ │ │ │ │ ├── [ 11K] MusicProfiles.java
│ │ │ │ │ ├── [4.3K] PageRank.java
│ │ │ │ │ ├── [6.6K] PregelSSSP.java
│ │ │ │ │ └── [6.7K] SingleSourceShortestPaths.java
│ │ │ │ └── [ 17K] Runner.java
│ │ │ ├── [4.0K] resources
│ │ │ │ ├── [1.2K] log4j2.properties
│ │ │ │ └── [1.1K] logback.xml
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] graph
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] examples
│ │ │ ├── [4.5K] ConnectedComponents.scala
│ │ │ ├── [5.6K] GSASingleSourceShortestPaths.scala
│ │ │ └── [6.1K] SingleSourceShortestPaths.scala
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] graph
│ │ │ ├── [4.0K] drivers
│ │ │ │ ├── [2.4K] AdamicAdarITCase.java
│ │ │ │ ├── [3.4K] ClusteringCoefficientITCase.java
│ │ │ │ ├── [2.4K] ConnectedComponentsITCase.java
│ │ │ │ ├── [1.8K] CopyableValueDriverBaseITCase.java
│ │ │ │ ├── [7.8K] DriverBaseITCase.java
│ │ │ │ ├── [ 11K] EdgeListITCase.java
│ │ │ │ ├── [3.4K] GraphMetricsITCase.java
│ │ │ │ ├── [2.1K] HITSITCase.java
│ │ │ │ ├── [2.7K] JaccardIndexITCase.java
│ │ │ │ ├── [1.9K] NonTransformableDriverBaseITCase.java
│ │ │ │ ├── [2.1K] PageRankITCase.java
│ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ ├── [1.6K] BooleanParameterTest.java
│ │ │ │ │ ├── [2.8K] ChoiceParameterTest.java
│ │ │ │ │ ├── [ 10K] DoubleParameterTest.java
│ │ │ │ │ ├── [2.3K] IterationConvergenceTest.java
│ │ │ │ │ ├── [5.1K] LongParameterTest.java
│ │ │ │ │ ├── [1.2K] ParameterTestBase.java
│ │ │ │ │ ├── [1.8K] SimplifyTest.java
│ │ │ │ │ └── [2.5K] StringParameterTest.java
│ │ │ │ ├── [4.2K] TestUtils.java
│ │ │ │ ├── [4.0K] transform
│ │ │ │ │ ├── [ 22K] GraphKeyTypeTransformTest.java
│ │ │ │ │ └── [4.1K] LongValueWithProperHashCodeSerializerUpgradeTest.java
│ │ │ │ └── [4.0K] TriangleListingITCase.java
│ │ │ ├── [4.0K] library
│ │ │ │ ├── [2.9K] CommunityDetectionITCase.java
│ │ │ │ ├── [2.7K] LabelPropagationITCase.java
│ │ │ │ ├── [8.1K] SummarizationITCase.java
│ │ │ │ └── [2.1K] TriangleEnumeratorITCase.java
│ │ │ ├── [3.4K] RunnerITCase.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] examples
│ │ │ │ ├── [2.5K] EuclideanGraphWeighingITCase.java
│ │ │ │ ├── [4.8K] IncrementalSSSPITCase.java
│ │ │ │ ├── [3.5K] MusicProfilesITCase.java
│ │ │ │ ├── [4.4K] PageRankITCase.java
│ │ │ │ └── [3.1K] SingleSourceShortestPathsITCase.java
│ │ │ └── [4.5K] GatherSumApplyITCase.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] long-value-with-proper-hash-code-serializer-1.11
│ │ ├── [ 162] serializer-snapshot
│ │ └── [ 8] test-data
│ ├── [4.0K] flink-gelly-scala
│ │ ├── [9.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] graph
│ │ │ └── [4.0K] scala
│ │ │ ├── [1.4K] EdgesFunction.scala
│ │ │ ├── [1.4K] EdgesFunctionWithVertexValue.scala
│ │ │ ├── [ 51K] Graph.scala
│ │ │ ├── [1.5K] NeighborsFunction.scala
│ │ │ ├── [1.6K] NeighborsFunctionWithVertexValue.scala
│ │ │ ├── [1.2K] package.scala
│ │ │ └── [4.0K] utils
│ │ │ ├── [1.1K] EdgeToTuple3Map.scala
│ │ │ ├── [1.1K] Tuple2ToVertexMap.scala
│ │ │ ├── [1.1K] Tuple3ToEdgeMap.scala
│ │ │ └── [1.1K] VertexToTuple2Map.scala
│ │ └── [4.0K] test
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] graph
│ │ └── [4.0K] scala
│ │ └── [4.0K] test
│ │ ├── [1.7K] GellyScalaAPICompletenessTest.scala
│ │ ├── [4.0K] operations
│ │ │ ├── [2.8K] DegreesITCase.scala
│ │ │ ├── [7.6K] GraphCreationWithCsvITCase.scala
│ │ │ ├── [ 12K] GraphMutationsITCase.scala
│ │ │ ├── [ 11K] GraphOperationsITCase.scala
│ │ │ ├── [6.6K] JoinWithEdgesITCase.scala
│ │ │ ├── [3.0K] JoinWithVerticesITCase.scala
│ │ │ ├── [2.8K] MapEdgesITCase.scala
│ │ │ ├── [2.7K] MapVerticesITCase.scala
│ │ │ ├── [6.2K] ReduceOnEdgesMethodsITCase.scala
│ │ │ └── [5.3K] ReduceOnNeighborMethodsITCase.scala
│ │ └── [1.9K] TestGraphUtils.scala
│ ├── [4.0K] flink-state-processing-api
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] state
│ │ │ └── [4.0K] api
│ │ │ ├── [7.9K] BootstrapTransformation.java
│ │ │ ├── [ 13K] ExistingSavepoint.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [2.4K] BroadcastStateBootstrapFunction.java
│ │ │ │ ├── [2.9K] KeyedStateBootstrapFunction.java
│ │ │ │ ├── [3.7K] KeyedStateReaderFunction.java
│ │ │ │ └── [2.1K] StateBootstrapFunction.java
│ │ │ ├── [4.0K] input
│ │ │ │ ├── [2.5K] BroadcastStateInputFormat.java
│ │ │ │ ├── [1.5K] BufferingCollector.java
│ │ │ │ ├── [8.9K] KeyedStateInputFormat.java
│ │ │ │ ├── [2.0K] ListStateInputFormat.java
│ │ │ │ ├── [2.8K] MultiStateKeyIterator.java
│ │ │ │ ├── [4.0K] operator
│ │ │ │ │ ├── [5.4K] KeyedStateReaderOperator.java
│ │ │ │ │ └── [4.9K] StateReaderOperator.java
│ │ │ │ ├── [6.9K] OperatorStateInputFormat.java
│ │ │ │ ├── [4.0K] splits
│ │ │ │ │ ├── [2.5K] KeyGroupRangeInputSplit.java
│ │ │ │ │ └── [1.9K] OperatorStateInputSplit.java
│ │ │ │ └── [2.0K] UnionStateInputFormat.java
│ │ │ ├── [3.6K] KeyedOperatorTransformation.java
│ │ │ ├── [1.4K] NewSavepoint.java
│ │ │ ├── [7.7K] OneInputOperatorTransformation.java
│ │ │ ├── [2.6K] OperatorTransformation.java
│ │ │ ├── [4.0K] output
│ │ │ │ ├── [2.7K] BoundedOneInputStreamTaskRunner.java
│ │ │ │ ├── [4.6K] BoundedStreamTask.java
│ │ │ │ ├── [2.1K] MergeOperatorStates.java
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [3.7K] BroadcastStateBootstrapOperator.java
│ │ │ │ │ ├── [4.1K] KeyedStateBootstrapOperator.java
│ │ │ │ │ ├── [2.7K] LazyTimerService.java
│ │ │ │ │ └── [3.2K] StateBootstrapOperator.java
│ │ │ │ ├── [2.6K] OperatorSubtaskStateReducer.java
│ │ │ │ ├── [4.0K] partitioner
│ │ │ │ │ ├── [1.6K] HashSelector.java
│ │ │ │ │ └── [1.6K] KeyGroupRangePartitioner.java
│ │ │ │ ├── [3.7K] SavepointOutputFormat.java
│ │ │ │ ├── [2.7K] SnapshotUtils.java
│ │ │ │ └── [1.8K] TaggedOperatorSubtaskState.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [1.9K] BootstrapTransformationWithID.java
│ │ │ │ ├── [4.0K] metadata
│ │ │ │ │ ├── [2.9K] OperatorStateSpec.java
│ │ │ │ │ └── [4.4K] SavepointMetadata.java
│ │ │ │ ├── [2.4K] NeverFireProcessingTimeService.java
│ │ │ │ ├── [1.7K] OperatorIDGenerator.java
│ │ │ │ ├── [ 10K] SavepointEnvironment.java
│ │ │ │ ├── [2.3K] SavepointLoader.java
│ │ │ │ ├── [2.0K] SavepointLocalRecoveryProvider.java
│ │ │ │ ├── [7.5K] SavepointRuntimeContext.java
│ │ │ │ ├── [1.9K] SavepointTaskManagerRuntimeInfo.java
│ │ │ │ ├── [3.1K] SavepointTaskStateManager.java
│ │ │ │ └── [1.5K] VoidTriggerable.java
│ │ │ ├── [3.3K] Savepoint.java
│ │ │ ├── [1.6K] SavepointWriterOperatorFactory.java
│ │ │ └── [4.8K] WritableSavepoint.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] state
│ │ └── [4.0K] api
│ │ ├── [7.0K] BootstrapTransformationTest.java
│ │ ├── [2.9K] CustomIntSerializer.java
│ │ ├── [4.0K] input
│ │ │ ├── [3.9K] BroadcastStateInputFormatTest.java
│ │ │ ├── [1.6K] BufferingCollectorTest.java
│ │ │ ├── [ 12K] KeyedStateInputFormatTest.java
│ │ │ ├── [3.9K] ListStateInputFormatTest.java
│ │ │ ├── [4.3K] MultiStateKeyIteratorTest.java
│ │ │ └── [3.9K] UnionStateInputFormatTest.java
│ │ ├── [1.2K] MemoryStateBackendReaderKeyedStateITCase.java
│ │ ├── [4.0K] output
│ │ │ ├── [7.5K] KeyedStateBootstrapOperatorTest.java
│ │ │ ├── [3.3K] SavepointOutputFormatTest.java
│ │ │ └── [4.6K] SnapshotUtilsTest.java
│ │ ├── [1.3K] RocksDBStateBackendReaderKeyedStateITCase.java
│ │ ├── [4.0K] runtime
│ │ │ └── [2.4K] OperatorIDGeneratorTest.java
│ │ ├── [2.4K] SavepointReaderCustomSerializerITCase.java
│ │ ├── [2.1K] SavepointReaderITCase.java
│ │ ├── [9.3K] SavepointReaderITTestBase.java
│ │ ├── [5.2K] SavepointReaderKeyedStateITCase.java
│ │ ├── [4.2K] SavepointTest.java
│ │ ├── [ 13K] SavepointWriterITCase.java
│ │ └── [4.0K] utils
│ │ ├── [3.5K] SavepointTestBase.java
│ │ └── [3.5K] WaitingSource.java
│ └── [2.1K] pom.xml
├── [4.0K] flink-mesos
│ ├── [8.6K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] mesos
│ │ │ ├── [4.0K] configuration
│ │ │ │ └── [5.7K] MesosOptions.java
│ │ │ ├── [4.0K] entrypoint
│ │ │ │ ├── [4.9K] MesosJobClusterEntrypoint.java
│ │ │ │ ├── [4.7K] MesosSessionClusterEntrypoint.java
│ │ │ │ └── [3.3K] MesosTaskExecutorRunner.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ └── [4.0K] clusterframework
│ │ │ │ ├── [ 14K] LaunchableMesosWorker.java
│ │ │ │ ├── [1.8K] MesosConfigKeys.java
│ │ │ │ ├── [2.1K] MesosResourceManagerActions.java
│ │ │ │ ├── [4.4K] MesosResourceManagerFactory.java
│ │ │ │ ├── [ 31K] MesosResourceManager.java
│ │ │ │ ├── [ 18K] MesosTaskManagerParameters.java
│ │ │ │ ├── [1.9K] MesosWorkerResourceSpecFactory.java
│ │ │ │ ├── [2.0K] RegisteredMesosWorkerNode.java
│ │ │ │ ├── [4.0K] services
│ │ │ │ │ ├── [2.2K] AbstractMesosServices.java
│ │ │ │ │ ├── [2.3K] MesosServices.java
│ │ │ │ │ ├── [3.2K] MesosServicesUtils.java
│ │ │ │ │ ├── [1.7K] StandaloneMesosServices.java
│ │ │ │ │ └── [3.6K] ZooKeeperMesosServices.java
│ │ │ │ └── [4.0K] store
│ │ │ │ ├── [5.7K] MesosWorkerStore.java
│ │ │ │ ├── [2.3K] StandaloneMesosWorkerStore.java
│ │ │ │ └── [7.7K] ZooKeeperMesosWorkerStore.java
│ │ │ ├── [4.0K] scheduler
│ │ │ │ ├── [1.5K] LaunchableTask.java
│ │ │ │ ├── [4.0K] messages
│ │ │ │ │ ├── [2.3K] AcceptOffers.java
│ │ │ │ │ ├── [1.1K] Connected.java
│ │ │ │ │ ├── [1.2K] Disconnected.java
│ │ │ │ │ ├── [1.4K] Error.java
│ │ │ │ │ ├── [1.8K] ExecutorLost.java
│ │ │ │ │ ├── [1.8K] FrameworkMessage.java
│ │ │ │ │ ├── [1.5K] OfferRescinded.java
│ │ │ │ │ ├── [1.7K] Registered.java
│ │ │ │ │ ├── [1.5K] ReRegistered.java
│ │ │ │ │ ├── [1.5K] ResourceOffers.java
│ │ │ │ │ ├── [1.4K] SlaveLost.java
│ │ │ │ │ └── [1.5K] StatusUpdate.java
│ │ │ │ ├── [5.9K] Offer.java
│ │ │ │ ├── [3.8K] SchedulerProxy.java
│ │ │ │ └── [1.6K] TaskSchedulerBuilder.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [1.0K] MesosArtifactResolver.java
│ │ │ │ ├── [ 14K] MesosArtifactServer.java
│ │ │ │ ├── [5.2K] MesosConfiguration.java
│ │ │ │ ├── [7.0K] MesosResourceAllocation.java
│ │ │ │ └── [7.7K] MesosUtils.java
│ │ │ └── [7.1K] Utils.java
│ │ ├── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ └── [1.7K] LICENSE.protobuf
│ │ │ └── [ 684] NOTICE
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] mesos
│ │ └── [4.0K] scheduler
│ │ ├── [3.7K] ConnectionMonitor.scala
│ │ ├── [ 15K] LaunchCoordinator.scala
│ │ ├── [6.0K] ReconciliationCoordinator.scala
│ │ ├── [9.3K] TaskMonitor.scala
│ │ └── [4.1K] Tasks.scala
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] mesos
│ │ ├── [4.0K] runtime
│ │ │ └── [4.0K] clusterframework
│ │ │ ├── [3.9K] LaunchableMesosWorkerTest.java
│ │ │ ├── [ 33K] MesosResourceManagerTest.java
│ │ │ ├── [ 12K] MesosTaskManagerParametersTest.java
│ │ │ └── [4.0K] store
│ │ │ └── [1.9K] MesosWorkerStoreTest.java
│ │ ├── [4.0K] scheduler
│ │ │ └── [5.9K] OfferTest.java
│ │ └── [4.0K] util
│ │ └── [8.8K] MesosResourceAllocationTest.java
│ ├── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ └── [4.0K] scala
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ ├── [4.0K] mesos
│ │ ├── [4.0K] scheduler
│ │ │ ├── [ 19K] LaunchCoordinatorTest.scala
│ │ │ ├── [7.9K] ReconciliationCoordinatorTest.scala
│ │ │ ├── [9.8K] TaskMonitorTest.scala
│ │ │ └── [7.0K] TasksTest.scala
│ │ └── [1.7K] Utils.scala
│ └── [4.0K] runtime
│ └── [4.0K] akka
│ └── [1.7K] FSMSpec.scala
├── [4.0K] flink-metrics
│ ├── [4.0K] flink-metrics-core
│ │ ├── [2.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ ├── [1.3K] CharacterFilter.java
│ │ │ ├── [1.4K] Counter.java
│ │ │ ├── [1.1K] Gauge.java
│ │ │ ├── [4.0K] groups
│ │ │ │ └── [2.9K] UnregisteredMetricsGroup.java
│ │ │ ├── [1.5K] Histogram.java
│ │ │ ├── [2.2K] HistogramStatistics.java
│ │ │ ├── [1.3K] Meter.java
│ │ │ ├── [3.3K] MeterView.java
│ │ │ ├── [4.3K] MetricConfig.java
│ │ │ ├── [6.3K] MetricGroup.java
│ │ │ ├── [ 921] Metric.java
│ │ │ ├── [4.0K] reporter
│ │ │ │ ├── [3.0K] AbstractReporter.java
│ │ │ │ ├── [1.6K] InstantiateViaFactory.java
│ │ │ │ ├── [1.4K] InterceptInstantiationViaReflection.java
│ │ │ │ ├── [1.7K] MetricReporterFactory.java
│ │ │ │ ├── [3.0K] MetricReporter.java
│ │ │ │ └── [1.1K] Scheduled.java
│ │ │ ├── [1.7K] SimpleCounter.java
│ │ │ └── [1.1K] View.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] metrics
│ │ ├── [2.1K] AbstractHistogramTest.java
│ │ ├── [3.1K] MeterViewTest.java
│ │ └── [4.0K] util
│ │ ├── [1.9K] MetricReporterTestUtils.java
│ │ ├── [1.4K] TestCounter.java
│ │ ├── [2.2K] TestHistogram.java
│ │ └── [1.4K] TestMeter.java
│ ├── [4.0K] flink-metrics-datadog
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] datadog
│ │ │ │ ├── [ 986] Clock.java
│ │ │ │ ├── [1.0K] DataCenter.java
│ │ │ │ ├── [4.6K] DatadogHttpClient.java
│ │ │ │ ├── [1.4K] DatadogHttpReporterFactory.java
│ │ │ │ ├── [7.9K] DatadogHttpReporter.java
│ │ │ │ ├── [1.8K] DCounter.java
│ │ │ │ ├── [1.4K] DGauge.java
│ │ │ │ ├── [1.3K] DMeter.java
│ │ │ │ ├── [2.3K] DMetric.java
│ │ │ │ ├── [1.5K] DSeries.java
│ │ │ │ └── [1.0K] MetricType.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 381] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 842] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] datadog
│ │ │ ├── [5.4K] DatadogHttpClientTest.java
│ │ │ ├── [1.2K] DatadogHttpReporterFactoryTest.java
│ │ │ └── [2.1K] DCounterTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-dropwizard
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] dropwizard
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [1.9K] DropwizardHistogramStatistics.java
│ │ │ │ ├── [1.7K] DropwizardHistogramWrapper.java
│ │ │ │ ├── [1.5K] DropwizardMeterWrapper.java
│ │ │ │ ├── [1.2K] FlinkCounterWrapper.java
│ │ │ │ ├── [1.4K] FlinkGaugeWrapper.java
│ │ │ │ ├── [1.6K] FlinkHistogramWrapper.java
│ │ │ │ ├── [1.8K] FlinkMeterWrapper.java
│ │ │ │ └── [2.4K] HistogramStatisticsWrapper.java
│ │ │ └── [7.7K] ScheduledDropwizardReporter.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] dropwizard
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [9.2K] DropwizardFlinkHistogramWrapperTest.java
│ │ │ │ ├── [2.0K] DropwizardMeterWrapperTest.java
│ │ │ │ └── [2.0K] FlinkMeterWrapperTest.java
│ │ │ └── [7.7K] ScheduledDropwizardReporterTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-graphite
│ │ ├── [3.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] graphite
│ │ │ │ ├── [1.4K] GraphiteReporterFactory.java
│ │ │ │ └── [3.1K] GraphiteReporter.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 404] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 840] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] metrics
│ │ └── [4.0K] graphite
│ │ └── [1.2K] GraphiteReporterFactoryTest.java
│ ├── [4.0K] flink-metrics-influxdb
│ │ ├── [3.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] influxdb
│ │ │ │ ├── [3.4K] AbstractReporter.java
│ │ │ │ ├── [1.4K] InfluxdbReporterFactory.java
│ │ │ │ ├── [5.9K] InfluxdbReporter.java
│ │ │ │ ├── [3.3K] InfluxdbReporterOptions.java
│ │ │ │ ├── [1.1K] MeasurementInfo.java
│ │ │ │ ├── [2.5K] MeasurementInfoProvider.java
│ │ │ │ ├── [1.1K] MetricInfoProvider.java
│ │ │ │ └── [2.8K] MetricMapper.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ └── [1.1K] LICENSE.influx
│ │ │ ├── [ 698] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 840] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] influxdb
│ │ │ ├── [1.2K] InfluxdbReporterFactoryTest.java
│ │ │ ├── [6.3K] InfluxdbReporterTest.java
│ │ │ ├── [2.5K] MeasurementInfoProviderTest.java
│ │ │ └── [3.5K] MetricMapperTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-jmx
│ │ ├── [2.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] jmx
│ │ │ │ ├── [1.4K] JMXReporterFactory.java
│ │ │ │ └── [ 17K] JMXReporter.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 830] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] metrics
│ │ │ │ └── [4.0K] jmx
│ │ │ │ ├── [2.1K] JMXReporterFactoryTest.java
│ │ │ │ └── [ 12K] JMXReporterTest.java
│ │ │ └── [4.0K] runtime
│ │ │ └── [4.0K] jobmanager
│ │ │ └── [5.3K] JMXJobManagerMetricTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-prometheus
│ │ ├── [3.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] prometheus
│ │ │ │ ├── [ 12K] AbstractPrometheusReporter.java
│ │ │ │ ├── [1.4K] PrometheusPushGatewayReporterFactory.java
│ │ │ │ ├── [5.0K] PrometheusPushGatewayReporter.java
│ │ │ │ ├── [3.4K] PrometheusPushGatewayReporterOptions.java
│ │ │ │ ├── [1.4K] PrometheusReporterFactory.java
│ │ │ │ └── [2.8K] PrometheusReporter.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 486] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 917] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] prometheus
│ │ │ ├── [1.8K] PrometheusPushGatewayReporterTest.java
│ │ │ ├── [8.7K] PrometheusReporterTaskScopeTest.java
│ │ │ └── [ 12K] PrometheusReporterTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-slf4j
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] slf4j
│ │ │ │ ├── [1.4K] Slf4jReporterFactory.java
│ │ │ │ └── [5.4K] Slf4jReporter.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 834] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] slf4j
│ │ │ └── [6.2K] Slf4jReporterTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-metrics-statsd
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] metrics
│ │ │ │ └── [4.0K] statsd
│ │ │ │ ├── [1.4K] StatsDReporterFactory.java
│ │ │ │ └── [7.3K] StatsDReporter.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 836] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] metrics
│ │ │ └── [4.0K] statsd
│ │ │ ├── [1.2K] StatsDReporterFactoryTest.java
│ │ │ └── [ 12K] StatsDReporterTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ └── [2.2K] pom.xml
├── [4.0K] flink-ml-parent
│ ├── [4.0K] flink-ml-api
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] ml
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [4.0K] core
│ │ │ │ │ ├── [1.9K] Estimator.java
│ │ │ │ │ ├── [1.6K] Model.java
│ │ │ │ │ ├── [9.0K] Pipeline.java
│ │ │ │ │ ├── [1.7K] PipelineStage.java
│ │ │ │ │ └── [1.6K] Transformer.java
│ │ │ │ └── [4.0K] misc
│ │ │ │ └── [4.0K] param
│ │ │ │ ├── [3.6K] ParamInfoFactory.java
│ │ │ │ ├── [4.4K] ParamInfo.java
│ │ │ │ ├── [8.1K] Params.java
│ │ │ │ ├── [1.3K] ParamValidator.java
│ │ │ │ └── [2.0K] WithParams.java
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] param
│ │ │ └── [2.3K] ExtractParamInfosUtil.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] ml
│ │ ├── [4.0K] api
│ │ │ ├── [4.0K] core
│ │ │ │ └── [4.6K] PipelineTest.java
│ │ │ └── [4.0K] misc
│ │ │ └── [5.2K] ParamsTest.java
│ │ └── [4.0K] util
│ │ └── [4.0K] param
│ │ └── [3.5K] ExtractParamInfosUtilTest.java
│ ├── [4.0K] flink-ml-lib
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] ml
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [4.0K] linalg
│ │ │ │ │ ├── [6.9K] BLAS.java
│ │ │ │ │ ├── [ 14K] DenseMatrix.java
│ │ │ │ │ ├── [8.1K] DenseVector.java
│ │ │ │ │ ├── [8.7K] MatVecOp.java
│ │ │ │ │ ├── [ 14K] SparseVector.java
│ │ │ │ │ ├── [2.2K] VectorIterator.java
│ │ │ │ │ ├── [3.0K] Vector.java
│ │ │ │ │ └── [7.1K] VectorUtil.java
│ │ │ │ ├── [4.0K] mapper
│ │ │ │ │ ├── [1.4K] MapperAdapter.java
│ │ │ │ │ ├── [2.5K] Mapper.java
│ │ │ │ │ ├── [2.1K] ModelMapperAdapter.java
│ │ │ │ │ └── [2.2K] ModelMapper.java
│ │ │ │ ├── [3.4K] MLEnvironmentFactory.java
│ │ │ │ ├── [5.1K] MLEnvironment.java
│ │ │ │ ├── [4.0K] model
│ │ │ │ │ ├── [1.6K] BroadcastVariableModelSource.java
│ │ │ │ │ ├── [1.3K] ModelSource.java
│ │ │ │ │ └── [1.5K] RowsModelSource.java
│ │ │ │ ├── [4.0K] statistics
│ │ │ │ │ └── [4.0K] basicstatistic
│ │ │ │ │ └── [4.4K] MultivariateGaussian.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [6.5K] DataSetConversionUtil.java
│ │ │ │ ├── [6.2K] DataStreamConversionUtil.java
│ │ │ │ ├── [7.8K] OutputColsHelper.java
│ │ │ │ ├── [ 14K] TableUtil.java
│ │ │ │ └── [1.8K] VectorTypes.java
│ │ │ ├── [4.0K] operator
│ │ │ │ ├── [5.6K] AlgoOperator.java
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ ├── [3.4K] BatchOperator.java
│ │ │ │ │ └── [4.0K] source
│ │ │ │ │ └── [1.5K] TableSourceBatchOp.java
│ │ │ │ └── [4.0K] stream
│ │ │ │ ├── [4.0K] source
│ │ │ │ │ └── [1.5K] TableSourceStreamOp.java
│ │ │ │ └── [3.4K] StreamOperator.java
│ │ │ ├── [4.0K] params
│ │ │ │ └── [4.0K] shared
│ │ │ │ ├── [4.0K] colname
│ │ │ │ │ ├── [1.6K] HasOutputColDefaultAsNull.java
│ │ │ │ │ ├── [1.6K] HasOutputCol.java
│ │ │ │ │ ├── [1.6K] HasOutputColsDefaultAsNull.java
│ │ │ │ │ ├── [1.6K] HasOutputCols.java
│ │ │ │ │ ├── [1.5K] HasPredictionCol.java
│ │ │ │ │ ├── [1.7K] HasPredictionDetailCol.java
│ │ │ │ │ ├── [1.6K] HasReservedCols.java
│ │ │ │ │ ├── [1.6K] HasSelectedColDefaultAsNull.java
│ │ │ │ │ ├── [1.6K] HasSelectedCol.java
│ │ │ │ │ ├── [1.6K] HasSelectedColsDefaultAsNull.java
│ │ │ │ │ └── [1.6K] HasSelectedCols.java
│ │ │ │ └── [1.6K] HasMLEnvironmentId.java
│ │ │ └── [4.0K] pipeline
│ │ │ ├── [3.7K] EstimatorBase.java
│ │ │ ├── [1.8K] ModelBase.java
│ │ │ ├── [2.3K] PipelineStageBase.java
│ │ │ └── [3.5K] TransformerBase.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] ml
│ │ ├── [4.0K] common
│ │ │ ├── [4.0K] linalg
│ │ │ │ ├── [6.2K] BLASTest.java
│ │ │ │ ├── [5.8K] DenseMatrixTest.java
│ │ │ │ ├── [5.3K] DenseVectorTest.java
│ │ │ │ ├── [4.0K] MatVecOpTest.java
│ │ │ │ ├── [7.7K] SparseVectorTest.java
│ │ │ │ └── [2.9K] VectorUtilTest.java
│ │ │ ├── [3.2K] MLEnvironmentTest.java
│ │ │ ├── [4.0K] statistics
│ │ │ │ └── [4.0K] basicstatistic
│ │ │ │ └── [2.8K] MultivariateGaussianTest.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [6.4K] DataSetConversionUtilTest.java
│ │ │ ├── [6.8K] DataStreamConversionUtilTest.java
│ │ │ ├── [7.5K] OutputColsHelperTest.java
│ │ │ ├── [7.2K] TableUtilTest.java
│ │ │ └── [2.8K] VectorTypesTest.java
│ │ └── [4.0K] pipeline
│ │ ├── [2.9K] EstimatorBaseTest.java
│ │ ├── [2.7K] PipelineStageTestBase.java
│ │ ├── [3.0K] TransformerBaseTest.java
│ │ └── [1.9K] UserDefinedPipelineStages.java
│ ├── [4.0K] flink-ml-uber
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [4.0K] licenses
│ │ │ └── [2.2K] LICENSE.core
│ │ └── [ 316] NOTICE
│ └── [1.4K] pom.xml
├── [4.0K] flink-optimizer
│ ├── [2.8K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] optimizer
│ │ ├── [1.9K] CompilerException.java
│ │ ├── [2.0K] CompilerPostPassException.java
│ │ ├── [4.0K] costs
│ │ │ ├── [8.6K] CostEstimator.java
│ │ │ ├── [ 16K] Costs.java
│ │ │ └── [ 10K] DefaultCostEstimator.java
│ │ ├── [4.0K] dag
│ │ │ ├── [3.2K] AbstractPartialSolutionNode.java
│ │ │ ├── [ 14K] BinaryUnionNode.java
│ │ │ ├── [ 16K] BulkIterationNode.java
│ │ │ ├── [3.6K] BulkPartialSolutionNode.java
│ │ │ ├── [4.9K] CoGroupNode.java
│ │ │ ├── [2.8K] CoGroupRawNode.java
│ │ │ ├── [5.5K] CrossNode.java
│ │ │ ├── [8.5K] DagConnection.java
│ │ │ ├── [8.3K] DataSinkNode.java
│ │ │ ├── [9.7K] DataSourceNode.java
│ │ │ ├── [1.4K] EstimateProvider.java
│ │ │ ├── [2.6K] FilterNode.java
│ │ │ ├── [2.2K] FlatMapNode.java
│ │ │ ├── [4.2K] GroupCombineNode.java
│ │ │ ├── [6.7K] GroupReduceNode.java
│ │ │ ├── [1.3K] InterestingPropertiesClearer.java
│ │ │ ├── [ 997] IterationNode.java
│ │ │ ├── [7.0K] JoinNode.java
│ │ │ ├── [2.1K] MapNode.java
│ │ │ ├── [2.9K] MapPartitionNode.java
│ │ │ ├── [1.5K] NoOpNode.java
│ │ │ ├── [ 40K] OptimizerNode.java
│ │ │ ├── [7.4K] OuterJoinNode.java
│ │ │ ├── [5.7K] PartitionNode.java
│ │ │ ├── [1.3K] PlanCacheCleaner.java
│ │ │ ├── [3.8K] ReduceNode.java
│ │ │ ├── [ 19K] SingleInputNode.java
│ │ │ ├── [4.0K] SinkJoiner.java
│ │ │ ├── [3.4K] SolutionSetNode.java
│ │ │ ├── [4.4K] SortPartitionNode.java
│ │ │ ├── [2.2K] TempMode.java
│ │ │ ├── [ 30K] TwoInputNode.java
│ │ │ ├── [2.4K] UnaryOperatorNode.java
│ │ │ ├── [ 24K] WorksetIterationNode.java
│ │ │ └── [3.5K] WorksetNode.java
│ │ ├── [4.0K] dataproperties
│ │ │ ├── [ 17K] GlobalProperties.java
│ │ │ ├── [5.9K] InterestingProperties.java
│ │ │ ├── [ 10K] LocalProperties.java
│ │ │ ├── [3.7K] PartitioningProperty.java
│ │ │ ├── [ 17K] RequestedGlobalProperties.java
│ │ │ └── [8.6K] RequestedLocalProperties.java
│ │ ├── [2.4K] DataStatistics.java
│ │ ├── [4.0K] operators
│ │ │ ├── [7.4K] AbstractJoinDescriptor.java
│ │ │ ├── [1.2K] AbstractOperatorDescriptor.java
│ │ │ ├── [3.4K] AbstractSortMergeJoinDescriptor.java
│ │ │ ├── [2.7K] AllGroupCombineProperties.java
│ │ │ ├── [2.7K] AllGroupReduceProperties.java
│ │ │ ├── [4.2K] AllGroupWithPartialPreGroupProperties.java
│ │ │ ├── [3.8K] AllReduceProperties.java
│ │ │ ├── [4.6K] BinaryUnionOpDescriptor.java
│ │ │ ├── [4.0K] CartesianProductDescriptor.java
│ │ │ ├── [9.1K] CoGroupDescriptor.java
│ │ │ ├── [6.9K] CoGroupRawDescriptor.java
│ │ │ ├── [3.0K] CoGroupWithSolutionSetFirstDescriptor.java
│ │ │ ├── [2.0K] CoGroupWithSolutionSetSecondDescriptor.java
│ │ │ ├── [1.5K] CrossBlockOuterFirstDescriptor.java
│ │ │ ├── [1.5K] CrossBlockOuterSecondDescriptor.java
│ │ │ ├── [1.8K] CrossStreamOuterFirstDescriptor.java
│ │ │ ├── [1.8K] CrossStreamOuterSecondDescriptor.java
│ │ │ ├── [2.3K] FilterDescriptor.java
│ │ │ ├── [2.7K] FlatMapDescriptor.java
│ │ │ ├── [4.5K] GroupCombineProperties.java
│ │ │ ├── [4.6K] GroupReduceProperties.java
│ │ │ ├── [7.4K] GroupReduceWithCombineProperties.java
│ │ │ ├── [2.4K] HashFullOuterJoinBuildFirstDescriptor.java
│ │ │ ├── [2.4K] HashFullOuterJoinBuildSecondDescriptor.java
│ │ │ ├── [3.1K] HashJoinBuildFirstProperties.java
│ │ │ ├── [3.2K] HashJoinBuildSecondProperties.java
│ │ │ ├── [2.6K] HashLeftOuterJoinBuildFirstDescriptor.java
│ │ │ ├── [2.5K] HashLeftOuterJoinBuildSecondDescriptor.java
│ │ │ ├── [2.5K] HashRightOuterJoinBuildFirstDescriptor.java
│ │ │ ├── [2.5K] HashRightOuterJoinBuildSecondDescriptor.java
│ │ │ ├── [2.3K] MapDescriptor.java
│ │ │ ├── [2.3K] MapPartitionDescriptor.java
│ │ │ ├── [2.2K] NoOpDescriptor.java
│ │ │ ├── [8.0K] OperatorDescriptorDual.java
│ │ │ ├── [4.0K] OperatorDescriptorSingle.java
│ │ │ ├── [3.5K] PartialGroupProperties.java
│ │ │ ├── [5.5K] ReduceProperties.java
│ │ │ ├── [2.5K] SolutionSetDeltaOperator.java
│ │ │ ├── [1.3K] SortMergeFullOuterJoinDescriptor.java
│ │ │ ├── [1.5K] SortMergeInnerJoinDescriptor.java
│ │ │ ├── [1.5K] SortMergeLeftOuterJoinDescriptor.java
│ │ │ ├── [1.5K] SortMergeRightOuterJoinDescriptor.java
│ │ │ └── [3.1K] UtilSinkJoinOpDescriptor.java
│ │ ├── [ 25K] Optimizer.java
│ │ ├── [4.0K] plan
│ │ │ ├── [2.0K] BinaryUnionPlanNode.java
│ │ │ ├── [5.4K] BulkIterationPlanNode.java
│ │ │ ├── [4.0K] BulkPartialSolutionPlanNode.java
│ │ │ ├── [ 16K] Channel.java
│ │ │ ├── [7.2K] DualInputPlanNode.java
│ │ │ ├── [1.1K] IterationPlanNode.java
│ │ │ ├── [1.3K] NamedChannel.java
│ │ │ ├── [2.9K] NAryUnionPlanNode.java
│ │ │ ├── [3.8K] OptimizedPlan.java
│ │ │ ├── [ 19K] PlanNode.java
│ │ │ ├── [8.2K] SingleInputPlanNode.java
│ │ │ ├── [2.8K] SinkJoinerPlanNode.java
│ │ │ ├── [1.7K] SinkPlanNode.java
│ │ │ ├── [3.7K] SolutionSetPlanNode.java
│ │ │ ├── [3.3K] SourcePlanNode.java
│ │ │ ├── [8.5K] WorksetIterationPlanNode.java
│ │ │ └── [4.0K] WorksetPlanNode.java
│ │ ├── [4.0K] plandump
│ │ │ ├── [1.1K] DumpableConnection.java
│ │ │ ├── [1.3K] DumpableNode.java
│ │ │ ├── [2.0K] ExecutionPlanJSONGenerator.java
│ │ │ └── [ 21K] PlanJSONDumpGenerator.java
│ │ ├── [4.0K] plantranslate
│ │ │ ├── [ 74K] JobGraphGenerator.java
│ │ │ └── [9.5K] JsonMapper.java
│ │ ├── [4.0K] postpass
│ │ │ ├── [1.5K] ConflictingFieldTypeInfoException.java
│ │ │ ├── [ 13K] JavaApiPostPass.java
│ │ │ ├── [1.2K] MissingFieldTypeInfoException.java
│ │ │ └── [1.3K] OptimizerPostPass.java
│ │ ├── [4.0K] traversals
│ │ │ ├── [4.3K] BinaryUnionReplacer.java
│ │ │ ├── [1.6K] BranchesVisitor.java
│ │ │ ├── [ 17K] GraphCreatingVisitor.java
│ │ │ ├── [2.3K] IdAndEstimatesVisitor.java
│ │ │ ├── [2.3K] InterestingPropertyVisitor.java
│ │ │ ├── [1.1K] package-info.java
│ │ │ ├── [8.6K] PlanFinalizer.java
│ │ │ ├── [ 12K] RangePartitionRewriter.java
│ │ │ ├── [2.0K] StaticDynamicPathIdentifier.java
│ │ │ ├── [1.7K] StepFunctionValidator.java
│ │ │ └── [2.2K] UnionParallelismAndForwardEnforcer.java
│ │ └── [4.0K] util
│ │ ├── [1.8K] NoOpBinaryUdfOp.java
│ │ ├── [2.1K] NoOpUnaryUdfOp.java
│ │ └── [4.4K] Utils.java
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] optimizer
│ │ ├── [3.6K] AdditionalOperatorsTest.java
│ │ ├── [ 30K] BranchingPlansCompilerTest.java
│ │ ├── [3.9K] BroadcastVariablePipelinebreakerTest.java
│ │ ├── [9.7K] CachedMatchStrategyCompilerTest.java
│ │ ├── [4.1K] CoGroupSolutionSetFirstTest.java
│ │ ├── [4.0K] costs
│ │ │ └── [ 16K] DefaultCostEstimatorTest.java
│ │ ├── [4.0K] custompartition
│ │ │ ├── [5.4K] BinaryCustomPartitioningCompatibilityTest.java
│ │ │ ├── [ 10K] CoGroupCustomPartitioningTest.java
│ │ │ ├── [3.8K] CustomPartitioningGlobalOptimizationTest.java
│ │ │ ├── [9.6K] CustomPartitioningTest.java
│ │ │ ├── [8.6K] GroupingKeySelectorTranslationTest.java
│ │ │ ├── [8.2K] GroupingPojoTranslationTest.java
│ │ │ ├── [9.8K] GroupingTupleTranslationTest.java
│ │ │ └── [ 10K] JoinCustomPartitioningTest.java
│ │ ├── [4.0K] dag
│ │ │ ├── [4.3K] CoGroupNodeTest.java
│ │ │ ├── [3.0K] GroupCombineNodeTest.java
│ │ │ ├── [3.0K] GroupReduceNodeTest.java
│ │ │ └── [2.4K] MapPartitionNodeTest.java
│ │ ├── [4.0K] dataexchange
│ │ │ ├── [ 11K] DataExchangeModeClosedBranchingTest.java
│ │ │ ├── [5.2K] DataExchangeModeForwardTest.java
│ │ │ ├── [6.5K] DataExchangeModeOpenBranchingTest.java
│ │ │ ├── [ 12K] PipelineBreakingTest.java
│ │ │ └── [7.9K] UnionClosedBranchingTest.java
│ │ ├── [4.0K] dataproperties
│ │ │ ├── [ 17K] GlobalPropertiesFilteringTest.java
│ │ │ ├── [9.6K] GlobalPropertiesMatchingTest.java
│ │ │ ├── [3.8K] GlobalPropertiesPushdownTest.java
│ │ │ ├── [ 15K] LocalPropertiesFilteringTest.java
│ │ │ ├── [1.7K] MockDistribution.java
│ │ │ ├── [1.2K] MockPartitioner.java
│ │ │ ├── [ 18K] RequestedGlobalPropertiesFilteringTest.java
│ │ │ └── [9.8K] RequestedLocalPropertiesFilteringTest.java
│ │ ├── [1.8K] DisjointDataFlowsTest.java
│ │ ├── [10.0K] DistinctCompilationTest.java
│ │ ├── [ 58K] FeedbackPropertiesMatchTest.java
│ │ ├── [6.7K] GroupOrderTest.java
│ │ ├── [2.7K] HardPlansCompilationTest.java
│ │ ├── [ 20K] IterationsCompilerTest.java
│ │ ├── [4.0K] java
│ │ │ ├── [2.6K] DeltaIterationDependenciesTest.java
│ │ │ ├── [4.3K] DistinctAndGroupingOptimizerTest.java
│ │ │ ├── [ 15K] GroupReduceCompilationTest.java
│ │ │ ├── [6.7K] IterationCompilerTest.java
│ │ │ ├── [6.1K] JoinTranslationTest.java
│ │ │ ├── [5.4K] OpenIterationTest.java
│ │ │ ├── [8.0K] PartitionOperatorTest.java
│ │ │ ├── [ 14K] ReduceCompilationTest.java
│ │ │ └── [ 13K] WorksetIterationsJavaApiCompilerTest.java
│ │ ├── [6.5K] NestedIterationsTest.java
│ │ ├── [4.0K] operators
│ │ │ ├── [ 10K] CoGroupGlobalPropertiesCompatibilityTest.java
│ │ │ ├── [2.5K] CoGroupOnConflictingPartitioningsTest.java
│ │ │ ├── [4.5K] CoGroupWithDistributionTest.java
│ │ │ ├── [ 11K] JoinGlobalPropertiesCompatibilityTest.java
│ │ │ ├── [2.4K] JoinOnConflictingPartitioningsTest.java
│ │ │ ├── [4.3K] JoinWithDistributionTest.java
│ │ │ └── [1.9K] TestDistribution.java
│ │ ├── [ 12K] ParallelismChangeTest.java
│ │ ├── [ 35K] PartitioningReusageTest.java
│ │ ├── [4.0K] PartitionPushdownTest.java
│ │ ├── [ 11K] PipelineBreakerTest.java
│ │ ├── [4.0K] plan
│ │ │ └── [3.2K] ChannelTest.java
│ │ ├── [4.0K] plandump
│ │ │ ├── [2.2K] ExecutionPlanUtilTest.java
│ │ │ └── [2.2K] NumberFormattingTest.java
│ │ ├── [4.0K] plantranslate
│ │ │ ├── [ 13K] JobGraphGeneratorTest.java
│ │ │ └── [2.9K] TempInIterationsTest.java
│ │ ├── [4.0K] programs
│ │ │ └── [ 14K] ConnectedComponentsTest.java
│ │ ├── [ 32K] PropertyDataSourceTest.java
│ │ ├── [2.2K] ReduceAllTest.java
│ │ ├── [ 21K] ReplicatingDataSourceTest.java
│ │ ├── [7.3K] SemanticPropertiesAPIToPlanTest.java
│ │ ├── [5.3K] SortPartialReuseTest.java
│ │ ├── [4.0K] testfunctions
│ │ │ ├── [1.2K] DummyCoGroupFunction.java
│ │ │ ├── [1.2K] DummyFlatJoinFunction.java
│ │ │ ├── [1.2K] IdentityCoGrouper.java
│ │ │ ├── [1.1K] IdentityCrosser.java
│ │ │ ├── [1.1K] IdentityFlatMapper.java
│ │ │ ├── [1.4K] IdentityGroupReducerCombinable.java
│ │ │ ├── [1.2K] IdentityGroupReducer.java
│ │ │ ├── [1.1K] IdentityJoiner.java
│ │ │ ├── [1.1K] IdentityKeyExtractor.java
│ │ │ ├── [1.1K] IdentityMapper.java
│ │ │ ├── [1.2K] IdentityPartitionerMapper.java
│ │ │ ├── [1.1K] SelectOneReducer.java
│ │ │ └── [1.4K] Top1GroupReducer.java
│ │ ├── [5.5K] UnionBetweenDynamicAndStaticPathTest.java
│ │ ├── [6.4K] UnionPropertyPropagationTest.java
│ │ ├── [ 26K] UnionReplacementTest.java
│ │ ├── [4.0K] util
│ │ │ ├── [7.9K] CompilerTestBase.java
│ │ │ └── [3.9K] OperatorResolver.java
│ │ ├── [2.9K] WorksetIterationCornerCasesTest.java
│ │ └── [ 10K] WorksetIterationsRecordApiCompilerTest.java
│ └── [4.0K] resources
│ └── [1.3K] log4j2-test.properties
├── [4.0K] flink-python
│ ├── [4.0K] bin
│ │ ├── [2.9K] pyflink-shell.sh
│ │ ├── [1.8K] pyflink-udf-runner.bat
│ │ └── [1.9K] pyflink-udf-runner.sh
│ ├── [4.0K] dev
│ │ ├── [1.8K] build-wheels.sh
│ │ ├── [ 839] dev-requirements.txt
│ │ ├── [ 847] glibc_version_fix.h
│ │ ├── [1.2K] install_command.sh
│ │ ├── [ 24K] lint-python.sh
│ │ ├── [2.1K] pip_test_code.py
│ │ └── [1.0K] run_pip_test.sh
│ ├── [4.0K] docs
│ │ ├── [7.0K] conf.py
│ │ ├── [1.5K] index.rst
│ │ ├── [5.0K] Makefile
│ │ ├── [1.1K] pyflink.common.rst
│ │ ├── [1.1K] pyflink.dataset.rst
│ │ ├── [1.1K] pyflink.datastream.rst
│ │ ├── [1.1K] pyflink.metrics.rst
│ │ ├── [1.6K] pyflink.ml.rst
│ │ ├── [1.2K] pyflink.rst
│ │ ├── [1.5K] pyflink.table.rst
│ │ ├── [4.0K] _static
│ │ │ ├── [ 906] pyflink.css
│ │ │ └── [4.4K] pyflink.js
│ │ └── [4.0K] _templates
│ │ └── [ 956] layout.html
│ ├── [4.0K] lib
│ │ ├── [1.7K] LICENSE.cloudpickle
│ │ └── [1.4K] LICENSE.py4j
│ ├── [1.4K] MANIFEST.in
│ ├── [ 14K] pom.xml
│ ├── [4.0K] pyflink
│ │ ├── [4.0K] common
│ │ │ ├── [3.2K] completable_future.py
│ │ │ ├── [9.7K] configuration.py
│ │ │ ├── [ 28K] execution_config.py
│ │ │ ├── [4.4K] execution_mode.py
│ │ │ ├── [2.0K] __init__.py
│ │ │ ├── [2.7K] input_dependency_constraint.py
│ │ │ ├── [5.5K] job_client.py
│ │ │ ├── [3.3K] job_execution_result.py
│ │ │ ├── [1.5K] job_id.py
│ │ │ ├── [6.2K] job_status.py
│ │ │ ├── [ 12K] restart_strategy.py
│ │ │ └── [4.0K] tests
│ │ │ ├── [ 958] __init__.py
│ │ │ ├── [5.1K] test_configuration.py
│ │ │ └── [ 11K] test_execution_config.py
│ │ ├── [4.0K] dataset
│ │ │ ├── [8.2K] execution_environment.py
│ │ │ ├── [1.2K] __init__.py
│ │ │ └── [4.0K] tests
│ │ │ ├── [ 958] __init__.py
│ │ │ ├── [3.2K] test_execution_environment_completeness.py
│ │ │ └── [5.4K] test_execution_environment.py
│ │ ├── [4.0K] datastream
│ │ │ ├── [ 16K] checkpoint_config.py
│ │ │ ├── [5.3K] checkpointing_mode.py
│ │ │ ├── [2.2K] __init__.py
│ │ │ ├── [ 37K] state_backend.py
│ │ │ ├── [ 19K] stream_execution_environment.py
│ │ │ ├── [4.0K] tests
│ │ │ │ ├── [ 958] __init__.py
│ │ │ │ ├── [6.2K] test_check_point_config.py
│ │ │ │ ├── [8.8K] test_state_backend.py
│ │ │ │ ├── [3.0K] test_stream_execution_environment_completeness.py
│ │ │ │ └── [7.7K] test_stream_execution_environment.py
│ │ │ └── [6.1K] time_characteristic.py
│ │ ├── [2.6K] find_flink_home.py
│ │ ├── [4.0K] fn_execution
│ │ │ ├── [4.3K] boot.py
│ │ │ ├── [ 17K] coder_impl.py
│ │ │ ├── [ 17K] coders.py
│ │ │ ├── [7.3K] fast_coder_impl.pxd
│ │ │ ├── [ 34K] fast_coder_impl.pyx
│ │ │ ├── [1.8K] fast_operations.pxd
│ │ │ ├── [ 11K] fast_operations.pyx
│ │ │ ├── [ 41K] flink_fn_execution_pb2.py
│ │ │ ├── [ 958] __init__.py
│ │ │ ├── [ 10K] operations.py
│ │ │ ├── [2.5K] ResettableIO.py
│ │ │ ├── [1.7K] sdk_worker_main.py
│ │ │ └── [4.0K] tests
│ │ │ ├── [ 958] __init__.py
│ │ │ ├── [5.8K] test_coders.py
│ │ │ ├── [ 11K] test_fast_coders.py
│ │ │ ├── [2.0K] test_flink_fn_execution_pb2_synced.py
│ │ │ └── [6.6K] test_process_mode_boot.py
│ │ ├── [9.1K] gen_protos.py
│ │ ├── [1.4K] __init__.py
│ │ ├── [7.2K] java_gateway.py
│ │ ├── [4.0K] metrics
│ │ │ ├── [1.1K] __init__.py
│ │ │ ├── [7.6K] metricbase.py
│ │ │ └── [4.0K] tests
│ │ │ ├── [ 958] __init__.py
│ │ │ └── [4.1K] test_metric.py
│ │ ├── [4.0K] ml
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [ 13K] base.py
│ │ │ │ ├── [1.4K] __init__.py
│ │ │ │ ├── [5.0K] ml_environment_factory.py
│ │ │ │ ├── [3.9K] ml_environment.py
│ │ │ │ └── [4.0K] param
│ │ │ │ ├── [ 11K] base.py
│ │ │ │ └── [1.1K] __init__.py
│ │ │ ├── [ 958] __init__.py
│ │ │ ├── [4.0K] lib
│ │ │ │ ├── [ 958] __init__.py
│ │ │ │ └── [4.0K] param
│ │ │ │ ├── [2.6K] colname.py
│ │ │ │ └── [1.1K] __init__.py
│ │ │ └── [4.0K] tests
│ │ │ ├── [ 958] __init__.py
│ │ │ ├── [2.1K] test_ml_environment_factory.py
│ │ │ ├── [2.7K] test_ml_environment.py
│ │ │ ├── [6.3K] test_params.py
│ │ │ ├── [7.4K] test_pipeline_it_case.py
│ │ │ ├── [6.1K] test_pipeline.py
│ │ │ └── [3.1K] test_pipeline_stage.py
│ │ ├── [4.0K] proto
│ │ │ └── [3.6K] flink-fn-execution.proto
│ │ ├── [1.3K] pyflink_callback_server.py
│ │ ├── [9.2K] pyflink_gateway_server.py
│ │ ├── [6.1K] serializers.py
│ │ ├── [9.0K] shell.py
│ │ ├── [4.0K] table
│ │ │ ├── [ 40K] catalog.py
│ │ │ ├── [ 70K] descriptors.py
│ │ │ ├── [7.6K] environment_settings.py
│ │ │ ├── [4.0K] examples
│ │ │ │ └── [4.0K] batch
│ │ │ │ ├── [ 958] __init__.py
│ │ │ │ └── [2.9K] word_count.py
│ │ │ ├── [1.4K] explain_detail.py
│ │ │ ├── [4.6K] __init__.py
│ │ │ ├── [1.9K] result_kind.py
│ │ │ ├── [3.0K] serializers.py
│ │ │ ├── [3.3K] sinks.py
│ │ │ ├── [2.2K] sources.py
│ │ │ ├── [2.6K] sql_dialect.py
│ │ │ ├── [3.7K] statement_set.py
│ │ │ ├── [ 15K] table_config.py
│ │ │ ├── [ 70K] table_environment.py
│ │ │ ├── [ 33K] table.py
│ │ │ ├── [6.4K] table_result.py
│ │ │ ├── [5.2K] table_schema.py
│ │ │ ├── [4.0K] tests
│ │ │ │ ├── [ 958] __init__.py
│ │ │ │ ├── [1.8K] test_aggregate.py
│ │ │ │ ├── [7.8K] test_calc.py
│ │ │ │ ├── [5.1K] test_catalog_completeness.py
│ │ │ │ ├── [ 40K] test_catalog.py
│ │ │ │ ├── [2.8K] test_column_operation.py
│ │ │ │ ├── [3.5K] test_correlate.py
│ │ │ │ ├── [ 11K] test_dependency.py
│ │ │ │ ├── [ 48K] test_descriptor.py
│ │ │ │ ├── [1.6K] test_distinct.py
│ │ │ │ ├── [2.7K] test_environment_completeness.py
│ │ │ │ ├── [2.4K] test_environment_settings_completeness.py
│ │ │ │ ├── [5.2K] test_environment_settings.py
│ │ │ │ ├── [1.6K] test_explain.py
│ │ │ │ ├── [4.6K] test_join.py
│ │ │ │ ├── [7.5K] test_pandas_conversion.py
│ │ │ │ ├── [ 18K] test_pandas_udf.py
│ │ │ │ ├── [1.9K] test_schema_operation.py
│ │ │ │ ├── [3.6K] test_set_operation.py
│ │ │ │ ├── [3.9K] test_shell_example.py
│ │ │ │ ├── [1.7K] test_sort.py
│ │ │ │ ├── [6.7K] test_sql.py
│ │ │ │ ├── [2.1K] test_table_api.py
│ │ │ │ ├── [2.6K] test_table_completeness.py
│ │ │ │ ├── [2.2K] test_table_config_completeness.py
│ │ │ │ ├── [4.4K] test_table_config.py
│ │ │ │ ├── [ 28K] test_table_environment_api.py
│ │ │ │ ├── [5.5K] test_table_schema.py
│ │ │ │ ├── [ 38K] test_types.py
│ │ │ │ ├── [ 29K] test_udf.py
│ │ │ │ ├── [5.3K] test_udtf.py
│ │ │ │ └── [3.5K] test_window.py
│ │ │ ├── [104K] types.py
│ │ │ ├── [ 15K] udf.py
│ │ │ ├── [2.7K] utils.py
│ │ │ └── [ 15K] window.py
│ │ ├── [4.0K] testing
│ │ │ ├── [ 959] __init__.py
│ │ │ ├── [4.6K] source_sink_utils.py
│ │ │ └── [ 11K] test_case_utils.py
│ │ ├── [4.0K] util
│ │ │ ├── [7.1K] exceptions.py
│ │ │ ├── [ 958] __init__.py
│ │ │ └── [5.8K] utils.py
│ │ └── [1.1K] version.py
│ ├── [2.2K] README.md
│ ├── [1.0K] setup.cfg
│ ├── [ 13K] setup.py
│ ├── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ ├── [4.0K] beam
│ │ │ │ │ ├── [4.0K] runners
│ │ │ │ │ │ └── [4.0K] fnexecution
│ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ └── [6.2K] GrpcStateService.java
│ │ │ │ │ └── [4.0K] vendor
│ │ │ │ │ └── [4.0K] grpc
│ │ │ │ │ └── [4.0K] v1p21p0
│ │ │ │ │ └── [4.0K] io
│ │ │ │ │ └── [4.0K] netty
│ │ │ │ │ └── [4.0K] buffer
│ │ │ │ │ ├── [ 23K] PoolArena.java
│ │ │ │ │ ├── [ 21K] PooledByteBufAllocator.java
│ │ │ │ │ └── [ 16K] PoolThreadCache.java
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ └── [4.0K] common
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ ├── [4.0K] pickle
│ │ │ │ │ │ ├── [1.6K] ArrayConstructor.java
│ │ │ │ │ │ └── [1.2K] ByteArrayConstructor.java
│ │ │ │ │ └── [5.2K] PythonBridgeUtils.java
│ │ │ │ ├── [4.0K] client
│ │ │ │ │ ├── [4.0K] cli
│ │ │ │ │ │ └── [3.4K] PythonProgramOptions.java
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ ├── [4.4K] PythonDriver.java
│ │ │ │ │ ├── [1.7K] PythonDriverOptions.java
│ │ │ │ │ ├── [2.5K] PythonDriverOptionsParserFactory.java
│ │ │ │ │ ├── [ 13K] PythonEnvUtils.java
│ │ │ │ │ ├── [6.6K] PythonFunctionFactory.java
│ │ │ │ │ ├── [3.8K] PythonGatewayServer.java
│ │ │ │ │ └── [9.8K] PythonShellParser.java
│ │ │ │ ├── [4.0K] python
│ │ │ │ │ ├── [9.2K] AbstractPythonFunctionRunner.java
│ │ │ │ │ ├── [4.0K] env
│ │ │ │ │ │ ├── [ 14K] ProcessPythonEnvironmentManager.java
│ │ │ │ │ │ ├── [5.1K] PythonDependencyInfo.java
│ │ │ │ │ │ └── [1.9K] PythonEnvironmentManager.java
│ │ │ │ │ ├── [4.0K] metric
│ │ │ │ │ │ └── [9.9K] FlinkMetricContainer.java
│ │ │ │ │ ├── [5.5K] PythonConfig.java
│ │ │ │ │ ├── [2.0K] PythonFunctionRunner.java
│ │ │ │ │ ├── [8.5K] PythonOptions.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [ 11K] PythonDependencyUtils.java
│ │ │ │ │ ├── [8.1K] PythonEnvironmentManagerUtils.java
│ │ │ │ │ └── [4.0K] ZipUtils.java
│ │ │ │ ├── [4.0K] streaming
│ │ │ │ │ └── [4.0K] api
│ │ │ │ │ └── [4.0K] operators
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ └── [ 12K] AbstractPythonFunctionOperator.java
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] descriptors
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ └── [2.1K] CustomFormatDescriptor.java
│ │ │ │ └── [4.0K] runtime
│ │ │ │ ├── [4.0K] arrow
│ │ │ │ │ ├── [1.1K] ArrowReader.java
│ │ │ │ │ ├── [ 36K] ArrowUtils.java
│ │ │ │ │ ├── [2.4K] ArrowWriter.java
│ │ │ │ │ ├── [4.0K] readers
│ │ │ │ │ │ ├── [3.0K] ArrayFieldReader.java
│ │ │ │ │ │ ├── [1.6K] ArrowFieldReader.java
│ │ │ │ │ │ ├── [1.2K] BigIntFieldReader.java
│ │ │ │ │ │ ├── [1.2K] BooleanFieldReader.java
│ │ │ │ │ │ ├── [1.4K] DateFieldReader.java
│ │ │ │ │ │ ├── [1.3K] DecimalFieldReader.java
│ │ │ │ │ │ ├── [1.2K] DoubleFieldReader.java
│ │ │ │ │ │ ├── [1.2K] FloatFieldReader.java
│ │ │ │ │ │ ├── [1.2K] IntFieldReader.java
│ │ │ │ │ │ ├── [1.9K] RowArrowReader.java
│ │ │ │ │ │ ├── [1.6K] RowFieldReader.java
│ │ │ │ │ │ ├── [1.3K] SmallIntFieldReader.java
│ │ │ │ │ │ ├── [2.4K] TimeFieldReader.java
│ │ │ │ │ │ ├── [2.4K] TimestampFieldReader.java
│ │ │ │ │ │ ├── [1.3K] TinyIntFieldReader.java
│ │ │ │ │ │ ├── [1.3K] VarBinaryFieldReader.java
│ │ │ │ │ │ └── [1.4K] VarCharFieldReader.java
│ │ │ │ │ ├── [4.0K] sources
│ │ │ │ │ │ ├── [7.4K] AbstractArrowSourceFunction.java
│ │ │ │ │ │ ├── [1.7K] AbstractArrowTableSource.java
│ │ │ │ │ │ ├── [2.0K] ArrowSourceFunction.java
│ │ │ │ │ │ ├── [1.6K] ArrowTableSource.java
│ │ │ │ │ │ ├── [2.0K] RowArrowSourceFunction.java
│ │ │ │ │ │ └── [1.5K] RowArrowTableSource.java
│ │ │ │ │ ├── [4.0K] vectors
│ │ │ │ │ │ ├── [2.1K] ArrowArrayColumnVector.java
│ │ │ │ │ │ ├── [1.6K] ArrowBigIntColumnVector.java
│ │ │ │ │ │ ├── [1.6K] ArrowBooleanColumnVector.java
│ │ │ │ │ │ ├── [1.6K] ArrowDateColumnVector.java
│ │ │ │ │ │ ├── [1.7K] ArrowDecimalColumnVector.java
│ │ │ │ │ │ ├── [1.6K] ArrowDoubleColumnVector.java
│ │ │ │ │ │ ├── [1.6K] ArrowFloatColumnVector.java
│ │ │ │ │ │ ├── [1.4K] ArrowIntColumnVector.java
│ │ │ │ │ │ ├── [2.0K] ArrowRowColumnVector.java
│ │ │ │ │ │ ├── [1.5K] ArrowSmallIntColumnVector.java
│ │ │ │ │ │ ├── [2.3K] ArrowTimeColumnVector.java
│ │ │ │ │ │ ├── [2.7K] ArrowTimestampColumnVector.java
│ │ │ │ │ │ ├── [1.5K] ArrowTinyIntColumnVector.java
│ │ │ │ │ │ ├── [1.7K] ArrowVarBinaryColumnVector.java
│ │ │ │ │ │ ├── [1.6K] ArrowVarCharColumnVector.java
│ │ │ │ │ │ └── [2.1K] RowDataArrowReader.java
│ │ │ │ │ └── [4.0K] writers
│ │ │ │ │ ├── [3.5K] ArrayWriter.java
│ │ │ │ │ ├── [2.3K] ArrowFieldWriter.java
│ │ │ │ │ ├── [2.8K] BigIntWriter.java
│ │ │ │ │ ├── [2.9K] BooleanWriter.java
│ │ │ │ │ ├── [2.8K] DateWriter.java
│ │ │ │ │ ├── [3.6K] DecimalWriter.java
│ │ │ │ │ ├── [2.8K] DoubleWriter.java
│ │ │ │ │ ├── [2.8K] FloatWriter.java
│ │ │ │ │ ├── [2.7K] IntWriter.java
│ │ │ │ │ ├── [1.8K] RowArrayWriter.java
│ │ │ │ │ ├── [1.4K] RowBigIntWriter.java
│ │ │ │ │ ├── [1.5K] RowBooleanWriter.java
│ │ │ │ │ ├── [1.6K] RowDateWriter.java
│ │ │ │ │ ├── [1.9K] RowDecimalWriter.java
│ │ │ │ │ ├── [1.4K] RowDoubleWriter.java
│ │ │ │ │ ├── [1.4K] RowFloatWriter.java
│ │ │ │ │ ├── [1.4K] RowIntWriter.java
│ │ │ │ │ ├── [2.0K] RowRowWriter.java
│ │ │ │ │ ├── [1.4K] RowSmallIntWriter.java
│ │ │ │ │ ├── [2.6K] RowTimestampWriter.java
│ │ │ │ │ ├── [2.7K] RowTimeWriter.java
│ │ │ │ │ ├── [1.4K] RowTinyIntWriter.java
│ │ │ │ │ ├── [1.5K] RowVarBinaryWriter.java
│ │ │ │ │ ├── [1.5K] RowVarCharWriter.java
│ │ │ │ │ ├── [3.7K] RowWriter.java
│ │ │ │ │ ├── [2.8K] SmallIntWriter.java
│ │ │ │ │ ├── [4.3K] TimestampWriter.java
│ │ │ │ │ ├── [3.7K] TimeWriter.java
│ │ │ │ │ ├── [2.8K] TinyIntWriter.java
│ │ │ │ │ ├── [2.9K] VarBinaryWriter.java
│ │ │ │ │ └── [2.9K] VarCharWriter.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ ├── [3.4K] AbstractPythonScalarFunctionFlatMap.java
│ │ │ │ │ ├── [ 10K] AbstractPythonStatelessFunctionFlatMap.java
│ │ │ │ │ ├── [4.0K] arrow
│ │ │ │ │ │ └── [4.3K] ArrowPythonScalarFunctionFlatMap.java
│ │ │ │ │ ├── [2.9K] PythonScalarFunctionFlatMap.java
│ │ │ │ │ └── [5.2K] PythonTableFunctionFlatMap.java
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ ├── [8.0K] AbstractStatelessFunctionOperator.java
│ │ │ │ │ ├── [4.0K] scalar
│ │ │ │ │ │ ├── [3.4K] AbstractPythonScalarFunctionOperator.java
│ │ │ │ │ │ ├── [4.5K] AbstractRowDataPythonScalarFunctionOperator.java
│ │ │ │ │ │ ├── [3.3K] AbstractRowPythonScalarFunctionOperator.java
│ │ │ │ │ │ ├── [4.0K] arrow
│ │ │ │ │ │ │ ├── [4.3K] ArrowPythonScalarFunctionOperator.java
│ │ │ │ │ │ │ └── [4.3K] RowDataArrowPythonScalarFunctionOperator.java
│ │ │ │ │ │ ├── [3.4K] PythonScalarFunctionOperator.java
│ │ │ │ │ │ └── [3.4K] RowDataPythonScalarFunctionOperator.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [3.1K] AbstractPythonTableFunctionOperator.java
│ │ │ │ │ ├── [5.1K] PythonTableFunctionOperator.java
│ │ │ │ │ └── [6.2K] RowDataPythonTableFunctionOperator.java
│ │ │ │ ├── [4.0K] runners
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ ├── [9.5K] AbstractPythonStatelessFunctionRunner.java
│ │ │ │ │ ├── [4.0K] scalar
│ │ │ │ │ │ ├── [3.6K] AbstractGeneralPythonScalarFunctionRunner.java
│ │ │ │ │ │ ├── [3.0K] AbstractPythonScalarFunctionRunner.java
│ │ │ │ │ │ ├── [4.0K] arrow
│ │ │ │ │ │ │ ├── [5.6K] AbstractArrowPythonScalarFunctionRunner.java
│ │ │ │ │ │ │ ├── [2.3K] ArrowPythonScalarFunctionRunner.java
│ │ │ │ │ │ │ └── [2.3K] RowDataArrowPythonScalarFunctionRunner.java
│ │ │ │ │ │ ├── [2.3K] PythonScalarFunctionRunner.java
│ │ │ │ │ │ └── [2.4K] RowDataPythonScalarFunctionRunner.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [4.3K] AbstractPythonTableFunctionRunner.java
│ │ │ │ │ ├── [2.3K] PythonTableFunctionRunner.java
│ │ │ │ │ └── [2.3K] RowDataPythonTableFunctionRunner.java
│ │ │ │ └── [4.0K] typeutils
│ │ │ │ ├── [ 21K] PythonTypeUtils.java
│ │ │ │ └── [4.0K] serializers
│ │ │ │ └── [4.0K] python
│ │ │ │ ├── [6.3K] ArrayDataSerializer.java
│ │ │ │ ├── [3.2K] BigDecSerializer.java
│ │ │ │ ├── [3.2K] DateSerializer.java
│ │ │ │ ├── [5.5K] DecimalDataSerializer.java
│ │ │ │ ├── [8.5K] MapDataSerializer.java
│ │ │ │ ├── [7.5K] RowDataSerializer.java
│ │ │ │ ├── [3.7K] StringSerializer.java
│ │ │ │ ├── [3.6K] TimeSerializer.java
│ │ │ │ └── [6.0K] TimestampSerializer.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [1.4K] LICENSE.google-auth-library-credentials
│ │ │ │ ├── [1.7K] LICENSE.protobuf
│ │ │ │ ├── [1.4K] LICENSE.py4j
│ │ │ │ └── [1.0K] LICENSE.pyrolite
│ │ │ └── [3.1K] NOTICE
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] client
│ │ │ ├── [4.0K] cli
│ │ │ │ └── [4.2K] PythonProgramOptionsTest.java
│ │ │ └── [4.0K] python
│ │ │ ├── [3.0K] PythonDriverOptionsParserFactoryTest.java
│ │ │ ├── [2.7K] PythonDriverTest.java
│ │ │ ├── [8.1K] PythonEnvUtilsTest.java
│ │ │ ├── [6.5K] PythonFunctionFactoryTest.java
│ │ │ └── [2.2K] PythonShellParserTest.java
│ │ ├── [4.0K] python
│ │ │ ├── [4.0K] env
│ │ │ │ ├── [ 15K] ProcessPythonEnvironmentManagerTest.java
│ │ │ │ └── [5.6K] PythonDependencyInfoTest.java
│ │ │ ├── [4.0K] metric
│ │ │ │ └── [8.1K] FlinkMetricContainerTest.java
│ │ │ ├── [6.3K] PythonConfigTest.java
│ │ │ ├── [7.9K] PythonOptionsTest.java
│ │ │ └── [4.0K] util
│ │ │ ├── [8.3K] PythonDependencyUtilsTest.java
│ │ │ ├── [1.1K] TestScalarFunction1.java
│ │ │ └── [1.1K] TestScalarFunction2.java
│ │ └── [4.0K] table
│ │ └── [4.0K] runtime
│ │ ├── [4.0K] arrow
│ │ │ ├── [2.9K] ArrowReaderWriterTestBase.java
│ │ │ ├── [ 17K] ArrowUtilsTest.java
│ │ │ ├── [7.0K] RowArrowReaderWriterTest.java
│ │ │ ├── [ 10K] RowDataArrowReaderWriterTest.java
│ │ │ └── [4.0K] sources
│ │ │ ├── [9.7K] ArrowSourceFunctionTestBase.java
│ │ │ ├── [4.3K] ArrowSourceFunctionTest.java
│ │ │ └── [3.2K] RowArrowSourceFunctionTest.java
│ │ ├── [4.0K] operators
│ │ │ └── [4.0K] python
│ │ │ ├── [4.0K] scalar
│ │ │ │ ├── [4.0K] arrow
│ │ │ │ │ ├── [4.4K] ArrowPythonScalarFunctionOperatorTest.java
│ │ │ │ │ └── [5.1K] RowDataArrowPythonScalarFunctionOperatorTest.java
│ │ │ │ ├── [ 10K] PythonScalarFunctionOperatorTestBase.java
│ │ │ │ ├── [4.2K] PythonScalarFunctionOperatorTest.java
│ │ │ │ └── [4.9K] RowDataPythonScalarFunctionOperatorTest.java
│ │ │ └── [4.0K] table
│ │ │ ├── [8.9K] PythonTableFunctionOperatorTestBase.java
│ │ │ ├── [3.5K] PythonTableFunctionOperatorTest.java
│ │ │ └── [4.1K] RowDataPythonTableFunctionOperatorTest.java
│ │ ├── [4.0K] runners
│ │ │ └── [4.0K] python
│ │ │ ├── [4.0K] scalar
│ │ │ │ ├── [4.4K] AbstractPythonScalarFunctionRunnerTest.java
│ │ │ │ ├── [4.0K] arrow
│ │ │ │ │ └── [7.3K] ArrowPythonScalarFunctionRunnerTest.java
│ │ │ │ ├── [9.5K] PythonScalarFunctionRunnerTest.java
│ │ │ │ └── [3.5K] RowDataPythonScalarFunctionRunnerTest.java
│ │ │ └── [4.0K] table
│ │ │ ├── [2.0K] AbstractPythonTableFunctionRunnerTest.java
│ │ │ ├── [5.2K] PythonTableFunctionRunnerTest.java
│ │ │ └── [2.8K] RowDataPythonTableFunctionRunnerTest.java
│ │ ├── [4.0K] typeutils
│ │ │ ├── [3.9K] PythonTypeUtilsTest.java
│ │ │ └── [4.0K] serializers
│ │ │ └── [4.0K] python
│ │ │ ├── [3.0K] ArrayDataSerializerTest.java
│ │ │ ├── [1.6K] BigDecSerializerTest.java
│ │ │ ├── [1.4K] DateSerializerTest.java
│ │ │ ├── [1.7K] DecimalDataSerializerTest.java
│ │ │ ├── [3.4K] MapDataSerializerTest.java
│ │ │ ├── [3.3K] RowDataSerializerTest.java
│ │ │ ├── [1.4K] StringSerializerTest.java
│ │ │ ├── [1.4K] TimeSerializerTest.java
│ │ │ └── [1.9K] TimestampSerializerTest.java
│ │ └── [4.0K] utils
│ │ ├── [3.5K] PassThroughArrowPythonScalarFunctionRunner.java
│ │ ├── [3.3K] PassThroughPythonScalarFunctionRunner.java
│ │ ├── [3.0K] PassThroughPythonTableFunctionRunner.java
│ │ └── [3.3K] PythonTestUtils.java
│ └── [2.2K] tox.ini
├── [4.0K] flink-queryable-state
│ ├── [4.0K] flink-queryable-state-client-java
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] queryablestate
│ │ │ ├── [4.0K] client
│ │ │ │ ├── [ 13K] QueryableStateClient.java
│ │ │ │ ├── [4.0K] state
│ │ │ │ │ ├── [2.5K] ImmutableAggregatingState.java
│ │ │ │ │ ├── [2.3K] ImmutableFoldingState.java
│ │ │ │ │ ├── [2.5K] ImmutableListState.java
│ │ │ │ │ ├── [4.0K] ImmutableMapState.java
│ │ │ │ │ ├── [2.3K] ImmutableReducingState.java
│ │ │ │ │ ├── [1.2K] ImmutableState.java
│ │ │ │ │ ├── [2.3K] ImmutableValueState.java
│ │ │ │ │ └── [4.0K] serialization
│ │ │ │ │ └── [9.2K] KvStateSerializer.java
│ │ │ │ ├── [2.3K] VoidNamespace.java
│ │ │ │ ├── [3.3K] VoidNamespaceSerializer.java
│ │ │ │ └── [2.3K] VoidNamespaceTypeInfo.java
│ │ │ ├── [4.0K] exceptions
│ │ │ │ ├── [1.4K] UnknownKeyOrNamespaceException.java
│ │ │ │ ├── [1.6K] UnknownKvStateIdException.java
│ │ │ │ ├── [1.4K] UnknownKvStateKeyGroupLocationException.java
│ │ │ │ └── [1.3K] UnknownLocationException.java
│ │ │ ├── [1.6K] FutureUtils.java
│ │ │ ├── [1.2K] KvStateID.java
│ │ │ ├── [4.0K] messages
│ │ │ │ ├── [4.3K] KvStateRequest.java
│ │ │ │ └── [2.4K] KvStateResponse.java
│ │ │ └── [4.0K] network
│ │ │ ├── [ 13K] AbstractServerBase.java
│ │ │ ├── [ 11K] AbstractServerHandler.java
│ │ │ ├── [1.3K] BadRequestException.java
│ │ │ ├── [3.4K] ChunkedByteBuf.java
│ │ │ ├── [1.7K] ClientHandlerCallback.java
│ │ │ ├── [4.4K] ClientHandler.java
│ │ │ ├── [ 20K] Client.java
│ │ │ ├── [4.0K] messages
│ │ │ │ ├── [1.4K] MessageBody.java
│ │ │ │ ├── [1.4K] MessageDeserializer.java
│ │ │ │ ├── [ 11K] MessageSerializer.java
│ │ │ │ ├── [1.4K] MessageType.java
│ │ │ │ └── [1.8K] RequestFailure.java
│ │ │ ├── [5.1K] NettyBufferPool.java
│ │ │ └── [4.0K] stats
│ │ │ ├── [2.6K] AtomicKvStateRequestStats.java
│ │ │ ├── [1.3K] DisabledKvStateRequestStats.java
│ │ │ └── [1.5K] KvStateRequestStats.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] queryablestate
│ │ │ └── [4.0K] client
│ │ │ ├── [4.0K] state
│ │ │ │ ├── [3.0K] ImmutableAggregatingStateTest.java
│ │ │ │ ├── [2.9K] ImmutableFoldingStateTest.java
│ │ │ │ ├── [3.3K] ImmutableListStateTest.java
│ │ │ │ ├── [5.4K] ImmutableMapStateTest.java
│ │ │ │ ├── [2.5K] ImmutableReducingStateTest.java
│ │ │ │ └── [2.1K] ImmutableValueStateTest.java
│ │ │ └── [1.2K] VoidNamespaceTypeInfoTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-queryable-state-runtime
│ │ ├── [3.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] queryablestate
│ │ │ ├── [4.0K] client
│ │ │ │ └── [4.0K] proxy
│ │ │ │ ├── [9.7K] KvStateClientProxyHandler.java
│ │ │ │ └── [5.1K] KvStateClientProxyImpl.java
│ │ │ ├── [4.0K] messages
│ │ │ │ └── [3.2K] KvStateInternalRequest.java
│ │ │ └── [4.0K] server
│ │ │ ├── [4.8K] KvStateServerHandler.java
│ │ │ └── [4.2K] KvStateServerImpl.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] queryablestate
│ │ │ ├── [4.0K] client
│ │ │ │ └── [4.0K] proxy
│ │ │ │ └── [3.9K] KvStateClientProxyImplTest.java
│ │ │ ├── [4.0K] itcases
│ │ │ │ ├── [ 46K] AbstractQueryableStateTestBase.java
│ │ │ │ ├── [4.7K] HAQueryableStateFsBackendITCase.java
│ │ │ │ ├── [4.7K] HAQueryableStateRocksDBBackendITCase.java
│ │ │ │ ├── [4.0K] NonHAQueryableStateFsBackendITCase.java
│ │ │ │ └── [3.9K] NonHAQueryableStateRocksDBBackendITCase.java
│ │ │ └── [4.0K] network
│ │ │ ├── [8.3K] AbstractServerTest.java
│ │ │ ├── [ 28K] ClientTest.java
│ │ │ ├── [4.0K] KvStateClientHandlerTest.java
│ │ │ ├── [3.7K] KVStateRequestSerializerRocksDBTest.java
│ │ │ ├── [ 15K] KvStateRequestSerializerTest.java
│ │ │ ├── [ 29K] KvStateServerHandlerTest.java
│ │ │ ├── [8.1K] KvStateServerTest.java
│ │ │ └── [8.4K] MessageSerializerTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ └── [1.9K] pom.xml
├── [4.0K] flink-quickstart
│ ├── [4.0K] flink-quickstart-java
│ │ ├── [1.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] archetype-resources
│ │ │ │ ├── [6.7K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ ├── [2.1K] BatchJob.java
│ │ │ │ │ └── [2.2K] StreamingJob.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [1.2K] log4j2.properties
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] maven
│ │ │ └── [1.4K] archetype-metadata.xml
│ │ └── [4.0K] test
│ │ └── [4.0K] resources
│ │ └── [4.0K] projects
│ │ └── [4.0K] testArtifact
│ │ ├── [ 898] archetype.properties
│ │ └── [ 7] goal.txt
│ ├── [4.0K] flink-quickstart-scala
│ │ ├── [1.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] archetype-resources
│ │ │ │ ├── [7.9K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] resources
│ │ │ │ │ └── [1.2K] log4j2.properties
│ │ │ │ └── [4.0K] scala
│ │ │ │ ├── [2.1K] BatchJob.scala
│ │ │ │ └── [2.1K] StreamingJob.scala
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] maven
│ │ │ └── [1.4K] archetype-metadata.xml
│ │ └── [4.0K] test
│ │ └── [4.0K] resources
│ │ └── [4.0K] projects
│ │ └── [4.0K] testArtifact
│ │ ├── [ 898] archetype.properties
│ │ └── [ 7] goal.txt
│ └── [2.8K] pom.xml
├── [4.0K] flink-runtime
│ ├── [ 17K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] runtime
│ │ │ ├── [4.0K] accumulators
│ │ │ │ ├── [2.2K] AccumulatorRegistry.java
│ │ │ │ ├── [2.4K] AccumulatorSnapshot.java
│ │ │ │ └── [3.5K] StringifiedAccumulatorResult.java
│ │ │ ├── [4.0K] akka
│ │ │ │ └── [1.3K] EscalatingSupervisorStrategy.java
│ │ │ ├── [4.0K] blob
│ │ │ │ ├── [8.0K] AbstractBlobCache.java
│ │ │ │ ├── [3.3K] BlobCacheService.java
│ │ │ │ ├── [ 13K] BlobClient.java
│ │ │ │ ├── [5.9K] BlobInputStream.java
│ │ │ │ ├── [8.9K] BlobKey.java
│ │ │ │ ├── [5.7K] BlobOutputStream.java
│ │ │ │ ├── [ 14K] BlobServerConnection.java
│ │ │ │ ├── [ 29K] BlobServer.java
│ │ │ │ ├── [2.5K] BlobServerProtocol.java
│ │ │ │ ├── [1.4K] BlobService.java
│ │ │ │ ├── [2.2K] BlobStore.java
│ │ │ │ ├── [1.1K] BlobStoreService.java
│ │ │ │ ├── [ 14K] BlobUtils.java
│ │ │ │ ├── [1.4K] BlobView.java
│ │ │ │ ├── [3.8K] BlobWriter.java
│ │ │ │ ├── [5.8K] FileSystemBlobStore.java
│ │ │ │ ├── [8.5K] PermanentBlobCache.java
│ │ │ │ ├── [1.6K] PermanentBlobKey.java
│ │ │ │ ├── [1.9K] PermanentBlobService.java
│ │ │ │ ├── [7.5K] TransientBlobCache.java
│ │ │ │ ├── [3.7K] TransientBlobCleanupTask.java
│ │ │ │ ├── [1.6K] TransientBlobKey.java
│ │ │ │ ├── [5.6K] TransientBlobService.java
│ │ │ │ ├── [1.5K] VoidBlobStore.java
│ │ │ │ └── [1.8K] VoidBlobWriter.java
│ │ │ ├── [4.0K] broadcast
│ │ │ │ ├── [2.3K] BroadcastVariableKey.java
│ │ │ │ ├── [5.0K] BroadcastVariableManager.java
│ │ │ │ ├── [7.5K] BroadcastVariableMaterialization.java
│ │ │ │ ├── [1.8K] DefaultBroadcastVariableInitializer.java
│ │ │ │ ├── [1.4K] InitializationTypeConflictException.java
│ │ │ │ └── [1.1K] MaterializationExpiredException.java
│ │ │ ├── [4.0K] checkpoint
│ │ │ │ ├── [5.2K] AbstractCheckpointStats.java
│ │ │ │ ├── [4.0K] channel
│ │ │ │ │ ├── [9.0K] ChannelStateCheckpointWriter.java
│ │ │ │ │ ├── [5.5K] ChannelStateReaderImpl.java
│ │ │ │ │ ├── [2.3K] ChannelStateReader.java
│ │ │ │ │ ├── [6.5K] ChannelStateSerializer.java
│ │ │ │ │ ├── [3.9K] ChannelStateStreamReader.java
│ │ │ │ │ ├── [3.6K] ChannelStateWriteRequestDispatcherImpl.java
│ │ │ │ │ ├── [1.2K] ChannelStateWriteRequestDispatcher.java
│ │ │ │ │ ├── [5.3K] ChannelStateWriteRequestExecutorImpl.java
│ │ │ │ │ ├── [2.0K] ChannelStateWriteRequestExecutor.java
│ │ │ │ │ ├── [7.0K] ChannelStateWriteRequest.java
│ │ │ │ │ ├── [8.0K] ChannelStateWriterImpl.java
│ │ │ │ │ ├── [7.6K] ChannelStateWriter.java
│ │ │ │ │ ├── [2.1K] InputChannelInfo.java
│ │ │ │ │ ├── [3.7K] RefCountingFSDataInputStream.java
│ │ │ │ │ └── [2.4K] ResultSubpartitionInfo.java
│ │ │ │ ├── [1.8K] CheckpointCoordinatorDeActivator.java
│ │ │ │ ├── [1.5K] CheckpointCoordinatorGateway.java
│ │ │ │ ├── [ 68K] CheckpointCoordinator.java
│ │ │ │ ├── [2.5K] CheckpointException.java
│ │ │ │ ├── [7.3K] CheckpointFailureManager.java
│ │ │ │ ├── [3.6K] CheckpointFailureReason.java
│ │ │ │ ├── [1.7K] CheckpointIDCounter.java
│ │ │ │ ├── [2.0K] CheckpointMetaData.java
│ │ │ │ ├── [4.0K] CheckpointMetrics.java
│ │ │ │ ├── [4.9K] CheckpointOptions.java
│ │ │ │ ├── [ 10K] CheckpointProperties.java
│ │ │ │ ├── [1.7K] CheckpointRecoveryFactory.java
│ │ │ │ ├── [7.8K] CheckpointRequestDecider.java
│ │ │ │ ├── [1.3K] CheckpointRetentionPolicy.java
│ │ │ │ ├── [ 12K] Checkpoints.java
│ │ │ │ ├── [5.7K] CheckpointStatsCounts.java
│ │ │ │ ├── [ 10K] CheckpointStatsHistory.java
│ │ │ │ ├── [3.0K] CheckpointStatsSnapshot.java
│ │ │ │ ├── [1.7K] CheckpointStatsStatus.java
│ │ │ │ ├── [ 14K] CheckpointStatsTracker.java
│ │ │ │ ├── [1.5K] CheckpointType.java
│ │ │ │ ├── [ 10K] CompletedCheckpoint.java
│ │ │ │ ├── [4.8K] CompletedCheckpointStats.java
│ │ │ │ ├── [2.6K] CompletedCheckpointStatsSummary.java
│ │ │ │ ├── [4.2K] CompletedCheckpointStore.java
│ │ │ │ ├── [1.5K] DefaultLastStateConnectionStateListener.java
│ │ │ │ ├── [4.5K] FailedCheckpointStats.java
│ │ │ │ ├── [4.0K] hooks
│ │ │ │ │ └── [ 12K] MasterHooks.java
│ │ │ │ ├── [1.9K] JobManagerTaskRestore.java
│ │ │ │ ├── [1.4K] LastStateConnectionStateListener.java
│ │ │ │ ├── [1.8K] MasterState.java
│ │ │ │ ├── [7.8K] MasterTriggerRestoreHook.java
│ │ │ │ ├── [4.0K] metadata
│ │ │ │ │ ├── [4.5K] ChannelStateHandleSerializer.java
│ │ │ │ │ ├── [2.2K] CheckpointMetadata.java
│ │ │ │ │ ├── [1.7K] MetadataSerializer.java
│ │ │ │ │ ├── [2.2K] MetadataSerializers.java
│ │ │ │ │ ├── [1.7K] MetadataV1Serializer.java
│ │ │ │ │ ├── [5.0K] MetadataV2Serializer.java
│ │ │ │ │ ├── [ 24K] MetadataV2V3SerializerBase.java
│ │ │ │ │ └── [9.1K] MetadataV3Serializer.java
│ │ │ │ ├── [2.7K] MinMaxAvgStats.java
│ │ │ │ ├── [1.6K] OperatorCoordinatorCheckpointContext.java
│ │ │ │ ├── [5.6K] OperatorCoordinatorCheckpoints.java
│ │ │ │ ├── [6.1K] OperatorState.java
│ │ │ │ ├── [1.8K] OperatorStateRepartitioner.java
│ │ │ │ ├── [ 11K] OperatorSubtaskState.java
│ │ │ │ ├── [ 19K] PendingCheckpoint.java
│ │ │ │ ├── [5.8K] PendingCheckpointStats.java
│ │ │ │ ├── [ 13K] PrioritizedOperatorSubtaskState.java
│ │ │ │ ├── [2.8K] RestoredCheckpointStats.java
│ │ │ │ ├── [ 15K] RoundRobinOperatorStateRepartitioner.java
│ │ │ │ ├── [1.8K] StandaloneCheckpointIDCounter.java
│ │ │ │ ├── [1.5K] StandaloneCheckpointRecoveryFactory.java
│ │ │ │ ├── [3.4K] StandaloneCompletedCheckpointStore.java
│ │ │ │ ├── [ 25K] StateAssignmentOperation.java
│ │ │ │ ├── [5.6K] StateObjectCollection.java
│ │ │ │ ├── [6.2K] SubtaskState.java
│ │ │ │ ├── [4.2K] SubtaskStateStats.java
│ │ │ │ ├── [5.3K] TaskState.java
│ │ │ │ ├── [5.2K] TaskStateSnapshot.java
│ │ │ │ ├── [6.0K] TaskStateStats.java
│ │ │ │ ├── [5.2K] ZooKeeperCheckpointIDCounter.java
│ │ │ │ ├── [2.3K] ZooKeeperCheckpointRecoveryFactory.java
│ │ │ │ └── [ 13K] ZooKeeperCompletedCheckpointStore.java
│ │ │ ├── [4.0K] client
│ │ │ │ ├── [6.0K] ClientUtils.java
│ │ │ │ ├── [1.2K] DuplicateJobSubmissionException.java
│ │ │ │ ├── [1.2K] JobCancellationException.java
│ │ │ │ ├── [1.7K] JobExecutionException.java
│ │ │ │ ├── [1.6K] JobStatusMessage.java
│ │ │ │ ├── [1.3K] JobSubmissionException.java
│ │ │ │ └── [3.1K] SerializedJobExecutionResult.java
│ │ │ ├── [4.0K] clusterframework
│ │ │ │ ├── [2.1K] ApplicationStatus.java
│ │ │ │ ├── [ 24K] BootstrapTools.java
│ │ │ │ ├── [3.3K] ContaineredTaskManagerParameters.java
│ │ │ │ ├── [6.0K] ContainerSpecification.java
│ │ │ │ ├── [4.0K] overlays
│ │ │ │ │ ├── [2.5K] AbstractContainerOverlay.java
│ │ │ │ │ ├── [1.6K] CompositeContainerOverlay.java
│ │ │ │ │ ├── [1.3K] ContainerOverlay.java
│ │ │ │ │ ├── [4.4K] FlinkDistributionOverlay.java
│ │ │ │ │ ├── [4.5K] HadoopConfOverlay.java
│ │ │ │ │ ├── [2.6K] HadoopUserOverlay.java
│ │ │ │ │ ├── [3.1K] KeytabOverlay.java
│ │ │ │ │ ├── [3.4K] Krb5ConfOverlay.java
│ │ │ │ │ ├── [4.0K] SSLStoreOverlay.java
│ │ │ │ │ └── [2.1K] UserLibOverlay.java
│ │ │ │ ├── [1.2K] package-info.java
│ │ │ │ ├── [2.2K] TaskExecutorProcessSpecBuilder.java
│ │ │ │ ├── [7.0K] TaskExecutorProcessSpec.java
│ │ │ │ ├── [8.2K] TaskExecutorProcessUtils.java
│ │ │ │ └── [4.0K] types
│ │ │ │ ├── [2.0K] AllocationID.java
│ │ │ │ ├── [2.5K] ResourceBudgetManager.java
│ │ │ │ ├── [2.2K] ResourceID.java
│ │ │ │ ├── [1.0K] ResourceIDRetrievable.java
│ │ │ │ ├── [ 18K] ResourceProfile.java
│ │ │ │ ├── [2.9K] SlotID.java
│ │ │ │ └── [6.3K] SlotProfile.java
│ │ │ ├── [4.0K] concurrent
│ │ │ │ ├── [4.0K] akka
│ │ │ │ │ └── [5.6K] ActorSystemScheduledExecutorAdapter.java
│ │ │ │ ├── [2.6K] ComponentMainThreadExecutor.java
│ │ │ │ ├── [6.0K] DirectExecutorService.java
│ │ │ │ ├── [2.4K] Executors.java
│ │ │ │ ├── [1.4K] FutureTaskWithException.java
│ │ │ │ ├── [ 39K] FutureUtils.java
│ │ │ │ ├── [3.8K] ScheduledExecutor.java
│ │ │ │ ├── [2.4K] ScheduledExecutorServiceAdapter.java
│ │ │ │ ├── [4.1K] ScheduledFutureAdapter.java
│ │ │ │ └── [1.3K] UnsupportedOperationExecutor.java
│ │ │ ├── [4.0K] deployment
│ │ │ │ ├── [3.6K] InputGateDeploymentDescriptor.java
│ │ │ │ ├── [3.4K] ResultPartitionDeploymentDescriptor.java
│ │ │ │ ├── [ 10K] TaskDeploymentDescriptorFactory.java
│ │ │ │ └── [ 11K] TaskDeploymentDescriptor.java
│ │ │ ├── [4.0K] dispatcher
│ │ │ │ ├── [1.7K] AbstractDispatcherBootstrap.java
│ │ │ │ ├── [2.7K] ArchivedExecutionGraphStore.java
│ │ │ │ ├── [1.8K] DefaultDispatcherBootstrap.java
│ │ │ │ ├── [3.8K] DefaultJobManagerRunnerFactory.java
│ │ │ │ ├── [1.6K] DispatcherBootstrap.java
│ │ │ │ ├── [1.3K] DispatcherException.java
│ │ │ │ ├── [1.2K] DispatcherFactory.java
│ │ │ │ ├── [3.1K] DispatcherGateway.java
│ │ │ │ ├── [1.6K] DispatcherId.java
│ │ │ │ ├── [ 34K] Dispatcher.java
│ │ │ │ ├── [5.7K] DispatcherRestEndpoint.java
│ │ │ │ ├── [5.9K] DispatcherServices.java
│ │ │ │ ├── [ 10K] FileArchivedExecutionGraphStore.java
│ │ │ │ ├── [2.2K] HistoryServerArchivist.java
│ │ │ │ ├── [2.0K] JobDispatcherFactory.java
│ │ │ │ ├── [1.1K] JobManagerMetricGroupFactory.java
│ │ │ │ ├── [1.9K] JobManagerRunnerFactory.java
│ │ │ │ ├── [2.3K] JsonResponseHistoryServerArchivist.java
│ │ │ │ ├── [2.9K] MemoryArchivedExecutionGraphStore.java
│ │ │ │ ├── [4.7K] MiniDispatcher.java
│ │ │ │ ├── [4.4K] PartialDispatcherServices.java
│ │ │ │ ├── [3.4K] PartialDispatcherServicesWithJobGraphStore.java
│ │ │ │ ├── [4.0K] runner
│ │ │ │ │ ├── [7.2K] AbstractDispatcherLeaderProcess.java
│ │ │ │ │ ├── [2.9K] DefaultDispatcherGatewayServiceFactory.java
│ │ │ │ │ ├── [2.2K] DefaultDispatcherGatewayService.java
│ │ │ │ │ ├── [2.9K] DefaultDispatcherRunnerFactory.java
│ │ │ │ │ ├── [6.7K] DefaultDispatcherRunner.java
│ │ │ │ │ ├── [1.5K] DispatcherLeaderProcessFactoryFactory.java
│ │ │ │ │ ├── [1.0K] DispatcherLeaderProcessFactory.java
│ │ │ │ │ ├── [1.5K] DispatcherLeaderProcess.java
│ │ │ │ │ ├── [1.6K] DispatcherRunnerFactory.java
│ │ │ │ │ ├── [1.5K] DispatcherRunner.java
│ │ │ │ │ ├── [2.6K] DispatcherRunnerLeaderElectionLifecycleManager.java
│ │ │ │ │ ├── [2.7K] JobDispatcherLeaderProcessFactoryFactory.java
│ │ │ │ │ ├── [1.9K] JobDispatcherLeaderProcessFactory.java
│ │ │ │ │ ├── [2.0K] JobDispatcherLeaderProcess.java
│ │ │ │ │ ├── [2.3K] SessionDispatcherLeaderProcessFactoryFactory.java
│ │ │ │ │ ├── [2.2K] SessionDispatcherLeaderProcessFactory.java
│ │ │ │ │ ├── [8.6K] SessionDispatcherLeaderProcess.java
│ │ │ │ │ └── [2.2K] StoppedDispatcherLeaderProcess.java
│ │ │ │ ├── [1.7K] SchedulerNGFactoryFactory.java
│ │ │ │ ├── [1.5K] SessionDispatcherFactory.java
│ │ │ │ ├── [2.3K] SingleJobJobGraphStore.java
│ │ │ │ ├── [1.5K] StandaloneDispatcher.java
│ │ │ │ └── [1.3K] VoidHistoryServerArchivist.java
│ │ │ ├── [4.0K] entrypoint
│ │ │ │ ├── [1.6K] ClusterConfiguration.java
│ │ │ │ ├── [2.1K] ClusterConfigurationParserFactory.java
│ │ │ │ ├── [1.3K] ClusterEntrypointException.java
│ │ │ │ ├── [3.4K] ClusterEntryPointExceptionUtils.java
│ │ │ │ ├── [ 20K] ClusterEntrypoint.java
│ │ │ │ ├── [1.9K] ClusterInformation.java
│ │ │ │ ├── [4.0K] component
│ │ │ │ │ ├── [2.2K] AbstractUserClassPathJobGraphRetriever.java
│ │ │ │ │ ├── [ 11K] DefaultDispatcherResourceManagerComponentFactory.java
│ │ │ │ │ ├── [2.0K] DispatcherResourceManagerComponentFactory.java
│ │ │ │ │ ├── [6.0K] DispatcherResourceManagerComponent.java
│ │ │ │ │ ├── [3.1K] FileJobGraphRetriever.java
│ │ │ │ │ └── [1.4K] JobGraphRetriever.java
│ │ │ │ ├── [1.5K] EntrypointClusterConfiguration.java
│ │ │ │ ├── [2.6K] EntrypointClusterConfigurationParserFactory.java
│ │ │ │ ├── [1.3K] FlinkParseException.java
│ │ │ │ ├── [1.5K] JobClusterEntrypoint.java
│ │ │ │ ├── [4.0K] parser
│ │ │ │ │ ├── [2.2K] CommandLineOptions.java
│ │ │ │ │ ├── [2.2K] CommandLineParser.java
│ │ │ │ │ └── [1.7K] ParserResultFactory.java
│ │ │ │ ├── [2.3K] SessionClusterEntrypoint.java
│ │ │ │ └── [2.8K] StandaloneSessionClusterEntrypoint.java
│ │ │ ├── [4.0K] event
│ │ │ │ ├── [1.2K] AbstractEvent.java
│ │ │ │ ├── [1000] RuntimeEvent.java
│ │ │ │ └── [1021] TaskEvent.java
│ │ │ ├── [4.0K] execution
│ │ │ │ ├── [1.2K] CancelTaskException.java
│ │ │ │ ├── [7.9K] Environment.java
│ │ │ │ ├── [2.5K] ExecutionState.java
│ │ │ │ ├── [4.0K] librarycache
│ │ │ │ │ ├── [ 13K] BlobLibraryCacheManager.java
│ │ │ │ │ ├── [3.0K] FlinkUserCodeClassLoaders.java
│ │ │ │ │ └── [3.9K] LibraryCacheManager.java
│ │ │ │ └── [1.6K] SuppressRestartsException.java
│ │ │ ├── [4.0K] executiongraph
│ │ │ │ ├── [5.3K] AccessExecutionGraph.java
│ │ │ │ ├── [2.7K] AccessExecution.java
│ │ │ │ ├── [2.5K] AccessExecutionJobVertex.java
│ │ │ │ ├── [2.7K] AccessExecutionVertex.java
│ │ │ │ ├── [1.8K] AllVerticesIterator.java
│ │ │ │ ├── [ 11K] ArchivedExecutionGraph.java
│ │ │ │ ├── [4.3K] ArchivedExecution.java
│ │ │ │ ├── [4.1K] ArchivedExecutionJobVertex.java
│ │ │ │ ├── [3.5K] ArchivedExecutionVertex.java
│ │ │ │ ├── [2.2K] ErrorInfo.java
│ │ │ │ ├── [1.6K] ExecutionAttemptID.java
│ │ │ │ ├── [1.4K] ExecutionEdge.java
│ │ │ │ ├── [ 14K] ExecutionGraphBuilder.java
│ │ │ │ ├── [1.3K] ExecutionGraphException.java
│ │ │ │ ├── [ 61K] ExecutionGraph.java
│ │ │ │ ├── [2.3K] ExecutionGraphResultPartitionAvailabilityChecker.java
│ │ │ │ ├── [ 64K] Execution.java
│ │ │ │ ├── [ 20K] ExecutionJobVertex.java
│ │ │ │ ├── [ 30K] ExecutionVertex.java
│ │ │ │ ├── [4.0K] failover
│ │ │ │ │ ├── [3.3K] FailoverStrategy.java
│ │ │ │ │ ├── [2.4K] FailoverStrategyLoader.java
│ │ │ │ │ ├── [4.0K] flip1
│ │ │ │ │ │ ├── [4.9K] ExecutionFailureHandler.java
│ │ │ │ │ │ ├── [2.3K] FailoverStrategyFactoryLoader.java
│ │ │ │ │ │ ├── [2.1K] FailoverStrategy.java
│ │ │ │ │ │ ├── [5.2K] FailureHandlingResult.java
│ │ │ │ │ │ ├── [4.9K] FailureRateRestartBackoffTimeStrategy.java
│ │ │ │ │ │ ├── [3.6K] FixedDelayRestartBackoffTimeStrategy.java
│ │ │ │ │ │ ├── [1.7K] NoRestartBackoffTimeStrategy.java
│ │ │ │ │ │ ├── [4.0K] partitionrelease
│ │ │ │ │ │ │ ├── [1.9K] NotReleasingPartitionReleaseStrategy.java
│ │ │ │ │ │ │ ├── [1.6K] PartitionReleaseStrategyFactoryLoader.java
│ │ │ │ │ │ │ ├── [2.1K] PartitionReleaseStrategy.java
│ │ │ │ │ │ │ ├── [2.5K] PipelinedRegionExecutionView.java
│ │ │ │ │ │ │ └── [5.1K] RegionPartitionReleaseStrategy.java
│ │ │ │ │ │ ├── [4.3K] PipelinedRegionComputeUtil.java
│ │ │ │ │ │ ├── [2.3K] RestartAllFailoverStrategy.java
│ │ │ │ │ │ ├── [6.6K] RestartBackoffTimeStrategyFactoryLoader.java
│ │ │ │ │ │ ├── [1.8K] RestartBackoffTimeStrategy.java
│ │ │ │ │ │ ├── [ 11K] RestartPipelinedRegionFailoverStrategy.java
│ │ │ │ │ │ └── [1.3K] ResultPartitionAvailabilityChecker.java
│ │ │ │ │ ├── [1.6K] NoOpFailoverStrategy.java
│ │ │ │ │ └── [2.6K] RestartAllStrategy.java
│ │ │ │ ├── [1.6K] GlobalModVersionMismatch.java
│ │ │ │ ├── [2.0K] IllegalExecutionStateException.java
│ │ │ │ ├── [5.8K] IntermediateResult.java
│ │ │ │ ├── [3.8K] IntermediateResultPartition.java
│ │ │ │ ├── [2.0K] IOMetrics.java
│ │ │ │ ├── [3.3K] JobInformation.java
│ │ │ │ ├── [1.5K] JobStatusListener.java
│ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ ├── [2.6K] DownTimeGauge.java
│ │ │ │ │ ├── [1.0K] package-info.java
│ │ │ │ │ ├── [3.0K] RestartTimeGauge.java
│ │ │ │ │ └── [2.2K] UpTimeGauge.java
│ │ │ │ ├── [1.8K] PartitionInfo.java
│ │ │ │ ├── [4.0K] restart
│ │ │ │ │ ├── [2.2K] ExecutionGraphRestartCallback.java
│ │ │ │ │ ├── [4.8K] FailureRateRestartStrategy.java
│ │ │ │ │ ├── [4.2K] FixedDelayRestartStrategy.java
│ │ │ │ │ ├── [1.7K] NoOrFixedIfCheckpointingEnabledRestartStrategyFactory.java
│ │ │ │ │ ├── [2.1K] NoRestartStrategy.java
│ │ │ │ │ ├── [1.2K] RestartCallback.java
│ │ │ │ │ ├── [5.4K] RestartStrategyFactory.java
│ │ │ │ │ ├── [1.9K] RestartStrategy.java
│ │ │ │ │ ├── [2.6K] RestartStrategyResolving.java
│ │ │ │ │ └── [1.7K] ThrowingRestartStrategy.java
│ │ │ │ ├── [9.1K] SchedulingUtils.java
│ │ │ │ ├── [4.1K] SlotProviderStrategy.java
│ │ │ │ └── [2.8K] TaskInformation.java
│ │ │ ├── [4.0K] externalresource
│ │ │ │ ├── [1.5K] ExternalResourceInfoProvider.java
│ │ │ │ ├── [9.2K] ExternalResourceUtils.java
│ │ │ │ └── [1.9K] StaticExternalResourceInfoProvider.java
│ │ │ ├── [4.0K] filecache
│ │ │ │ └── [ 11K] FileCache.java
│ │ │ ├── [4.0K] heartbeat
│ │ │ │ ├── [2.2K] HeartbeatListener.java
│ │ │ │ ├── [7.3K] HeartbeatManagerImpl.java
│ │ │ │ ├── [2.2K] HeartbeatManager.java
│ │ │ │ ├── [2.9K] HeartbeatManagerSenderImpl.java
│ │ │ │ ├── [4.6K] HeartbeatMonitorImpl.java
│ │ │ │ ├── [2.6K] HeartbeatMonitor.java
│ │ │ │ ├── [4.4K] HeartbeatServices.java
│ │ │ │ ├── [2.2K] HeartbeatTarget.java
│ │ │ │ └── [1.8K] NoOpHeartbeatManager.java
│ │ │ ├── [4.0K] highavailability
│ │ │ │ ├── [1.4K] ClientHighAvailabilityServices.java
│ │ │ │ ├── [1.9K] HighAvailabilityServicesFactory.java
│ │ │ │ ├── [9.4K] HighAvailabilityServices.java
│ │ │ │ ├── [ 11K] HighAvailabilityServicesUtils.java
│ │ │ │ ├── [4.0K] nonha
│ │ │ │ │ ├── [3.7K] AbstractNonHaServices.java
│ │ │ │ │ ├── [4.0K] embedded
│ │ │ │ │ │ ├── [5.9K] EmbeddedHaServices.java
│ │ │ │ │ │ └── [ 17K] EmbeddedLeaderService.java
│ │ │ │ │ └── [4.0K] standalone
│ │ │ │ │ ├── [2.1K] StandaloneClientHAServices.java
│ │ │ │ │ ├── [4.9K] StandaloneHaServices.java
│ │ │ │ │ └── [2.0K] StandaloneRunningJobsRegistry.java
│ │ │ │ ├── [3.6K] RunningJobsRegistry.java
│ │ │ │ └── [4.0K] zookeeper
│ │ │ │ ├── [2.0K] ZooKeeperClientHAServices.java
│ │ │ │ ├── [ 11K] ZooKeeperHaServices.java
│ │ │ │ └── [4.4K] ZooKeeperRunningJobsRegistry.java
│ │ │ ├── [4.0K] history
│ │ │ │ └── [4.8K] FsJobArchivist.java
│ │ │ ├── [4.0K] instance
│ │ │ │ ├── [5.5K] HardwareDescription.java
│ │ │ │ ├── [1.1K] InstanceID.java
│ │ │ │ └── [1.1K] SlotSharingGroupId.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [4.2K] AvailabilityProvider.java
│ │ │ │ ├── [4.0K] compression
│ │ │ │ │ ├── [3.0K] BlockCompressionFactory.java
│ │ │ │ │ ├── [2.4K] BlockCompressor.java
│ │ │ │ │ ├── [2.5K] BlockDecompressor.java
│ │ │ │ │ ├── [1.3K] DataCorruptionException.java
│ │ │ │ │ ├── [1.4K] InsufficientBufferException.java
│ │ │ │ │ ├── [1.4K] Lz4BlockCompressionFactory.java
│ │ │ │ │ ├── [3.3K] Lz4BlockCompressor.java
│ │ │ │ │ └── [4.1K] Lz4BlockDecompressor.java
│ │ │ │ ├── [4.0K] disk
│ │ │ │ │ ├── [3.8K] ChannelReaderInputViewIterator.java
│ │ │ │ │ ├── [3.0K] FileBasedBufferIterator.java
│ │ │ │ │ ├── [4.2K] FileChannelInputView.java
│ │ │ │ │ ├── [5.3K] FileChannelManagerImpl.java
│ │ │ │ │ ├── [1.5K] FileChannelManager.java
│ │ │ │ │ ├── [4.4K] FileChannelOutputView.java
│ │ │ │ │ ├── [1.7K] InputViewIterator.java
│ │ │ │ │ ├── [4.0K] iomanager
│ │ │ │ │ │ ├── [1.9K] AbstractChannelReaderInputView.java
│ │ │ │ │ │ ├── [1.9K] AbstractChannelWriterOutputView.java
│ │ │ │ │ │ ├── [3.3K] AbstractFileIOChannel.java
│ │ │ │ │ │ ├── [5.3K] AsynchronousBlockReader.java
│ │ │ │ │ │ ├── [3.3K] AsynchronousBlockWriter.java
│ │ │ │ │ │ ├── [2.4K] AsynchronousBlockWriterWithCallback.java
│ │ │ │ │ │ ├── [1.7K] AsynchronousBufferFileReader.java
│ │ │ │ │ │ ├── [1.7K] AsynchronousBufferFileSegmentReader.java
│ │ │ │ │ │ ├── [2.6K] AsynchronousBufferFileWriter.java
│ │ │ │ │ │ ├── [3.1K] AsynchronousBulkBlockReader.java
│ │ │ │ │ │ ├── [ 16K] AsynchronousFileIOChannel.java
│ │ │ │ │ │ ├── [2.6K] BlockChannelReader.java
│ │ │ │ │ │ ├── [2.2K] BlockChannelWriter.java
│ │ │ │ │ │ ├── [1.3K] BlockChannelWriterWithCallback.java
│ │ │ │ │ │ ├── [2.4K] BufferFileChannelReader.java
│ │ │ │ │ │ ├── [1.1K] BufferFileReader.java
│ │ │ │ │ │ ├── [1.0K] BufferFileSegmentReader.java
│ │ │ │ │ │ ├── [1.4K] BufferFileWriter.java
│ │ │ │ │ │ ├── [1.0K] BulkBlockChannelReader.java
│ │ │ │ │ │ ├── [ 11K] ChannelReaderInputView.java
│ │ │ │ │ │ ├── [7.6K] ChannelWriterOutputView.java
│ │ │ │ │ │ ├── [4.9K] FileIOChannel.java
│ │ │ │ │ │ ├── [1.5K] FileSegment.java
│ │ │ │ │ │ ├── [4.8K] HeaderlessChannelReaderInputView.java
│ │ │ │ │ │ ├── [ 17K] IOManagerAsync.java
│ │ │ │ │ │ ├── [8.8K] IOManager.java
│ │ │ │ │ │ ├── [1.9K] IORequest.java
│ │ │ │ │ │ ├── [1.4K] QueuingCallback.java
│ │ │ │ │ │ ├── [1.2K] RequestDoneCallback.java
│ │ │ │ │ │ ├── [1.5K] RequestQueue.java
│ │ │ │ │ │ ├── [2.0K] SynchronousBufferFileReader.java
│ │ │ │ │ │ └── [1.4K] SynchronousFileIOChannel.java
│ │ │ │ │ ├── [2.9K] RandomAccessInputView.java
│ │ │ │ │ ├── [2.4K] RandomAccessOutputView.java
│ │ │ │ │ ├── [5.4K] SeekableFileChannelInputView.java
│ │ │ │ │ ├── [2.7K] SimpleCollectingOutputView.java
│ │ │ │ │ └── [6.3K] SpillingBuffer.java
│ │ │ │ ├── [4.0K] network
│ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ ├── [2.5K] CancelCheckpointMarker.java
│ │ │ │ │ │ ├── [4.0K] CheckpointBarrier.java
│ │ │ │ │ │ ├── [1.9K] EndOfPartitionEvent.java
│ │ │ │ │ │ ├── [1.9K] EndOfSuperstepEvent.java
│ │ │ │ │ │ ├── [4.0K] reader
│ │ │ │ │ │ │ ├── [5.2K] AbstractReader.java
│ │ │ │ │ │ │ ├── [5.2K] AbstractRecordReader.java
│ │ │ │ │ │ │ ├── [1.2K] MutableReader.java
│ │ │ │ │ │ │ ├── [1.9K] MutableRecordReader.java
│ │ │ │ │ │ │ ├── [1.7K] ReaderBase.java
│ │ │ │ │ │ │ ├── [1.2K] Reader.java
│ │ │ │ │ │ │ └── [2.6K] RecordReader.java
│ │ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ │ ├── [ 12K] EventSerializer.java
│ │ │ │ │ │ │ ├── [9.8K] NonSpanningWrapper.java
│ │ │ │ │ │ │ ├── [2.3K] RecordDeserializer.java
│ │ │ │ │ │ │ ├── [3.1K] RecordSerializer.java
│ │ │ │ │ │ │ ├── [3.9K] SpanningRecordSerializer.java
│ │ │ │ │ │ │ ├── [ 11K] SpanningWrapper.java
│ │ │ │ │ │ │ └── [4.6K] SpillingAdaptiveSpanningRecordDeserializer.java
│ │ │ │ │ │ ├── [1.9K] TaskEventHandler.java
│ │ │ │ │ │ └── [4.0K] writer
│ │ │ │ │ │ ├── [5.8K] BroadcastRecordWriter.java
│ │ │ │ │ │ ├── [2.1K] ChannelSelector.java
│ │ │ │ │ │ ├── [4.4K] ChannelSelectorRecordWriter.java
│ │ │ │ │ │ ├── [2.9K] MultipleRecordWriters.java
│ │ │ │ │ │ ├── [1.7K] NonRecordWriter.java
│ │ │ │ │ │ ├── [1.8K] RecordWriterBuilder.java
│ │ │ │ │ │ ├── [1.8K] RecordWriterDelegate.java
│ │ │ │ │ │ ├── [ 11K] RecordWriter.java
│ │ │ │ │ │ ├── [5.1K] ResultPartitionWriter.java
│ │ │ │ │ │ ├── [1.8K] RoundRobinChannelSelector.java
│ │ │ │ │ │ └── [2.0K] SingleRecordWriter.java
│ │ │ │ │ ├── [4.0K] buffer
│ │ │ │ │ │ ├── [6.4K] BufferBuilder.java
│ │ │ │ │ │ ├── [4.7K] BufferCompressor.java
│ │ │ │ │ │ ├── [6.9K] BufferConsumer.java
│ │ │ │ │ │ ├── [4.4K] BufferDecompressor.java
│ │ │ │ │ │ ├── [9.0K] Buffer.java
│ │ │ │ │ │ ├── [2.8K] BufferListener.java
│ │ │ │ │ │ ├── [2.4K] BufferPoolFactory.java
│ │ │ │ │ │ ├── [2.2K] BufferPool.java
│ │ │ │ │ │ ├── [1.0K] BufferPoolOwner.java
│ │ │ │ │ │ ├── [3.3K] BufferProvider.java
│ │ │ │ │ │ ├── [1.9K] BufferReceivedListener.java
│ │ │ │ │ │ ├── [1.2K] BufferRecycler.java
│ │ │ │ │ │ ├── [1.4K] FreeingBufferRecycler.java
│ │ │ │ │ │ ├── [ 18K] LocalBufferPool.java
│ │ │ │ │ │ ├── [ 16K] NetworkBuffer.java
│ │ │ │ │ │ ├── [ 17K] NetworkBufferPool.java
│ │ │ │ │ │ └── [6.3K] ReadOnlySlicedNetworkBuffer.java
│ │ │ │ │ ├── [2.7K] ConnectionID.java
│ │ │ │ │ ├── [1.7K] ConnectionManager.java
│ │ │ │ │ ├── [4.9K] DataExchangeMode.java
│ │ │ │ │ ├── [1.4K] LocalConnectionManager.java
│ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ ├── [1.8K] AbstractBuffersUsageGauge.java
│ │ │ │ │ │ ├── [2.1K] CreditBasedInputBuffersUsageGauge.java
│ │ │ │ │ │ ├── [2.1K] ExclusiveBuffersUsageGauge.java
│ │ │ │ │ │ ├── [2.3K] FloatingBuffersUsageGauge.java
│ │ │ │ │ │ ├── [1.4K] InputBuffersGauge.java
│ │ │ │ │ │ ├── [3.6K] InputChannelMetrics.java
│ │ │ │ │ │ ├── [5.5K] InputGateMetrics.java
│ │ │ │ │ │ ├── [7.4K] NettyShuffleMetricFactory.java
│ │ │ │ │ │ ├── [1.8K] OutputBufferPoolUsageGauge.java
│ │ │ │ │ │ ├── [1.5K] OutputBuffersGauge.java
│ │ │ │ │ │ └── [5.0K] ResultPartitionMetrics.java
│ │ │ │ │ ├── [4.0K] netty
│ │ │ │ │ │ ├── [3.7K] BufferResponseDecoder.java
│ │ │ │ │ │ ├── [2.3K] ByteBufUtils.java
│ │ │ │ │ │ ├── [ 14K] CreditBasedPartitionRequestClientHandler.java
│ │ │ │ │ │ ├── [6.4K] CreditBasedSequenceNumberingViewReader.java
│ │ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ │ ├── [1.2K] LocalTransportException.java
│ │ │ │ │ │ │ ├── [1.2K] RemoteTransportException.java
│ │ │ │ │ │ │ └── [1.4K] TransportException.java
│ │ │ │ │ │ ├── [8.3K] NettyBufferPool.java
│ │ │ │ │ │ ├── [7.2K] NettyClient.java
│ │ │ │ │ │ ├── [5.5K] NettyConfig.java
│ │ │ │ │ │ ├── [2.9K] NettyConnectionManager.java
│ │ │ │ │ │ ├── [5.8K] NettyMessageClientDecoderDelegate.java
│ │ │ │ │ │ ├── [2.6K] NettyMessageDecoder.java
│ │ │ │ │ │ ├── [ 23K] NettyMessage.java
│ │ │ │ │ │ ├── [7.3K] NettyPartitionRequestClient.java
│ │ │ │ │ │ ├── [6.1K] NettyProtocol.java
│ │ │ │ │ │ ├── [7.8K] NettyServer.java
│ │ │ │ │ │ ├── [2.8K] NetworkBufferAllocator.java
│ │ │ │ │ │ ├── [2.7K] NonBufferResponseDecoder.java
│ │ │ │ │ │ ├── [7.4K] PartitionRequestClientFactory.java
│ │ │ │ │ │ ├── [ 11K] PartitionRequestQueue.java
│ │ │ │ │ │ ├── [5.4K] PartitionRequestServerHandler.java
│ │ │ │ │ │ └── [2.9K] SSLHandlerFactory.java
│ │ │ │ │ ├── [ 13K] NettyShuffleEnvironment.java
│ │ │ │ │ ├── [5.8K] NettyShuffleServiceFactory.java
│ │ │ │ │ ├── [2.1K] NetworkClientHandler.java
│ │ │ │ │ ├── [2.4K] NetworkSequenceViewReader.java
│ │ │ │ │ ├── [4.0K] partition
│ │ │ │ │ │ ├── [3.8K] AbstractPartitionTracker.java
│ │ │ │ │ │ ├── [9.9K] BoundedBlockingSubpartition.java
│ │ │ │ │ │ ├── [5.4K] BoundedBlockingSubpartitionReader.java
│ │ │ │ │ │ ├── [3.4K] BoundedBlockingSubpartitionType.java
│ │ │ │ │ │ ├── [3.1K] BoundedData.java
│ │ │ │ │ │ ├── [1.5K] BufferAvailabilityListener.java
│ │ │ │ │ │ ├── [8.0K] BufferReaderWriterUtil.java
│ │ │ │ │ │ ├── [1.6K] ClusterPartitionManager.java
│ │ │ │ │ │ ├── [4.0K] consumer
│ │ │ │ │ │ │ ├── [ 14K] BufferManager.java
│ │ │ │ │ │ │ ├── [3.2K] BufferOrEvent.java
│ │ │ │ │ │ │ ├── [2.0K] EndOfChannelStateEvent.java
│ │ │ │ │ │ │ ├── [1.1K] IndexedInputGate.java
│ │ │ │ │ │ │ ├── [1.5K] InputChannelID.java
│ │ │ │ │ │ │ ├── [ 11K] InputChannel.java
│ │ │ │ │ │ │ ├── [2.8K] InputGateID.java
│ │ │ │ │ │ │ ├── [7.0K] InputGate.java
│ │ │ │ │ │ │ ├── [ 11K] LocalInputChannel.java
│ │ │ │ │ │ │ ├── [2.4K] LocalRecoveredInputChannel.java
│ │ │ │ │ │ │ ├── [1.4K] PartitionConnectionException.java
│ │ │ │ │ │ │ ├── [6.5K] RecoveredInputChannel.java
│ │ │ │ │ │ │ ├── [5.4K] RemoteChannelStateChecker.java
│ │ │ │ │ │ │ ├── [ 17K] RemoteInputChannel.java
│ │ │ │ │ │ │ ├── [2.8K] RemoteRecoveredInputChannel.java
│ │ │ │ │ │ │ ├── [9.0K] SingleInputGateFactory.java
│ │ │ │ │ │ │ ├── [ 27K] SingleInputGate.java
│ │ │ │ │ │ │ ├── [ 11K] UnionInputGate.java
│ │ │ │ │ │ │ └── [4.5K] UnknownInputChannel.java
│ │ │ │ │ │ ├── [2.0K] DataSetMetaInfo.java
│ │ │ │ │ │ ├── [4.9K] FileChannelBoundedData.java
│ │ │ │ │ │ ├── [7.3K] FileChannelMemoryMappedBoundedData.java
│ │ │ │ │ │ ├── [8.1K] JobMasterPartitionTrackerImpl.java
│ │ │ │ │ │ ├── [2.3K] JobMasterPartitionTracker.java
│ │ │ │ │ │ ├── [9.3K] MemoryMappedBoundedData.java
│ │ │ │ │ │ ├── [1.6K] NoOpResultSubpartitionView.java
│ │ │ │ │ │ ├── [3.6K] PageSizeUtil.java
│ │ │ │ │ │ ├── [1.6K] PartitionException.java
│ │ │ │ │ │ ├── [1.2K] PartitionNotFoundException.java
│ │ │ │ │ │ ├── [2.1K] PartitionProducerStateProvider.java
│ │ │ │ │ │ ├── [1.4K] PartitionTrackerEntry.java
│ │ │ │ │ │ ├── [1.8K] PartitionTrackerFactory.java
│ │ │ │ │ │ ├── [1.8K] PartitionTracker.java
│ │ │ │ │ │ ├── [ 15K] PipelinedSubpartition.java
│ │ │ │ │ │ ├── [3.1K] PipelinedSubpartitionView.java
│ │ │ │ │ │ ├── [1.6K] ProducerFailedException.java
│ │ │ │ │ │ ├── [3.8K] ReleaseOnConsumptionResultPartition.java
│ │ │ │ │ │ ├── [1.1K] ResourceManagerPartitionTrackerFactory.java
│ │ │ │ │ │ ├── [ 11K] ResourceManagerPartitionTrackerImpl.java
│ │ │ │ │ │ ├── [2.7K] ResourceManagerPartitionTracker.java
│ │ │ │ │ │ ├── [1.2K] ResultPartitionConsumableNotifier.java
│ │ │ │ │ │ ├── [8.6K] ResultPartitionFactory.java
│ │ │ │ │ │ ├── [2.7K] ResultPartitionID.java
│ │ │ │ │ │ ├── [ 12K] ResultPartition.java
│ │ │ │ │ │ ├── [4.1K] ResultPartitionManager.java
│ │ │ │ │ │ ├── [1.2K] ResultPartitionProvider.java
│ │ │ │ │ │ ├── [4.3K] ResultPartitionType.java
│ │ │ │ │ │ ├── [6.4K] ResultSubpartition.java
│ │ │ │ │ │ ├── [2.0K] ResultSubpartitionView.java
│ │ │ │ │ │ ├── [1.2K] TaskExecutorClusterPartitionReleaser.java
│ │ │ │ │ │ ├── [2.9K] TaskExecutorPartitionInfo.java
│ │ │ │ │ │ ├── [5.2K] TaskExecutorPartitionTrackerImpl.java
│ │ │ │ │ │ └── [2.5K] TaskExecutorPartitionTracker.java
│ │ │ │ │ ├── [2.9K] PartitionRequestClient.java
│ │ │ │ │ ├── [5.0K] TaskEventDispatcher.java
│ │ │ │ │ └── [1.5K] TaskEventPublisher.java
│ │ │ │ └── [2.2K] PullingAsyncDataInput.java
│ │ │ ├── [4.0K] iterative
│ │ │ │ ├── [4.0K] concurrent
│ │ │ │ │ ├── [1.3K] BlockingBackChannelBroker.java
│ │ │ │ │ ├── [2.3K] BlockingBackChannel.java
│ │ │ │ │ ├── [2.7K] Broker.java
│ │ │ │ │ ├── [1.3K] IterationAggregatorBroker.java
│ │ │ │ │ ├── [1.2K] SolutionSetBroker.java
│ │ │ │ │ ├── [1.5K] SolutionSetUpdateBarrierBroker.java
│ │ │ │ │ ├── [1.6K] SolutionSetUpdateBarrier.java
│ │ │ │ │ ├── [2.5K] SuperstepBarrier.java
│ │ │ │ │ ├── [1.2K] SuperstepKickoffLatchBroker.java
│ │ │ │ │ └── [1.9K] SuperstepKickoffLatch.java
│ │ │ │ ├── [4.0K] convergence
│ │ │ │ │ └── [1.7K] WorksetEmptyConvergenceCriterion.java
│ │ │ │ ├── [4.0K] event
│ │ │ │ │ ├── [1.3K] AllWorkersDoneEvent.java
│ │ │ │ │ ├── [5.2K] IterationEventWithAggregators.java
│ │ │ │ │ ├── [1.4K] TerminationEvent.java
│ │ │ │ │ └── [1.9K] WorkerDoneEvent.java
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ ├── [3.1K] HashPartitionIterator.java
│ │ │ │ │ ├── [ 12K] SerializedUpdateBuffer.java
│ │ │ │ │ ├── [2.2K] SolutionSetFastUpdateOutputCollector.java
│ │ │ │ │ ├── [2.2K] SolutionSetObjectsUpdateOutputCollector.java
│ │ │ │ │ ├── [2.2K] SolutionSetUpdateOutputCollector.java
│ │ │ │ │ └── [2.4K] WorksetUpdateOutputCollector.java
│ │ │ │ └── [4.0K] task
│ │ │ │ ├── [ 15K] AbstractIterativeTask.java
│ │ │ │ ├── [ 19K] IterationHeadTask.java
│ │ │ │ ├── [5.2K] IterationIntermediateTask.java
│ │ │ │ ├── [8.6K] IterationSynchronizationSinkTask.java
│ │ │ │ ├── [5.3K] IterationTailTask.java
│ │ │ │ ├── [2.3K] RuntimeAggregatorRegistry.java
│ │ │ │ ├── [3.2K] SyncEventHandler.java
│ │ │ │ └── [1.0K] Terminable.java
│ │ │ ├── [1.2K] JobException.java
│ │ │ ├── [4.0K] jobgraph
│ │ │ │ ├── [1.5K] DistributionPattern.java
│ │ │ │ ├── [7.5K] InputOutputFormatContainer.java
│ │ │ │ ├── [5.9K] InputOutputFormatVertex.java
│ │ │ │ ├── [2.1K] IntermediateDataSetID.java
│ │ │ │ ├── [2.7K] IntermediateDataSet.java
│ │ │ │ ├── [2.8K] IntermediateResultPartitionID.java
│ │ │ │ ├── [6.8K] JobEdge.java
│ │ │ │ ├── [ 18K] JobGraph.java
│ │ │ │ ├── [2.9K] JobGraphUtils.java
│ │ │ │ ├── [1.4K] JobVertexID.java
│ │ │ │ ├── [ 18K] JobVertex.java
│ │ │ │ ├── [4.0K] jsonplan
│ │ │ │ │ └── [4.7K] JsonPlanGenerator.java
│ │ │ │ ├── [1.3K] OperatorID.java
│ │ │ │ ├── [1.9K] OperatorInstanceID.java
│ │ │ │ ├── [2.0K] SavepointConfigOptions.java
│ │ │ │ ├── [5.1K] SavepointRestoreSettings.java
│ │ │ │ ├── [1.8K] ScheduleMode.java
│ │ │ │ ├── [4.0K] tasks
│ │ │ │ │ ├── [ 12K] AbstractInvokable.java
│ │ │ │ │ ├── [9.7K] CheckpointCoordinatorConfiguration.java
│ │ │ │ │ ├── [1.2K] InputSplitProviderException.java
│ │ │ │ │ ├── [1.6K] InputSplitProvider.java
│ │ │ │ │ ├── [4.4K] JobCheckpointingSettings.java
│ │ │ │ │ └── [2.3K] TaskOperatorEventGateway.java
│ │ │ │ └── [4.0K] topology
│ │ │ │ ├── [1.6K] DefaultLogicalPipelinedRegion.java
│ │ │ │ ├── [2.5K] DefaultLogicalResult.java
│ │ │ │ ├── [4.3K] DefaultLogicalTopology.java
│ │ │ │ ├── [2.3K] DefaultLogicalVertex.java
│ │ │ │ ├── [1.3K] LogicalPipelinedRegion.java
│ │ │ │ ├── [1.3K] LogicalResult.java
│ │ │ │ ├── [1.3K] LogicalTopology.java
│ │ │ │ └── [1.3K] LogicalVertex.java
│ │ │ ├── [4.0K] jobmanager
│ │ │ │ ├── [1.7K] HaServicesJobGraphStoreFactory.java
│ │ │ │ ├── [2.9K] HighAvailabilityMode.java
│ │ │ │ ├── [1.0K] JobGraphStoreFactory.java
│ │ │ │ ├── [2.5K] JobGraphStore.java
│ │ │ │ ├── [1.7K] JobGraphWriter.java
│ │ │ │ ├── [3.7K] JobManagerProcessSpec.java
│ │ │ │ ├── [4.4K] JobManagerProcessUtils.java
│ │ │ │ ├── [1.5K] OnCompletionActions.java
│ │ │ │ ├── [1.4K] PartitionProducerDisposedException.java
│ │ │ │ ├── [4.0K] scheduler
│ │ │ │ │ ├── [4.9K] CoLocationConstraint.java
│ │ │ │ │ ├── [3.8K] CoLocationGroup.java
│ │ │ │ │ ├── [1.3K] Locality.java
│ │ │ │ │ ├── [1.4K] LocationPreferenceConstraint.java
│ │ │ │ │ ├── [1.9K] NoResourceAvailableException.java
│ │ │ │ │ ├── [3.5K] ScheduledUnit.java
│ │ │ │ │ └── [2.8K] SlotSharingGroup.java
│ │ │ │ ├── [4.0K] slots
│ │ │ │ │ └── [5.9K] TaskManagerGateway.java
│ │ │ │ ├── [1.8K] StandaloneJobGraphStore.java
│ │ │ │ ├── [1.3K] ThrowingJobGraphWriter.java
│ │ │ │ └── [ 13K] ZooKeeperJobGraphStore.java
│ │ │ ├── [4.0K] jobmaster
│ │ │ │ ├── [1.7K] AllocatedSlotInfo.java
│ │ │ │ ├── [2.0K] AllocatedSlotReport.java
│ │ │ │ ├── [1.8K] EstablishedResourceManagerConnection.java
│ │ │ │ ├── [1.4K] ExecutionGraphException.java
│ │ │ │ ├── [4.0K] factories
│ │ │ │ │ ├── [1.7K] DefaultJobManagerJobMetricGroupFactory.java
│ │ │ │ │ ├── [4.2K] DefaultJobMasterServiceFactory.java
│ │ │ │ │ ├── [1.4K] JobManagerJobMetricGroupFactory.java
│ │ │ │ │ ├── [1.3K] JobMasterServiceFactory.java
│ │ │ │ │ └── [1.5K] UnregisteredJobManagerJobMetricGroupFactory.java
│ │ │ │ ├── [1.5K] JMTMRegistrationSuccess.java
│ │ │ │ ├── [1.3K] JobManagerException.java
│ │ │ │ ├── [ 15K] JobManagerRunnerImpl.java
│ │ │ │ ├── [2.0K] JobManagerRunner.java
│ │ │ │ ├── [6.8K] JobManagerSharedServices.java
│ │ │ │ ├── [3.1K] JobMasterConfiguration.java
│ │ │ │ ├── [1.3K] JobMasterException.java
│ │ │ │ ├── [ 12K] JobMasterGateway.java
│ │ │ │ ├── [1.9K] JobMasterId.java
│ │ │ │ ├── [ 44K] JobMaster.java
│ │ │ │ ├── [2.3K] JobMasterOperatorEventGateway.java
│ │ │ │ ├── [2.1K] JobMasterRegistrationSuccess.java
│ │ │ │ ├── [2.1K] JobMasterService.java
│ │ │ │ ├── [1.2K] JobNotFinishedException.java
│ │ │ │ ├── [8.1K] JobResult.java
│ │ │ │ ├── [1.8K] KvStateLocationOracle.java
│ │ │ │ ├── [2.7K] KvStateRegistryGateway.java
│ │ │ │ ├── [4.3K] LogicalSlot.java
│ │ │ │ ├── [2.7K] MiniDispatcherRestEndpoint.java
│ │ │ │ ├── [2.0K] ResourceManagerAddress.java
│ │ │ │ ├── [4.7K] RpcTaskManagerGateway.java
│ │ │ │ ├── [1.3K] SerializedInputSplit.java
│ │ │ │ ├── [1.5K] SlotContext.java
│ │ │ │ ├── [1.9K] SlotInfo.java
│ │ │ │ ├── [1.1K] SlotOwner.java
│ │ │ │ ├── [4.0K] slotpool
│ │ │ │ │ ├── [1.4K] AllocatedSlotActions.java
│ │ │ │ │ ├── [5.5K] AllocatedSlot.java
│ │ │ │ │ ├── [1.8K] DefaultLocationPreferenceSlotSelectionStrategy.java
│ │ │ │ │ ├── [2.5K] DefaultSchedulerFactory.java
│ │ │ │ │ ├── [2.5K] DefaultSlotPoolFactory.java
│ │ │ │ │ ├── [3.8K] DualKeyLinkedMap.java
│ │ │ │ │ ├── [2.1K] EvenlySpreadOutLocationPreferenceSlotSelectionStrategy.java
│ │ │ │ │ ├── [5.1K] LocationPreferenceSlotSelectionStrategy.java
│ │ │ │ │ ├── [1.6K] PhysicalSlot.java
│ │ │ │ │ ├── [3.7K] PreviousAllocationSlotSelectionStrategy.java
│ │ │ │ │ ├── [1.1K] SchedulerFactory.java
│ │ │ │ │ ├── [ 21K] SchedulerImpl.java
│ │ │ │ │ ├── [1.6K] Scheduler.java
│ │ │ │ │ ├── [5.8K] SingleLogicalSlot.java
│ │ │ │ │ ├── [1.6K] SlotAndLocality.java
│ │ │ │ │ ├── [2.2K] SlotInfoWithUtilization.java
│ │ │ │ │ ├── [1.1K] SlotPoolFactory.java
│ │ │ │ │ ├── [ 49K] SlotPoolImpl.java
│ │ │ │ │ ├── [7.6K] SlotPool.java
│ │ │ │ │ ├── [3.7K] SlotProvider.java
│ │ │ │ │ ├── [3.7K] SlotSelectionStrategy.java
│ │ │ │ │ ├── [ 28K] SlotSharingManager.java
│ │ │ │ │ └── [1.9K] ThrowingSlotProvider.java
│ │ │ │ └── [1.8K] SlotRequestId.java
│ │ │ ├── [4.0K] leaderelection
│ │ │ │ ├── [2.0K] LeaderContender.java
│ │ │ │ ├── [3.0K] LeaderElectionService.java
│ │ │ │ ├── [2.3K] StandaloneLeaderElectionService.java
│ │ │ │ └── [ 14K] ZooKeeperLeaderElectionService.java
│ │ │ ├── [4.0K] leaderretrieval
│ │ │ │ ├── [1.4K] LeaderRetrievalException.java
│ │ │ │ ├── [1.7K] LeaderRetrievalListener.java
│ │ │ │ ├── [1.7K] LeaderRetrievalService.java
│ │ │ │ ├── [3.2K] StandaloneLeaderRetrievalService.java
│ │ │ │ └── [7.7K] ZooKeeperLeaderRetrievalService.java
│ │ │ ├── [4.0K] memory
│ │ │ │ ├── [ 17K] AbstractPagedInputView.java
│ │ │ │ ├── [ 13K] AbstractPagedOutputView.java
│ │ │ │ ├── [1.4K] ListMemorySegmentSource.java
│ │ │ │ ├── [1.3K] MemoryAllocationException.java
│ │ │ │ ├── [ 25K] MemoryManager.java
│ │ │ │ ├── [1.1K] MemoryReservationException.java
│ │ │ │ ├── [2.4K] OpaqueMemoryResource.java
│ │ │ │ ├── [5.3K] SharedResources.java
│ │ │ │ └── [7.6K] UnsafeMemoryBudget.java
│ │ │ ├── [4.0K] messages
│ │ │ │ ├── [1.9K] Acknowledge.java
│ │ │ │ ├── [4.0K] checkpoint
│ │ │ │ │ ├── [2.7K] AbstractCheckpointMessage.java
│ │ │ │ │ ├── [3.4K] AcknowledgeCheckpoint.java
│ │ │ │ │ ├── [2.7K] DeclineCheckpoint.java
│ │ │ │ │ └── [1.1K] package-info.java
│ │ │ │ ├── [1.2K] FlinkJobNotFoundException.java
│ │ │ │ ├── [ 994] package-info.java
│ │ │ │ ├── [1.8K] TaskBackPressureResponse.java
│ │ │ │ └── [4.0K] webmonitor
│ │ │ │ ├── [4.8K] ClusterOverview.java
│ │ │ │ ├── [1.0K] InfoMessage.java
│ │ │ │ ├── [8.7K] JobDetails.java
│ │ │ │ ├── [4.9K] JobIdsWithStatusOverview.java
│ │ │ │ ├── [4.9K] JobsOverview.java
│ │ │ │ ├── [2.4K] MultipleJobsDetails.java
│ │ │ │ ├── [1.1K] package-info.java
│ │ │ │ ├── [2.3K] RequestJobDetails.java
│ │ │ │ ├── [2.0K] RequestJobsOverview.java
│ │ │ │ ├── [2.1K] RequestJobsWithIDsOverview.java
│ │ │ │ └── [2.1K] RequestStatusOverview.java
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [2.6K] DescriptiveStatisticsHistogram.java
│ │ │ │ ├── [5.4K] DescriptiveStatisticsHistogramStatistics.java
│ │ │ │ ├── [4.0K] dump
│ │ │ │ │ ├── [4.1K] MetricDump.java
│ │ │ │ │ ├── [ 16K] MetricDumpSerialization.java
│ │ │ │ │ ├── [8.7K] MetricQueryService.java
│ │ │ │ │ └── [5.7K] QueryScopeInfo.java
│ │ │ │ ├── [4.0K] groups
│ │ │ │ │ ├── [2.5K] AbstractImitatingJobManagerMetricGroup.java
│ │ │ │ │ ├── [ 17K] AbstractMetricGroup.java
│ │ │ │ │ ├── [3.1K] ComponentMetricGroup.java
│ │ │ │ │ ├── [2.6K] FrontMetricGroup.java
│ │ │ │ │ ├── [1.7K] GenericKeyMetricGroup.java
│ │ │ │ │ ├── [2.3K] GenericMetricGroup.java
│ │ │ │ │ ├── [2.0K] GenericValueMetricGroup.java
│ │ │ │ │ ├── [2.0K] JobManagerJobMetricGroup.java
│ │ │ │ │ ├── [3.5K] JobManagerMetricGroup.java
│ │ │ │ │ ├── [2.7K] JobMetricGroup.java
│ │ │ │ │ ├── [2.7K] OperatorIOMetricGroup.java
│ │ │ │ │ ├── [3.3K] OperatorMetricGroup.java
│ │ │ │ │ ├── [1.3K] ProcessMetricGroup.java
│ │ │ │ │ ├── [3.6K] ProxyMetricGroup.java
│ │ │ │ │ ├── [1.6K] ReporterScopedSettings.java
│ │ │ │ │ ├── [1.4K] ResourceManagerMetricGroup.java
│ │ │ │ │ ├── [1.4K] SlotManagerMetricGroup.java
│ │ │ │ │ ├── [4.6K] TaskIOMetricGroup.java
│ │ │ │ │ ├── [4.0K] TaskManagerJobMetricGroup.java
│ │ │ │ │ ├── [5.0K] TaskManagerMetricGroup.java
│ │ │ │ │ ├── [5.7K] TaskMetricGroup.java
│ │ │ │ │ └── [7.2K] UnregisteredMetricGroups.java
│ │ │ │ ├── [3.2K] MetricNames.java
│ │ │ │ ├── [4.0K] MetricRegistryConfiguration.java
│ │ │ │ ├── [ 15K] MetricRegistryImpl.java
│ │ │ │ ├── [2.3K] MetricRegistry.java
│ │ │ │ ├── [1.8K] NoOpMetricRegistry.java
│ │ │ │ ├── [ 14K] ReporterSetup.java
│ │ │ │ ├── [4.0K] scope
│ │ │ │ │ ├── [1.6K] JobManagerJobScopeFormat.java
│ │ │ │ │ ├── [1.3K] JobManagerScopeFormat.java
│ │ │ │ │ ├── [2.1K] OperatorScopeFormat.java
│ │ │ │ │ ├── [8.6K] ScopeFormat.java
│ │ │ │ │ ├── [3.9K] ScopeFormats.java
│ │ │ │ │ ├── [1.6K] TaskManagerJobScopeFormat.java
│ │ │ │ │ ├── [1.3K] TaskManagerScopeFormat.java
│ │ │ │ │ └── [2.0K] TaskScopeFormat.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [ 11K] MetricUtils.java
│ │ │ │ │ ├── [7.5K] SystemResourcesCounter.java
│ │ │ │ │ └── [4.4K] SystemResourcesMetricsInitializer.java
│ │ │ │ └── [2.7K] ViewUpdater.java
│ │ │ ├── [4.0K] minicluster
│ │ │ │ ├── [1.4K] JobExecutor.java
│ │ │ │ ├── [1.0K] JobExecutorService.java
│ │ │ │ ├── [6.2K] MiniClusterConfiguration.java
│ │ │ │ ├── [ 38K] MiniCluster.java
│ │ │ │ └── [1.1K] RpcServiceSharing.java
│ │ │ ├── [4.0K] net
│ │ │ │ ├── [ 17K] ConnectionUtils.java
│ │ │ │ ├── [4.8K] RedirectingSslHandler.java
│ │ │ │ └── [ 17K] SSLUtils.java
│ │ │ ├── [2.0K] OperatorIDPair.java
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [8.3K] AbstractCachedBuildSideJoinDriver.java
│ │ │ │ ├── [7.4K] AbstractOuterJoinDriver.java
│ │ │ │ ├── [4.6K] AllGroupCombineDriver.java
│ │ │ │ ├── [6.5K] AllGroupReduceDriver.java
│ │ │ │ ├── [5.1K] AllReduceDriver.java
│ │ │ │ ├── [ 54K] BatchTask.java
│ │ │ │ ├── [1.0K] BuildFirstCachedJoinDriver.java
│ │ │ │ ├── [1.0K] BuildSecondCachedJoinDriver.java
│ │ │ │ ├── [4.0K] chaining
│ │ │ │ │ ├── [3.7K] ChainedAllReduceDriver.java
│ │ │ │ │ ├── [4.3K] ChainedDriver.java
│ │ │ │ │ ├── [2.7K] ChainedFlatMapDriver.java
│ │ │ │ │ ├── [2.7K] ChainedMapDriver.java
│ │ │ │ │ ├── [8.8K] ChainedReduceCombineDriver.java
│ │ │ │ │ ├── [2.2K] ChainedTerminationCriterionDriver.java
│ │ │ │ │ ├── [1.8K] ExceptionInChainedStubException.java
│ │ │ │ │ └── [8.4K] SynchronousChainedCombineDriver.java
│ │ │ │ ├── [6.6K] CoGroupDriver.java
│ │ │ │ ├── [4.5K] CoGroupRawDriver.java
│ │ │ │ ├── [9.4K] CoGroupWithSolutionSetFirstDriver.java
│ │ │ │ ├── [9.4K] CoGroupWithSolutionSetSecondDriver.java
│ │ │ │ ├── [4.0K] coordination
│ │ │ │ │ ├── [1.5K] CoordinationRequestGateway.java
│ │ │ │ │ ├── [1.4K] CoordinationRequestHandler.java
│ │ │ │ │ ├── [1.1K] CoordinationRequest.java
│ │ │ │ │ ├── [1.1K] CoordinationResponse.java
│ │ │ │ │ ├── [ 17K] OperatorCoordinatorHolder.java
│ │ │ │ │ ├── [8.8K] OperatorCoordinator.java
│ │ │ │ │ ├── [1.6K] OperatorEventDispatcher.java
│ │ │ │ │ ├── [2.2K] OperatorEventGateway.java
│ │ │ │ │ ├── [1.3K] OperatorEventHandler.java
│ │ │ │ │ ├── [1.0K] OperatorEvent.java
│ │ │ │ │ ├── [7.8K] OperatorEventValve.java
│ │ │ │ │ ├── [1.5K] OperatorInfo.java
│ │ │ │ │ ├── [5.6K] RecreateOnResetOperatorCoordinator.java
│ │ │ │ │ └── [1.1K] TaskNotRunningException.java
│ │ │ │ ├── [ 15K] CrossDriver.java
│ │ │ │ ├── [1.9K] DamBehavior.java
│ │ │ │ ├── [ 15K] DataSinkTask.java
│ │ │ │ ├── [ 14K] DataSourceTask.java
│ │ │ │ ├── [3.0K] Driver.java
│ │ │ │ ├── [9.5K] DriverStrategy.java
│ │ │ │ ├── [3.9K] FlatMapDriver.java
│ │ │ │ ├── [5.8K] FullOuterJoinDriver.java
│ │ │ │ ├── [9.0K] GroupReduceCombineDriver.java
│ │ │ │ ├── [5.3K] GroupReduceDriver.java
│ │ │ │ ├── [4.0K] hash
│ │ │ │ │ ├── [1.6K] AbstractHashTableProber.java
│ │ │ │ │ ├── [3.3K] AbstractMutableHashTable.java
│ │ │ │ │ ├── [ 54K] CompactingHashTable.java
│ │ │ │ │ ├── [2.2K] HashJoinIteratorBase.java
│ │ │ │ │ ├── [ 23K] HashPartition.java
│ │ │ │ │ ├── [ 13K] InMemoryPartition.java
│ │ │ │ │ ├── [ 38K] InPlaceMutableHashTable.java
│ │ │ │ │ ├── [ 73K] MutableHashTable.java
│ │ │ │ │ ├── [6.4K] NonReusingBuildFirstHashJoinIterator.java
│ │ │ │ │ ├── [3.5K] NonReusingBuildFirstReOpenableHashJoinIterator.java
│ │ │ │ │ ├── [6.3K] NonReusingBuildSecondHashJoinIterator.java
│ │ │ │ │ ├── [3.5K] NonReusingBuildSecondReOpenableHashJoinIterator.java
│ │ │ │ │ ├── [5.7K] ReOpenableHashPartition.java
│ │ │ │ │ ├── [7.9K] ReOpenableMutableHashTable.java
│ │ │ │ │ ├── [5.8K] ReusingBuildFirstHashJoinIterator.java
│ │ │ │ │ ├── [3.4K] ReusingBuildFirstReOpenableHashJoinIterator.java
│ │ │ │ │ ├── [5.6K] ReusingBuildSecondHashJoinIterator.java
│ │ │ │ │ └── [3.4K] ReusingBuildSecondReOpenableHashJoinIterator.java
│ │ │ │ ├── [9.2K] JoinDriver.java
│ │ │ │ ├── [8.3K] JoinWithSolutionSetFirstDriver.java
│ │ │ │ ├── [8.3K] JoinWithSolutionSetSecondDriver.java
│ │ │ │ ├── [5.8K] LeftOuterJoinDriver.java
│ │ │ │ ├── [3.7K] MapDriver.java
│ │ │ │ ├── [4.2K] MapPartitionDriver.java
│ │ │ │ ├── [1.9K] NoOpChainedDriver.java
│ │ │ │ ├── [3.2K] NoOpDriver.java
│ │ │ │ ├── [ 10K] ReduceCombineDriver.java
│ │ │ │ ├── [6.1K] ReduceDriver.java
│ │ │ │ ├── [4.0K] resettable
│ │ │ │ │ ├── [5.7K] AbstractBlockResettableIterator.java
│ │ │ │ │ ├── [5.9K] BlockResettableMutableObjectIterator.java
│ │ │ │ │ ├── [5.3K] NonReusingBlockResettableIterator.java
│ │ │ │ │ ├── [3.1K] ReusingBlockResettableIterator.java
│ │ │ │ │ ├── [5.7K] SpillingResettableIterator.java
│ │ │ │ │ └── [6.6K] SpillingResettableMutableObjectIterator.java
│ │ │ │ ├── [1.4K] ResettableDriver.java
│ │ │ │ ├── [5.8K] RightOuterJoinDriver.java
│ │ │ │ ├── [4.0K] shipping
│ │ │ │ │ ├── [3.3K] OutputCollector.java
│ │ │ │ │ ├── [8.2K] OutputEmitter.java
│ │ │ │ │ └── [2.3K] ShipStrategyType.java
│ │ │ │ ├── [4.0K] sort
│ │ │ │ │ ├── [4.2K] AbstractMergeInnerJoinIterator.java
│ │ │ │ │ ├── [ 13K] AbstractMergeIterator.java
│ │ │ │ │ ├── [7.2K] AbstractMergeOuterJoinIterator.java
│ │ │ │ │ ├── [ 23K] CombiningUnilateralSortMerger.java
│ │ │ │ │ ├── [2.5K] DefaultInMemorySorterFactory.java
│ │ │ │ │ ├── [1.2K] ExceptionHandler.java
│ │ │ │ │ ├── [ 16K] FixedLengthRecordSorter.java
│ │ │ │ │ ├── [2.1K] HeapSort.java
│ │ │ │ │ ├── [2.7K] IndexedSortable.java
│ │ │ │ │ ├── [1.3K] IndexedSorter.java
│ │ │ │ │ ├── [1.3K] InMemorySorterFactory.java
│ │ │ │ │ ├── [3.9K] InMemorySorter.java
│ │ │ │ │ ├── [ 14K] LargeRecordHandler.java
│ │ │ │ │ ├── [5.6K] MergeIterator.java
│ │ │ │ │ ├── [2.5K] NonReusingMergeInnerJoinIterator.java
│ │ │ │ │ ├── [2.6K] NonReusingMergeOuterJoinIterator.java
│ │ │ │ │ ├── [4.6K] NonReusingSortMergeCoGroupIterator.java
│ │ │ │ │ ├── [ 19K] NormalizedKeySorter.java
│ │ │ │ │ ├── [5.5K] PartialOrderPriorityQueue.java
│ │ │ │ │ ├── [6.3K] QuickSort.java
│ │ │ │ │ ├── [2.7K] ReusingMergeInnerJoinIterator.java
│ │ │ │ │ ├── [2.8K] ReusingMergeOuterJoinIterator.java
│ │ │ │ │ ├── [4.6K] ReusingSortMergeCoGroupIterator.java
│ │ │ │ │ ├── [1.2K] Sorter.java
│ │ │ │ │ └── [ 61K] UnilateralSortMerger.java
│ │ │ │ ├── [2.3K] TaskContext.java
│ │ │ │ ├── [5.6K] TempBarrier.java
│ │ │ │ ├── [4.0K] udf
│ │ │ │ │ ├── [2.5K] AssignRangeIndex.java
│ │ │ │ │ ├── [2.6K] RangeBoundaryBuilder.java
│ │ │ │ │ └── [1.1K] RemoveRangeIndex.java
│ │ │ │ ├── [2.7K] UnionWithTempOperator.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [3.2K] BitSet.java
│ │ │ │ ├── [5.3K] BloomFilter.java
│ │ │ │ ├── [1.3K] CloseableInputProvider.java
│ │ │ │ ├── [2.3K] CoGroupTaskIterator.java
│ │ │ │ ├── [1.4K] CorruptConfigurationException.java
│ │ │ │ ├── [4.7K] DistributedRuntimeUDFContext.java
│ │ │ │ ├── [3.0K] JoinTaskIterator.java
│ │ │ │ ├── [1.6K] LocalStrategy.java
│ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ ├── [1.4K] CountingCollector.java
│ │ │ │ │ ├── [1.3K] CountingIterable.java
│ │ │ │ │ ├── [1.4K] CountingIterator.java
│ │ │ │ │ └── [1.6K] CountingMutableObjectIterator.java
│ │ │ │ ├── [2.8K] ReaderIterator.java
│ │ │ │ ├── [1.6K] SimpleCloseableInputProvider.java
│ │ │ │ └── [ 46K] TaskConfig.java
│ │ │ ├── [4.0K] plugable
│ │ │ │ ├── [1.3K] DeserializationDelegate.java
│ │ │ │ ├── [1.8K] NonReusingDeserializationDelegate.java
│ │ │ │ ├── [1.8K] ReusingDeserializationDelegate.java
│ │ │ │ └── [1.9K] SerializationDelegate.java
│ │ │ ├── [4.0K] query
│ │ │ │ ├── [3.0K] KvStateClientProxy.java
│ │ │ │ ├── [2.4K] KvStateEntry.java
│ │ │ │ ├── [3.7K] KvStateInfo.java
│ │ │ │ ├── [8.5K] KvStateLocation.java
│ │ │ │ ├── [6.0K] KvStateLocationRegistry.java
│ │ │ │ ├── [6.3K] KvStateRegistry.java
│ │ │ │ ├── [2.3K] KvStateRegistryListener.java
│ │ │ │ ├── [1.4K] KvStateServer.java
│ │ │ │ ├── [6.1K] QueryableStateUtils.java
│ │ │ │ ├── [3.4K] TaskKvStateRegistry.java
│ │ │ │ └── [1.3K] UnknownKvStateLocation.java
│ │ │ ├── [4.0K] registration
│ │ │ │ ├── [7.9K] RegisteredRpcConnection.java
│ │ │ │ ├── [1.6K] RegistrationConnectionListener.java
│ │ │ │ ├── [2.2K] RegistrationResponse.java
│ │ │ │ ├── [3.2K] RetryingRegistrationConfiguration.java
│ │ │ │ └── [9.8K] RetryingRegistration.java
│ │ │ ├── [4.0K] resourcemanager
│ │ │ │ ├── [3.0K] ActiveResourceManagerFactory.java
│ │ │ │ ├── [9.6K] ActiveResourceManager.java
│ │ │ │ ├── [1.5K] ArbitraryWorkerResourceSpecFactory.java
│ │ │ │ ├── [4.0K] exceptions
│ │ │ │ │ ├── [1.4K] ResourceManagerException.java
│ │ │ │ │ ├── [1.6K] UnfulfillableSlotRequestException.java
│ │ │ │ │ └── [1.3K] UnknownTaskExecutorException.java
│ │ │ │ ├── [1.9K] JobLeaderIdActions.java
│ │ │ │ ├── [ 11K] JobLeaderIdService.java
│ │ │ │ ├── [4.0K] registration
│ │ │ │ │ ├── [2.0K] JobManagerRegistration.java
│ │ │ │ │ ├── [1.8K] TaskExecutorConnection.java
│ │ │ │ │ └── [2.0K] WorkerRegistration.java
│ │ │ │ ├── [4.0K] ResourceManagerFactory.java
│ │ │ │ ├── [ 10K] ResourceManagerGateway.java
│ │ │ │ ├── [2.1K] ResourceManagerId.java
│ │ │ │ ├── [ 46K] ResourceManager.java
│ │ │ │ ├── [2.9K] ResourceManagerRuntimeServicesConfiguration.java
│ │ │ │ ├── [2.6K] ResourceManagerRuntimeServices.java
│ │ │ │ ├── [1.6K] ResourceManagerServices.java
│ │ │ │ ├── [2.3K] ResourceOverview.java
│ │ │ │ ├── [4.0K] slotmanager
│ │ │ │ │ ├── [1.5K] AnyMatchingSlotMatchingStrategy.java
│ │ │ │ │ ├── [2.8K] LeastUtilizationSlotMatchingStrategy.java
│ │ │ │ │ ├── [3.1K] PendingSlotRequest.java
│ │ │ │ │ ├── [2.0K] PendingTaskManagerSlot.java
│ │ │ │ │ ├── [2.0K] ResourceActions.java
│ │ │ │ │ ├── [5.6K] SlotManagerConfiguration.java
│ │ │ │ │ ├── [1.3K] SlotManagerException.java
│ │ │ │ │ ├── [ 49K] SlotManagerImpl.java
│ │ │ │ │ ├── [6.2K] SlotManager.java
│ │ │ │ │ ├── [1.8K] SlotMatchingStrategy.java
│ │ │ │ │ ├── [3.0K] TaskManagerRegistration.java
│ │ │ │ │ ├── [1.2K] TaskManagerSlotId.java
│ │ │ │ │ ├── [1.6K] TaskManagerSlotInformation.java
│ │ │ │ │ └── [5.1K] TaskManagerSlot.java
│ │ │ │ ├── [2.5K] SlotRequest.java
│ │ │ │ ├── [4.4K] StandaloneResourceManagerFactory.java
│ │ │ │ ├── [4.0K] StandaloneResourceManager.java
│ │ │ │ ├── [3.1K] TaskExecutorRegistration.java
│ │ │ │ ├── [1.7K] WorkerResourceSpecFactory.java
│ │ │ │ └── [5.2K] WorkerResourceSpec.java
│ │ │ ├── [4.0K] rest
│ │ │ │ ├── [1.3K] ConnectionClosedException.java
│ │ │ │ ├── [1.3K] ConnectionException.java
│ │ │ │ ├── [1.3K] ConnectionIdleException.java
│ │ │ │ ├── [9.8K] FileUploadHandler.java
│ │ │ │ ├── [1.2K] FileUpload.java
│ │ │ │ ├── [2.4K] FlinkHttpObjectAggregator.java
│ │ │ │ ├── [4.0K] handler
│ │ │ │ │ ├── [ 11K] AbstractHandler.java
│ │ │ │ │ ├── [4.1K] AbstractRestHandler.java
│ │ │ │ │ ├── [4.0K] async
│ │ │ │ │ │ ├── [8.4K] AbstractAsynchronousOperationHandlers.java
│ │ │ │ │ │ ├── [2.4K] AsynchronousOperationInfo.java
│ │ │ │ │ │ ├── [2.4K] AsynchronousOperationResult.java
│ │ │ │ │ │ ├── [1.9K] AsynchronousOperationStatusMessageHeaders.java
│ │ │ │ │ │ ├── [1.8K] AsynchronousOperationTriggerMessageHeaders.java
│ │ │ │ │ │ ├── [7.6K] CompletedOperationCache.java
│ │ │ │ │ │ ├── [1.7K] OperationKey.java
│ │ │ │ │ │ ├── [1.6K] TriggerResponse.java
│ │ │ │ │ │ └── [1.3K] UnknownOperationKeyException.java
│ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ ├── [3.3K] AbstractJobManagerFileHandler.java
│ │ │ │ │ │ ├── [2.7K] ClusterConfigHandler.java
│ │ │ │ │ │ ├── [2.8K] ClusterOverviewHandler.java
│ │ │ │ │ │ ├── [2.5K] DashboardConfigHandler.java
│ │ │ │ │ │ ├── [2.3K] JobManagerCustomLogHandler.java
│ │ │ │ │ │ ├── [2.0K] JobManagerLogFileHandler.java
│ │ │ │ │ │ ├── [3.2K] JobManagerLogListHandler.java
│ │ │ │ │ │ └── [2.4K] ShutdownHandler.java
│ │ │ │ │ ├── [4.0K] dataset
│ │ │ │ │ │ ├── [5.1K] ClusterDataSetDeleteHandlers.java
│ │ │ │ │ │ └── [2.6K] ClusterDataSetListHandler.java
│ │ │ │ │ ├── [3.1K] FileUploads.java
│ │ │ │ │ ├── [1.3K] HandlerRequestException.java
│ │ │ │ │ ├── [6.0K] HandlerRequest.java
│ │ │ │ │ ├── [2.0K] InFlightRequestTracker.java
│ │ │ │ │ ├── [4.0K] job
│ │ │ │ │ │ ├── [4.4K] AbstractExecutionGraphHandler.java
│ │ │ │ │ │ ├── [4.1K] AbstractJobVertexHandler.java
│ │ │ │ │ │ ├── [4.8K] AbstractSubtaskAttemptHandler.java
│ │ │ │ │ │ ├── [4.3K] AbstractSubtaskHandler.java
│ │ │ │ │ │ ├── [2.2K] AsynchronousJobOperationKey.java
│ │ │ │ │ │ ├── [4.0K] checkpoints
│ │ │ │ │ │ │ ├── [4.4K] AbstractCheckpointHandler.java
│ │ │ │ │ │ │ ├── [5.3K] CheckpointConfigHandler.java
│ │ │ │ │ │ │ ├── [7.5K] CheckpointingStatisticsHandler.java
│ │ │ │ │ │ │ ├── [4.1K] CheckpointStatisticDetailsHandler.java
│ │ │ │ │ │ │ ├── [2.7K] CheckpointStatsCache.java
│ │ │ │ │ │ │ └── [8.6K] TaskCheckpointStatisticDetailsHandler.java
│ │ │ │ │ │ ├── [4.0K] coordination
│ │ │ │ │ │ │ └── [4.0K] ClientCoordinationHandler.java
│ │ │ │ │ │ ├── [4.8K] JobAccumulatorsHandler.java
│ │ │ │ │ │ ├── [5.1K] JobCancellationHandler.java
│ │ │ │ │ │ ├── [3.6K] JobConfigHandler.java
│ │ │ │ │ │ ├── [7.9K] JobDetailsHandler.java
│ │ │ │ │ │ ├── [5.2K] JobExceptionsHandler.java
│ │ │ │ │ │ ├── [3.7K] JobExecutionResultHandler.java
│ │ │ │ │ │ ├── [2.7K] JobIdsHandler.java
│ │ │ │ │ │ ├── [3.2K] JobPlanHandler.java
│ │ │ │ │ │ ├── [3.2K] JobsOverviewHandler.java
│ │ │ │ │ │ ├── [8.0K] JobSubmitHandler.java
│ │ │ │ │ │ ├── [3.0K] JobVertexAccumulatorsHandler.java
│ │ │ │ │ │ ├── [4.5K] JobVertexBackPressureHandler.java
│ │ │ │ │ │ ├── [5.3K] JobVertexDetailsHandler.java
│ │ │ │ │ │ ├── [8.4K] JobVertexTaskManagersHandler.java
│ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ ├── [ 12K] AbstractAggregatingMetricsHandler.java
│ │ │ │ │ │ │ ├── [5.4K] AbstractMetricsHandler.java
│ │ │ │ │ │ │ ├── [3.1K] AggregatingJobsMetricsHandler.java
│ │ │ │ │ │ │ ├── [4.8K] AggregatingSubtasksMetricsHandler.java
│ │ │ │ │ │ │ ├── [3.4K] AggregatingTaskManagersMetricsHandler.java
│ │ │ │ │ │ │ ├── [5.4K] DoubleAccumulator.java
│ │ │ │ │ │ │ ├── [2.2K] JobManagerMetricsHandler.java
│ │ │ │ │ │ │ ├── [2.4K] JobMetricsHandler.java
│ │ │ │ │ │ │ ├── [2.8K] JobVertexMetricsHandler.java
│ │ │ │ │ │ │ ├── [4.0K] JobVertexWatermarksHandler.java
│ │ │ │ │ │ │ ├── [2.8K] SubtaskMetricsHandler.java
│ │ │ │ │ │ │ └── [2.6K] TaskManagerMetricsHandler.java
│ │ │ │ │ │ ├── [4.0K] rescaling
│ │ │ │ │ │ │ ├── [4.7K] RescalingHandlers.java
│ │ │ │ │ │ │ ├── [2.6K] RescalingStatusHeaders.java
│ │ │ │ │ │ │ ├── [1.6K] RescalingStatusMessageParameters.java
│ │ │ │ │ │ │ ├── [2.3K] RescalingTriggerHeaders.java
│ │ │ │ │ │ │ └── [1.6K] RescalingTriggerMessageParameters.java
│ │ │ │ │ │ ├── [4.0K] savepoints
│ │ │ │ │ │ │ ├── [4.9K] SavepointDisposalHandlers.java
│ │ │ │ │ │ │ └── [9.6K] SavepointHandlers.java
│ │ │ │ │ │ ├── [3.4K] SubtaskCurrentAttemptDetailsHandler.java
│ │ │ │ │ │ ├── [6.2K] SubtaskExecutionAttemptAccumulatorsHandler.java
│ │ │ │ │ │ ├── [6.1K] SubtaskExecutionAttemptDetailsHandler.java
│ │ │ │ │ │ ├── [3.9K] SubtasksAllAccumulatorsHandler.java
│ │ │ │ │ │ └── [5.1K] SubtasksTimesHandler.java
│ │ │ │ │ ├── [3.8K] LeaderRetrievalHandler.java
│ │ │ │ │ ├── [4.0K] legacy
│ │ │ │ │ │ ├── [4.0K] backpressure
│ │ │ │ │ │ │ ├── [ 11K] BackPressureRequestCoordinator.java
│ │ │ │ │ │ │ ├── [2.6K] BackPressureStats.java
│ │ │ │ │ │ │ ├── [8.9K] BackPressureStatsTrackerImpl.java
│ │ │ │ │ │ │ ├── [1.9K] BackPressureStatsTracker.java
│ │ │ │ │ │ │ ├── [2.9K] OperatorBackPressureStats.java
│ │ │ │ │ │ │ ├── [1.7K] OperatorBackPressureStatsResponse.java
│ │ │ │ │ │ │ └── [1.4K] VoidBackPressureStatsTracker.java
│ │ │ │ │ │ ├── [5.0K] DefaultExecutionGraphCache.java
│ │ │ │ │ │ ├── [2.3K] ExecutionGraphCache.java
│ │ │ │ │ │ ├── [4.0K] files
│ │ │ │ │ │ │ ├── [ 15K] StaticFileServerHandler.java
│ │ │ │ │ │ │ └── [1.5K] WebContentHandlerSpecification.java
│ │ │ │ │ │ ├── [1.4K] JsonFactory.java
│ │ │ │ │ │ ├── [4.0K] messages
│ │ │ │ │ │ │ └── [4.2K] ClusterOverviewWithVersion.java
│ │ │ │ │ │ └── [4.0K] metrics
│ │ │ │ │ │ ├── [8.7K] MetricFetcherImpl.java
│ │ │ │ │ │ ├── [1.4K] MetricFetcher.java
│ │ │ │ │ │ ├── [ 14K] MetricStore.java
│ │ │ │ │ │ └── [1.2K] VoidMetricFetcher.java
│ │ │ │ │ ├── [2.7K] PipelineErrorHandler.java
│ │ │ │ │ ├── [4.0K] resourcemanager
│ │ │ │ │ │ └── [3.6K] AbstractResourceManagerHandler.java
│ │ │ │ │ ├── [3.0K] RestHandlerConfiguration.java
│ │ │ │ │ ├── [1.7K] RestHandlerException.java
│ │ │ │ │ ├── [1.8K] RestHandlerSpecification.java
│ │ │ │ │ ├── [4.0K] router
│ │ │ │ │ │ ├── [3.8K] MethodlessRouter.java
│ │ │ │ │ │ ├── [5.2K] PathPattern.java
│ │ │ │ │ │ ├── [3.3K] RoutedRequest.java
│ │ │ │ │ │ ├── [4.1K] RouteResult.java
│ │ │ │ │ │ ├── [5.0K] RouterHandler.java
│ │ │ │ │ │ └── [ 12K] Router.java
│ │ │ │ │ ├── [4.0K] taskmanager
│ │ │ │ │ │ ├── [8.2K] AbstractTaskManagerFileHandler.java
│ │ │ │ │ │ ├── [3.2K] TaskManagerCustomLogHandler.java
│ │ │ │ │ │ ├── [8.0K] TaskManagerDetailsHandler.java
│ │ │ │ │ │ ├── [2.9K] TaskManagerLogFileHandler.java
│ │ │ │ │ │ ├── [4.1K] TaskManagerLogListHandler.java
│ │ │ │ │ │ ├── [2.6K] TaskManagersHandler.java
│ │ │ │ │ │ ├── [2.9K] TaskManagerStdoutFileHandler.java
│ │ │ │ │ │ └── [3.0K] TaskManagerThreadDumpHandler.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [3.1K] HandlerRedirectUtils.java
│ │ │ │ │ │ ├── [3.3K] HandlerRequestUtils.java
│ │ │ │ │ │ ├── [ 11K] HandlerUtils.java
│ │ │ │ │ │ ├── [2.1K] KeepAliveWrite.java
│ │ │ │ │ │ ├── [4.2K] MimeTypes.java
│ │ │ │ │ │ └── [5.1K] MutableIOMetrics.java
│ │ │ │ │ └── [1.1K] WebHandler.java
│ │ │ │ ├── [1.3K] HttpMethodWrapper.java
│ │ │ │ ├── [2.8K] JobRestEndpointFactory.java
│ │ │ │ ├── [4.0K] messages
│ │ │ │ │ ├── [1.6K] AccumulatorsIncludeSerializedValueQueryParameter.java
│ │ │ │ │ ├── [4.0K] checkpoints
│ │ │ │ │ │ ├── [2.4K] CheckpointConfigHeaders.java
│ │ │ │ │ │ ├── [7.3K] CheckpointConfigInfo.java
│ │ │ │ │ │ ├── [1.7K] CheckpointIdPathParameter.java
│ │ │ │ │ │ ├── [2.4K] CheckpointingStatisticsHeaders.java
│ │ │ │ │ │ ├── [ 13K] CheckpointingStatistics.java
│ │ │ │ │ │ ├── [1.4K] CheckpointMessageParameters.java
│ │ │ │ │ │ ├── [2.4K] CheckpointStatisticDetailsHeaders.java
│ │ │ │ │ │ ├── [ 18K] CheckpointStatistics.java
│ │ │ │ │ │ ├── [2.5K] MinMaxAvgStatistics.java
│ │ │ │ │ │ ├── [8.7K] SubtaskCheckpointStatistics.java
│ │ │ │ │ │ ├── [1.5K] TaskCheckpointMessageParameters.java
│ │ │ │ │ │ ├── [2.5K] TaskCheckpointStatisticsHeaders.java
│ │ │ │ │ │ ├── [4.8K] TaskCheckpointStatistics.java
│ │ │ │ │ │ └── [9.5K] TaskCheckpointStatisticsWithSubtaskDetails.java
│ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ ├── [1.7K] FileMessageParameters.java
│ │ │ │ │ │ ├── [2.1K] JobManagerCustomLogHeaders.java
│ │ │ │ │ │ ├── [2.0K] JobManagerLogFileHeader.java
│ │ │ │ │ │ ├── [2.4K] JobManagerLogListHeaders.java
│ │ │ │ │ │ ├── [1.9K] JobManagerStdoutFileHeader.java
│ │ │ │ │ │ └── [2.3K] ShutdownHeaders.java
│ │ │ │ │ ├── [2.3K] ClusterConfigurationInfoEntry.java
│ │ │ │ │ ├── [2.5K] ClusterConfigurationInfoHeaders.java
│ │ │ │ │ ├── [2.1K] ClusterConfigurationInfo.java
│ │ │ │ │ ├── [2.3K] ClusterOverviewHeaders.java
│ │ │ │ │ ├── [1.3K] ConversionException.java
│ │ │ │ │ ├── [2.2K] DashboardConfigurationHeaders.java
│ │ │ │ │ ├── [6.0K] DashboardConfiguration.java
│ │ │ │ │ ├── [4.0K] dataset
│ │ │ │ │ │ ├── [2.6K] ClusterDataSetDeleteStatusHeaders.java
│ │ │ │ │ │ ├── [1.7K] ClusterDataSetDeleteStatusMessageParameters.java
│ │ │ │ │ │ ├── [2.3K] ClusterDataSetDeleteTriggerHeaders.java
│ │ │ │ │ │ ├── [1.6K] ClusterDataSetDeleteTriggerMessageParameters.java
│ │ │ │ │ │ ├── [2.0K] ClusterDataSetEntry.java
│ │ │ │ │ │ ├── [1.7K] ClusterDataSetIdPathParameter.java
│ │ │ │ │ │ ├── [2.3K] ClusterDataSetListHeaders.java
│ │ │ │ │ │ └── [2.5K] ClusterDataSetListResponseBody.java
│ │ │ │ │ ├── [1.5K] EmptyMessageParameters.java
│ │ │ │ │ ├── [1.1K] EmptyRequestBody.java
│ │ │ │ │ ├── [1.2K] EmptyResponseBody.java
│ │ │ │ │ ├── [1.5K] ErrorResponseBody.java
│ │ │ │ │ ├── [4.0K] job
│ │ │ │ │ │ ├── [4.0K] coordination
│ │ │ │ │ │ │ ├── [2.7K] ClientCoordinationHeaders.java
│ │ │ │ │ │ │ ├── [1.9K] ClientCoordinationMessageParameters.java
│ │ │ │ │ │ │ ├── [2.5K] ClientCoordinationRequestBody.java
│ │ │ │ │ │ │ └── [2.5K] ClientCoordinationResponseBody.java
│ │ │ │ │ │ ├── [2.4K] JobDetailsHeaders.java
│ │ │ │ │ │ ├── [ 11K] JobDetailsInfo.java
│ │ │ │ │ │ ├── [1.6K] JobExceptionsMessageParameters.java
│ │ │ │ │ │ ├── [2.5K] JobExecutionResultHeaders.java
│ │ │ │ │ │ ├── [3.4K] JobExecutionResultResponseBody.java
│ │ │ │ │ │ ├── [2.7K] JobSubmitHeaders.java
│ │ │ │ │ │ ├── [4.5K] JobSubmitRequestBody.java
│ │ │ │ │ │ ├── [1.9K] JobSubmitResponseBody.java
│ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ ├── [1.8K] AbstractAggregatedMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.7K] AbstractAggregatedMetricsParameters.java
│ │ │ │ │ │ │ ├── [2.0K] AbstractMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.5K] AggregatedJobMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.3K] AggregatedJobMetricsParameters.java
│ │ │ │ │ │ │ ├── [3.3K] AggregatedMetric.java
│ │ │ │ │ │ │ ├── [4.0K] AggregatedMetricsResponseBody.java
│ │ │ │ │ │ │ ├── [1.8K] AggregatedSubtaskMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.7K] AggregatedSubtaskMetricsParameters.java
│ │ │ │ │ │ │ ├── [1.6K] AggregatedTaskManagerMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.4K] AggregateTaskManagerMetricsParameters.java
│ │ │ │ │ │ │ ├── [4.6K] IOMetricsInfo.java
│ │ │ │ │ │ │ ├── [1.7K] JobManagerMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.6K] JobManagerMetricsMessageParameters.java
│ │ │ │ │ │ │ ├── [1.7K] JobMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.5K] JobMetricsMessageParameters.java
│ │ │ │ │ │ │ ├── [1.8K] JobsFilterQueryParameter.java
│ │ │ │ │ │ │ ├── [1.9K] JobVertexMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.6K] JobVertexMetricsMessageParameters.java
│ │ │ │ │ │ │ ├── [2.5K] JobVertexWatermarksHeaders.java
│ │ │ │ │ │ │ ├── [3.9K] MetricCollectionResponseBody.java
│ │ │ │ │ │ │ ├── [2.5K] Metric.java
│ │ │ │ │ │ │ ├── [2.0K] MetricsAggregationParameter.java
│ │ │ │ │ │ │ ├── [1.7K] MetricsFilterParameter.java
│ │ │ │ │ │ │ ├── [2.0K] SubtaskMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.9K] SubtaskMetricsMessageParameters.java
│ │ │ │ │ │ │ ├── [1.5K] SubtasksFilterQueryParameter.java
│ │ │ │ │ │ │ ├── [1.8K] TaskManagerMetricsHeaders.java
│ │ │ │ │ │ │ ├── [1.6K] TaskManagerMetricsMessageParameters.java
│ │ │ │ │ │ │ └── [1.6K] TaskManagersFilterQueryParameter.java
│ │ │ │ │ │ ├── [4.0K] savepoints
│ │ │ │ │ │ │ ├── [1.7K] SavepointDisposalRequest.java
│ │ │ │ │ │ │ ├── [2.8K] SavepointDisposalStatusHeaders.java
│ │ │ │ │ │ │ ├── [1.8K] SavepointDisposalStatusMessageParameters.java
│ │ │ │ │ │ │ ├── [2.4K] SavepointDisposalTriggerHeaders.java
│ │ │ │ │ │ │ ├── [2.8K] SavepointInfo.java
│ │ │ │ │ │ │ ├── [2.5K] SavepointStatusHeaders.java
│ │ │ │ │ │ │ ├── [1.9K] SavepointStatusMessageParameters.java
│ │ │ │ │ │ │ ├── [2.8K] SavepointTriggerHeaders.java
│ │ │ │ │ │ │ ├── [1.6K] SavepointTriggerMessageParameters.java
│ │ │ │ │ │ │ ├── [2.0K] SavepointTriggerRequestBody.java
│ │ │ │ │ │ │ └── [4.0K] stop
│ │ │ │ │ │ │ ├── [2.0K] StopWithSavepointRequestBody.java
│ │ │ │ │ │ │ └── [3.1K] StopWithSavepointTriggerHeaders.java
│ │ │ │ │ │ ├── [1.4K] SubtaskAttemptMessageParameters.java
│ │ │ │ │ │ ├── [1.8K] SubtaskAttemptPathParameter.java
│ │ │ │ │ │ ├── [2.7K] SubtaskCurrentAttemptDetailsHeaders.java
│ │ │ │ │ │ ├── [2.9K] SubtaskExecutionAttemptAccumulatorsHeaders.java
│ │ │ │ │ │ ├── [3.1K] SubtaskExecutionAttemptAccumulatorsInfo.java
│ │ │ │ │ │ ├── [2.9K] SubtaskExecutionAttemptDetailsHeaders.java
│ │ │ │ │ │ ├── [7.0K] SubtaskExecutionAttemptDetailsInfo.java
│ │ │ │ │ │ ├── [1.5K] SubtaskMessageParameters.java
│ │ │ │ │ │ ├── [5.1K] SubtasksAllAccumulatorsInfo.java
│ │ │ │ │ │ ├── [1.7K] UpperLimitExceptionParameter.java
│ │ │ │ │ │ └── [2.2K] UserAccumulator.java
│ │ │ │ │ ├── [2.3K] JobAccumulatorsHeaders.java
│ │ │ │ │ ├── [5.6K] JobAccumulatorsInfo.java
│ │ │ │ │ ├── [1.4K] JobAccumulatorsMessageParameters.java
│ │ │ │ │ ├── [2.2K] JobCancellationHeaders.java
│ │ │ │ │ ├── [1.6K] JobCancellationMessageParameters.java
│ │ │ │ │ ├── [2.1K] JobConfigHeaders.java
│ │ │ │ │ ├── [8.8K] JobConfigInfo.java
│ │ │ │ │ ├── [2.4K] JobExceptionsHeaders.java
│ │ │ │ │ ├── [5.1K] JobExceptionsInfo.java
│ │ │ │ │ ├── [1.4K] JobIDPathParameter.java
│ │ │ │ │ ├── [2.3K] JobIdsWithStatusesOverviewHeaders.java
│ │ │ │ │ ├── [1.3K] JobMessageParameters.java
│ │ │ │ │ ├── [2.1K] JobPlanHeaders.java
│ │ │ │ │ ├── [4.9K] JobPlanInfo.java
│ │ │ │ │ ├── [2.3K] JobsOverviewHeaders.java
│ │ │ │ │ ├── [2.4K] JobVertexAccumulatorsHeaders.java
│ │ │ │ │ ├── [2.4K] JobVertexAccumulatorsInfo.java
│ │ │ │ │ ├── [2.3K] JobVertexBackPressureHeaders.java
│ │ │ │ │ ├── [6.3K] JobVertexBackPressureInfo.java
│ │ │ │ │ ├── [2.2K] JobVertexDetailsHeaders.java
│ │ │ │ │ ├── [3.8K] JobVertexDetailsInfo.java
│ │ │ │ │ ├── [1.5K] JobVertexIdPathParameter.java
│ │ │ │ │ ├── [1.4K] JobVertexMessageParameters.java
│ │ │ │ │ ├── [2.3K] JobVertexTaskManagersHeaders.java
│ │ │ │ │ ├── [6.5K] JobVertexTaskManagersInfo.java
│ │ │ │ │ ├── [4.0K] json
│ │ │ │ │ │ ├── [1.6K] JobIDDeserializer.java
│ │ │ │ │ │ ├── [1.6K] JobIDSerializer.java
│ │ │ │ │ │ ├── [6.1K] JobResultDeserializer.java
│ │ │ │ │ │ ├── [4.0K] JobResultSerializer.java
│ │ │ │ │ │ ├── [1.6K] JobVertexIDDeserializer.java
│ │ │ │ │ │ ├── [1.4K] JobVertexIDKeyDeserializer.java
│ │ │ │ │ │ ├── [1.6K] JobVertexIDKeySerializer.java
│ │ │ │ │ │ ├── [1.6K] JobVertexIDSerializer.java
│ │ │ │ │ │ ├── [1.7K] RawJsonDeserializer.java
│ │ │ │ │ │ ├── [1.6K] ResourceIDDeserializer.java
│ │ │ │ │ │ ├── [1.7K] ResourceIDSerializer.java
│ │ │ │ │ │ ├── [2.2K] SerializedThrowableDeserializer.java
│ │ │ │ │ │ ├── [2.1K] SerializedThrowableSerializer.java
│ │ │ │ │ │ ├── [2.0K] SerializedValueDeserializer.java
│ │ │ │ │ │ └── [2.1K] SerializedValueSerializer.java
│ │ │ │ │ ├── [1.6K] LogFileNamePathParameter.java
│ │ │ │ │ ├── [2.1K] LogInfo.java
│ │ │ │ │ ├── [2.1K] LogListInfo.java
│ │ │ │ │ ├── [2.1K] MessageHeaders.java
│ │ │ │ │ ├── [4.4K] MessageParameter.java
│ │ │ │ │ ├── [3.8K] MessageParameters.java
│ │ │ │ │ ├── [1.2K] MessagePathParameter.java
│ │ │ │ │ ├── [2.6K] MessageQueryParameter.java
│ │ │ │ │ ├── [1.5K] OperatorIDPathParameter.java
│ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ ├── [1.3K] AsynchronouslyCreatedResource.java
│ │ │ │ │ │ └── [1.9K] QueueStatus.java
│ │ │ │ │ ├── [1.4K] RequestBody.java
│ │ │ │ │ ├── [1.5K] RescalingParallelismQueryParameter.java
│ │ │ │ │ ├── [4.8K] ResourceProfileInfo.java
│ │ │ │ │ ├── [1.4K] ResponseBody.java
│ │ │ │ │ ├── [1.6K] SubtaskIndexPathParameter.java
│ │ │ │ │ ├── [2.5K] SubtasksAllAccumulatorsHeaders.java
│ │ │ │ │ ├── [2.2K] SubtasksTimesHeaders.java
│ │ │ │ │ ├── [4.4K] SubtasksTimesInfo.java
│ │ │ │ │ ├── [4.0K] taskmanager
│ │ │ │ │ │ ├── [2.1K] TaskManagerCustomLogHeaders.java
│ │ │ │ │ │ ├── [2.4K] TaskManagerDetailsHeaders.java
│ │ │ │ │ │ ├── [3.8K] TaskManagerDetailsInfo.java
│ │ │ │ │ │ ├── [1.6K] TaskManagerFileMessageParameters.java
│ │ │ │ │ │ ├── [1.6K] TaskManagerIdPathParameter.java
│ │ │ │ │ │ ├── [6.5K] TaskManagerInfo.java
│ │ │ │ │ │ ├── [2.0K] TaskManagerLogFileHeaders.java
│ │ │ │ │ │ ├── [2.4K] TaskManagerLogsHeaders.java
│ │ │ │ │ │ ├── [1.7K] TaskManagerMessageParameters.java
│ │ │ │ │ │ ├── [7.8K] TaskManagerMetricsInfo.java
│ │ │ │ │ │ ├── [2.4K] TaskManagersHeaders.java
│ │ │ │ │ │ ├── [2.1K] TaskManagersInfo.java
│ │ │ │ │ │ ├── [2.0K] TaskManagerStdoutFileHeaders.java
│ │ │ │ │ │ ├── [2.4K] TaskManagerThreadDumpHeaders.java
│ │ │ │ │ │ └── [3.4K] ThreadDumpInfo.java
│ │ │ │ │ ├── [1.7K] TerminationModeQueryParameter.java
│ │ │ │ │ ├── [3.0K] TriggerId.java
│ │ │ │ │ ├── [1.5K] TriggerIdPathParameter.java
│ │ │ │ │ ├── [1.6K] UntypedResponseMessageHeaders.java
│ │ │ │ │ ├── [2.0K] YarnCancelJobTerminationHeaders.java
│ │ │ │ │ └── [2.0K] YarnStopJobTerminationHeaders.java
│ │ │ │ ├── [1.5K] NotFoundException.java
│ │ │ │ ├── [3.9K] RestClientConfiguration.java
│ │ │ │ ├── [ 23K] RestClient.java
│ │ │ │ ├── [2.6K] RestEndpointFactory.java
│ │ │ │ ├── [5.7K] RestServerEndpointConfiguration.java
│ │ │ │ ├── [ 21K] RestServerEndpoint.java
│ │ │ │ ├── [2.8K] SessionRestEndpointFactory.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [1.7K] RestClientException.java
│ │ │ │ │ ├── [1.3K] RestConstants.java
│ │ │ │ │ └── [1.8K] RestMapperUtils.java
│ │ │ │ └── [4.0K] versioning
│ │ │ │ └── [3.3K] RestAPIVersion.java
│ │ │ ├── [4.0K] rpc
│ │ │ │ ├── [4.0K] akka
│ │ │ │ │ ├── [1.2K] AkkaBasedEndpoint.java
│ │ │ │ │ ├── [ 13K] AkkaInvocationHandler.java
│ │ │ │ │ ├── [ 20K] AkkaRpcActor.java
│ │ │ │ │ ├── [2.6K] AkkaRpcServiceConfiguration.java
│ │ │ │ │ ├── [ 18K] AkkaRpcService.java
│ │ │ │ │ ├── [ 13K] AkkaRpcServiceUtils.java
│ │ │ │ │ ├── [1.1K] ControlMessages.java
│ │ │ │ │ ├── [4.0K] exceptions
│ │ │ │ │ │ ├── [1.3K] AkkaHandshakeException.java
│ │ │ │ │ │ ├── [1.3K] AkkaRpcException.java
│ │ │ │ │ │ ├── [1.3K] AkkaRpcInvalidStateException.java
│ │ │ │ │ │ ├── [1.3K] AkkaRpcRuntimeException.java
│ │ │ │ │ │ └── [1.3K] AkkaUnknownMessageException.java
│ │ │ │ │ ├── [5.0K] FencedAkkaInvocationHandler.java
│ │ │ │ │ ├── [4.2K] FencedAkkaRpcActor.java
│ │ │ │ │ └── [ 12K] SupervisorActor.java
│ │ │ │ ├── [4.0K] exceptions
│ │ │ │ │ ├── [1.3K] FencingTokenException.java
│ │ │ │ │ ├── [1.2K] HandshakeException.java
│ │ │ │ │ ├── [1.3K] RpcConnectionException.java
│ │ │ │ │ ├── [1.2K] RpcException.java
│ │ │ │ │ └── [1.2K] RpcRuntimeException.java
│ │ │ │ ├── [1.2K] FatalErrorHandler.java
│ │ │ │ ├── [1.8K] FencedMainThreadExecutable.java
│ │ │ │ ├── [5.9K] FencedRpcEndpoint.java
│ │ │ │ ├── [1.2K] FencedRpcGateway.java
│ │ │ │ ├── [2.4K] MainThreadExecutable.java
│ │ │ │ ├── [2.6K] MainThreadValidatorUtil.java
│ │ │ │ ├── [4.0K] messages
│ │ │ │ │ ├── [1.2K] CallAsync.java
│ │ │ │ │ ├── [1.1K] FencedMessage.java
│ │ │ │ │ ├── [ 944] HandshakeSuccessMessage.java
│ │ │ │ │ ├── [1.7K] LocalFencedMessage.java
│ │ │ │ │ ├── [2.3K] LocalRpcInvocation.java
│ │ │ │ │ ├── [1.8K] RemoteFencedMessage.java
│ │ │ │ │ ├── [1.5K] RemoteHandshakeMessage.java
│ │ │ │ │ ├── [8.8K] RemoteRpcInvocation.java
│ │ │ │ │ ├── [2.3K] RpcInvocation.java
│ │ │ │ │ ├── [1.6K] RunAsync.java
│ │ │ │ │ └── [1.7K] UnfencedMessage.java
│ │ │ │ ├── [1.7K] PermanentlyFencedRpcEndpoint.java
│ │ │ │ ├── [ 16K] RpcEndpoint.java
│ │ │ │ ├── [1.4K] RpcGateway.java
│ │ │ │ ├── [1.2K] RpcServer.java
│ │ │ │ ├── [7.8K] RpcService.java
│ │ │ │ ├── [1.3K] RpcTimeout.java
│ │ │ │ ├── [6.0K] RpcUtils.java
│ │ │ │ └── [1.1K] StartStoppable.java
│ │ │ ├── [4.0K] scheduler
│ │ │ │ ├── [4.0K] adapter
│ │ │ │ │ ├── [8.2K] DefaultExecutionTopology.java
│ │ │ │ │ ├── [2.7K] DefaultExecutionVertex.java
│ │ │ │ │ ├── [3.0K] DefaultResultPartition.java
│ │ │ │ │ └── [2.9K] DefaultSchedulingPipelinedRegion.java
│ │ │ │ ├── [1.5K] DefaultExecutionSlotAllocatorFactory.java
│ │ │ │ ├── [ 10K] DefaultExecutionSlotAllocator.java
│ │ │ │ ├── [1.4K] DefaultExecutionVertexOperations.java
│ │ │ │ ├── [4.9K] DefaultSchedulerFactory.java
│ │ │ │ ├── [ 20K] DefaultScheduler.java
│ │ │ │ ├── [3.0K] DeploymentHandle.java
│ │ │ │ ├── [1.3K] DeploymentOption.java
│ │ │ │ ├── [3.4K] ExecutionGraphToInputsLocationsRetrieverAdapter.java
│ │ │ │ ├── [1.0K] ExecutionSlotAllocatorFactory.java
│ │ │ │ ├── [1.7K] ExecutionSlotAllocator.java
│ │ │ │ ├── [1.6K] ExecutionVertexDeploymentOption.java
│ │ │ │ ├── [1.3K] ExecutionVertexOperations.java
│ │ │ │ ├── [5.6K] ExecutionVertexSchedulingRequirements.java
│ │ │ │ ├── [3.6K] ExecutionVertexSchedulingRequirementsMapper.java
│ │ │ │ ├── [3.2K] ExecutionVertexVersioner.java
│ │ │ │ ├── [1.4K] ExecutionVertexVersion.java
│ │ │ │ ├── [1.8K] InputsLocationsRetriever.java
│ │ │ │ ├── [1.6K] InternalFailuresListener.java
│ │ │ │ ├── [ 39K] SchedulerBase.java
│ │ │ │ ├── [2.2K] SchedulerNGFactory.java
│ │ │ │ ├── [7.7K] SchedulerNG.java
│ │ │ │ ├── [1.6K] SchedulerOperations.java
│ │ │ │ ├── [1.8K] SlotExecutionVertexAssignment.java
│ │ │ │ ├── [4.0K] strategy
│ │ │ │ │ ├── [3.2K] EagerSchedulingStrategy.java
│ │ │ │ │ ├── [2.2K] ExecutionVertexID.java
│ │ │ │ │ ├── [6.6K] InputDependencyConstraintChecker.java
│ │ │ │ │ ├── [6.0K] LazyFromSourcesSchedulingStrategy.java
│ │ │ │ │ ├── [6.5K] PipelinedRegionSchedulingStrategy.java
│ │ │ │ │ ├── [1.2K] ResultPartitionState.java
│ │ │ │ │ ├── [1.6K] SchedulingExecutionVertex.java
│ │ │ │ │ ├── [1.3K] SchedulingPipelinedRegion.java
│ │ │ │ │ ├── [1.6K] SchedulingResultPartition.java
│ │ │ │ │ ├── [1.1K] SchedulingStrategyFactory.java
│ │ │ │ │ ├── [2.2K] SchedulingStrategy.java
│ │ │ │ │ ├── [2.6K] SchedulingStrategyUtils.java
│ │ │ │ │ └── [2.0K] SchedulingTopology.java
│ │ │ │ └── [2.0K] UpdateSchedulerNgOnInternalFailuresListener.java
│ │ │ ├── [4.0K] security
│ │ │ │ ├── [4.0K] contexts
│ │ │ │ │ ├── [2.6K] HadoopSecurityContextFactory.java
│ │ │ │ │ ├── [1.5K] HadoopSecurityContext.java
│ │ │ │ │ ├── [1.4K] NoOpSecurityContextFactory.java
│ │ │ │ │ ├── [1.2K] NoOpSecurityContext.java
│ │ │ │ │ ├── [1.9K] SecurityContextFactory.java
│ │ │ │ │ └── [1.0K] SecurityContext.java
│ │ │ │ ├── [3.4K] DynamicConfiguration.java
│ │ │ │ ├── [3.6K] ExitTrappingSecurityManager.java
│ │ │ │ ├── [3.9K] KerberosUtils.java
│ │ │ │ ├── [4.0K] modules
│ │ │ │ │ ├── [2.1K] HadoopModuleFactory.java
│ │ │ │ │ ├── [6.1K] HadoopModule.java
│ │ │ │ │ ├── [1.2K] JaasModuleFactory.java
│ │ │ │ │ ├── [6.5K] JaasModule.java
│ │ │ │ │ ├── [1.5K] SecurityModuleFactory.java
│ │ │ │ │ ├── [1.8K] SecurityModule.java
│ │ │ │ │ ├── [1.2K] ZookeeperModuleFactory.java
│ │ │ │ │ └── [3.2K] ZooKeeperModule.java
│ │ │ │ ├── [2.0K] NoMatchSecurityFactoryException.java
│ │ │ │ ├── [5.0K] SecurityConfiguration.java
│ │ │ │ ├── [1.3K] SecurityContextInitializeException.java
│ │ │ │ ├── [3.1K] SecurityFactoryServiceLoader.java
│ │ │ │ └── [4.7K] SecurityUtils.java
│ │ │ ├── [4.0K] shuffle
│ │ │ │ ├── [3.8K] NettyShuffleDescriptor.java
│ │ │ │ ├── [2.5K] NettyShuffleMaster.java
│ │ │ │ ├── [4.6K] PartitionDescriptor.java
│ │ │ │ ├── [2.9K] ProducerDescriptor.java
│ │ │ │ ├── [3.0K] ShuffleDescriptor.java
│ │ │ │ ├── [3.0K] ShuffleEnvironmentContext.java
│ │ │ │ ├── [8.8K] ShuffleEnvironment.java
│ │ │ │ ├── [2.1K] ShuffleIOOwnerContext.java
│ │ │ │ ├── [2.7K] ShuffleMaster.java
│ │ │ │ ├── [2.1K] ShuffleServiceFactory.java
│ │ │ │ ├── [1.6K] ShuffleServiceLoader.java
│ │ │ │ ├── [1.7K] ShuffleServiceOptions.java
│ │ │ │ ├── [2.4K] ShuffleUtils.java
│ │ │ │ └── [2.0K] UnknownShuffleDescriptor.java
│ │ │ ├── [4.0K] source
│ │ │ │ ├── [4.0K] coordinator
│ │ │ │ │ ├── [5.7K] ExecutorNotifier.java
│ │ │ │ │ ├── [ 12K] SourceCoordinatorContext.java
│ │ │ │ │ ├── [ 11K] SourceCoordinator.java
│ │ │ │ │ ├── [4.3K] SourceCoordinatorProvider.java
│ │ │ │ │ ├── [6.1K] SourceCoordinatorSerdeUtils.java
│ │ │ │ │ └── [6.3K] SplitAssignmentTracker.java
│ │ │ │ └── [4.0K] event
│ │ │ │ ├── [2.0K] AddSplitEvent.java
│ │ │ │ ├── [1.6K] ReaderRegistrationEvent.java
│ │ │ │ └── [1.5K] SourceEventWrapper.java
│ │ │ ├── [ 12K] state
│ │ │ │ ├── [3.7K] AbstractChannelStateHandle.java
│ │ │ │ ├── [2.9K] AbstractKeyedStateBackendBuilder.java
│ │ │ │ ├── [ 11K] AbstractKeyedStateBackend.java
│ │ │ │ ├── [2.7K] AbstractSnapshotStrategy.java
│ │ │ │ ├── [2.9K] AbstractStateBackend.java
│ │ │ │ ├── [5.7K] ArrayListSerializer.java
│ │ │ │ ├── [2.1K] ArrayListSerializerSnapshot.java
│ │ │ │ ├── [5.8K] AsyncSnapshotCallable.java
│ │ │ │ ├── [1.2K] BackendBuildingException.java
│ │ │ │ ├── [1.6K] BackendWritableBroadcastState.java
│ │ │ │ ├── [3.2K] BoundedInputStream.java
│ │ │ │ ├── [3.7K] ChainedStateHandle.java
│ │ │ │ ├── [1.6K] CheckpointedStateScope.java
│ │ │ │ ├── [2.0K] CheckpointListener.java
│ │ │ │ ├── [2.3K] CheckpointMetadataOutputStream.java
│ │ │ │ ├── [4.6K] CheckpointStorageCoordinatorView.java
│ │ │ │ ├── [1.2K] CheckpointStorage.java
│ │ │ │ ├── [2.3K] CheckpointStorageLocation.java
│ │ │ │ ├── [4.6K] CheckpointStorageLocationReference.java
│ │ │ │ ├── [3.2K] CheckpointStorageWorkerView.java
│ │ │ │ ├── [3.9K] CheckpointStreamFactory.java
│ │ │ │ ├── [7.4K] CheckpointStreamWithResultProvider.java
│ │ │ │ ├── [1.8K] CompletedCheckpointStorageLocation.java
│ │ │ │ ├── [2.6K] CompositeStateHandle.java
│ │ │ │ ├── [2.1K] ConfigurableStateBackend.java
│ │ │ │ ├── [5.2K] DefaultKeyedStateStore.java
│ │ │ │ ├── [3.6K] DefaultOperatorStateBackendBuilder.java
│ │ │ │ ├── [ 12K] DefaultOperatorStateBackend.java
│ │ │ │ ├── [8.1K] DefaultOperatorStateBackendSnapshotStrategy.java
│ │ │ │ ├── [2.9K] DirectoryKeyedStateHandle.java
│ │ │ │ ├── [2.6K] DirectoryStateHandle.java
│ │ │ │ ├── [1.8K] DoneFuture.java
│ │ │ │ ├── [8.0K] DuplicatingCheckpointOutputStream.java
│ │ │ │ ├── [4.0K] filesystem
│ │ │ │ │ ├── [8.6K] AbstractFileStateBackend.java
│ │ │ │ │ ├── [ 13K] AbstractFsCheckpointStorage.java
│ │ │ │ │ ├── [4.3K] FileBasedStateOutputStream.java
│ │ │ │ │ ├── [3.7K] FileStateHandle.java
│ │ │ │ │ ├── [4.5K] FsCheckpointMetadataOutputStream.java
│ │ │ │ │ ├── [6.0K] FsCheckpointStorage.java
│ │ │ │ │ ├── [4.8K] FsCheckpointStorageLocation.java
│ │ │ │ │ ├── [ 13K] FsCheckpointStreamFactory.java
│ │ │ │ │ ├── [2.3K] FsCompletedCheckpointStorageLocation.java
│ │ │ │ │ ├── [2.1K] FsStateBackendFactory.java
│ │ │ │ │ ├── [ 25K] FsStateBackend.java
│ │ │ │ │ └── [2.2K] RelativeFileStateHandle.java
│ │ │ │ ├── [1.4K] FunctionInitializationContext.java
│ │ │ │ ├── [1.3K] FunctionSnapshotContext.java
│ │ │ │ ├── [4.0K] heap
│ │ │ │ │ ├── [2.4K] AbstractHeapAppendingState.java
│ │ │ │ │ ├── [3.5K] AbstractHeapMergingState.java
│ │ │ │ │ ├── [5.7K] AbstractHeapPriorityQueue.java
│ │ │ │ │ ├── [4.5K] AbstractHeapState.java
│ │ │ │ │ ├── [4.3K] AbstractStateTableSnapshot.java
│ │ │ │ │ ├── [1.5K] AsyncSnapshotStrategySynchronicityBehavior.java
│ │ │ │ │ ├── [ 35K] CopyOnWriteStateMap.java
│ │ │ │ │ ├── [ 11K] CopyOnWriteStateMapSnapshot.java
│ │ │ │ │ ├── [3.0K] CopyOnWriteStateTable.java
│ │ │ │ │ ├── [3.0K] CopyOnWriteStateTableSnapshot.java
│ │ │ │ │ ├── [5.1K] HeapAggregatingState.java
│ │ │ │ │ ├── [4.5K] HeapFoldingState.java
│ │ │ │ │ ├── [5.3K] HeapKeyedStateBackendBuilder.java
│ │ │ │ │ ├── [ 14K] HeapKeyedStateBackend.java
│ │ │ │ │ ├── [6.2K] HeapListState.java
│ │ │ │ │ ├── [6.4K] HeapMapState.java
│ │ │ │ │ ├── [1.8K] HeapPriorityQueueElement.java
│ │ │ │ │ ├── [5.4K] HeapPriorityQueue.java
│ │ │ │ │ ├── [2.2K] HeapPriorityQueueSetFactory.java
│ │ │ │ │ ├── [6.1K] HeapPriorityQueueSet.java
│ │ │ │ │ ├── [3.9K] HeapPriorityQueueSnapshotRestoreWrapper.java
│ │ │ │ │ ├── [3.5K] HeapPriorityQueueStateSnapshot.java
│ │ │ │ │ ├── [4.6K] HeapReducingState.java
│ │ │ │ │ ├── [ 11K] HeapRestoreOperation.java
│ │ │ │ │ ├── [ 11K] HeapSnapshotStrategy.java
│ │ │ │ │ ├── [3.0K] HeapValueState.java
│ │ │ │ │ ├── [2.2K] InternalKeyContextImpl.java
│ │ │ │ │ ├── [2.1K] InternalKeyContext.java
│ │ │ │ │ ├── [9.6K] KeyGroupPartitionedPriorityQueue.java
│ │ │ │ │ ├── [3.3K] NestedMapsStateTable.java
│ │ │ │ │ ├── [7.8K] NestedStateMap.java
│ │ │ │ │ ├── [3.5K] NestedStateMapSnapshot.java
│ │ │ │ │ ├── [ 977] package-info.java
│ │ │ │ │ ├── [1.4K] SnapshotStrategySynchronicityBehavior.java
│ │ │ │ │ ├── [6.2K] StateMap.java
│ │ │ │ │ ├── [2.5K] StateMapSnapshot.java
│ │ │ │ │ ├── [4.2K] StateTableByKeyGroupReaders.java
│ │ │ │ │ ├── [ 14K] StateTable.java
│ │ │ │ │ ├── [2.0K] StateUID.java
│ │ │ │ │ └── [1.7K] SyncSnapshotStrategySynchronicityBehavior.java
│ │ │ │ ├── [4.5K] HeapBroadcastState.java
│ │ │ │ ├── [1.4K] IncrementalKeyedStateHandle.java
│ │ │ │ ├── [3.9K] IncrementalLocalKeyedStateHandle.java
│ │ │ │ ├── [ 11K] IncrementalRemoteKeyedStateHandle.java
│ │ │ │ ├── [1.8K] InputChannelStateHandle.java
│ │ │ │ ├── [4.0K] internal
│ │ │ │ │ ├── [1.5K] InternalAggregatingState.java
│ │ │ │ │ ├── [1.9K] InternalAppendingState.java
│ │ │ │ │ ├── [1.4K] InternalFoldingState.java
│ │ │ │ │ ├── [6.5K] InternalKvState.java
│ │ │ │ │ ├── [2.4K] InternalListState.java
│ │ │ │ │ ├── [1.4K] InternalMapState.java
│ │ │ │ │ ├── [1.9K] InternalMergingState.java
│ │ │ │ │ ├── [1.3K] InternalReducingState.java
│ │ │ │ │ ├── [1.3K] InternalValueState.java
│ │ │ │ │ └── [2.4K] package-info.java
│ │ │ │ ├── [3.0K] InternalPriorityQueue.java
│ │ │ │ ├── [3.8K] JavaSerializer.java
│ │ │ │ ├── [6.8K] KeyedBackendSerializationProxy.java
│ │ │ │ ├── [1023] Keyed.java
│ │ │ │ ├── [4.9K] KeyedStateBackend.java
│ │ │ │ ├── [4.2K] KeyedStateCheckpointOutputStream.java
│ │ │ │ ├── [2.8K] KeyedStateFactory.java
│ │ │ │ ├── [1.3K] KeyedStateFunction.java
│ │ │ │ ├── [1.6K] KeyedStateHandle.java
│ │ │ │ ├── [1.6K] KeyExtractorFunction.java
│ │ │ │ ├── [1.4K] KeyGroupedInternalPriorityQueue.java
│ │ │ │ ├── [ 12K] KeyGroupPartitioner.java
│ │ │ │ ├── [6.1K] KeyGroupRangeAssignment.java
│ │ │ │ ├── [5.0K] KeyGroupRange.java
│ │ │ │ ├── [6.7K] KeyGroupRangeOffsets.java
│ │ │ │ ├── [1.4K] KeyGroupsList.java
│ │ │ │ ├── [4.5K] KeyGroupsStateHandle.java
│ │ │ │ ├── [1.7K] KeyGroupStatePartitionStreamProvider.java
│ │ │ │ ├── [1.9K] LocalRecoveryConfig.java
│ │ │ │ ├── [4.0K] LocalRecoveryDirectoryProviderImpl.java
│ │ │ │ ├── [3.3K] LocalRecoveryDirectoryProvider.java
│ │ │ │ ├── [1.9K] ManagedInitializationContext.java
│ │ │ │ ├── [1.8K] ManagedSnapshotContext.java
│ │ │ │ ├── [4.0K] memory
│ │ │ │ │ ├── [3.9K] ByteStreamStateHandle.java
│ │ │ │ │ ├── [4.3K] MemCheckpointStreamFactory.java
│ │ │ │ │ ├── [6.3K] MemoryBackendCheckpointStorage.java
│ │ │ │ │ ├── [1.4K] MemoryStateBackendFactory.java
│ │ │ │ │ ├── [ 15K] MemoryStateBackend.java
│ │ │ │ │ ├── [4.4K] NonPersistentMetadataCheckpointStorageLocation.java
│ │ │ │ │ └── [3.0K] PersistentMetadataCheckpointStorageLocation.java
│ │ │ │ ├── [4.0K] metainfo
│ │ │ │ │ ├── [8.6K] LegacyStateMetaInfoReaders.java
│ │ │ │ │ ├── [1.5K] StateMetaInfoReader.java
│ │ │ │ │ ├── [5.0K] StateMetaInfoSnapshot.java
│ │ │ │ │ ├── [ 10K] StateMetaInfoSnapshotReadersWriters.java
│ │ │ │ │ └── [1.4K] StateMetaInfoWriter.java
│ │ │ │ ├── [3.3K] NonClosingCheckpointOutputStream.java
│ │ │ │ ├── [2.1K] NoOpTaskLocalStateStoreImpl.java
│ │ │ │ ├── [5.4K] OperatorBackendSerializationProxy.java
│ │ │ │ ├── [1.3K] OperatorStateBackend.java
│ │ │ │ ├── [2.7K] OperatorStateCheckpointOutputStream.java
│ │ │ │ ├── [3.2K] OperatorStateHandle.java
│ │ │ │ ├── [8.9K] OperatorStateRestoreOperation.java
│ │ │ │ ├── [3.6K] OperatorStreamStateHandle.java
│ │ │ │ ├── [1.4K] OwnedTaskLocalStateStore.java
│ │ │ │ ├── [3.8K] PartitionableListState.java
│ │ │ │ ├── [2.0K] PlaceholderStreamStateHandle.java
│ │ │ │ ├── [1.1K] PriorityComparable.java
│ │ │ │ ├── [2.2K] PriorityComparator.java
│ │ │ │ ├── [1.8K] PriorityQueueSetFactory.java
│ │ │ │ ├── [7.4K] RegisteredBroadcastStateBackendMetaInfo.java
│ │ │ │ ├── [8.8K] RegisteredKeyValueStateBackendMetaInfo.java
│ │ │ │ ├── [6.0K] RegisteredOperatorStateBackendMetaInfo.java
│ │ │ │ ├── [3.8K] RegisteredPriorityQueueStateBackendMetaInfo.java
│ │ │ │ ├── [2.0K] RegisteredStateMetaInfoBase.java
│ │ │ │ ├── [1.1K] RestoreOperation.java
│ │ │ │ ├── [1.8K] ResultSubpartitionStateHandle.java
│ │ │ │ ├── [1.2K] RetrievableStateHandle.java
│ │ │ │ ├── [3.0K] RetrievableStreamStateHandle.java
│ │ │ │ ├── [1.2K] SharedStateRegistryFactory.java
│ │ │ │ ├── [ 10K] SharedStateRegistry.java
│ │ │ │ ├── [1.6K] SharedStateRegistryKey.java
│ │ │ │ ├── [2.0K] SnappyStreamCompressionDecorator.java
│ │ │ │ ├── [6.3K] SnapshotDirectory.java
│ │ │ │ ├── [4.3K] SnapshotResult.java
│ │ │ │ ├── [2.3K] SnapshotStrategy.java
│ │ │ │ ├── [1.1K] StateBackendBuilder.java
│ │ │ │ ├── [2.1K] StateBackendFactory.java
│ │ │ │ ├── [8.8K] StateBackend.java
│ │ │ │ ├── [9.7K] StateBackendLoader.java
│ │ │ │ ├── [1.7K] StateEntry.java
│ │ │ │ ├── [1.4K] StateHandleID.java
│ │ │ │ ├── [2.6K] StateInitializationContextImpl.java
│ │ │ │ ├── [2.0K] StateInitializationContext.java
│ │ │ │ ├── [3.0K] StateObject.java
│ │ │ │ ├── [2.1K] StatePartitionStreamProvider.java
│ │ │ │ ├── [ 16K] StateSerializerProvider.java
│ │ │ │ ├── [1.5K] StateSnapshotContext.java
│ │ │ │ ├── [8.1K] StateSnapshotContextSynchronousImpl.java
│ │ │ │ ├── [3.0K] StateSnapshot.java
│ │ │ │ ├── [1.5K] StateSnapshotKeyGroupReader.java
│ │ │ │ ├── [1.6K] StateSnapshotRestore.java
│ │ │ │ ├── [3.3K] StateSnapshotTransformer.java
│ │ │ │ ├── [5.9K] StateSnapshotTransformers.java
│ │ │ │ ├── [1.9K] StateTransformationFunction.java
│ │ │ │ ├── [3.2K] StateUtil.java
│ │ │ │ ├── [2.8K] StreamCompressionDecorator.java
│ │ │ │ ├── [1.4K] StreamStateHandle.java
│ │ │ │ ├── [9.6K] TaskExecutorLocalStateStoresManager.java
│ │ │ │ ├── [ 12K] TaskLocalStateStoreImpl.java
│ │ │ │ ├── [3.2K] TaskLocalStateStore.java
│ │ │ │ ├── [7.0K] TaskStateManagerImpl.java
│ │ │ │ ├── [3.2K] TaskStateManager.java
│ │ │ │ ├── [4.0K] ttl
│ │ │ │ │ ├── [3.6K] AbstractTtlDecorator.java
│ │ │ │ │ ├── [3.6K] AbstractTtlState.java
│ │ │ │ │ ├── [3.1K] TtlAggregateFunction.java
│ │ │ │ │ ├── [2.7K] TtlAggregatingState.java
│ │ │ │ │ ├── [1.8K] TtlFoldFunction.java
│ │ │ │ │ ├── [2.2K] TtlFoldingState.java
│ │ │ │ │ ├── [3.2K] TtlIncrementalCleanup.java
│ │ │ │ │ ├── [6.5K] TtlListState.java
│ │ │ │ │ ├── [6.3K] TtlMapState.java
│ │ │ │ │ ├── [1.8K] TtlReduceFunction.java
│ │ │ │ │ ├── [2.3K] TtlReducingState.java
│ │ │ │ │ ├── [1.7K] TtlStateContext.java
│ │ │ │ │ ├── [ 16K] TtlStateFactory.java
│ │ │ │ │ ├── [3.9K] TtlStateSnapshotTransformer.java
│ │ │ │ │ ├── [1.0K] TtlTimeProvider.java
│ │ │ │ │ ├── [1.8K] TtlUtils.java
│ │ │ │ │ ├── [1.5K] TtlValue.java
│ │ │ │ │ └── [1.9K] TtlValueState.java
│ │ │ │ ├── [1.7K] UncompressedStreamCompressionDecorator.java
│ │ │ │ ├── [1.9K] UserFacingListState.java
│ │ │ │ ├── [2.9K] UserFacingMapState.java
│ │ │ │ ├── [2.1K] VoidNamespace.java
│ │ │ │ ├── [3.2K] VoidNamespaceSerializer.java
│ │ │ │ └── [2.4K] VoidNamespaceTypeInfo.java
│ │ │ ├── [4.0K] taskexecutor
│ │ │ │ ├── [1.4K] AccumulatorReport.java
│ │ │ │ ├── [1.0K] BackPressureSampleableTask.java
│ │ │ │ ├── [3.7K] BackPressureSampleService.java
│ │ │ │ ├── [ 15K] DefaultJobLeaderService.java
│ │ │ │ ├── [9.1K] DefaultJobTable.java
│ │ │ │ ├── [2.1K] EstablishedResourceManagerConnection.java
│ │ │ │ ├── [4.0K] exceptions
│ │ │ │ │ ├── [1.4K] PartitionUpdateException.java
│ │ │ │ │ ├── [1.4K] RegistrationTimeoutException.java
│ │ │ │ │ ├── [1.3K] SlotAllocationException.java
│ │ │ │ │ ├── [1.6K] SlotOccupiedException.java
│ │ │ │ │ ├── [1.3K] TaskException.java
│ │ │ │ │ ├── [1.3K] TaskManagerException.java
│ │ │ │ │ └── [1.4K] TaskSubmissionException.java
│ │ │ │ ├── [1.0K] FileType.java
│ │ │ │ ├── [1.8K] GlobalAggregateManager.java
│ │ │ │ ├── [1.3K] HostBindPolicy.java
│ │ │ │ ├── [2.4K] JobLeaderListener.java
│ │ │ │ ├── [3.3K] JobLeaderService.java
│ │ │ │ ├── [8.4K] JobTable.java
│ │ │ │ ├── [6.7K] KvStateService.java
│ │ │ │ ├── [4.0K] partition
│ │ │ │ │ ├── [2.9K] ClusterPartitionReport.java
│ │ │ │ │ └── [3.0K] PartitionTable.java
│ │ │ │ ├── [2.1K] PartitionProducerStateChecker.java
│ │ │ │ ├── [6.1K] QueryableStateConfiguration.java
│ │ │ │ ├── [4.0K] rpc
│ │ │ │ │ ├── [2.3K] RpcCheckpointResponder.java
│ │ │ │ │ ├── [2.1K] RpcGlobalAggregateManager.java
│ │ │ │ │ ├── [2.8K] RpcInputSplitProvider.java
│ │ │ │ │ ├── [2.4K] RpcKvStateRegistryListener.java
│ │ │ │ │ ├── [1.8K] RpcPartitionStateChecker.java
│ │ │ │ │ ├── [2.6K] RpcResultPartitionConsumableNotifier.java
│ │ │ │ │ └── [2.4K] RpcTaskOperatorEventGateway.java
│ │ │ │ ├── [4.0K] slot
│ │ │ │ │ ├── [1.5K] SlotActions.java
│ │ │ │ │ ├── [1.3K] SlotNotActiveException.java
│ │ │ │ │ ├── [1.3K] SlotNotFoundException.java
│ │ │ │ │ ├── [2.3K] SlotOffer.java
│ │ │ │ │ ├── [ 11K] TaskSlot.java
│ │ │ │ │ ├── [1.5K] TaskSlotPayload.java
│ │ │ │ │ ├── [1.1K] TaskSlotState.java
│ │ │ │ │ ├── [ 22K] TaskSlotTableImpl.java
│ │ │ │ │ ├── [ 11K] TaskSlotTable.java
│ │ │ │ │ ├── [1.4K] TimeoutListener.java
│ │ │ │ │ └── [5.7K] TimerService.java
│ │ │ │ ├── [2.0K] SlotReport.java
│ │ │ │ ├── [3.9K] SlotStatus.java
│ │ │ │ ├── [ 11K] TaskExecutorGateway.java
│ │ │ │ ├── [1.8K] TaskExecutorHeartbeatPayload.java
│ │ │ │ ├── [ 76K] TaskExecutor.java
│ │ │ │ ├── [2.2K] TaskExecutorOperatorEventGateway.java
│ │ │ │ ├── [2.9K] TaskExecutorRegistrationSuccess.java
│ │ │ │ ├── [2.0K] TaskExecutorResourceSpec.java
│ │ │ │ ├── [8.0K] TaskExecutorResourceUtils.java
│ │ │ │ ├── [5.1K] TaskExecutorToResourceManagerConnection.java
│ │ │ │ ├── [7.6K] TaskManagerConfiguration.java
│ │ │ │ ├── [ 18K] TaskManagerRunner.java
│ │ │ │ ├── [9.9K] TaskManagerServicesConfiguration.java
│ │ │ │ └── [ 15K] TaskManagerServices.java
│ │ │ ├── [4.0K] taskmanager
│ │ │ │ ├── [2.2K] CheckpointResponder.java
│ │ │ │ ├── [6.3K] ConsumableNotifyingResultPartitionWriterDecorator.java
│ │ │ │ ├── [1.7K] DispatcherThreadFactory.java
│ │ │ │ ├── [3.8K] InputGateWithMetrics.java
│ │ │ │ ├── [7.8K] MemoryLogger.java
│ │ │ │ ├── [ 15K] NettyShuffleEnvironmentConfiguration.java
│ │ │ │ ├── [1.0K] NoOpTaskActions.java
│ │ │ │ ├── [9.2K] RuntimeEnvironment.java
│ │ │ │ ├── [1.1K] TaskActions.java
│ │ │ │ ├── [6.3K] TaskExecutionState.java
│ │ │ │ ├── [ 58K] Task.java
│ │ │ │ ├── [1.8K] TaskManagerActions.java
│ │ │ │ ├── [9.7K] TaskManagerLocation.java
│ │ │ │ ├── [2.1K] TaskManagerRuntimeInfo.java
│ │ │ │ └── [2.0K] UnresolvedTaskManagerLocation.java
│ │ │ ├── [4.0K] throwable
│ │ │ │ ├── [1.4K] ThrowableAnnotation.java
│ │ │ │ ├── [2.3K] ThrowableClassifier.java
│ │ │ │ └── [1.6K] ThrowableType.java
│ │ │ ├── [4.0K] topology
│ │ │ │ ├── [1.5K] BaseTopology.java
│ │ │ │ ├── [1.9K] PipelinedRegion.java
│ │ │ │ ├── [ 945] ResultID.java
│ │ │ │ ├── [1.3K] Result.java
│ │ │ │ ├── [1.8K] Topology.java
│ │ │ │ ├── [ 916] VertexID.java
│ │ │ │ └── [1.2K] Vertex.java
│ │ │ ├── [4.0K] types
│ │ │ │ ├── [2.4K] FlinkChillPackageRegistrar.java
│ │ │ │ └── [2.8K] PriorityQueueSerializer.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [2.7K] AtomicDisposableReferenceCounter.java
│ │ │ │ ├── [4.0K] bash
│ │ │ │ │ ├── [7.1K] BashJavaUtils.java
│ │ │ │ │ └── [2.3K] FlinkConfigLoader.java
│ │ │ │ ├── [4.3K] ClassLoaderUtil.java
│ │ │ │ ├── [2.7K] ClusterEntrypointUtils.java
│ │ │ │ ├── [4.0K] config
│ │ │ │ │ └── [4.0K] memory
│ │ │ │ │ ├── [3.8K] CommonProcessMemorySpec.java
│ │ │ │ │ ├── [2.7K] FlinkMemory.java
│ │ │ │ │ ├── [1.6K] FlinkMemoryUtils.java
│ │ │ │ │ ├── [4.0K] jobmanager
│ │ │ │ │ │ ├── [2.7K] JobManagerFlinkMemory.java
│ │ │ │ │ │ └── [6.0K] JobManagerFlinkMemoryUtils.java
│ │ │ │ │ ├── [1.6K] JvmMetaspaceAndOverhead.java
│ │ │ │ │ ├── [2.0K] JvmMetaspaceAndOverheadOptions.java
│ │ │ │ │ ├── [1.6K] LegacyMemoryOptions.java
│ │ │ │ │ ├── [3.6K] MemoryBackwardsCompatibilityUtils.java
│ │ │ │ │ ├── [2.4K] ProcessMemoryOptions.java
│ │ │ │ │ ├── [1.3K] ProcessMemorySpec.java
│ │ │ │ │ ├── [ 15K] ProcessMemoryUtils.java
│ │ │ │ │ ├── [1.7K] RangeFraction.java
│ │ │ │ │ └── [4.0K] taskmanager
│ │ │ │ │ ├── [5.2K] TaskExecutorFlinkMemory.java
│ │ │ │ │ └── [ 16K] TaskExecutorFlinkMemoryUtils.java
│ │ │ │ ├── [5.2K] ConfigurationParserUtils.java
│ │ │ │ ├── [2.1K] EmptyIterator.java
│ │ │ │ ├── [1.8K] EmptyMutableObjectIterator.java
│ │ │ │ ├── [ 16K] EnvironmentInformation.java
│ │ │ │ ├── [4.0K] event
│ │ │ │ │ ├── [ 917] EventListener.java
│ │ │ │ │ └── [ 921] NotificationListener.java
│ │ │ │ ├── [4.7K] EvictingBoundedList.java
│ │ │ │ ├── [5.1K] ExecutorThreadFactory.java
│ │ │ │ ├── [1.6K] FatalExitExceptionHandler.java
│ │ │ │ ├── [2.1K] ForwardingInputStream.java
│ │ │ │ ├── [1.7K] ForwardingOutputStream.java
│ │ │ │ ├── [8.0K] Hardware.java
│ │ │ │ ├── [2.1K] IntArrayList.java
│ │ │ │ ├── [4.3K] JvmShutdownSafeguard.java
│ │ │ │ ├── [1.5K] JvmUtils.java
│ │ │ │ ├── [1.0K] KeyGroupedIterator.java
│ │ │ │ ├── [1.4K] LeaderConnectionInfo.java
│ │ │ │ ├── [4.7K] LeaderRetrievalUtils.java
│ │ │ │ ├── [2.0K] LongArrayList.java
│ │ │ │ ├── [1.6K] MemoryBlockIterator.java
│ │ │ │ ├── [1.2K] NonClosingInputStreamDecorator.java
│ │ │ │ ├── [1.3K] NonClosingOutpusStreamDecorator.java
│ │ │ │ ├── [6.0K] NonReusingKeyGroupedIterator.java
│ │ │ │ ├── [2.5K] NonReusingMutableToRegularIteratorWrapper.java
│ │ │ │ ├── [1.9K] OperatorSubtaskDescriptionText.java
│ │ │ │ ├── [1.9K] RegularToMutableObjectIterator.java
│ │ │ │ ├── [1.2K] ResettableIterator.java
│ │ │ │ ├── [1.4K] ResettableMutableObjectIterator.java
│ │ │ │ ├── [7.5K] ReusingKeyGroupedIterator.java
│ │ │ │ ├── [2.9K] ReusingMutableToRegularIteratorWrapper.java
│ │ │ │ ├── [1.6K] Runnables.java
│ │ │ │ ├── [1.4K] ScalaUtils.java
│ │ │ │ ├── [2.5K] SignalHandler.java
│ │ │ │ ├── [2.0K] SingleElementIterator.java
│ │ │ │ └── [ 17K] ZooKeeperUtils.java
│ │ │ ├── [4.0K] webmonitor
│ │ │ │ ├── [4.0K] history
│ │ │ │ │ ├── [2.5K] ArchivedJson.java
│ │ │ │ │ ├── [2.7K] HistoryServerUtils.java
│ │ │ │ │ └── [1.8K] JsonArchivist.java
│ │ │ │ ├── [8.3K] RestfulGateway.java
│ │ │ │ ├── [4.0K] retriever
│ │ │ │ │ ├── [2.0K] GatewayRetriever.java
│ │ │ │ │ ├── [4.0K] impl
│ │ │ │ │ │ ├── [2.8K] RpcGatewayRetriever.java
│ │ │ │ │ │ └── [1.7K] RpcMetricQueryServiceRetriever.java
│ │ │ │ │ ├── [3.9K] LeaderGatewayRetriever.java
│ │ │ │ │ ├── [3.6K] LeaderRetriever.java
│ │ │ │ │ ├── [1.3K] MetricQueryServiceGateway.java
│ │ │ │ │ └── [1.3K] MetricQueryServiceRetriever.java
│ │ │ │ ├── [ 36K] WebMonitorEndpoint.java
│ │ │ │ ├── [2.2K] WebMonitorExtension.java
│ │ │ │ └── [ 11K] WebMonitorUtils.java
│ │ │ └── [4.0K] zookeeper
│ │ │ ├── [4.0K] filesystem
│ │ │ │ └── [2.7K] FileSystemStateStorageHelper.java
│ │ │ ├── [8.6K] FlinkZooKeeperQuorumPeer.java
│ │ │ ├── [1.5K] RetrievableStateStorageHelper.java
│ │ │ ├── [1.8K] ZooKeeperSharedCount.java
│ │ │ ├── [1.7K] ZooKeeperSharedValue.java
│ │ │ ├── [ 17K] ZooKeeperStateHandleStore.java
│ │ │ ├── [4.2K] ZooKeeperUtilityFactory.java
│ │ │ └── [1.5K] ZooKeeperVersionedValue.java
│ │ ├── [4.0K] resources
│ │ │ ├── [1.2K] flink-jaas.conf
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [1.6K] LICENSE.base64
│ │ │ │ ├── [1.6K] LICENSE.jsr166y
│ │ │ │ ├── [1.4K] LICENSE.jzlib
│ │ │ │ └── [1.6K] LICENSE.webbit
│ │ │ ├── [1.5K] NOTICE
│ │ │ └── [4.0K] services
│ │ │ ├── [ 924] org.apache.flink.runtime.security.contexts.SecurityContextFactory
│ │ │ └── [ 969] org.apache.flink.runtime.security.modules.SecurityModuleFactory
│ │ ├── [4.0K] resources-filtered
│ │ └── [4.0K] scala
│ │ ├── [4.0K] akka
│ │ │ ├── [4.0K] actor
│ │ │ │ └── [3.3K] RobustActorSystem.scala
│ │ │ └── [4.0K] dispatch
│ │ │ ├── [1.4K] PriorityThreadFactory.scala
│ │ │ ├── [2.8K] PriorityThreadsDispatcherPrerequisites.scala
│ │ │ └── [2.2K] PriorityThreadsDispatcher.scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] runtime
│ │ ├── [4.0K] akka
│ │ │ ├── [ 33K] AkkaUtils.scala
│ │ │ ├── [1.9K] CustomSSLEngineProvider.scala
│ │ │ └── [1.4K] RemoteAddressExtension.scala
│ │ └── [4.0K] types
│ │ ├── [8.0K] FlinkScalaKryoInstantiator.scala
│ │ └── [2.8K] JavaIterableWrapperSerializer.scala
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] runtime
│ │ ├── [4.0K] accumulators
│ │ │ └── [5.7K] StringifiedAccumulatorResultTest.java
│ │ ├── [4.0K] blob
│ │ │ ├── [ 15K] BlobCacheCleanupTest.java
│ │ │ ├── [7.9K] BlobCacheCorruptionTest.java
│ │ │ ├── [ 12K] BlobCacheDeleteTest.java
│ │ │ ├── [ 22K] BlobCacheGetTest.java
│ │ │ ├── [ 32K] BlobCachePutTest.java
│ │ │ ├── [5.7K] BlobCacheRecoveryTest.java
│ │ │ ├── [7.4K] BlobCacheRetriesTest.java
│ │ │ ├── [7.3K] BlobCacheSuccessTest.java
│ │ │ ├── [5.0K] BlobClientSslTest.java
│ │ │ ├── [ 17K] BlobClientTest.java
│ │ │ ├── [7.9K] BlobKeyTest.java
│ │ │ ├── [9.8K] BlobServerCleanupTest.java
│ │ │ ├── [4.6K] BlobServerCorruptionTest.java
│ │ │ ├── [ 13K] BlobServerDeleteTest.java
│ │ │ ├── [ 16K] BlobServerGetTest.java
│ │ │ ├── [ 30K] BlobServerPutTest.java
│ │ │ ├── [3.9K] BlobServerRangeTest.java
│ │ │ ├── [6.0K] BlobServerRecoveryTest.java
│ │ │ ├── [3.4K] BlobServerSSLTest.java
│ │ │ ├── [2.6K] BlobServerTest.java
│ │ │ ├── [3.4K] BlobUtilsNonWritableTest.java
│ │ │ ├── [4.1K] BlobUtilsTest.java
│ │ │ ├── [1.4K] FailingPermanentBlobService.java
│ │ │ ├── [2.2K] NoOpTransientBlobService.java
│ │ │ ├── [2.7K] TestingBlobStoreBuilder.java
│ │ │ ├── [2.4K] TestingBlobStore.java
│ │ │ ├── [2.5K] TestingFailingBlobServer.java
│ │ │ └── [1.3K] VoidPermanentBlobService.java
│ │ ├── [4.0K] checkpoint
│ │ │ ├── [4.0K] channel
│ │ │ │ ├── [8.6K] ChannelStateCheckpointWriterTest.java
│ │ │ │ ├── [7.4K] ChannelStateReaderImplTest.java
│ │ │ │ ├── [5.5K] ChannelStateSerializerImplTest.java
│ │ │ │ ├── [3.1K] ChannelStateWriteRequestDispatcherImplTest.java
│ │ │ │ ├── [5.3K] ChannelStateWriteRequestDispatcherTest.java
│ │ │ │ ├── [6.9K] ChannelStateWriteRequestExecutorImplTest.java
│ │ │ │ ├── [ 11K] ChannelStateWriterImplTest.java
│ │ │ │ ├── [2.4K] CheckpointInProgressRequestTest.java
│ │ │ │ ├── [3.9K] MockChannelStateWriter.java
│ │ │ │ └── [3.0K] RecordingChannelStateWriter.java
│ │ │ ├── [5.1K] ChannelStateNoRescalingPartitionerTest.java
│ │ │ ├── [7.3K] CheckpointCoordinatorFailureTest.java
│ │ │ ├── [ 18K] CheckpointCoordinatorMasterHooksTest.java
│ │ │ ├── [ 38K] CheckpointCoordinatorRestoringTest.java
│ │ │ ├── [ 30K] CheckpointCoordinatorTestingUtils.java
│ │ │ ├── [120K] CheckpointCoordinatorTest.java
│ │ │ ├── [ 27K] CheckpointCoordinatorTriggeringTest.java
│ │ │ ├── [4.4K] CheckpointFailureManagerTest.java
│ │ │ ├── [7.0K] CheckpointIDCounterTest.java
│ │ │ ├── [8.5K] CheckpointMetadataLoadingTest.java
│ │ │ ├── [3.5K] CheckpointOptionsTest.java
│ │ │ ├── [3.1K] CheckpointPropertiesTest.java
│ │ │ ├── [9.9K] CheckpointRequestDeciderTest.java
│ │ │ ├── [7.4K] CheckpointSettingsSerializableTest.java
│ │ │ ├── [ 13K] CheckpointStateRestoreTest.java
│ │ │ ├── [5.8K] CheckpointStatsCountsTest.java
│ │ │ ├── [7.2K] CheckpointStatsHistoryTest.java
│ │ │ ├── [3.4K] CheckpointStatsSnapshotTest.java
│ │ │ ├── [1.6K] CheckpointStatsStatusTest.java
│ │ │ ├── [ 18K] CheckpointStatsTrackerTest.java
│ │ │ ├── [1.5K] CheckpointTypeTest.java
│ │ │ ├── [3.1K] CompletedCheckpointStatsSummaryTest.java
│ │ │ ├── [ 12K] CompletedCheckpointStoreTest.java
│ │ │ ├── [ 12K] CompletedCheckpointTest.java
│ │ │ ├── [8.8K] ExecutionGraphCheckpointCoordinatorTest.java
│ │ │ ├── [3.4K] FailedCheckpointStatsTest.java
│ │ │ ├── [5.6K] FailoverStrategyCheckpointCoordinatorTest.java
│ │ │ ├── [4.0K] hooks
│ │ │ │ ├── [4.7K] MasterHooksTest.java
│ │ │ │ └── [2.5K] TestMasterHook.java
│ │ │ ├── [4.0K] metadata
│ │ │ │ ├── [2.3K] CheckpointMetadataTest.java
│ │ │ │ ├── [9.4K] CheckpointTestUtils.java
│ │ │ │ └── [7.3K] MetadataV3SerializerTest.java
│ │ │ ├── [2.5K] MinMaxAvgStatsTest.java
│ │ │ ├── [1.2K] NoOpFailJobCall.java
│ │ │ ├── [2.8K] OperatorSubtaskStateTest.java
│ │ │ ├── [ 11K] PendingCheckpointStatsTest.java
│ │ │ ├── [ 23K] PendingCheckpointTest.java
│ │ │ ├── [ 13K] PrioritizedOperatorSubtaskStateTest.java
│ │ │ ├── [1.7K] RestoredCheckpointStatsTest.java
│ │ │ ├── [6.5K] StandaloneCompletedCheckpointStoreTest.java
│ │ │ ├── [ 19K] StateAssignmentOperationTest.java
│ │ │ ├── [6.9K] StateHandleDummyUtil.java
│ │ │ ├── [2.4K] StateObjectCollectionTest.java
│ │ │ ├── [3.2K] SubtaskStateStatsTest.java
│ │ │ ├── [6.6K] TaskStateSnapshotTest.java
│ │ │ ├── [4.7K] TaskStateStatsTest.java
│ │ │ ├── [1.6K] TestingCheckpointRecoveryFactory.java
│ │ │ ├── [1.8K] TestingRetrievableStateStorageHelper.java
│ │ │ ├── [3.9K] ZKCheckpointIDCounterMultiServersTest.java
│ │ │ ├── [ 12K] ZooKeeperCompletedCheckpointStoreITCase.java
│ │ │ ├── [ 16K] ZooKeeperCompletedCheckpointStoreMockitoTest.java
│ │ │ └── [5.1K] ZooKeeperCompletedCheckpointStoreTest.java
│ │ ├── [4.0K] client
│ │ │ ├── [6.4K] ClientUtilsTest.java
│ │ │ └── [4.6K] SerializedJobExecutionResultTest.java
│ │ ├── [4.0K] clusterframework
│ │ │ ├── [2.6K] ApplicationStatusTest.java
│ │ │ ├── [ 21K] BootstrapToolsTest.java
│ │ │ ├── [4.0K] overlays
│ │ │ │ ├── [2.3K] ContainerOverlayTestBase.java
│ │ │ │ ├── [6.3K] FlinkDistributionOverlayTest.java
│ │ │ │ ├── [4.3K] HadoopConfOverlayTest.java
│ │ │ │ ├── [2.3K] HadoopUserOverlayTest.java
│ │ │ │ ├── [2.4K] KeytabOverlayTest.java
│ │ │ │ ├── [2.1K] Krb5ConfOverlayTest.java
│ │ │ │ ├── [2.9K] SSLStoreOverlayTest.java
│ │ │ │ └── [2.0K] UserLibOverlayTest.java
│ │ │ ├── [ 30K] TaskExecutorProcessUtilsTest.java
│ │ │ └── [4.0K] types
│ │ │ ├── [7.1K] LocationPreferenceSlotSelectionStrategyTest.java
│ │ │ ├── [3.8K] PreviousAllocationSlotSelectionStrategyTest.java
│ │ │ ├── [2.7K] ResourceBudgetManagerTest.java
│ │ │ ├── [ 15K] ResourceProfileTest.java
│ │ │ └── [4.4K] SlotSelectionStrategyTestBase.java
│ │ ├── [4.0K] concurrent
│ │ │ ├── [4.1K] ComponentMainThreadExecutorServiceAdapter.java
│ │ │ ├── [8.8K] ConjunctFutureTest.java
│ │ │ ├── [ 27K] FutureUtilsTest.java
│ │ │ ├── [7.6K] ManuallyTriggeredScheduledExecutor.java
│ │ │ ├── [2.9K] ManuallyTriggeredScheduledExecutorService.java
│ │ │ ├── [6.3K] ScheduledFutureAdapterTest.java
│ │ │ └── [1.4K] TestingUncaughtExceptionHandler.java
│ │ ├── [4.0K] deployment
│ │ │ ├── [5.6K] ResultPartitionDeploymentDescriptorTest.java
│ │ │ ├── [7.2K] ShuffleDescriptorTest.java
│ │ │ ├── [5.2K] TaskDeploymentDescriptorBuilder.java
│ │ │ └── [7.0K] TaskDeploymentDescriptorTest.java
│ │ ├── [4.0K] dispatcher
│ │ │ ├── [ 20K] DispatcherResourceCleanupTest.java
│ │ │ ├── [ 25K] DispatcherTest.java
│ │ │ ├── [ 14K] FileArchivedExecutionGraphStoreTest.java
│ │ │ ├── [9.0K] MiniDispatcherTest.java
│ │ │ ├── [1.3K] NoOpJobGraphListener.java
│ │ │ ├── [1.4K] NoOpJobGraphWriter.java
│ │ │ ├── [4.0K] runner
│ │ │ │ ├── [9.3K] DefaultDispatcherRunnerITCase.java
│ │ │ │ ├── [ 15K] DefaultDispatcherRunnerTest.java
│ │ │ │ ├── [ 18K] SessionDispatcherLeaderProcessTest.java
│ │ │ │ ├── [4.1K] TestingDispatcherGatewayService.java
│ │ │ │ ├── [2.0K] TestingDispatcherLeaderProcessFactory.java
│ │ │ │ ├── [4.6K] TestingDispatcherLeaderProcess.java
│ │ │ │ ├── [2.5K] TestingDispatcherServiceFactory.java
│ │ │ │ └── [ 10K] ZooKeeperDefaultDispatcherRunnerTest.java
│ │ │ ├── [2.6K] SchedulerNGFactoryFactoryTest.java
│ │ │ ├── [2.4K] TestingDispatcher.java
│ │ │ └── [3.1K] TestingJobManagerRunnerFactory.java
│ │ ├── [4.0K] entrypoint
│ │ │ ├── [2.7K] ClusterConfigurationParserFactoryTest.java
│ │ │ ├── [4.0K] component
│ │ │ │ ├── [2.9K] AbstractUserClassPathJobGraphRetrieverTest.java
│ │ │ │ └── [4.4K] FileJobGraphRetrieverTest.java
│ │ │ └── [3.0K] EntrypointClusterConfigurationParserFactoryTest.java
│ │ ├── [4.0K] event
│ │ │ └── [4.0K] task
│ │ │ ├── [2.3K] IntegerTaskEvent.java
│ │ │ ├── [2.5K] StringTaskEvent.java
│ │ │ └── [2.2K] TaskEventTest.java
│ │ ├── [4.0K] execution
│ │ │ └── [4.0K] librarycache
│ │ │ ├── [ 21K] BlobLibraryCacheManagerTest.java
│ │ │ ├── [6.2K] BlobLibraryCacheRecoveryITCase.java
│ │ │ ├── [1.2K] ContextClassLoaderLibraryCacheManager.java
│ │ │ ├── [7.8K] FlinkUserCodeClassLoadersTest.java
│ │ │ ├── [2.9K] TestingClassLoaderLease.java
│ │ │ └── [2.5K] TestingLibraryCacheManager.java
│ │ ├── [4.0K] executiongraph
│ │ │ ├── [2.8K] AllVerticesIteratorTest.java
│ │ │ ├── [ 20K] ArchivedExecutionGraphTest.java
│ │ │ ├── [1.6K] DummyJobInformation.java
│ │ │ ├── [2.0K] ErrorInfoTest.java
│ │ │ ├── [4.6K] ExecutionGraphCoLocationRestartTest.java
│ │ │ ├── [ 19K] ExecutionGraphConstructionTest.java
│ │ │ ├── [ 32K] ExecutionGraphDeploymentTest.java
│ │ │ ├── [2.1K] ExecutionGraphDeploymentWithBlobCacheTest.java
│ │ │ ├── [3.5K] ExecutionGraphDeploymentWithBlobServerTest.java
│ │ │ ├── [8.0K] ExecutionGraphMetricsTest.java
│ │ │ ├── [7.2K] ExecutionGraphNotEnoughResourceTest.java
│ │ │ ├── [ 11K] ExecutionGraphPartitionReleaseTest.java
│ │ │ ├── [8.8K] ExecutionGraphRescalingTest.java
│ │ │ ├── [ 31K] ExecutionGraphRestartTest.java
│ │ │ ├── [3.0K] ExecutionGraphResultPartitionAvailabilityCheckerTest.java
│ │ │ ├── [ 24K] ExecutionGraphSchedulingTest.java
│ │ │ ├── [ 10K] ExecutionGraphSuspendTest.java
│ │ │ ├── [ 21K] ExecutionGraphTestUtils.java
│ │ │ ├── [4.7K] ExecutionGraphVariousFailuesTest.java
│ │ │ ├── [5.2K] ExecutionJobVertexTest.java
│ │ │ ├── [ 14K] ExecutionPartitionLifecycleTest.java
│ │ │ ├── [ 23K] ExecutionTest.java
│ │ │ ├── [ 14K] ExecutionVertexCancelTest.java
│ │ │ ├── [ 12K] ExecutionVertexDeploymentTest.java
│ │ │ ├── [ 11K] ExecutionVertexInputConstraintTest.java
│ │ │ ├── [ 11K] ExecutionVertexLocalityTest.java
│ │ │ ├── [4.6K] ExecutionVertexSchedulingTest.java
│ │ │ ├── [3.4K] ExecutionVertexTest.java
│ │ │ ├── [4.0K] failover
│ │ │ │ └── [4.0K] flip1
│ │ │ │ ├── [6.9K] ExecutionFailureHandlerTest.java
│ │ │ │ ├── [2.7K] FailoverStrategyFactoryLoaderTest.java
│ │ │ │ ├── [2.7K] FailureHandlingResultTest.java
│ │ │ │ ├── [2.7K] FailureRateRestartBackoffTimeStrategyTest.java
│ │ │ │ ├── [2.1K] FixedDelayRestartBackoffTimeStrategyTest.java
│ │ │ │ ├── [4.0K] partitionrelease
│ │ │ │ │ ├── [2.0K] PartitionReleaseStrategyFactoryLoaderTest.java
│ │ │ │ │ └── [3.2K] PipelinedRegionExecutionViewTest.java
│ │ │ │ ├── [ 21K] PipelinedRegionComputeUtilTest.java
│ │ │ │ ├── [2.1K] RestartAllFailoverStrategyTest.java
│ │ │ │ ├── [6.5K] RestartBackoffTimeStrategyFactoryLoaderTest.java
│ │ │ │ ├── [ 17K] RestartPipelinedRegionFailoverStrategyTest.java
│ │ │ │ └── [1.6K] TestRestartBackoffTimeStrategy.java
│ │ │ ├── [3.5K] FinalizeOnMasterTest.java
│ │ │ ├── [7.3K] GlobalModVersionTest.java
│ │ │ ├── [2.6K] InteractionsCountingTaskManagerGateway.java
│ │ │ ├── [5.5K] IntermediateResultPartitionTest.java
│ │ │ ├── [10.0K] PointwisePatternTest.java
│ │ │ ├── [5.2K] ProgrammedSlotProvider.java
│ │ │ ├── [6.2K] RegionPartitionReleaseStrategyTest.java
│ │ │ ├── [4.0K] restart
│ │ │ │ ├── [3.0K] FailingRestartStrategy.java
│ │ │ │ ├── [4.1K] FailureRateRestartStrategyTest.java
│ │ │ │ ├── [2.9K] FixedDelayRestartStrategyTest.java
│ │ │ │ ├── [2.1K] InfiniteDelayRestartStrategy.java
│ │ │ │ ├── [1.2K] LatchedRestarter.java
│ │ │ │ ├── [1023] NoOpRestarter.java
│ │ │ │ ├── [3.5K] RestartStrategyFactoryTest.java
│ │ │ │ ├── [2.7K] RestartStrategyResolvingTest.java
│ │ │ │ └── [2.2K] ThrowingRestartStrategyFactoryTest.java
│ │ │ ├── [1.8K] TestExecutionVertex.java
│ │ │ ├── [3.6K] TestingComponentMainThreadExecutor.java
│ │ │ ├── [6.5K] TestingExecutionGraphBuilder.java
│ │ │ ├── [3.0K] TestingSlotProvider.java
│ │ │ ├── [1.5K] TestingSlotProviderStrategy.java
│ │ │ ├── [4.1K] TestRestartStrategy.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [1.3K] NotCancelAckingTaskGateway.java
│ │ │ │ ├── [6.2K] SimpleAckingTaskManagerGateway.java
│ │ │ │ └── [5.1K] SimpleSlotProvider.java
│ │ │ └── [5.2K] VertexSlotSharingTest.java
│ │ ├── [4.0K] externalresource
│ │ │ ├── [ 12K] ExternalResourceUtilsTest.java
│ │ │ ├── [1.4K] TestingExternalResourceDriverFactory.java
│ │ │ ├── [1.4K] TestingExternalResourceDriver.java
│ │ │ └── [1.4K] TestingFailedExternalResourceDriverFactory.java
│ │ ├── [4.0K] filecache
│ │ │ ├── [8.2K] FileCacheDirectoriesTest.java
│ │ │ └── [4.5K] FileCacheReadsFromBlobTest.java
│ │ ├── [4.0K] heartbeat
│ │ │ ├── [ 19K] HeartbeatManagerTest.java
│ │ │ ├── [2.1K] TestingHeartbeatListenerBuilder.java
│ │ │ ├── [2.0K] TestingHeartbeatListener.java
│ │ │ ├── [6.5K] TestingHeartbeatServices.java
│ │ │ ├── [1.7K] TestingHeartbeatTargetBuilder.java
│ │ │ └── [1.7K] TestingHeartbeatTarget.java
│ │ ├── [4.0K] highavailability
│ │ │ ├── [4.7K] HighAvailabilityServicesUtilsTest.java
│ │ │ ├── [3.9K] ManualLeaderService.java
│ │ │ ├── [4.0K] nonha
│ │ │ │ ├── [4.0K] embedded
│ │ │ │ │ ├── [7.8K] EmbeddedHaServicesTest.java
│ │ │ │ │ ├── [3.5K] EmbeddedLeaderServiceTest.java
│ │ │ │ │ ├── [2.5K] TestingEmbeddedHaServices.java
│ │ │ │ │ └── [2.5K] TestingLeaderContender.java
│ │ │ │ └── [4.0K] standalone
│ │ │ │ └── [5.3K] StandaloneHaServicesTest.java
│ │ │ ├── [1.7K] TestingClientHAServices.java
│ │ │ ├── [6.8K] TestingHighAvailabilityServicesBuilder.java
│ │ │ ├── [8.8K] TestingHighAvailabilityServices.java
│ │ │ ├── [6.0K] TestingManualHighAvailabilityServices.java
│ │ │ └── [4.0K] zookeeper
│ │ │ ├── [8.2K] ZooKeeperHaServicesTest.java
│ │ │ └── [3.1K] ZooKeeperRegistryTest.java
│ │ ├── [4.0K] instance
│ │ │ └── [2.8K] SimpleSlotContext.java
│ │ ├── [4.0K] io
│ │ │ ├── [4.0K] compression
│ │ │ │ └── [5.2K] BlockCompressionTest.java
│ │ │ ├── [4.0K] disk
│ │ │ │ ├── [ 15K] ChannelViewsTest.java
│ │ │ │ ├── [6.1K] FileChannelManagerImplTest.java
│ │ │ │ ├── [ 11K] FileChannelStreamsITCase.java
│ │ │ │ ├── [3.7K] FileChannelStreamsTest.java
│ │ │ │ ├── [4.0K] iomanager
│ │ │ │ │ ├── [6.3K] AsynchronousBufferFileWriterTest.java
│ │ │ │ │ ├── [ 12K] AsynchronousFileIOChannelTest.java
│ │ │ │ │ ├── [5.5K] BufferFileWriterFileSegmentReaderTest.java
│ │ │ │ │ ├── [6.2K] BufferFileWriterReaderTest.java
│ │ │ │ │ ├── [9.1K] IOManagerAsyncTest.java
│ │ │ │ │ ├── [8.1K] IOManagerITCase.java
│ │ │ │ │ └── [4.2K] IOManagerTest.java
│ │ │ │ ├── [1.5K] NoOpFileChannelManager.java
│ │ │ │ ├── [4.7K] SeekableFileChannelInputViewTest.java
│ │ │ │ └── [ 11K] SpillingBufferTest.java
│ │ │ └── [4.0K] network
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [1.9K] CheckpointBarrierTest.java
│ │ │ │ ├── [4.0K] reader
│ │ │ │ │ └── [5.8K] AbstractReaderTest.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ ├── [3.7K] CheckpointSerializationTest.java
│ │ │ │ │ ├── [5.6K] EventSerializerTest.java
│ │ │ │ │ ├── [ 11K] PagedViewsTest.java
│ │ │ │ │ ├── [ 13K] SpanningRecordSerializationTest.java
│ │ │ │ │ ├── [6.8K] SpanningRecordSerializerTest.java
│ │ │ │ │ └── [4.2K] SpanningWrapperTest.java
│ │ │ │ └── [4.0K] writer
│ │ │ │ ├── [3.2K] AbstractCollectingResultPartitionWriter.java
│ │ │ │ ├── [1.8K] AvailabilityTestResultPartitionWriter.java
│ │ │ │ ├── [6.8K] BroadcastRecordWriterTest.java
│ │ │ │ ├── [2.4K] RecordCollectingResultPartitionWriter.java
│ │ │ │ ├── [3.1K] RecordOrEventCollectingResultPartitionWriter.java
│ │ │ │ ├── [7.0K] RecordWriterDelegateTest.java
│ │ │ │ └── [ 27K] RecordWriterTest.java
│ │ │ ├── [4.0K] buffer
│ │ │ │ ├── [166K] AbstractByteBufTest.java
│ │ │ │ ├── [9.2K] BufferBuilderAndConsumerTest.java
│ │ │ │ ├── [4.3K] BufferBuilderTestUtils.java
│ │ │ │ ├── [7.7K] BufferCompressionTest.java
│ │ │ │ ├── [ 16K] BufferPoolFactoryTest.java
│ │ │ │ ├── [4.3K] LocalBufferPoolDestroyTest.java
│ │ │ │ ├── [ 18K] LocalBufferPoolTest.java
│ │ │ │ ├── [ 24K] NetworkBufferPoolTest.java
│ │ │ │ ├── [ 13K] NetworkBufferTest.java
│ │ │ │ ├── [3.1K] NoOpBufferPool.java
│ │ │ │ └── [ 13K] ReadOnlySlicedBufferTest.java
│ │ │ ├── [1.6K] DataExchangeModeTest.java
│ │ │ ├── [1.8K] DefaultChannelSelectorTest.java
│ │ │ ├── [4.0K] netty
│ │ │ │ ├── [4.7K] ByteBufUtilsTest.java
│ │ │ │ ├── [7.8K] CancelPartitionRequestTest.java
│ │ │ │ ├── [ 13K] ClientTransportErrorHandlingTest.java
│ │ │ │ ├── [ 25K] CreditBasedPartitionRequestClientHandlerTest.java
│ │ │ │ ├── [3.1K] NettyBufferPoolTest.java
│ │ │ │ ├── [ 12K] NettyClientServerSslTest.java
│ │ │ │ ├── [5.7K] NettyConnectionManagerTest.java
│ │ │ │ ├── [3.8K] NettyLeakDetectionResource.java
│ │ │ │ ├── [ 12K] NettyMessageClientDecoderDelegateTest.java
│ │ │ │ ├── [7.4K] NettyMessageClientSideSerializationTest.java
│ │ │ │ ├── [4.1K] NettyMessageServerSideSerializationTest.java
│ │ │ │ ├── [9.2K] NettyPartitionRequestClientTest.java
│ │ │ │ ├── [7.0K] NettyTestUtil.java
│ │ │ │ ├── [6.6K] PartitionRequestClientFactoryTest.java
│ │ │ │ ├── [ 20K] PartitionRequestQueueTest.java
│ │ │ │ ├── [4.2K] PartitionRequestServerHandlerTest.java
│ │ │ │ └── [4.5K] ServerTransportErrorHandlingTest.java
│ │ │ ├── [5.6K] NettyShuffleEnvironmentBuilder.java
│ │ │ ├── [ 11K] NettyShuffleEnvironmentTest.java
│ │ │ ├── [4.0K] partition
│ │ │ │ ├── [3.7K] AbstractPartitionTrackerTest.java
│ │ │ │ ├── [2.2K] AwaitableBufferAvailablityListener.java
│ │ │ │ ├── [5.1K] BoundedBlockingSubpartitionAvailabilityTest.java
│ │ │ │ ├── [5.3K] BoundedBlockingSubpartitionTest.java
│ │ │ │ ├── [9.1K] BoundedBlockingSubpartitionWriteReadTest.java
│ │ │ │ ├── [7.2K] BoundedDataTestBase.java
│ │ │ │ ├── [6.7K] BufferReaderWriterUtilTest.java
│ │ │ │ ├── [4.0K] consumer
│ │ │ │ │ ├── [ 12K] InputBuffersMetricsTest.java
│ │ │ │ │ ├── [5.5K] InputChannelBuilder.java
│ │ │ │ │ ├── [4.2K] InputChannelTest.java
│ │ │ │ │ ├── [3.6K] InputGateTestBase.java
│ │ │ │ │ ├── [4.0K] IteratorWrappingTestSingleInputGate.java
│ │ │ │ │ ├── [ 25K] LocalInputChannelTest.java
│ │ │ │ │ ├── [ 11K] RecoveredInputChannelTest.java
│ │ │ │ │ ├── [ 54K] RemoteInputChannelTest.java
│ │ │ │ │ ├── [5.2K] SingleInputGateBuilder.java
│ │ │ │ │ ├── [ 43K] SingleInputGateTest.java
│ │ │ │ │ ├── [1.8K] TestBufferReceivedListener.java
│ │ │ │ │ ├── [6.1K] TestInputChannel.java
│ │ │ │ │ ├── [1.7K] TestSingleInputGate.java
│ │ │ │ │ └── [8.0K] UnionInputGateTest.java
│ │ │ │ ├── [1.1K] CountingAvailabilityListener.java
│ │ │ │ ├── [7.2K] FileChannelBoundedDataTest.java
│ │ │ │ ├── [1.5K] FileChannelMemoryMappedBoundedDataTest.java
│ │ │ │ ├── [7.2K] InputChannelTestUtils.java
│ │ │ │ ├── [ 13K] InputGateFairnessTest.java
│ │ │ │ ├── [ 12K] JobMasterPartitionTrackerImplTest.java
│ │ │ │ ├── [1.5K] MemoryMappedBoundedDataTest.java
│ │ │ │ ├── [2.9K] MockResultPartitionWriter.java
│ │ │ │ ├── [1.0K] NoOpBufferAvailablityListener.java
│ │ │ │ ├── [2.4K] NoOpJobMasterPartitionTracker.java
│ │ │ │ ├── [2.1K] NoOpResourceManagerPartitionTracker.java
│ │ │ │ ├── [1.2K] NoOpResultPartitionConsumableNotifier.java
│ │ │ │ ├── [5.5K] PartialConsumePipelinedResultTest.java
│ │ │ │ ├── [4.9K] PartitionTestUtils.java
│ │ │ │ ├── [ 11K] PipelinedSubpartitionTest.java
│ │ │ │ ├── [ 21K] PipelinedSubpartitionWithReadViewTest.java
│ │ │ │ ├── [1.7K] ProducerFailedExceptionTest.java
│ │ │ │ ├── [2.6K] ReleaseOnConsumptionResultPartitionTest.java
│ │ │ │ ├── [8.6K] ResourceManagerPartitionTrackerImplTest.java
│ │ │ │ ├── [6.4K] ResultPartitionBuilder.java
│ │ │ │ ├── [4.3K] ResultPartitionFactoryTest.java
│ │ │ │ ├── [3.0K] ResultPartitionManagerTest.java
│ │ │ │ ├── [ 23K] ResultPartitionTest.java
│ │ │ │ ├── [5.1K] SubpartitionTestBase.java
│ │ │ │ ├── [ 11K] TaskExecutorPartitionTrackerImplTest.java
│ │ │ │ ├── [5.4K] TestingJobMasterPartitionTracker.java
│ │ │ │ └── [6.1K] TestingTaskExecutorPartitionTracker.java
│ │ │ ├── [4.0K] serialization
│ │ │ │ └── [4.0K] types
│ │ │ │ └── [2.5K] LargeObjectType.java
│ │ │ ├── [7.0K] TaskEventDispatcherTest.java
│ │ │ ├── [1.5K] TestingConnectionManager.java
│ │ │ ├── [1.7K] TestingPartitionRequestClient.java
│ │ │ └── [4.0K] util
│ │ │ ├── [2.0K] DeserializationUtils.java
│ │ │ ├── [3.2K] TestBufferFactory.java
│ │ │ ├── [2.6K] TestConsumerCallback.java
│ │ │ ├── [2.1K] TestNotificationListener.java
│ │ │ ├── [2.8K] TestPartitionProducer.java
│ │ │ ├── [4.8K] TestPooledBufferProvider.java
│ │ │ ├── [1.6K] TestProducerSource.java
│ │ │ ├── [4.2K] TestSubpartitionConsumer.java
│ │ │ ├── [2.8K] TestSubpartitionProducer.java
│ │ │ └── [1.7K] TestTaskEvent.java
│ │ ├── [4.0K] iterative
│ │ │ ├── [4.0K] concurrent
│ │ │ │ ├── [5.1K] BlockingBackChannelTest.java
│ │ │ │ ├── [3.6K] BrokerTest.java
│ │ │ │ ├── [1.1K] StringPair.java
│ │ │ │ ├── [3.5K] SuperstepBarrierTest.java
│ │ │ │ └── [5.1K] SuperstepKickoffLatchTest.java
│ │ │ └── [4.0K] event
│ │ │ └── [4.4K] EventWithAggregatorsTest.java
│ │ ├── [4.0K] jobgraph
│ │ │ ├── [6.9K] InputOutputFormatContainerTest.java
│ │ │ ├── [ 13K] JobGraphTest.java
│ │ │ ├── [1.4K] JobIdTest.java
│ │ │ ├── [9.3K] JobTaskVertexTest.java
│ │ │ ├── [4.0K] jsonplan
│ │ │ │ └── [4.6K] JsonGeneratorTest.java
│ │ │ ├── [1.2K] ScheduleModeTest.java
│ │ │ ├── [4.0K] tasks
│ │ │ │ └── [2.5K] JobCheckpointingSettingsTest.java
│ │ │ ├── [4.0K] topology
│ │ │ │ ├── [4.2K] DefaultLogicalResultTest.java
│ │ │ │ ├── [5.2K] DefaultLogicalTopologyTest.java
│ │ │ │ └── [4.4K] DefaultLogicalVertexTest.java
│ │ │ └── [4.0K] utils
│ │ │ └── [1.3K] JobGraphTestUtils.java
│ │ ├── [4.0K] jobmanager
│ │ │ ├── [9.9K] BlobsCleanupITCase.java
│ │ │ ├── [3.7K] HighAvailabilityModeTest.java
│ │ │ ├── [ 13K] JobManagerProcessUtilsTest.java
│ │ │ ├── [4.0K] scheduler
│ │ │ │ ├── [3.9K] CoLocationConstraintTest.java
│ │ │ │ ├── [1.1K] DummyScheduledUnit.java
│ │ │ │ ├── [6.6K] ScheduleOrUpdateConsumersTest.java
│ │ │ │ ├── [ 12K] SchedulerIsolatedTasksTest.java
│ │ │ │ ├── [7.9K] SchedulerTestBase.java
│ │ │ │ └── [ 28K] ScheduleWithCoLocationHintTest.java
│ │ │ ├── [7.5K] SlotCountExceedingParallelismTest.java
│ │ │ ├── [4.0K] slots
│ │ │ │ ├── [1.1K] DummySlotOwner.java
│ │ │ │ └── [1.6K] TestingSlotOwner.java
│ │ │ ├── [1.6K] StandaloneJobGraphStoreTest.java
│ │ │ ├── [9.2K] ZooKeeperJobGraphsStoreITCase.java
│ │ │ └── [4.1K] ZooKeeperJobGraphStoreTest.java
│ │ ├── [4.0K] jobmaster
│ │ │ ├── [4.0K] factories
│ │ │ │ └── [1.9K] TestingJobMasterServiceFactory.java
│ │ │ ├── [3.8K] JobExecutionITCase.java
│ │ │ ├── [ 10K] JobManagerRunnerImplTest.java
│ │ │ ├── [ 12K] JobMasterPartitionReleaseTest.java
│ │ │ ├── [ 83K] JobMasterTest.java
│ │ │ ├── [4.5K] JobRecoveryITCase.java
│ │ │ ├── [4.6K] JobResultTest.java
│ │ │ ├── [4.0K] slotpool
│ │ │ │ ├── [6.4K] AllocatedSlotsTest.java
│ │ │ │ ├── [3.6K] AvailableSlotsTest.java
│ │ │ │ ├── [2.8K] DualKeyLinkedMapTest.java
│ │ │ │ ├── [1.6K] DummyPayload.java
│ │ │ │ ├── [ 10K] SingleLogicalSlotTest.java
│ │ │ │ ├── [ 13K] SlotPoolBatchSlotRequestTest.java
│ │ │ │ ├── [2.7K] SlotPoolBuilder.java
│ │ │ │ ├── [5.9K] SlotPoolCoLocationTest.java
│ │ │ │ ├── [ 30K] SlotPoolImplTest.java
│ │ │ │ ├── [ 13K] SlotPoolInteractionsTest.java
│ │ │ │ ├── [7.4K] SlotPoolPendingRequestFailureTest.java
│ │ │ │ ├── [5.0K] SlotPoolRequestCompletionTest.java
│ │ │ │ ├── [2.9K] SlotPoolResource.java
│ │ │ │ ├── [ 15K] SlotPoolSlotSharingTest.java
│ │ │ │ ├── [7.4K] SlotPoolSlotSpreadOutTest.java
│ │ │ │ ├── [4.2K] SlotPoolUtils.java
│ │ │ │ ├── [ 33K] SlotSharingManagerTest.java
│ │ │ │ ├── [1.8K] TestingAllocatedSlotActions.java
│ │ │ │ └── [2.5K] TestingSlotPoolImpl.java
│ │ │ ├── [3.6K] TestingAbstractInvokables.java
│ │ │ ├── [2.8K] TestingJobManagerRunner.java
│ │ │ ├── [3.4K] TestingJobManagerSharedServicesBuilder.java
│ │ │ ├── [2.9K] TestingJobMasterService.java
│ │ │ ├── [3.3K] TestingLogicalSlotBuilder.java
│ │ │ ├── [4.1K] TestingLogicalSlot.java
│ │ │ ├── [1.3K] TestingPayload.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [8.2K] JobMasterBuilder.java
│ │ │ ├── [2.1K] JobResultUtils.java
│ │ │ ├── [ 16K] TestingJobMasterGatewayBuilder.java
│ │ │ └── [ 17K] TestingJobMasterGateway.java
│ │ ├── [4.0K] leaderelection
│ │ │ ├── [6.6K] LeaderChangeClusterComponentsTest.java
│ │ │ ├── [6.7K] LeaderElectionTest.java
│ │ │ ├── [2.3K] StandaloneLeaderElectionTest.java
│ │ │ ├── [3.9K] TestingContender.java
│ │ │ ├── [3.7K] TestingLeaderElectionService.java
│ │ │ ├── [2.7K] TestingListener.java
│ │ │ ├── [6.0K] ZooKeeperLeaderElectionConnectionHandlingTest.java
│ │ │ ├── [ 18K] ZooKeeperLeaderElectionTest.java
│ │ │ └── [7.6K] ZooKeeperLeaderRetrievalTest.java
│ │ ├── [4.0K] leaderretrieval
│ │ │ ├── [2.1K] SettableLeaderRetrievalService.java
│ │ │ └── [2.4K] SettableLeaderRetrievalServiceTest.java
│ │ ├── [4.0K] memory
│ │ │ ├── [1.6K] MemoryManagerBuilder.java
│ │ │ ├── [3.7K] MemoryManagerConcurrentModReleaseTest.java
│ │ │ ├── [8.5K] MemoryManagerSharedResourcesTest.java
│ │ │ ├── [ 13K] MemoryManagerTest.java
│ │ │ ├── [ 14K] MemorySegmentSimpleTest.java
│ │ │ ├── [1.5K] OpaqueMemoryResourceTest.java
│ │ │ ├── [4.7K] SharedResourcesTest.java
│ │ │ └── [3.3K] UnsafeMemoryBudgetTest.java
│ │ ├── [4.0K] messages
│ │ │ ├── [4.4K] CheckpointMessagesTest.java
│ │ │ ├── [7.9K] GenericMessageTester.java
│ │ │ ├── [4.0K] webmonitor
│ │ │ │ ├── [2.0K] JobDetailsTest.java
│ │ │ │ ├── [1.9K] JobIdsWithStatusOverviewTest.java
│ │ │ │ └── [2.6K] MultipleJobsDetailsTest.java
│ │ │ └── [5.7K] WebMonitorMessagesTest.java
│ │ ├── [4.0K] metrics
│ │ │ ├── [1.3K] DescriptiveStatisticsHistogramTest.java
│ │ │ ├── [4.0K] dump
│ │ │ │ ├── [8.9K] MetricDumpSerializerTest.java
│ │ │ │ ├── [3.1K] MetricDumpTest.java
│ │ │ │ ├── [5.8K] MetricQueryServiceTest.java
│ │ │ │ ├── [5.9K] QueryScopeInfoTest.java
│ │ │ │ └── [2.6K] TestingMetricQueryServiceGateway.java
│ │ │ ├── [4.0K] groups
│ │ │ │ ├── [ 14K] AbstractMetricGroupTest.java
│ │ │ │ ├── [5.1K] JobManagerGroupTest.java
│ │ │ │ ├── [4.3K] JobManagerJobGroupTest.java
│ │ │ │ ├── [4.0K] MetricGroupRegistrationTest.java
│ │ │ │ ├── [ 14K] MetricGroupTest.java
│ │ │ │ ├── [7.3K] OperatorGroupTest.java
│ │ │ │ ├── [2.3K] TaskIOMetricGroupTest.java
│ │ │ │ ├── [6.9K] TaskManagerGroupTest.java
│ │ │ │ ├── [4.4K] TaskManagerJobGroupTest.java
│ │ │ │ └── [8.3K] TaskMetricGroupTest.java
│ │ │ ├── [ 17K] MetricRegistryImplTest.java
│ │ │ ├── [ 17K] ReporterSetupTest.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [1.1K] DummyCharacterFilter.java
│ │ │ │ ├── [1.8K] InterceptingOperatorMetricGroup.java
│ │ │ │ ├── [1.8K] InterceptingTaskMetricGroup.java
│ │ │ │ ├── [4.4K] MetricUtilsTest.java
│ │ │ │ └── [1.5K] TestReporter.java
│ │ │ └── [4.0K] utils
│ │ │ └── [2.3K] SystemResourcesCounterTest.java
│ │ ├── [4.0K] minicluster
│ │ │ ├── [ 21K] MiniClusterITCase.java
│ │ │ ├── [1.9K] SometimesExceptionSender.java
│ │ │ ├── [1.7K] SometimesInstantiationErrorSender.java
│ │ │ ├── [4.3K] TestingMiniClusterConfiguration.java
│ │ │ └── [4.7K] TestingMiniCluster.java
│ │ ├── [4.0K] misc
│ │ │ └── [4.7K] KryoSerializerRegistrationsTest.java
│ │ ├── [4.0K] net
│ │ │ ├── [3.3K] ConnectionUtilsTest.java
│ │ │ └── [ 22K] SSLUtilsTest.java
│ │ ├── [4.0K] operators
│ │ │ ├── [5.1K] AbstractOuterJoinTaskExternalITCase.java
│ │ │ ├── [ 16K] AbstractOuterJoinTaskTest.java
│ │ │ ├── [ 16K] CachedMatchTaskTest.java
│ │ │ ├── [4.0K] chaining
│ │ │ │ ├── [4.5K] ChainedAllReduceDriverTest.java
│ │ │ │ ├── [6.8K] ChainedOperatorsMetricTest.java
│ │ │ │ └── [9.8K] ChainTaskTest.java
│ │ │ ├── [4.1K] CoGroupTaskExternalITCase.java
│ │ │ ├── [ 14K] CoGroupTaskTest.java
│ │ │ ├── [8.1K] CombinerOversizedRecordsTest.java
│ │ │ ├── [7.5K] CombineTaskExternalITCase.java
│ │ │ ├── [8.4K] CombineTaskTest.java
│ │ │ ├── [4.0K] coordination
│ │ │ │ ├── [ 17K] CoordinatorEventsExactlyOnceITCase.java
│ │ │ │ ├── [2.8K] MockOperatorCoordinatorContext.java
│ │ │ │ ├── [2.0K] MockOperatorCoordinator.java
│ │ │ │ ├── [1.3K] MockOperatorEventGateway.java
│ │ │ │ ├── [ 19K] OperatorCoordinatorHolderTest.java
│ │ │ │ ├── [ 28K] OperatorCoordinatorSchedulerTest.java
│ │ │ │ ├── [5.7K] OperatorEventValveTest.java
│ │ │ │ ├── [4.7K] RecreateOnResetOperatorCoordinatorTest.java
│ │ │ │ ├── [3.3K] TestEventSender.java
│ │ │ │ ├── [2.8K] TestingCoordinationRequestHandler.java
│ │ │ │ ├── [4.6K] TestingOperatorCoordinator.java
│ │ │ │ ├── [1.6K] TestingOperatorInfo.java
│ │ │ │ └── [1.6K] TestOperatorEvent.java
│ │ │ ├── [3.4K] CrossTaskExternalITCase.java
│ │ │ ├── [ 16K] CrossTaskTest.java
│ │ │ ├── [ 15K] DataSinkTaskTest.java
│ │ │ ├── [ 10K] DataSourceTaskTest.java
│ │ │ ├── [4.0K] drivers
│ │ │ │ ├── [7.9K] AllGroupReduceDriverTest.java
│ │ │ │ ├── [ 11K] AllReduceDriverTest.java
│ │ │ │ ├── [5.1K] DriverTestData.java
│ │ │ │ ├── [1.5K] GatheringCollector.java
│ │ │ │ ├── [ 13K] GroupReduceDriverTest.java
│ │ │ │ ├── [ 12K] ReduceCombineDriverTest.java
│ │ │ │ ├── [ 11K] ReduceDriverTest.java
│ │ │ │ └── [6.9K] TestTaskContext.java
│ │ │ ├── [4.5K] FlatMapTaskTest.java
│ │ │ ├── [1.6K] FullOuterJoinTaskExternalITCase.java
│ │ │ ├── [1.6K] FullOuterJoinTaskTest.java
│ │ │ ├── [4.0K] hash
│ │ │ │ ├── [ 17K] CompactingHashTableTest.java
│ │ │ │ ├── [ 67K] HashTableITCase.java
│ │ │ │ ├── [ 11K] HashTablePerformanceComparison.java
│ │ │ │ ├── [ 12K] HashTableTest.java
│ │ │ │ ├── [ 18K] InPlaceMutableHashTableTest.java
│ │ │ │ ├── [ 17K] MutableHashTableTestBase.java
│ │ │ │ ├── [ 41K] NonReusingHashJoinIteratorITCase.java
│ │ │ │ ├── [4.3K] NonReusingReOpenableHashTableITCase.java
│ │ │ │ ├── [9.0K] ReOpenableHashTableITCase.java
│ │ │ │ ├── [7.7K] ReOpenableHashTableTestBase.java
│ │ │ │ ├── [ 35K] ReusingHashJoinIteratorITCase.java
│ │ │ │ └── [4.3K] ReusingReOpenableHashTableITCase.java
│ │ │ ├── [2.3K] InvokableClassConstructorTest.java
│ │ │ ├── [5.8K] JoinTaskExternalITCase.java
│ │ │ ├── [ 30K] JoinTaskTest.java
│ │ │ ├── [3.0K] LeftOuterJoinTaskExternalITCase.java
│ │ │ ├── [8.5K] LeftOuterJoinTaskTest.java
│ │ │ ├── [8.9K] ReduceTaskExternalITCase.java
│ │ │ ├── [ 11K] ReduceTaskTest.java
│ │ │ ├── [4.0K] resettable
│ │ │ │ ├── [6.6K] BlockResettableMutableObjectIteratorTest.java
│ │ │ │ ├── [6.0K] NonReusingBlockResettableIteratorTest.java
│ │ │ │ ├── [6.0K] ReusingBlockResettableIteratorTest.java
│ │ │ │ ├── [7.0K] SpillingResettableIteratorTest.java
│ │ │ │ └── [6.0K] SpillingResettableMutableObjectIteratorTest.java
│ │ │ ├── [3.0K] RightOuterJoinTaskExternalITCase.java
│ │ │ ├── [8.6K] RightOuterJoinTaskTest.java
│ │ │ ├── [4.0K] sort
│ │ │ │ ├── [ 19K] AbstractSortMergeOuterJoinIteratorITCase.java
│ │ │ │ ├── [ 14K] CombiningUnilateralSortMergerITCase.java
│ │ │ │ ├── [ 12K] ExternalSortITCase.java
│ │ │ │ ├── [ 16K] ExternalSortLargeRecordsITCase.java
│ │ │ │ ├── [ 15K] FixedLengthRecordSorterTest.java
│ │ │ │ ├── [8.5K] LargeRecordHandlerITCase.java
│ │ │ │ ├── [8.5K] LargeRecordHandlerTest.java
│ │ │ │ ├── [7.3K] MergeIteratorTest.java
│ │ │ │ ├── [7.3K] NonReusingSortMergeCoGroupIteratorITCase.java
│ │ │ │ ├── [ 13K] NonReusingSortMergeInnerJoinIteratorITCase.java
│ │ │ │ ├── [3.3K] NonReusingSortMergeOuterJoinIteratorITCase.java
│ │ │ │ ├── [ 14K] NormalizedKeySorterTest.java
│ │ │ │ ├── [7.3K] ReusingSortMergeCoGroupIteratorITCase.java
│ │ │ │ ├── [ 13K] ReusingSortMergeInnerJoinIteratorITCase.java
│ │ │ │ ├── [3.3K] ReusingSortMergeOuterJoinIteratorITCase.java
│ │ │ │ └── [5.5K] UnilateralSortMergerTest.java
│ │ │ ├── [4.0K] testutils
│ │ │ │ ├── [ 12K] BinaryOperatorTestBase.java
│ │ │ │ ├── [1.7K] CollectionIterator.java
│ │ │ │ ├── [1.3K] DelayingInfinitiveInputIterator.java
│ │ │ │ ├── [1.7K] DelayingIterator.java
│ │ │ │ ├── [1.0K] DiscardingOutputCollector.java
│ │ │ │ ├── [ 12K] DriverTestBase.java
│ │ │ │ ├── [1.4K] DummyCheckpointInvokable.java
│ │ │ │ ├── [7.4K] DummyEnvironment.java
│ │ │ │ ├── [1.8K] DummyInvokable.java
│ │ │ │ ├── [1.2K] ExpectedTestException.java
│ │ │ │ ├── [1.5K] InfiniteInputIterator.java
│ │ │ │ ├── [1.3K] InfiniteIntTupleIterator.java
│ │ │ │ ├── [1.7K] Match.java
│ │ │ │ ├── [2.2K] MatchRemovingJoiner.java
│ │ │ │ ├── [6.1K] MockEnvironmentBuilder.java
│ │ │ │ ├── [ 12K] MockEnvironment.java
│ │ │ │ ├── [2.8K] MockInputSplitProvider.java
│ │ │ │ ├── [1.6K] MutableObjectIteratorWrapper.java
│ │ │ │ ├── [2.9K] NirvanaOutputList.java
│ │ │ │ ├── [3.9K] PairGenerator.java
│ │ │ │ ├── [1.9K] RandomIntPairGenerator.java
│ │ │ │ ├── [1.8K] SimpleTupleJoinFunction.java
│ │ │ │ ├── [2.2K] TaskCancelThread.java
│ │ │ │ ├── [5.6K] TaskTestBase.java
│ │ │ │ ├── [ 15K] TestData.java
│ │ │ │ ├── [4.0K] types
│ │ │ │ │ ├── [4.0K] IntListComparator.java
│ │ │ │ │ ├── [1.6K] IntList.java
│ │ │ │ │ ├── [1.3K] IntListPairComparator.java
│ │ │ │ │ ├── [3.3K] IntListSerializer.java
│ │ │ │ │ ├── [3.9K] IntPairComparator.java
│ │ │ │ │ ├── [1.3K] IntPair.java
│ │ │ │ │ ├── [1.3K] IntPairListPairComparator.java
│ │ │ │ │ ├── [1.3K] IntPairPairComparator.java
│ │ │ │ │ ├── [3.4K] IntPairSerializer.java
│ │ │ │ │ ├── [3.5K] StringPairComparator.java
│ │ │ │ │ ├── [1.3K] StringPair.java
│ │ │ │ │ ├── [1.4K] StringPairPairComparator.java
│ │ │ │ │ └── [2.9K] StringPairSerializer.java
│ │ │ │ ├── [ 12K] UnaryOperatorTestBase.java
│ │ │ │ ├── [1.8K] UniformIntPairGenerator.java
│ │ │ │ ├── [2.0K] UniformIntStringTupleGenerator.java
│ │ │ │ ├── [1.9K] UniformIntTupleGenerator.java
│ │ │ │ ├── [2.3K] UniformRecordGenerator.java
│ │ │ │ ├── [2.0K] UniformStringPairGenerator.java
│ │ │ │ └── [2.2K] UnionIterator.java
│ │ │ └── [4.0K] util
│ │ │ ├── [2.7K] BitSetTest.java
│ │ │ ├── [6.4K] BloomFilterTest.java
│ │ │ ├── [ 11K] HashVsSortMiniBenchmark.java
│ │ │ └── [ 14K] OutputEmitterTest.java
│ │ ├── [4.0K] query
│ │ │ ├── [7.5K] KvStateLocationRegistryTest.java
│ │ │ ├── [4.7K] KvStateLocationTest.java
│ │ │ └── [ 12K] KvStateRegistryTest.java
│ │ ├── [4.0K] registration
│ │ │ ├── [8.2K] RegisteredRpcConnectionTest.java
│ │ │ ├── [3.7K] RetryingRegistrationConfigurationTest.java
│ │ │ ├── [ 14K] RetryingRegistrationTest.java
│ │ │ └── [2.6K] TestRegistrationGateway.java
│ │ ├── [4.0K] resourcemanager
│ │ │ ├── [2.8K] ActiveResourceManagerTest.java
│ │ │ ├── [9.8K] JobLeaderIdServiceTest.java
│ │ │ ├── [5.2K] ResourceManagerHATest.java
│ │ │ ├── [ 10K] ResourceManagerJobMasterTest.java
│ │ │ ├── [ 10K] ResourceManagerPartitionLifecycleTest.java
│ │ │ ├── [ 15K] ResourceManagerTaskExecutorTest.java
│ │ │ ├── [ 12K] ResourceManagerTest.java
│ │ │ ├── [4.0K] slotmanager
│ │ │ │ ├── [3.4K] AnyMatchingSlotMatchingStrategyTest.java
│ │ │ │ ├── [3.1K] LeastUtilizationSlotMatchingStrategyTest.java
│ │ │ │ ├── [4.9K] SlotManagerBuilder.java
│ │ │ │ ├── [2.8K] SlotManagerConfigurationTest.java
│ │ │ │ ├── [8.9K] SlotManagerFailUnfulfillableTest.java
│ │ │ │ ├── [ 71K] SlotManagerImplTest.java
│ │ │ │ ├── [7.2K] SlotProtocolTest.java
│ │ │ │ ├── [7.5K] TaskManagerReleaseInSlotManagerTest.java
│ │ │ │ ├── [2.7K] TestingResourceActionsBuilder.java
│ │ │ │ ├── [2.6K] TestingResourceActions.java
│ │ │ │ ├── [1.9K] TestingSlotManagerBuilder.java
│ │ │ │ ├── [4.1K] TestingSlotManager.java
│ │ │ │ └── [2.7K] TestingTaskManagerSlotInformation.java
│ │ │ ├── [6.3K] StandaloneResourceManagerTest.java
│ │ │ ├── [3.1K] TestingResourceManager.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [3.4K] MockResourceManagerRuntimeServices.java
│ │ │ │ └── [ 16K] TestingResourceManagerGateway.java
│ │ │ └── [5.9K] WorkerResourceSpecTest.java
│ │ ├── [4.0K] rest
│ │ │ ├── [ 12K] FileUploadHandlerTest.java
│ │ │ ├── [4.0K] handler
│ │ │ │ ├── [6.7K] AbstractHandlerTest.java
│ │ │ │ ├── [4.0K] async
│ │ │ │ │ ├── [ 13K] AbstractAsynchronousOperationHandlersTest.java
│ │ │ │ │ ├── [2.7K] AsynchronousOperationResultTest.java
│ │ │ │ │ ├── [3.0K] CompletedOperationCacheTest.java
│ │ │ │ │ └── [1.7K] TriggerResponseTest.java
│ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ └── [4.7K] JobManagerLogListHandlerTest.java
│ │ │ │ ├── [3.8K] FileUploadsTest.java
│ │ │ │ ├── [2.7K] InFlightRequestTrackerTest.java
│ │ │ │ ├── [4.0K] job
│ │ │ │ │ ├── [4.2K] JobConfigHandlerTest.java
│ │ │ │ │ ├── [6.2K] JobExceptionsHandlerTest.java
│ │ │ │ │ ├── [5.4K] JobExecutionResultHandlerTest.java
│ │ │ │ │ ├── [ 11K] JobSubmitHandlerTest.java
│ │ │ │ │ ├── [6.3K] JobVertexBackPressureHandlerTest.java
│ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ ├── [8.0K] AbstractMetricsHandlerTest.java
│ │ │ │ │ │ ├── [3.2K] AggregatingJobsMetricsHandlerTest.java
│ │ │ │ │ │ ├── [ 13K] AggregatingMetricsHandlerTestBase.java
│ │ │ │ │ │ ├── [3.7K] AggregatingSubtasksMetricsHandlerTest.java
│ │ │ │ │ │ ├── [3.3K] AggregatingTaskManagersMetricsHandlerTest.java
│ │ │ │ │ │ ├── [1.5K] JobManagerMetricsHandlerTest.java
│ │ │ │ │ │ ├── [1.7K] JobMetricsHandlerTest.java
│ │ │ │ │ │ ├── [2.1K] JobVertexMetricsHandlerTest.java
│ │ │ │ │ │ ├── [6.5K] JobVertexWatermarksHandlerTest.java
│ │ │ │ │ │ ├── [5.0K] MetricsHandlerTestBase.java
│ │ │ │ │ │ ├── [2.3K] SubtaskMetricsHandlerTest.java
│ │ │ │ │ │ └── [1.8K] TaskManagerMetricsHandlerTest.java
│ │ │ │ │ ├── [4.0K] savepoints
│ │ │ │ │ │ ├── [8.9K] SavepointHandlersTest.java
│ │ │ │ │ │ └── [9.1K] StopWithSavepointHandlersTest.java
│ │ │ │ │ ├── [6.2K] SubtaskCurrentAttemptDetailsHandlerTest.java
│ │ │ │ │ ├── [4.9K] SubtaskExecutionAttemptAccumulatorsHandlerTest.java
│ │ │ │ │ └── [6.4K] SubtaskExecutionAttemptDetailsHandlerTest.java
│ │ │ │ ├── [4.0K] legacy
│ │ │ │ │ ├── [4.0K] backpressure
│ │ │ │ │ │ ├── [ 11K] BackPressureRequestCoordinatorTest.java
│ │ │ │ │ │ └── [8.6K] BackPressureStatsTrackerImplTest.java
│ │ │ │ │ ├── [4.0K] checkpoints
│ │ │ │ │ │ └── [2.6K] CheckpointStatsCacheTest.java
│ │ │ │ │ ├── [ 12K] DefaultExecutionGraphCacheTest.java
│ │ │ │ │ ├── [4.0K] files
│ │ │ │ │ │ └── [2.6K] MimeTypesTest.java
│ │ │ │ │ ├── [4.0K] messages
│ │ │ │ │ │ └── [1.4K] ClusterOverviewWithVersionTest.java
│ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ ├── [9.4K] MetricFetcherTest.java
│ │ │ │ │ │ └── [4.8K] MetricStoreTest.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [2.4K] ArchivedExecutionConfigBuilder.java
│ │ │ │ │ └── [5.1K] ArchivedExecutionGraphBuilder.java
│ │ │ │ ├── [1.7K] RestHandlerConfigurationTest.java
│ │ │ │ ├── [4.0K] router
│ │ │ │ │ └── [5.9K] RouterTest.java
│ │ │ │ ├── [4.0K] taskmanager
│ │ │ │ │ ├── [ 17K] AbstractTaskManagerFileHandlerTest.java
│ │ │ │ │ └── [5.2K] TaskManagerLogListHandlerTest.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [3.9K] HandlerRequestUtilsTest.java
│ │ │ ├── [4.0K] messages
│ │ │ │ ├── [4.0K] checkpoints
│ │ │ │ │ ├── [1.6K] CheckpointConfigInfoTest.java
│ │ │ │ │ ├── [3.8K] CheckpointingStatisticsTest.java
│ │ │ │ │ ├── [1.5K] TaskCheckpointStatisticsTest.java
│ │ │ │ │ └── [2.8K] TaskCheckpointStatisticsWithSubtaskDetailsTest.java
│ │ │ │ ├── [1.4K] ClusterConfigurationInfoTest.java
│ │ │ │ ├── [1.3K] DashboardConfigurationTest.java
│ │ │ │ ├── [4.0K] dataset
│ │ │ │ │ └── [3.6K] ClusterDataSetListResponseBodyTest.java
│ │ │ │ ├── [4.0K] job
│ │ │ │ │ ├── [3.5K] JobDetailsInfoTest.java
│ │ │ │ │ ├── [5.6K] JobExecutionResultResponseBodyTest.java
│ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ ├── [2.4K] AbstractMetricsHeadersTest.java
│ │ │ │ │ │ ├── [1.6K] JobManagerMetricsHeadersTest.java
│ │ │ │ │ │ ├── [1.6K] JobMetricsHeadersTest.java
│ │ │ │ │ │ ├── [1.8K] JobVertexMetricsHeadersTest.java
│ │ │ │ │ │ ├── [2.6K] MetricCollectionResponseBodyTest.java
│ │ │ │ │ │ ├── [1.6K] MetricsFilterParameterTest.java
│ │ │ │ │ │ ├── [1.9K] SubtaskMetricsHeadersTest.java
│ │ │ │ │ │ └── [1.7K] TaskManagerMetricsHeadersTest.java
│ │ │ │ │ ├── [4.0K] savepoints
│ │ │ │ │ │ ├── [1.7K] SavepointDisposalRequestTest.java
│ │ │ │ │ │ ├── [2.5K] SavepointInfoMarshallingTest.java
│ │ │ │ │ │ ├── [1.3K] SavepointInfoTest.java
│ │ │ │ │ │ └── [2.2K] SavepointTriggerRequestBodyTest.java
│ │ │ │ │ ├── [1.9K] SubtaskExecutionAttemptAccumulatorsInfoTest.java
│ │ │ │ │ ├── [2.2K] SubtaskExecutionAttemptDetailsInfoTest.java
│ │ │ │ │ └── [2.1K] SubtasksAllAccumulatorsInfoTest.java
│ │ │ │ ├── [1.9K] JobAccumulatorsInfoTest.java
│ │ │ │ ├── [1.7K] JobConfigInfoTest.java
│ │ │ │ ├── [1.8K] JobExceptionsInfoNoRootTest.java
│ │ │ │ ├── [1.8K] JobExceptionsInfoTest.java
│ │ │ │ ├── [1.4K] JobPlanInfoTest.java
│ │ │ │ ├── [1.6K] JobSubmitRequestBodyTest.java
│ │ │ │ ├── [1.3K] JobSubmitResponseBodyTest.java
│ │ │ │ ├── [1.8K] JobVertexAccumulatorsInfoTest.java
│ │ │ │ ├── [2.0K] JobVertexBackPressureInfoTest.java
│ │ │ │ ├── [2.8K] JobVertexDetailsInfoTest.java
│ │ │ │ ├── [2.5K] JobVertexTaskManagersInfoTest.java
│ │ │ │ ├── [4.0K] json
│ │ │ │ │ ├── [3.1K] JobResultDeserializerTest.java
│ │ │ │ │ ├── [2.8K] SerializedThrowableSerializerTest.java
│ │ │ │ │ └── [2.8K] SerializedValueSerializerTest.java
│ │ │ │ ├── [3.5K] MessageParametersTest.java
│ │ │ │ ├── [1.8K] ResourceProfileInfoTest.java
│ │ │ │ ├── [2.4K] RestRequestMarshallingTestBase.java
│ │ │ │ ├── [3.0K] RestResponseMarshallingTestBase.java
│ │ │ │ ├── [2.1K] SubtaskIndexPathParameterTest.java
│ │ │ │ ├── [2.4K] SubtasksTimesInfoTest.java
│ │ │ │ ├── [4.0K] taskmanager
│ │ │ │ │ ├── [1.5K] LogListInfoTest.java
│ │ │ │ │ ├── [2.8K] TaskManagerDetailsInfoTest.java
│ │ │ │ │ ├── [1.9K] TaskManagerIdPathParameterTest.java
│ │ │ │ │ ├── [2.0K] TaskManagerInfoTest.java
│ │ │ │ │ ├── [1.6K] TaskManagersInfoTest.java
│ │ │ │ │ └── [1.8K] ThreadDumpInfoTest.java
│ │ │ │ ├── [1.8K] VertexBackPressureLevelTest.java
│ │ │ │ ├── [1.6K] VertexBackPressureStatusTest.java
│ │ │ │ ├── [1.6K] YarnCancelJobTerminationHeadersTest.java
│ │ │ │ └── [1.6K] YarnStopJobTerminationHeadersTest.java
│ │ │ ├── [ 15K] MultipartUploadResource.java
│ │ │ ├── [4.3K] RestClientMultipartTest.java
│ │ │ ├── [7.5K] RestClientTest.java
│ │ │ ├── [2.6K] RestServerEndpointConfigurationTest.java
│ │ │ ├── [ 40K] RestServerEndpointITCase.java
│ │ │ ├── [3.1K] RestServerEndpointTest.java
│ │ │ ├── [7.0K] RestServerSSLAuthITCase.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [4.6K] DocumentingDispatcherRestEndpoint.java
│ │ │ │ ├── [2.1K] DocumentingRestEndpoint.java
│ │ │ │ └── [1.7K] NoOpExecutionGraphCache.java
│ │ │ └── [4.0K] versioning
│ │ │ └── [1.7K] RestAPIVersionTest.java
│ │ ├── [4.0K] rpc
│ │ │ ├── [4.0K] akka
│ │ │ │ ├── [2.1K] ActorSystemResource.java
│ │ │ │ ├── [2.6K] AkkaActorSystemTest.java
│ │ │ │ ├── [5.5K] AkkaRpcActorHandshakeTest.java
│ │ │ │ ├── [6.6K] AkkaRpcActorOversizedResponseMessageTest.java
│ │ │ │ ├── [ 23K] AkkaRpcActorTest.java
│ │ │ │ ├── [ 13K] AkkaRpcServiceTest.java
│ │ │ │ ├── [2.9K] MainThreadValidationTest.java
│ │ │ │ ├── [7.0K] MessageSerializationTest.java
│ │ │ │ ├── [8.6K] SupervisorActorTest.java
│ │ │ │ └── [4.6K] TimeoutCallStackTest.java
│ │ │ ├── [ 14K] AsyncCallsTest.java
│ │ │ ├── [ 13K] FencedRpcEndpointTest.java
│ │ │ ├── [3.7K] RpcConnectionTest.java
│ │ │ ├── [8.2K] RpcEndpointTest.java
│ │ │ ├── [6.3K] RpcSSLAuthITCase.java
│ │ │ ├── [3.0K] TestingGatewayBase.java
│ │ │ ├── [5.5K] TestingRpcService.java
│ │ │ └── [1.8K] TestingRpcServiceResource.java
│ │ ├── [4.0K] scheduler
│ │ │ ├── [4.0K] adapter
│ │ │ │ ├── [ 11K] DefaultExecutionTopologyTest.java
│ │ │ │ ├── [4.1K] DefaultExecutionVertexTest.java
│ │ │ │ ├── [2.6K] DefaultResultPartitionTest.java
│ │ │ │ └── [5.5K] DefaultSchedulingPipelinedRegionTest.java
│ │ │ ├── [4.8K] DefaultExecutionSlotAllocatorPreferredLocationsTest.java
│ │ │ ├── [ 15K] DefaultExecutionSlotAllocatorTest.java
│ │ │ ├── [8.5K] DefaultSchedulerBatchSchedulingTest.java
│ │ │ ├── [ 37K] DefaultSchedulerTest.java
│ │ │ ├── [3.5K] DeploymentHandleTest.java
│ │ │ ├── [6.8K] ExecutionGraphToInputsLocationsRetrieverAdapterTest.java
│ │ │ ├── [4.7K] ExecutionVertexVersionerTest.java
│ │ │ ├── [ 21K] SchedulerTestingUtils.java
│ │ │ ├── [4.0K] strategy
│ │ │ │ ├── [4.8K] EagerSchedulingStrategyTest.java
│ │ │ │ ├── [ 10K] InputDependencyConstraintCheckerTest.java
│ │ │ │ ├── [ 17K] LazyFromSourcesSchedulingStrategyTest.java
│ │ │ │ ├── [6.5K] PipelinedRegionSchedulingStrategyTest.java
│ │ │ │ ├── [1.3K] StrategyTestUtil.java
│ │ │ │ ├── [1.6K] TestingSchedulerOperations.java
│ │ │ │ ├── [3.1K] TestingSchedulingExecutionVertex.java
│ │ │ │ ├── [2.4K] TestingSchedulingPipelinedRegion.java
│ │ │ │ ├── [3.7K] TestingSchedulingResultPartition.java
│ │ │ │ ├── [ 13K] TestingSchedulingTopology.java
│ │ │ │ └── [4.0K] TestSchedulingStrategy.java
│ │ │ ├── [1.6K] TestExecutionSlotAllocatorFactory.java
│ │ │ ├── [5.6K] TestExecutionSlotAllocator.java
│ │ │ ├── [2.5K] TestExecutionVertexOperationsDecorator.java
│ │ │ └── [3.5K] TestingInputsLocationsRetriever.java
│ │ ├── [4.0K] security
│ │ │ ├── [4.0K] contexts
│ │ │ │ ├── [1.7K] AnotherCompatibleTestSecurityContextFactory.java
│ │ │ │ ├── [1.7K] IncompatibleTestSecurityContextFactory.java
│ │ │ │ ├── [1.4K] LinkageErrorSecurityContextFactory.java
│ │ │ │ └── [1.7K] TestSecurityContextFactory.java
│ │ │ ├── [4.6K] ExitTrappingSecurityManagerTest.java
│ │ │ ├── [1.4K] KerberosUtilsTest.java
│ │ │ ├── [4.0K] modules
│ │ │ │ ├── [2.8K] JaasModuleTest.java
│ │ │ │ └── [1.5K] TestSecurityModuleFactory.java
│ │ │ └── [ 11K] SecurityUtilsTest.java
│ │ ├── [4.0K] shuffle
│ │ │ ├── [2.1K] PartitionDescriptorBuilder.java
│ │ │ └── [3.5K] ShuffleServiceLoaderTest.java
│ │ ├── [4.0K] source
│ │ │ └── [4.0K] coordinator
│ │ │ ├── [2.8K] CoordinatorTestUtils.java
│ │ │ ├── [3.5K] ExecutorNotifierTest.java
│ │ │ ├── [7.4K] SourceCoordinatorContextTest.java
│ │ │ ├── [4.0K] SourceCoordinatorProviderTest.java
│ │ │ ├── [3.6K] SourceCoordinatorTestBase.java
│ │ │ ├── [9.4K] SourceCoordinatorTest.java
│ │ │ └── [7.1K] SplitAssignmentTrackerTest.java
│ │ ├── [4.0K] state
│ │ │ ├── [3.9K] ArrayListSerializerUpgradeTest.java
│ │ │ ├── [7.9K] AsyncSnapshotCallableTest.java
│ │ │ ├── [7.6K] ChannelPersistenceITCase.java
│ │ │ ├── [7.8K] CheckpointStreamWithResultProviderTest.java
│ │ │ ├── [ 11K] DuplicatingCheckpointOutputStreamTest.java
│ │ │ ├── [1.3K] FileStateBackendMigrationTest.java
│ │ │ ├── [2.4K] FileStateBackendTest.java
│ │ │ ├── [4.0K] filesystem
│ │ │ │ ├── [ 12K] AbstractFileCheckpointStorageTestBase.java
│ │ │ │ ├── [ 10K] CheckpointStateOutputStreamTest.java
│ │ │ │ ├── [2.7K] FileStateHandleTest.java
│ │ │ │ ├── [ 14K] FsCheckpointStateOutputStreamTest.java
│ │ │ │ ├── [ 10K] FsCheckpointStorageTest.java
│ │ │ │ ├── [6.1K] FsCheckpointStreamFactoryTest.java
│ │ │ │ ├── [5.0K] FsStateBackendEntropyTest.java
│ │ │ │ └── [3.1K] FsStorageLocationReferenceTest.java
│ │ │ ├── [4.0K] heap
│ │ │ │ ├── [ 15K] CopyOnWriteStateMapTest.java
│ │ │ │ ├── [6.2K] CopyOnWriteStateTableTest.java
│ │ │ │ ├── [7.3K] HeapKeyedStateBackendSnapshotMigrationTest.java
│ │ │ │ ├── [1.3K] HeapPriorityQueueSetTest.java
│ │ │ │ ├── [2.9K] HeapPriorityQueueTest.java
│ │ │ │ ├── [2.8K] HeapStateBackendTestBase.java
│ │ │ │ ├── [2.8K] KeyGroupPartitionedPriorityQueueTest.java
│ │ │ │ ├── [1.5K] MockInternalKeyContext.java
│ │ │ │ ├── [5.1K] StateTableSnapshotCompatibilityTest.java
│ │ │ │ └── [2.9K] TestDuplicateSerializer.java
│ │ │ ├── [3.0K] HeapKeyedStateBackendAsyncByDefaultTest.java
│ │ │ ├── [9.6K] IncrementalRemoteKeyedStateHandleTest.java
│ │ │ ├── [ 17K] InternalPriorityQueueTestBase.java
│ │ │ ├── [3.4K] JavaSerializerTest.java
│ │ │ ├── [3.6K] JavaSerializerUpgradeTest.java
│ │ │ ├── [5.4K] KeyedStateCheckpointOutputStreamTest.java
│ │ │ ├── [5.8K] KeyGroupPartitionerTestBase.java
│ │ │ ├── [5.2K] KeyGroupRangeOffsetTest.java
│ │ │ ├── [3.8K] KeyGroupRangeTest.java
│ │ │ ├── [2.2K] KeyGroupsStateHandleTest.java
│ │ │ ├── [3.6K] LocalRecoveryDirectoryProviderImplTest.java
│ │ │ ├── [4.0K] memory
│ │ │ │ ├── [4.8K] ByteStreamStateHandleTest.java
│ │ │ │ ├── [2.8K] MemoryCheckpointOutputStreamTest.java
│ │ │ │ └── [7.9K] MemoryCheckpointStorageTest.java
│ │ │ ├── [2.2K] MemoryStateBackendTest.java
│ │ │ ├── [4.0K] metainfo
│ │ │ │ └── [3.3K] StateMetaInfoSnapshotEnumConstantsTest.java
│ │ │ ├── [ 34K] OperatorStateBackendTest.java
│ │ │ ├── [4.0K] OperatorStateOutputCheckpointStreamTest.java
│ │ │ ├── [1.6K] OperatorStreamStateHandleTest.java
│ │ │ ├── [ 11K] SerializationProxiesTest.java
│ │ │ ├── [4.5K] SharedStateRegistryTest.java
│ │ │ ├── [7.6K] SnapshotDirectoryTest.java
│ │ │ ├── [1.9K] SnapshotResultTest.java
│ │ │ ├── [ 19K] StateBackendLoadingTest.java
│ │ │ ├── [ 43K] StateBackendMigrationTestBase.java
│ │ │ ├── [155K] StateBackendTestBase.java
│ │ │ ├── [ 14K] StateSerializerProviderTest.java
│ │ │ ├── [6.4K] StateSnapshotCompressionTest.java
│ │ │ ├── [6.9K] StateSnapshotTransformerTest.java
│ │ │ ├── [8.6K] TaskExecutorLocalStateStoresManagerTest.java
│ │ │ ├── [6.9K] TaskLocalStateStoreImplTest.java
│ │ │ ├── [ 10K] TaskStateManagerImplTest.java
│ │ │ ├── [2.1K] TestCheckpointStorageWorkerView.java
│ │ │ ├── [6.8K] TestingCheckpointStorageCoordinatorView.java
│ │ │ ├── [1.5K] TestingStreamStateHandle.java
│ │ │ ├── [2.1K] TestLocalRecoveryConfig.java
│ │ │ ├── [1.5K] TestMemoryCheckpointOutputStream.java
│ │ │ ├── [4.0K] TestTaskLocalStateStore.java
│ │ │ ├── [9.0K] TestTaskStateManager.java
│ │ │ ├── [4.0K] testutils
│ │ │ │ ├── [4.2K] BackendForTestStream.java
│ │ │ │ ├── [2.0K] EmptyStreamStateHandle.java
│ │ │ │ ├── [1.6K] TestCheckpointStreamFactory.java
│ │ │ │ └── [1.9K] TestCompletedCheckpointStorageLocation.java
│ │ │ ├── [4.0K] ttl
│ │ │ │ ├── [1.4K] HeapAsyncSnapshotTtlStateTest.java
│ │ │ │ ├── [1.4K] HeapSyncSnapshotTtlStateTest.java
│ │ │ │ ├── [4.0K] mock
│ │ │ │ │ ├── [2.3K] MockInternalAggregatingState.java
│ │ │ │ │ ├── [2.1K] MockInternalFoldingState.java
│ │ │ │ │ ├── [2.5K] MockInternalKvState.java
│ │ │ │ │ ├── [2.1K] MockInternalListState.java
│ │ │ │ │ ├── [2.5K] MockInternalMapState.java
│ │ │ │ │ ├── [1.7K] MockInternalMergingState.java
│ │ │ │ │ ├── [2.2K] MockInternalReducingState.java
│ │ │ │ │ ├── [1.6K] MockInternalValueState.java
│ │ │ │ │ ├── [3.1K] MockKeyedStateBackendBuilder.java
│ │ │ │ │ ├── [ 11K] MockKeyedStateBackend.java
│ │ │ │ │ ├── [1.8K] MockRestoreOperation.java
│ │ │ │ │ └── [5.1K] MockStateBackend.java
│ │ │ │ ├── [1.3K] MockTtlStateTest.java
│ │ │ │ ├── [1.1K] MockTtlTimeProvider.java
│ │ │ │ ├── [6.1K] StateBackendTestContext.java
│ │ │ │ ├── [3.2K] TtlAggregatingStateTestContext.java
│ │ │ │ ├── [1.6K] TtlFixedLenElemListStateTestContext.java
│ │ │ │ ├── [2.2K] TtlFoldingStateTestContext.java
│ │ │ │ ├── [2.7K] TtlListStateTestContextBase.java
│ │ │ │ ├── [2.6K] TtlMapStateAllEntriesTestContext.java
│ │ │ │ ├── [1.8K] TtlMapStatePerElementTestContext.java
│ │ │ │ ├── [1.1K] TtlMapStatePerNullElementTestContext.java
│ │ │ │ ├── [1.6K] TtlMapStateTestContext.java
│ │ │ │ ├── [3.5K] TtlMergingStateTestContext.java
│ │ │ │ ├── [1.6K] TtlNonFixedLenElemListStateTestContext.java
│ │ │ │ ├── [2.5K] TtlReducingStateTestContext.java
│ │ │ │ ├── [3.7K] TtlSerializerUpgradeTest.java
│ │ │ │ ├── [ 17K] TtlStateTestBase.java
│ │ │ │ ├── [1.9K] TtlStateTestContextBase.java
│ │ │ │ ├── [2.4K] TtlValueMatchers.java
│ │ │ │ └── [2.1K] TtlValueStateTestContext.java
│ │ │ ├── [3.7K] VoidNamespaceSerializerUpgradeTest.java
│ │ │ └── [1.2K] VoidNamespaceTypeInfoTest.java
│ │ ├── [4.0K] taskexecutor
│ │ │ ├── [3.5K] BackPressureSampleServiceTest.java
│ │ │ ├── [ 11K] DefaultJobLeaderServiceTest.java
│ │ │ ├── [6.5K] DefaultJobTableTest.java
│ │ │ ├── [3.4K] NettyShuffleEnvironmentConfigurationTest.java
│ │ │ ├── [1.5K] NoOpPartitionProducerStateChecker.java
│ │ │ ├── [4.0K] partition
│ │ │ │ └── [3.5K] PartitionTableTest.java
│ │ │ ├── [4.0K] slot
│ │ │ │ ├── [ 16K] TaskSlotTableImplTest.java
│ │ │ │ ├── [2.4K] TaskSlotTest.java
│ │ │ │ ├── [3.1K] TaskSlotUtils.java
│ │ │ │ ├── [1.7K] TestingSlotActionsBuilder.java
│ │ │ │ ├── [1.8K] TestingSlotActions.java
│ │ │ │ ├── [2.3K] TestingTaskSlotPayload.java
│ │ │ │ ├── [8.9K] TestingTaskSlotTable.java
│ │ │ │ ├── [6.8K] ThreadSafeTaskSlotTable.java
│ │ │ │ └── [2.6K] TimerServiceTest.java
│ │ │ ├── [7.3K] TaskExecutorITCase.java
│ │ │ ├── [7.7K] TaskExecutorOperatorEventHandlingTest.java
│ │ │ ├── [ 22K] TaskExecutorPartitionLifecycleTest.java
│ │ │ ├── [6.1K] TaskExecutorResourceUtilsTest.java
│ │ │ ├── [9.5K] TaskExecutorSlotLifetimeTest.java
│ │ │ ├── [ 33K] TaskExecutorSubmissionTest.java
│ │ │ ├── [ 86K] TaskExecutorTest.java
│ │ │ ├── [6.0K] TaskExecutorToResourceManagerConnectionTest.java
│ │ │ ├── [9.9K] TaskManagerRunnerConfigurationTest.java
│ │ │ ├── [6.0K] TaskManagerRunnerStartupTest.java
│ │ │ ├── [3.9K] TaskManagerRunnerTest.java
│ │ │ ├── [5.6K] TaskManagerServicesBuilder.java
│ │ │ ├── [ 15K] TaskSubmissionTestEnvironment.java
│ │ │ ├── [1.3K] TestGlobalAggregateManager.java
│ │ │ ├── [5.0K] TestingJobLeaderService.java
│ │ │ ├── [2.5K] TestingJobServices.java
│ │ │ ├── [2.6K] TestingPartitionProducerStateChecker.java
│ │ │ ├── [9.7K] TestingTaskExecutorGatewayBuilder.java
│ │ │ ├── [ 11K] TestingTaskExecutorGateway.java
│ │ │ ├── [2.9K] TestingTaskExecutor.java
│ │ │ └── [4.5K] TestTaskManagerActions.java
│ │ ├── [4.0K] taskmanager
│ │ │ ├── [1.2K] LocalTaskManagerLocation.java
│ │ │ ├── [1.2K] LocalUnresolvedTaskManagerLocation.java
│ │ │ ├── [1.4K] NoOpCheckpointResponder.java
│ │ │ ├── [1.3K] NoOpTaskManagerActions.java
│ │ │ ├── [1.4K] NoOpTaskOperatorEventGateway.java
│ │ │ ├── [ 10K] TaskAsyncCallTest.java
│ │ │ ├── [9.2K] TaskCancelAsyncProducerConsumerITCase.java
│ │ │ ├── [3.8K] TaskExecutionStateTest.java
│ │ │ ├── [6.7K] TaskManagerLocationTest.java
│ │ │ ├── [ 38K] TaskTest.java
│ │ │ ├── [4.6K] TestCheckpointResponder.java
│ │ │ ├── [3.3K] TestingTaskManagerActions.java
│ │ │ └── [9.2K] TestTaskBuilder.java
│ │ ├── [4.0K] testtasks
│ │ │ ├── [1.4K] BlockingNoOpInvokable.java
│ │ │ ├── [1.7K] FailingBlockingInvokable.java
│ │ │ ├── [1.2K] NoOpInvokable.java
│ │ │ ├── [1.8K] OutputBlockedInvokable.java
│ │ │ └── [1.3K] WaitingNoOpInvokable.java
│ │ ├── [4.0K] testutils
│ │ │ ├── [1.5K] CancelableInvokable.java
│ │ │ ├── [5.5K] CommonTestUtils.java
│ │ │ ├── [3.6K] DirectScheduledExecutorService.java
│ │ │ ├── [4.0K] DispatcherProcess.java
│ │ │ ├── [3.7K] MiniClusterResourceConfiguration.java
│ │ │ ├── [6.7K] MiniClusterResource.java
│ │ │ ├── [4.0K] recordutils
│ │ │ │ ├── [5.2K] RecordComparatorFactory.java
│ │ │ │ ├── [ 13K] RecordComparator.java
│ │ │ │ ├── [4.0K] RecordPairComparatorFactory.java
│ │ │ │ ├── [3.7K] RecordPairComparator.java
│ │ │ │ ├── [2.3K] RecordSerializerFactory.java
│ │ │ │ └── [3.7K] RecordSerializer.java
│ │ │ ├── [3.2K] RecoverableCompletedCheckpointStore.java
│ │ │ ├── [4.0K] statemigration
│ │ │ │ ├── [7.4K] TestType.java
│ │ │ │ ├── [2.6K] V1TestTypeSerializerSnapshot.java
│ │ │ │ └── [2.6K] V2TestTypeSerializerSnapshot.java
│ │ │ ├── [1.9K] SystemExitTrackingSecurityManager.java
│ │ │ ├── [7.7K] TestingJobGraphStore.java
│ │ │ ├── [ 10K] TestJvmProcess.java
│ │ │ └── [3.4K] ZooKeeperTestUtils.java
│ │ ├── [4.0K] throwable
│ │ │ └── [3.8K] ThrowableClassifierTest.java
│ │ ├── [4.0K] util
│ │ │ ├── [2.7K] AddressResolutionTest.java
│ │ │ ├── [3.6K] AtomicDisposableReferenceCounterTest.java
│ │ │ ├── [4.0K] bash
│ │ │ │ ├── [1.9K] BashJavaUtilsTest.java
│ │ │ │ └── [3.6K] FlinkConfigLoaderTest.java
│ │ │ ├── [2.2K] BlobServerResource.java
│ │ │ ├── [2.7K] BlockerCheckpointStreamFactory.java
│ │ │ ├── [5.4K] BlockingCheckpointOutputStream.java
│ │ │ ├── [5.0K] BlockingFSDataInputStream.java
│ │ │ ├── [7.1K] BlockingShutdownTest.java
│ │ │ ├── [5.1K] ClassLoaderUtilsTest.java
│ │ │ ├── [4.0K] config
│ │ │ │ └── [4.0K] memory
│ │ │ │ └── [ 15K] ProcessMemoryUtilsTestBase.java
│ │ │ ├── [4.7K] EnvironmentInformationTest.java
│ │ │ ├── [4.0K] event
│ │ │ │ └── [2.7K] TaskEventHandlerTest.java
│ │ │ ├── [4.1K] EvictingBoundedListTest.java
│ │ │ ├── [1.3K] HardwareTest.java
│ │ │ ├── [4.0K] jartestprogram
│ │ │ │ ├── [1.2K] AnonymousInNonStaticMethod2.java
│ │ │ │ ├── [1.1K] AnonymousInNonStaticMethod.java
│ │ │ │ ├── [1.1K] AnonymousInStaticMethod.java
│ │ │ │ ├── [ 956] ExternalTokenizer2.java
│ │ │ │ ├── [1.4K] ExternalTokenizer.java
│ │ │ │ ├── [1.4K] FilterWithIndirection.java
│ │ │ │ ├── [1.5K] FilterWithLambda.java
│ │ │ │ ├── [1.5K] FilterWithMethodReference.java
│ │ │ │ ├── [1.2K] NestedAnonymousInnerClass.java
│ │ │ │ ├── [1.3K] StaticData.java
│ │ │ │ ├── [1.1K] UtilFunction.java
│ │ │ │ ├── [1.3K] UtilFunctionWrapper.java
│ │ │ │ ├── [2.1K] WordCountWithAnonymousClass.java
│ │ │ │ ├── [1.6K] WordCountWithExternalClass2.java
│ │ │ │ ├── [1.6K] WordCountWithExternalClass.java
│ │ │ │ ├── [2.1K] WordCountWithInnerClass.java
│ │ │ │ └── [1023] WordFilter.java
│ │ │ ├── [9.6K] JvmExitOnFatalErrorTest.java
│ │ │ ├── [1.3K] ManualTicker.java
│ │ │ ├── [3.6K] NettyShuffleDescriptorBuilder.java
│ │ │ ├── [ 24K] NonReusingKeyGroupedIteratorTest.java
│ │ │ ├── [ 26K] ReusingKeyGroupedIteratorTest.java
│ │ │ ├── [4.6K] RunnablesTest.java
│ │ │ ├── [2.0K] ScalaUtilsTest.java
│ │ │ ├── [1.1K] SerializableFunction.java
│ │ │ ├── [5.6K] SerializedThrowableTest.java
│ │ │ ├── [1.4K] StartupUtils.java
│ │ │ ├── [3.5K] TestingFatalErrorHandler.java
│ │ │ ├── [2.8K] TestingFatalErrorHandlerResource.java
│ │ │ ├── [2.6K] TestingTaskManagerRuntimeInfo.java
│ │ │ └── [2.6K] ZooKeeperUtilTest.java
│ │ ├── [4.0K] webmonitor
│ │ │ ├── [4.0K] history
│ │ │ │ ├── [1.7K] ArchivedJsonTest.java
│ │ │ │ └── [3.8K] HistoryServerUtilsTest.java
│ │ │ ├── [4.0K] retriever
│ │ │ │ ├── [4.0K] impl
│ │ │ │ │ ├── [5.2K] RpcGatewayRetrieverTest.java
│ │ │ │ │ └── [1.6K] VoidMetricQueryServiceRetriever.java
│ │ │ │ └── [3.4K] LeaderGatewayRetrieverTest.java
│ │ │ ├── [9.8K] TestingDispatcherGateway.java
│ │ │ ├── [3.6K] TestingExecutionGraphCache.java
│ │ │ ├── [ 18K] TestingRestfulGateway.java
│ │ │ └── [3.1K] WebMonitorEndpointTest.java
│ │ └── [4.0K] zookeeper
│ │ ├── [2.2K] ZooKeeperResource.java
│ │ ├── [ 22K] ZooKeeperStateHandleStoreTest.java
│ │ └── [4.8K] ZooKeeperTestEnvironment.java
│ ├── [4.0K] resources
│ │ ├── [4.0K] arraylist-serializer-1.11
│ │ │ ├── [ 178] serializer-snapshot
│ │ │ └── [ 17] test-data
│ │ ├── [2.1K] flink_11-kryo_registrations
│ │ ├── [3.5K] heap_keyed_statebackend_1_5_map.snapshot
│ │ ├── [4.0K] java-serializer-1.11
│ │ │ ├── [ 78] serializer-snapshot
│ │ │ └── [ 81] test-data
│ │ ├── [4.2K] local127.keystore
│ │ ├── [1.5K] local127.truststore
│ │ ├── [1.5K] log4j2-test.properties
│ │ ├── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [1.1K] org.apache.flink.metrics.reporter.MetricReporterFactory
│ │ │ ├── [1.1K] org.apache.flink.runtime.security.contexts.SecurityContextFactory
│ │ │ └── [ 850] org.apache.flink.runtime.security.modules.SecurityModuleFactory
│ │ ├── [4.0K] ttl-serializer-1.11
│ │ │ ├── [ 278] serializer-snapshot
│ │ │ └── [ 21] test-data
│ │ ├── [2.1K] untrusted.keystore
│ │ └── [4.0K] void-namespace-serializer-1.11
│ │ ├── [ 96] serializer-snapshot
│ │ └── [ 1] test-data
│ └── [4.0K] scala
│ ├── [4.0K] akka
│ │ └── [4.0K] actor
│ │ └── [2.4K] RobustActorSystemTest.scala
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ └── [4.0K] runtime
│ ├── [4.0K] akka
│ │ └── [8.9K] AkkaUtilsTest.scala
│ ├── [4.0K] jobmanager
│ │ └── [4.3K] Tasks.scala
│ └── [4.0K] testingUtils
│ ├── [1.3K] TestingMessages.scala
│ └── [5.8K] TestingUtils.scala
├── [4.0K] flink-runtime-web
│ ├── [9.1K] pom.xml
│ ├── [3.4K] README.md
│ ├── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] runtime
│ │ │ │ └── [4.0K] webmonitor
│ │ │ │ ├── [4.0K] handlers
│ │ │ │ │ ├── [2.0K] AbstractJarPlanHeaders.java
│ │ │ │ │ ├── [1.8K] AllowNonRestoredStateQueryParameter.java
│ │ │ │ │ ├── [1.4K] EntryClassQueryParameter.java
│ │ │ │ │ ├── [3.4K] JarDeleteHandler.java
│ │ │ │ │ ├── [2.2K] JarDeleteHeaders.java
│ │ │ │ │ ├── [1.5K] JarDeleteMessageParameters.java
│ │ │ │ │ ├── [1.9K] JarIdPathParameter.java
│ │ │ │ │ ├── [6.0K] JarListHandler.java
│ │ │ │ │ ├── [2.3K] JarListHeaders.java
│ │ │ │ │ ├── [4.9K] JarListInfo.java
│ │ │ │ │ ├── [2.1K] JarMessageParameters.java
│ │ │ │ │ ├── [1.2K] JarPlanGetHeaders.java
│ │ │ │ │ ├── [3.9K] JarPlanHandler.java
│ │ │ │ │ ├── [1.0K] JarPlanMessageParameters.java
│ │ │ │ │ ├── [1.3K] JarPlanPostHeaders.java
│ │ │ │ │ ├── [2.0K] JarPlanRequestBody.java
│ │ │ │ │ ├── [3.8K] JarRequestBody.java
│ │ │ │ │ ├── [5.8K] JarRunHandler.java
│ │ │ │ │ ├── [2.2K] JarRunHeaders.java
│ │ │ │ │ ├── [1.8K] JarRunMessageParameters.java
│ │ │ │ │ ├── [2.9K] JarRunRequestBody.java
│ │ │ │ │ ├── [2.0K] JarRunResponseBody.java
│ │ │ │ │ ├── [3.9K] JarUploadHandler.java
│ │ │ │ │ ├── [2.7K] JarUploadHeaders.java
│ │ │ │ │ ├── [1.8K] JarUploadResponseBody.java
│ │ │ │ │ ├── [1.6K] ParallelismQueryParameter.java
│ │ │ │ │ ├── [1.4K] ProgramArgQueryParameter.java
│ │ │ │ │ ├── [1.5K] ProgramArgsQueryParameter.java
│ │ │ │ │ ├── [1.3K] SavepointPathQueryParameter.java
│ │ │ │ │ ├── [1.4K] StringQueryParameter.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ └── [8.4K] JarHandlerUtils.java
│ │ │ │ ├── [4.0K] history
│ │ │ │ │ ├── [ 15K] HistoryServerArchiveFetcher.java
│ │ │ │ │ ├── [ 11K] HistoryServer.java
│ │ │ │ │ └── [ 11K] HistoryServerStaticFileServerHandler.java
│ │ │ │ ├── [8.8K] HttpRequestHandler.java
│ │ │ │ ├── [2.9K] PipelineErrorHandler.java
│ │ │ │ ├── [4.0K] utils
│ │ │ │ │ └── [5.4K] WebFrontendBootstrap.java
│ │ │ │ └── [4.8K] WebSubmissionExtension.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 71K] NOTICE
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] runtime
│ │ │ ├── [4.0K] rest
│ │ │ │ └── [4.0K] compatibility
│ │ │ │ ├── [3.4K] CompatibilityCheckResult.java
│ │ │ │ ├── [1.6K] Compatibility.java
│ │ │ │ ├── [3.5K] CompatibilityRoutine.java
│ │ │ │ ├── [9.5K] CompatibilityRoutines.java
│ │ │ │ └── [8.3K] RestAPIStabilityTest.java
│ │ │ └── [4.0K] webmonitor
│ │ │ ├── [4.0K] handlers
│ │ │ │ ├── [1.8K] AllowNonRestoredStateQueryParameterTest.java
│ │ │ │ ├── [5.6K] JarDeleteHandlerTest.java
│ │ │ │ ├── [1.4K] JarDeleteHeadersTest.java
│ │ │ │ ├── [ 12K] JarHandlerParameterTest.java
│ │ │ │ ├── [5.9K] JarHandlers.java
│ │ │ │ ├── [3.3K] JarHandlerTest.java
│ │ │ │ ├── [1.8K] JarIdPathParameterTest.java
│ │ │ │ ├── [2.1K] JarListInfoTest.java
│ │ │ │ ├── [4.5K] JarPlanHandlerParameterTest.java
│ │ │ │ ├── [9.4K] JarRunHandlerParameterTest.java
│ │ │ │ ├── [2.1K] JarRunRequestBodyTest.java
│ │ │ │ ├── [1.6K] JarRunResponseBodyTest.java
│ │ │ │ ├── [4.4K] JarSubmissionITCase.java
│ │ │ │ ├── [5.5K] JarUploadHandlerTest.java
│ │ │ │ ├── [1.6K] JarUploadResponseBodyTest.java
│ │ │ │ ├── [1.4K] ParallelismQueryParameterTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [1.1K] EagerSinkProgram.java
│ │ │ │ ├── [1.8K] JarHandlerUtilsTest.java
│ │ │ │ ├── [1.1K] OutputTestProgram.java
│ │ │ │ └── [1.2K] TestProgram.java
│ │ │ ├── [4.0K] history
│ │ │ │ ├── [1.9K] FsJobArchivistTest.java
│ │ │ │ ├── [3.6K] HistoryServerStaticFileServerHandlerTest.java
│ │ │ │ └── [ 13K] HistoryServerTest.java
│ │ │ ├── [4.6K] LeaderRetrievalHandlerTest.java
│ │ │ ├── [4.0K] testutils
│ │ │ │ ├── [ 11K] HttpTestClient.java
│ │ │ │ └── [1.4K] ParameterProgram.java
│ │ │ ├── [ 15K] WebFrontendITCase.java
│ │ │ └── [2.2K] WebMonitorUtilsTest.java
│ │ └── [4.0K] resources
│ │ ├── [1.3K] log4j2-test.properties
│ │ └── [ 78K] rest_api_v1.snapshot
│ └── [4.0K] web-dashboard
│ ├── [3.8K] angular.json
│ ├── [1.8K] package.json
│ ├── [438K] package-lock.json
│ ├── [ 93] proxy.conf.json
│ ├── [4.0K] src
│ │ ├── [4.0K] app
│ │ │ ├── [3.9K] app.component.html
│ │ │ ├── [3.1K] app.component.less
│ │ │ ├── [1.9K] app.component.ts
│ │ │ ├── [1.2K] app.config.ts
│ │ │ ├── [2.1K] app.interceptor.ts
│ │ │ ├── [4.1K] app.module.ts
│ │ │ ├── [1.6K] app-routing.module.ts
│ │ │ ├── [4.0K] interfaces
│ │ │ │ ├── [1.0K] configuration.ts
│ │ │ │ ├── [ 837] index.ts
│ │ │ │ ├── [1.1K] jar.ts
│ │ │ │ ├── [1.0K] job-accumulators.ts
│ │ │ │ ├── [1.1K] job-backpressure.ts
│ │ │ │ ├── [4.6K] job-checkpoint.ts
│ │ │ │ ├── [1.1K] job-config.ts
│ │ │ │ ├── [3.4K] job-detail.ts
│ │ │ │ ├── [1.1K] job-exception.ts
│ │ │ │ ├── [1.3K] job-overview.ts
│ │ │ │ ├── [1.3K] job-subtask.ts
│ │ │ │ ├── [1.2K] job-timeline.ts
│ │ │ │ ├── [1.6K] job-vertex-task-manager.ts
│ │ │ │ ├── [1.1K] overview.ts
│ │ │ │ ├── [ 977] plan.ts
│ │ │ │ ├── [1.3K] public-api.ts
│ │ │ │ └── [2.2K] task-manager.ts
│ │ │ ├── [4.0K] pages
│ │ │ │ ├── [4.0K] job
│ │ │ │ │ ├── [4.0K] checkpoints
│ │ │ │ │ │ ├── [4.0K] detail
│ │ │ │ │ │ │ ├── [3.5K] job-checkpoints-detail.component.html
│ │ │ │ │ │ │ ├── [1.2K] job-checkpoints-detail.component.less
│ │ │ │ │ │ │ └── [2.6K] job-checkpoints-detail.component.ts
│ │ │ │ │ │ ├── [ 13K] job-checkpoints.component.html
│ │ │ │ │ │ ├── [ 998] job-checkpoints.component.less
│ │ │ │ │ │ ├── [2.4K] job-checkpoints.component.ts
│ │ │ │ │ │ └── [4.0K] subtask
│ │ │ │ │ │ ├── [5.9K] job-checkpoints-subtask.component.html
│ │ │ │ │ │ ├── [ 945] job-checkpoints-subtask.component.less
│ │ │ │ │ │ └── [3.1K] job-checkpoints-subtask.component.ts
│ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ ├── [2.2K] job-configuration.component.html
│ │ │ │ │ │ ├── [ 835] job-configuration.component.less
│ │ │ │ │ │ └── [1.9K] job-configuration.component.ts
│ │ │ │ │ ├── [4.0K] exceptions
│ │ │ │ │ │ ├── [2.4K] job-exceptions.component.html
│ │ │ │ │ │ ├── [1.0K] job-exceptions.component.less
│ │ │ │ │ │ └── [2.4K] job-exceptions.component.ts
│ │ │ │ │ ├── [1.0K] job.component.html
│ │ │ │ │ ├── [1.1K] job.component.less
│ │ │ │ │ ├── [2.0K] job.component.ts
│ │ │ │ │ ├── [2.0K] job.module.ts
│ │ │ │ │ ├── [2.6K] job-routing.module.ts
│ │ │ │ │ ├── [4.0K] overview
│ │ │ │ │ │ ├── [4.0K] accumulators
│ │ │ │ │ │ │ ├── [2.7K] job-overview-drawer-accumulators.component.html
│ │ │ │ │ │ │ ├── [1.0K] job-overview-drawer-accumulators.component.less
│ │ │ │ │ │ │ └── [2.5K] job-overview-drawer-accumulators.component.ts
│ │ │ │ │ │ ├── [4.0K] backpressure
│ │ │ │ │ │ │ ├── [2.5K] job-overview-drawer-backpressure.component.html
│ │ │ │ │ │ │ ├── [ 847] job-overview-drawer-backpressure.component.less
│ │ │ │ │ │ │ └── [2.6K] job-overview-drawer-backpressure.component.ts
│ │ │ │ │ │ ├── [4.0K] chart
│ │ │ │ │ │ │ ├── [1.4K] job-overview-drawer-chart.component.html
│ │ │ │ │ │ │ ├── [ 927] job-overview-drawer-chart.component.less
│ │ │ │ │ │ │ └── [3.8K] job-overview-drawer-chart.component.ts
│ │ │ │ │ │ ├── [4.0K] detail
│ │ │ │ │ │ │ ├── [4.6K] job-overview-drawer-detail.component.html
│ │ │ │ │ │ │ ├── [1.2K] job-overview-drawer-detail.component.less
│ │ │ │ │ │ │ └── [1.8K] job-overview-drawer-detail.component.ts
│ │ │ │ │ │ ├── [4.0K] drawer
│ │ │ │ │ │ │ ├── [1.1K] job-overview-drawer.component.html
│ │ │ │ │ │ │ ├── [1.7K] job-overview-drawer.component.less
│ │ │ │ │ │ │ └── [3.6K] job-overview-drawer.component.ts
│ │ │ │ │ │ ├── [1.2K] job-overview.component.html
│ │ │ │ │ │ ├── [1.4K] job-overview.component.less
│ │ │ │ │ │ ├── [4.1K] job-overview.component.ts
│ │ │ │ │ │ ├── [2.5K] job-overview.module.ts
│ │ │ │ │ │ ├── [3.4K] job-overview-routing.module.ts
│ │ │ │ │ │ ├── [4.0K] list
│ │ │ │ │ │ │ ├── [3.8K] job-overview-list.component.html
│ │ │ │ │ │ │ ├── [1.3K] job-overview-list.component.less
│ │ │ │ │ │ │ └── [2.3K] job-overview-list.component.ts
│ │ │ │ │ │ ├── [4.0K] subtasks
│ │ │ │ │ │ │ ├── [3.9K] job-overview-drawer-subtasks.component.html
│ │ │ │ │ │ │ ├── [ 883] job-overview-drawer-subtasks.component.less
│ │ │ │ │ │ │ └── [2.8K] job-overview-drawer-subtasks.component.ts
│ │ │ │ │ │ ├── [4.0K] taskmanagers
│ │ │ │ │ │ │ ├── [3.7K] job-overview-drawer-taskmanagers.component.html
│ │ │ │ │ │ │ ├── [ 807] job-overview-drawer-taskmanagers.component.less
│ │ │ │ │ │ │ └── [2.8K] job-overview-drawer-taskmanagers.component.ts
│ │ │ │ │ │ └── [4.0K] watermarks
│ │ │ │ │ │ ├── [1.4K] job-overview-drawer-watermarks.component.html
│ │ │ │ │ │ ├── [ 807] job-overview-drawer-watermarks.component.less
│ │ │ │ │ │ └── [2.4K] job-overview-drawer-watermarks.component.ts
│ │ │ │ │ ├── [4.0K] status
│ │ │ │ │ │ ├── [2.4K] job-status.component.html
│ │ │ │ │ │ ├── [1.6K] job-status.component.less
│ │ │ │ │ │ └── [2.4K] job-status.component.ts
│ │ │ │ │ └── [4.0K] timeline
│ │ │ │ │ ├── [1.1K] job-timeline.component.html
│ │ │ │ │ ├── [1.1K] job-timeline.component.less
│ │ │ │ │ └── [6.8K] job-timeline.component.ts
│ │ │ │ ├── [4.0K] job-manager
│ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ ├── [1.2K] job-manager-configuration.component.html
│ │ │ │ │ │ ├── [ 806] job-manager-configuration.component.less
│ │ │ │ │ │ └── [1.6K] job-manager-configuration.component.ts
│ │ │ │ │ ├── [ 934] job-manager.component.html
│ │ │ │ │ ├── [1.0K] job-manager.component.less
│ │ │ │ │ ├── [1.3K] job-manager.component.ts
│ │ │ │ │ ├── [1.8K] job-manager.module.ts
│ │ │ │ │ ├── [2.4K] job-manager-routing.module.ts
│ │ │ │ │ ├── [4.0K] log-detail
│ │ │ │ │ │ ├── [1.3K] job-manager-log-detail.component.html
│ │ │ │ │ │ ├── [1.4K] job-manager-log-detail.component.less
│ │ │ │ │ │ └── [2.5K] job-manager-log-detail.component.ts
│ │ │ │ │ ├── [4.0K] log-list
│ │ │ │ │ │ ├── [1.3K] job-manager-log-list.component.html
│ │ │ │ │ │ └── [1.6K] job-manager-log-list.component.ts
│ │ │ │ │ ├── [4.0K] logs
│ │ │ │ │ │ ├── [1.0K] job-manager-logs.component.html
│ │ │ │ │ │ ├── [ 916] job-manager-logs.component.less
│ │ │ │ │ │ └── [1.7K] job-manager-logs.component.ts
│ │ │ │ │ └── [4.0K] stdout
│ │ │ │ │ ├── [1.0K] job-manager-stdout.component.html
│ │ │ │ │ ├── [ 916] job-manager-stdout.component.less
│ │ │ │ │ └── [1.7K] job-manager-stdout.component.ts
│ │ │ │ ├── [4.0K] overview
│ │ │ │ │ ├── [1.1K] overview.component.html
│ │ │ │ │ ├── [ 867] overview.component.less
│ │ │ │ │ ├── [1.7K] overview.component.ts
│ │ │ │ │ ├── [1.3K] overview.module.ts
│ │ │ │ │ ├── [1.1K] overview-routing.module.ts
│ │ │ │ │ └── [4.0K] statistic
│ │ │ │ │ ├── [2.5K] overview-statistic.component.html
│ │ │ │ │ ├── [1.4K] overview-statistic.component.less
│ │ │ │ │ └── [1.9K] overview-statistic.component.ts
│ │ │ │ ├── [4.0K] submit
│ │ │ │ │ ├── [5.5K] submit.component.html
│ │ │ │ │ ├── [1.4K] submit.component.less
│ │ │ │ │ ├── [5.5K] submit.component.ts
│ │ │ │ │ ├── [1.2K] submit.module.ts
│ │ │ │ │ └── [1.1K] submit-routing.module.ts
│ │ │ │ └── [4.0K] task-manager
│ │ │ │ ├── [4.0K] list
│ │ │ │ │ ├── [3.0K] task-manager-list.component.html
│ │ │ │ │ ├── [ 848] task-manager-list.component.less
│ │ │ │ │ └── [3.1K] task-manager-list.component.ts
│ │ │ │ ├── [4.0K] log-detail
│ │ │ │ │ ├── [1.5K] task-manager-log-detail.component.html
│ │ │ │ │ ├── [1.6K] task-manager-log-detail.component.less
│ │ │ │ │ └── [2.8K] task-manager-log-detail.component.ts
│ │ │ │ ├── [4.0K] log-list
│ │ │ │ │ ├── [1.3K] task-manager-log-list.component.html
│ │ │ │ │ └── [1.8K] task-manager-log-list.component.ts
│ │ │ │ ├── [4.0K] logs
│ │ │ │ │ ├── [1.1K] task-manager-logs.component.html
│ │ │ │ │ ├── [ 974] task-manager-logs.component.less
│ │ │ │ │ └── [2.2K] task-manager-logs.component.ts
│ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ ├── [4.8K] task-manager-metrics.component.html
│ │ │ │ │ ├── [ 906] task-manager-metrics.component.less
│ │ │ │ │ └── [1.8K] task-manager-metrics.component.ts
│ │ │ │ ├── [4.0K] status
│ │ │ │ │ ├── [2.6K] task-manager-status.component.html
│ │ │ │ │ ├── [1.6K] task-manager-status.component.less
│ │ │ │ │ └── [2.1K] task-manager-status.component.ts
│ │ │ │ ├── [4.0K] stdout
│ │ │ │ │ ├── [1.1K] task-manager-stdout.component.html
│ │ │ │ │ ├── [ 974] task-manager-stdout.component.less
│ │ │ │ │ └── [2.2K] task-manager-stdout.component.ts
│ │ │ │ ├── [1.1K] task-manager.component.html
│ │ │ │ ├── [ 903] task-manager.component.less
│ │ │ │ ├── [2.1K] task-manager.component.ts
│ │ │ │ ├── [2.2K] task-manager.module.ts
│ │ │ │ ├── [2.8K] task-manager-routing.module.ts
│ │ │ │ └── [4.0K] thread-dump
│ │ │ │ ├── [1.1K] task-manager-thread-dump.component.html
│ │ │ │ ├── [ 916] task-manager-thread-dump.component.less
│ │ │ │ └── [2.2K] task-manager-thread-dump.component.ts
│ │ │ ├── [4.0K] services
│ │ │ │ ├── [ 837] index.ts
│ │ │ │ ├── [4.2K] jar.service.ts
│ │ │ │ ├── [2.3K] job-manager.service.ts
│ │ │ │ ├── [8.0K] job.service.ts
│ │ │ │ ├── [3.4K] metrics.service.ts
│ │ │ │ ├── [1.3K] overview.service.ts
│ │ │ │ ├── [1.0K] public-api.ts
│ │ │ │ ├── [2.9K] status.service.ts
│ │ │ │ └── [3.5K] task-manager.service.ts
│ │ │ ├── [4.0K] share
│ │ │ │ ├── [4.0K] common
│ │ │ │ │ ├── [4.0K] dagre
│ │ │ │ │ │ ├── [2.8K] dagre.component.html
│ │ │ │ │ │ ├── [1.9K] dagre.component.less
│ │ │ │ │ │ ├── [ 12K] dagre.component.ts
│ │ │ │ │ │ ├── [1.4K] dagre.module.ts
│ │ │ │ │ │ ├── [8.4K] graph.ts
│ │ │ │ │ │ ├── [1.5K] node.component.html
│ │ │ │ │ │ ├── [1.8K] node.component.less
│ │ │ │ │ │ ├── [2.3K] node.component.ts
│ │ │ │ │ │ ├── [1.1K] svg-container.component.html
│ │ │ │ │ │ ├── [1.1K] svg-container.component.less
│ │ │ │ │ │ └── [3.5K] svg-container.component.ts
│ │ │ │ │ ├── [4.0K] file-read
│ │ │ │ │ │ └── [1.2K] file-read.directive.ts
│ │ │ │ │ ├── [4.0K] monaco-editor
│ │ │ │ │ │ ├── [ 908] monaco-editor.component.less
│ │ │ │ │ │ ├── [3.3K] monaco-editor.component.ts
│ │ │ │ │ │ └── [1.1K] monaco-editor.service.ts
│ │ │ │ │ ├── [4.0K] navigation
│ │ │ │ │ │ ├── [1.0K] navigation.component.html
│ │ │ │ │ │ ├── [ 885] navigation.component.less
│ │ │ │ │ │ └── [2.3K] navigation.component.ts
│ │ │ │ │ └── [4.0K] resize
│ │ │ │ │ ├── [1.2K] resize.component.html
│ │ │ │ │ ├── [1.6K] resize.component.less
│ │ │ │ │ └── [4.3K] resize.component.ts
│ │ │ │ ├── [4.0K] customize
│ │ │ │ │ ├── [4.0K] backpressure-badge
│ │ │ │ │ │ ├── [ 979] backpressure-badge.component.html
│ │ │ │ │ │ ├── [1.0K] backpressure-badge.component.less
│ │ │ │ │ │ └── [1.2K] backpressure-badge.component.ts
│ │ │ │ │ ├── [4.0K] checkpoint-badge
│ │ │ │ │ │ ├── [ 944] checkpoint-badge.component.html
│ │ │ │ │ │ ├── [ 927] checkpoint-badge.component.less
│ │ │ │ │ │ └── [1.2K] checkpoint-badge.component.ts
│ │ │ │ │ ├── [4.0K] job-badge
│ │ │ │ │ │ ├── [ 929] job-badge.component.html
│ │ │ │ │ │ ├── [ 927] job-badge.component.less
│ │ │ │ │ │ └── [1.2K] job-badge.component.ts
│ │ │ │ │ ├── [4.0K] job-chart
│ │ │ │ │ │ ├── [1.9K] job-chart.component.html
│ │ │ │ │ │ ├── [1.5K] job-chart.component.less
│ │ │ │ │ │ ├── [3.8K] job-chart.component.ts
│ │ │ │ │ │ └── [1022] job-chart.service.ts
│ │ │ │ │ ├── [4.0K] job-list
│ │ │ │ │ │ ├── [2.0K] job-list.component.html
│ │ │ │ │ │ ├── [ 888] job-list.component.less
│ │ │ │ │ │ └── [3.4K] job-list.component.ts
│ │ │ │ │ ├── [4.0K] refresh-download
│ │ │ │ │ │ ├── [1.9K] refresh-download.component.html
│ │ │ │ │ │ ├── [ 906] refresh-download.component.less
│ │ │ │ │ │ └── [1.5K] refresh-download.component.ts
│ │ │ │ │ └── [4.0K] task-badge
│ │ │ │ │ ├── [1.0K] task-badge.component.html
│ │ │ │ │ ├── [ 931] task-badge.component.less
│ │ │ │ │ └── [1.3K] task-badge.component.ts
│ │ │ │ ├── [4.0K] pipes
│ │ │ │ │ ├── [1.5K] humanize-bytes.pipe.ts
│ │ │ │ │ ├── [1.7K] humanize-chart-numeric.pipe.ts
│ │ │ │ │ ├── [1.4K] humanize-date.pipe.ts
│ │ │ │ │ ├── [2.0K] humanize-duration.pipe.ts
│ │ │ │ │ ├── [1.1K] humanize-watermark.pipe.ts
│ │ │ │ │ └── [1.5K] pipe.module.ts
│ │ │ │ └── [2.7K] share.module.ts
│ │ │ └── [4.0K] utils
│ │ │ ├── [1.1K] deepFind.ts
│ │ │ ├── [ 837] index.ts
│ │ │ ├── [ 869] isNil.ts
│ │ │ └── [ 860] public-api.ts
│ │ ├── [4.0K] assets
│ │ │ ├── [4.0K] favicon
│ │ │ │ ├── [ 45K] android-chrome-192x192.png
│ │ │ │ ├── [160K] android-chrome-512x512.png
│ │ │ │ ├── [ 31K] apple-touch-icon.png
│ │ │ │ ├── [1.2K] browserconfig.xml
│ │ │ │ ├── [1.4K] favicon-16x16.png
│ │ │ │ ├── [3.0K] favicon-32x32.png
│ │ │ │ ├── [ 15K] favicon.ico
│ │ │ │ ├── [6.0K] flink-logo.png
│ │ │ │ ├── [ 280] manifest.json
│ │ │ │ ├── [ 30K] mstile-144x144.png
│ │ │ │ ├── [ 26K] mstile-150x150.png
│ │ │ │ ├── [ 27K] mstile-310x150.png
│ │ │ │ ├── [ 71K] mstile-310x310.png
│ │ │ │ ├── [ 16K] mstile-70x70.png
│ │ │ │ └── [ 15K] safari-pinned-tab.svg
│ │ │ └── [4.0K] images
│ │ │ └── [ 71K] flink.svg
│ │ ├── [ 388] browserslist
│ │ ├── [4.0K] environments
│ │ │ ├── [ 858] environment.prod.ts
│ │ │ └── [1.4K] environment.ts
│ │ ├── [1.7K] index.html
│ │ ├── [1.8K] karma.conf.js
│ │ ├── [1.2K] main.ts
│ │ ├── [3.6K] polyfills.ts
│ │ ├── [4.0K] styles
│ │ │ ├── [1.5K] base.less
│ │ │ ├── [ 843] global.less
│ │ │ ├── [ 948] index.less
│ │ │ ├── [1.8K] rewrite.less
│ │ │ └── [ 902] theme.less
│ │ ├── [1.4K] test.ts
│ │ ├── [ 166] tsconfig.app.json
│ │ ├── [ 256] tsconfig.spec.json
│ │ └── [ 287] tslint.json
│ ├── [ 939] tsconfig.json
│ └── [1.7K] tslint.json
├── [4.0K] flink-scala
│ ├── [7.7K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] scala
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [ 11K] ScalaAggregateOperator.java
│ │ │ │ └── [7.6K] ScalaCsvOutputFormat.java
│ │ │ └── [4.0K] typeutils
│ │ │ ├── [4.0K] ScalaCaseClassSerializerSnapshot.java
│ │ │ ├── [2.3K] ScalaEitherSerializerSnapshot.java
│ │ │ ├── [2.5K] ScalaOptionSerializerConfigSnapshot.java
│ │ │ ├── [2.1K] ScalaOptionSerializerSnapshot.java
│ │ │ ├── [2.4K] ScalaTrySerializerConfigSnapshot.java
│ │ │ ├── [2.5K] ScalaTrySerializerSnapshot.java
│ │ │ ├── [2.7K] TraversableSerializerConfigSnapshot.java
│ │ │ ├── [3.5K] TraversableSerializerSnapshot.java
│ │ │ └── [4.0K] Tuple2CaseClassSerializerSnapshot.java
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] api
│ │ └── [4.0K] scala
│ │ ├── [2.6K] AggregateDataSet.scala
│ │ ├── [ 24K] ClosureCleaner.scala
│ │ ├── [4.0K] codegen
│ │ │ ├── [1.1K] Counter.scala
│ │ │ ├── [1.2K] MacroContextHolder.scala
│ │ │ ├── [9.7K] TreeGen.scala
│ │ │ ├── [ 18K] TypeAnalyzer.scala
│ │ │ ├── [6.0K] TypeDescriptors.scala
│ │ │ └── [ 17K] TypeInformationGen.scala
│ │ ├── [9.7K] CoGroupDataSet.scala
│ │ ├── [4.1K] CrossDataSet.scala
│ │ ├── [ 75K] DataSet.scala
│ │ ├── [ 31K] ExecutionEnvironment.scala
│ │ ├── [4.0K] extensions
│ │ │ ├── [4.0K] impl
│ │ │ │ └── [4.0K] acceptPartialFunctions
│ │ │ │ ├── [2.0K] OnCoGroupDataSet.scala
│ │ │ │ ├── [1.9K] OnCrossDataSet.scala
│ │ │ │ ├── [3.9K] OnDataSet.scala
│ │ │ │ ├── [3.0K] OnGroupedDataSet.scala
│ │ │ │ ├── [2.0K] OnHalfUnfinishedKeyPairOperation.scala
│ │ │ │ ├── [1.9K] OnJoinFunctionAssigner.scala
│ │ │ │ └── [2.1K] OnUnfinishedKeyPairOperation.scala
│ │ │ └── [3.7K] package.scala
│ │ ├── [ 18K] GroupedDataSet.scala
│ │ ├── [ 11K] joinDataSet.scala
│ │ ├── [4.0K] metrics
│ │ │ └── [1.2K] ScalaGauge.scala
│ │ ├── [6.9K] package.scala
│ │ ├── [2.3K] PartitionSortedDataSet.scala
│ │ ├── [2.1K] SelectByMaxFunction.scala
│ │ ├── [2.1K] SelectByMinFunction.scala
│ │ ├── [4.0K] typeutils
│ │ │ ├── [5.6K] CaseClassComparator.scala
│ │ │ ├── [3.7K] CaseClassSerializer.scala
│ │ │ ├── [9.3K] CaseClassTypeInfo.scala
│ │ │ ├── [4.8K] EitherSerializer.scala
│ │ │ ├── [3.0K] EitherTypeInfo.scala
│ │ │ ├── [3.6K] EnumValueComparator.scala
│ │ │ ├── [6.1K] EnumValueSerializer.scala
│ │ │ ├── [2.6K] EnumValueTypeInfo.scala
│ │ │ ├── [2.8K] NothingSerializer.scala
│ │ │ ├── [4.0K] OptionSerializer.scala
│ │ │ ├── [4.5K] OptionTypeComparator.scala
│ │ │ ├── [3.2K] OptionTypeInfo.scala
│ │ │ ├── [4.1K] ScalaCaseClassSerializer.scala
│ │ │ ├── [3.9K] ScalaEnumSerializerSnapshot.scala
│ │ │ ├── [2.0K] ScalaNothingTypeInfo.scala
│ │ │ ├── [6.7K] TraversableSerializer.scala
│ │ │ ├── [2.4K] TraversableTypeInfo.scala
│ │ │ ├── [4.8K] TrySerializer.scala
│ │ │ ├── [2.6K] TryTypeInfo.scala
│ │ │ ├── [ 16K] Types.scala
│ │ │ ├── [1.2K] TypeUtils.scala
│ │ │ ├── [2.5K] UnitSerializer.scala
│ │ │ └── [1.9K] UnitTypeInfo.scala
│ │ ├── [3.4K] UnfinishedCoGroupOperation.scala
│ │ ├── [7.0K] unfinishedKeyPairOperation.scala
│ │ └── [4.0K] utils
│ │ └── [8.1K] package.scala
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] api
│ │ └── [4.0K] scala
│ │ ├── [4.0K] operators
│ │ │ └── [2.7K] ScalaCsvOutputFormatTest.java
│ │ └── [4.0K] typeutils
│ │ ├── [4.0K] ScalaEitherSerializerUpgradeTest.java
│ │ ├── [3.8K] ScalaOptionSerializerUpgradeTest.java
│ │ └── [4.5K] ScalaTrySerializerUpgradeTest.java
│ ├── [4.0K] resources
│ │ ├── [ 97] flink-1.3.2-scala-types-serializer-data
│ │ ├── [7.5K] flink-1.3.2-scala-types-serializer-snapshot
│ │ ├── [1.3K] log4j2-test.properties
│ │ ├── [4.0K] scala-case-class-serializer-1.11
│ │ │ ├── [ 323] serializer-snapshot
│ │ │ └── [ 10] test-data
│ │ ├── [4.0K] scala-either-serializer-1.11
│ │ │ ├── [ 270] serializer-snapshot
│ │ │ └── [ 13] test-data
│ │ ├── [4.0K] scala-enum-serializer-1.11
│ │ │ ├── [ 146] serializer-snapshot
│ │ │ └── [ 4] test-data
│ │ ├── [4.0K] scala-option-serializer-1.11
│ │ │ ├── [ 186] serializer-snapshot
│ │ │ └── [ 1] test-data
│ │ ├── [4.0K] scala-try-serializer-1.11
│ │ │ ├── [ 672] serializer-snapshot
│ │ │ └── [3.1K] test-data
│ │ ├── [4.0K] traversable-serializer-bitset-1.11
│ │ │ ├── [ 286] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [4.0K] traversable-serializer-indexedseq-1.11
│ │ │ ├── [ 270] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [4.0K] traversable-serializer-linearseq-1.11
│ │ │ ├── [ 302] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [4.0K] traversable-serializer-map-1.11
│ │ │ ├── [ 479] serializer-snapshot
│ │ │ └── [ 27] test-data
│ │ ├── [4.0K] traversable-serializer-mutable-list-1.11
│ │ │ ├── [ 322] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [4.0K] traversable-serializer-seq-1.11
│ │ │ ├── [ 256] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [4.0K] traversable-serializer-set-1.11
│ │ │ ├── [ 256] serializer-snapshot
│ │ │ └── [ 19] test-data
│ │ ├── [4.0K] traversable-serializer-with-case-class-1.11
│ │ │ ├── [ 485] serializer-snapshot
│ │ │ └── [ 27] test-data
│ │ └── [4.0K] traversable-serializer-with-pojo-1.11
│ │ ├── [ 977] serializer-snapshot
│ │ └── [ 33] test-data
│ └── [4.0K] scala
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ └── [4.0K] api
│ └── [4.0K] scala
│ ├── [6.2K] DeltaIterationSanityCheckTest.scala
│ ├── [4.0K] extensions
│ │ ├── [4.0K] base
│ │ │ └── [1.6K] AcceptPFTestBase.scala
│ │ ├── [4.0K] data
│ │ │ └── [1.1K] KeyValuePair.scala
│ │ └── [4.0K] impl
│ │ └── [4.0K] acceptPartialFunctions
│ │ ├── [2.1K] OnCoGroupDataSetTest.scala
│ │ ├── [1.8K] OnCrossDataSetTest.scala
│ │ ├── [5.1K] OnDataSetTest.scala
│ │ ├── [4.0K] OnGroupedDataSetTest.scala
│ │ ├── [4.9K] OnHalfUnfinishedKeyPairOperationTest.scala
│ │ ├── [4.7K] OnJoinFunctionAssignerTest.scala
│ │ └── [4.6K] OnUnfinishedKeyPairOperationTest.scala
│ ├── [4.0K] functions
│ │ └── [9.4K] SemanticPropertiesTranslationTest.scala
│ ├── [4.0K] io
│ │ ├── [5.4K] CollectionInputFormatTest.scala
│ │ └── [ 19K] CsvInputFormatTest.scala
│ ├── [5.0K] MaxByOperatorTest.scala
│ ├── [4.0K] metrics
│ │ └── [1.1K] ScalaGaugeTest.scala
│ ├── [5.0K] MinByOperatorTest.scala
│ ├── [4.0K] runtime
│ │ ├── [1.8K] EnumValueComparatorTest.scala
│ │ ├── [2.9K] GenericPairComparatorTest.scala
│ │ ├── [6.1K] KryoGenericTypeSerializerTest.scala
│ │ ├── [7.1K] ScalaSpecialTypesSerializerTest.scala
│ │ ├── [7.3K] TraversableSerializerTest.scala
│ │ ├── [4.0K] tuple
│ │ │ └── [4.0K] base
│ │ │ ├── [3.3K] PairComparatorTestBase.scala
│ │ │ └── [1.3K] TupleComparatorTestBase.scala
│ │ ├── [2.0K] TupleComparatorILD2Test.scala
│ │ ├── [2.0K] TupleComparatorILD3Test.scala
│ │ ├── [2.0K] TupleComparatorILDC3Test.scala
│ │ ├── [1.9K] TupleComparatorILDX1Test.scala
│ │ ├── [2.0K] TupleComparatorILDXC2Test.scala
│ │ ├── [2.0K] TupleComparatorISD1Test.scala
│ │ ├── [2.0K] TupleComparatorISD2Test.scala
│ │ ├── [2.0K] TupleComparatorISD3Test.scala
│ │ ├── [3.1K] TupleSerializerCompatibilityTestGenerator.scala
│ │ ├── [3.7K] TupleSerializerCompatibilityTest.scala
│ │ ├── [3.1K] TupleSerializerTestInstance.scala
│ │ └── [9.0K] TupleSerializerTest.scala
│ ├── [7.8K] SelectByFunctionTest.scala
│ ├── [4.0K] types
│ │ └── [ 27K] TypeInformationGenTest.scala
│ └── [4.0K] typeutils
│ ├── [1.8K] CaseClassTypeInfoTest.scala
│ ├── [3.1K] EitherSerializerTest.scala
│ ├── [1.5K] EitherTypeInfoTest.scala
│ ├── [6.0K] EnumValueSerializerCompatibilityTest.scala
│ ├── [1.6K] EnumValueSerializerTest.scala
│ ├── [3.3K] EnumValueSerializerUpgradeTest.scala
│ ├── [1.7K] EnumValueTypeInfoTest.scala
│ ├── [2.5K] InstantiationUtilTest.scala
│ ├── [1.4K] OptionTypeComparatorTest.scala
│ ├── [1.3K] OptionTypeInfoTest.scala
│ ├── [3.3K] ScalaCaseClassSerializerReflectionTest.scala
│ ├── [1.8K] ScalaCaseClassSerializerTest.scala
│ ├── [3.6K] ScalaCaseClassSerializerUpgradeTest.scala
│ ├── [1.1K] ScalaNothingTypeInfoTest.scala
│ ├── [ 13K] TraversableSerializerUpgradeTest.scala
│ ├── [1.8K] TraversableTypeInfoTest.scala
│ ├── [1.3K] TryTypeInfoTest.scala
│ ├── [2.6K] TypeExtractionTest.scala
│ ├── [5.3K] TypeInfoFactoryTest.scala
│ └── [1.1K] UnitTypeInfoTest.scala
├── [4.0K] flink-scala-shell
│ ├── [6.9K] pom.xml
│ ├── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] api
│ │ │ │ └── [4.0K] java
│ │ │ │ ├── [6.2K] JarHelper.java
│ │ │ │ ├── [3.9K] ScalaShellEnvironment.java
│ │ │ │ └── [3.9K] ScalaShellStreamEnvironment.java
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] scala
│ │ │ ├── [ 13K] FlinkILoop.scala
│ │ │ └── [ 14K] FlinkShell.scala
│ │ └── [4.0K] test
│ │ ├── [4.0K] assembly
│ │ │ └── [1.2K] test-scalashell-customjar-assembly.xml
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] java
│ │ │ └── [2.7K] FlinkILoopTest.java
│ │ ├── [4.0K] resources
│ │ │ └── [ 958] flink-conf.yaml
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] api
│ │ └── [4.0K] scala
│ │ ├── [4.0K] jar
│ │ │ ├── [ 961] package.scala
│ │ │ └── [1.1K] TestingData.scala
│ │ ├── [ 16K] ScalaShellITCase.scala
│ │ └── [3.9K] ScalaShellLocalStartupITCase.scala
│ └── [4.0K] start-script
│ └── [3.2K] start-scala-shell.sh
├── [4.0K] flink-state-backends
│ ├── [4.0K] flink-statebackend-heap-spillable
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] runtime
│ │ │ └── [4.0K] state
│ │ │ └── [4.0K] heap
│ │ │ ├── [ 50K] CopyOnWriteSkipListStateMap.java
│ │ │ ├── [7.1K] CopyOnWriteSkipListStateMapSnapshot.java
│ │ │ ├── [1.6K] LevelIndexHeader.java
│ │ │ ├── [1.3K] NodeStatus.java
│ │ │ ├── [3.4K] OnHeapLevelIndexHeader.java
│ │ │ ├── [3.1K] SkipListKeyComparator.java
│ │ │ ├── [6.6K] SkipListKeySerializer.java
│ │ │ ├── [ 28K] SkipListUtils.java
│ │ │ ├── [2.6K] SkipListValueSerializer.java
│ │ │ └── [4.0K] space
│ │ │ ├── [1.5K] Allocator.java
│ │ │ ├── [2.0K] Chunk.java
│ │ │ ├── [1.1K] Constants.java
│ │ │ └── [1.3K] SpaceUtils.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] runtime
│ │ └── [4.0K] state
│ │ └── [4.0K] heap
│ │ ├── [ 18K] CopyOnWriteSkipListStateMapBasicOpTest.java
│ │ ├── [ 35K] CopyOnWriteSkipListStateMapComplexOpTest.java
│ │ ├── [9.7K] CopyOnWriteSkipListStateMapTestUtils.java
│ │ ├── [5.1K] OnHeapLevelIndexHeaderTest.java
│ │ ├── [9.8K] SkipListKeyComparatorTest.java
│ │ ├── [4.5K] SkipListSerializerTest.java
│ │ ├── [7.0K] SkipListUtilsTest.java
│ │ └── [4.5K] TestAllocator.java
│ ├── [4.0K] flink-statebackend-rocksdb
│ │ ├── [3.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] contrib
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] state
│ │ │ ├── [2.8K] AbstractRocksDBAppendingState.java
│ │ │ ├── [8.2K] AbstractRocksDBState.java
│ │ │ ├── [1.6K] ConfigurableRocksDBOptionsFactory.java
│ │ │ ├── [ 16K] DefaultConfigurableOptionsFactory.java
│ │ │ ├── [4.0K] iterator
│ │ │ │ ├── [2.0K] RocksSingleStateIterator.java
│ │ │ │ ├── [4.1K] RocksStateKeysIterator.java
│ │ │ │ ├── [6.7K] RocksStatesPerKeyGroupMergeIterator.java
│ │ │ │ └── [2.3K] RocksTransformingIteratorWrapper.java
│ │ │ ├── [8.5K] PredefinedOptions.java
│ │ │ ├── [4.0K] restore
│ │ │ │ ├── [9.3K] AbstractRocksDBRestoreOperation.java
│ │ │ │ ├── [9.8K] RocksDBFullRestoreOperation.java
│ │ │ │ ├── [ 20K] RocksDBIncrementalRestoreOperation.java
│ │ │ │ ├── [2.9K] RocksDBNoneRestoreOperation.java
│ │ │ │ ├── [1.2K] RocksDBRestoreOperation.java
│ │ │ │ └── [2.5K] RocksDBRestoreResult.java
│ │ │ ├── [5.9K] RocksDBAggregatingState.java
│ │ │ ├── [ 15K] RocksDBCachingPriorityQueueSet.java
│ │ │ ├── [6.6K] RocksDBConfigurableOptions.java
│ │ │ ├── [3.9K] RocksDBFoldingState.java
│ │ │ ├── [6.6K] RocksDBIncrementalCheckpointUtils.java
│ │ │ ├── [ 20K] RocksDBKeyedStateBackendBuilder.java
│ │ │ ├── [ 30K] RocksDBKeyedStateBackend.java
│ │ │ ├── [5.1K] RocksDBKeySerializationUtils.java
│ │ │ ├── [ 11K] RocksDBListState.java
│ │ │ ├── [ 23K] RocksDBMapState.java
│ │ │ ├── [8.0K] RocksDBMemoryConfiguration.java
│ │ │ ├── [4.9K] RocksDBMemoryControllerUtils.java
│ │ │ ├── [4.8K] RocksDBNativeMetricMonitor.java
│ │ │ ├── [ 18K] RocksDBNativeMetricOptions.java
│ │ │ ├── [9.3K] RocksDBOperationUtils.java
│ │ │ ├── [5.5K] RocksDBOptionsFactory.java
│ │ │ ├── [6.9K] RocksDBOptions.java
│ │ │ ├── [7.7K] RocksDBPriorityQueueSetFactory.java
│ │ │ ├── [3.1K] RocksDBProperty.java
│ │ │ ├── [5.5K] RocksDBReducingState.java
│ │ │ ├── [6.7K] RocksDBResourceContainer.java
│ │ │ ├── [6.9K] RocksDBSerializedCompositeKeyBuilder.java
│ │ │ ├── [1.6K] RocksDBSharedResources.java
│ │ │ ├── [4.3K] RocksDBSnapshotTransformFactoryAdaptor.java
│ │ │ ├── [2.0K] RocksDBStateBackendFactory.java
│ │ │ ├── [ 37K] RocksDBStateBackend.java
│ │ │ ├── [1.5K] RocksDBStateDataTransfer.java
│ │ │ ├── [5.3K] RocksDBStateDownloader.java
│ │ │ ├── [5.2K] RocksDBStateUploader.java
│ │ │ ├── [3.9K] RocksDBValueState.java
│ │ │ ├── [4.0K] RocksDBWriteBatchWrapper.java
│ │ │ ├── [2.8K] RocksIteratorWrapper.java
│ │ │ ├── [4.0K] snapshot
│ │ │ │ ├── [4.8K] RocksDBSnapshotStrategyBase.java
│ │ │ │ ├── [ 17K] RocksFullSnapshotStrategy.java
│ │ │ │ ├── [ 18K] RocksIncrementalSnapshotStrategy.java
│ │ │ │ └── [1.6K] RocksSnapshotUtil.java
│ │ │ ├── [2.5K] TreeOrderedSetCache.java
│ │ │ └── [4.0K] ttl
│ │ │ └── [7.9K] RocksDbTtlCompactFiltersManager.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] contrib
│ │ │ └── [4.0K] streaming
│ │ │ └── [4.0K] state
│ │ │ ├── [4.0K] benchmark
│ │ │ │ ├── [5.4K] RocksDBListStatePerformanceTest.java
│ │ │ │ ├── [6.3K] RocksDBPerformanceTest.java
│ │ │ │ ├── [5.3K] RocksDBWriteBatchPerformanceTest.java
│ │ │ │ ├── [7.8K] StateBackendBenchmarkUtils.java
│ │ │ │ └── [4.8K] StateBackendBenchmarkUtilsTest.java
│ │ │ ├── [2.7K] KeyGroupPartitionedPriorityQueueWithRocksDBStoreTest.java
│ │ │ ├── [ 18K] RocksDBAsyncSnapshotTest.java
│ │ │ ├── [6.9K] RocksDBIncrementalCheckpointUtilsTest.java
│ │ │ ├── [2.3K] RocksDBInitTest.java
│ │ │ ├── [4.5K] RocksDBKeySerializationUtilsTest.java
│ │ │ ├── [4.1K] RocksDBMemoryControllerUtilsTest.java
│ │ │ ├── [3.2K] RocksDbMultiClassLoaderTest.java
│ │ │ ├── [6.3K] RocksDBNativeMetricMonitorTest.java
│ │ │ ├── [1.7K] RocksDBNativeMetricOptionsTest.java
│ │ │ ├── [2.8K] RocksDBOperationsUtilsTest.java
│ │ │ ├── [1.6K] RocksDBPropertyTest.java
│ │ │ ├── [ 10K] RocksDBResourceContainerTest.java
│ │ │ ├── [6.0K] RocksDBResource.java
│ │ │ ├── [5.7K] RocksDBRocksStateKeysIteratorTest.java
│ │ │ ├── [9.7K] RocksDBSerializedCompositeKeyBuilderTest.java
│ │ │ ├── [ 32K] RocksDBStateBackendConfigTest.java
│ │ │ ├── [7.8K] RocksDBStateBackendFactoryTest.java
│ │ │ ├── [2.3K] RocksDBStateBackendMigrationTest.java
│ │ │ ├── [ 19K] RocksDBStateBackendTest.java
│ │ │ ├── [5.2K] RocksDBStateDownloaderTest.java
│ │ │ ├── [6.8K] RocksDBStateMisuseOptionTest.java
│ │ │ ├── [6.7K] RocksDBStateUploaderTest.java
│ │ │ ├── [4.1K] RocksDBTestUtils.java
│ │ │ ├── [4.7K] RocksDBWriteBatchWrapperTest.java
│ │ │ ├── [ 16K] RocksIncrementalCheckpointRescalingTest.java
│ │ │ ├── [5.2K] RocksKeyGroupsRocksSingleStateIteratorTest.java
│ │ │ └── [4.0K] ttl
│ │ │ ├── [1.2K] FullSnapshotRocksDbTtlStateTest.java
│ │ │ ├── [1.3K] IncSnapshotRocksDbTtlStateTest.java
│ │ │ └── [6.2K] RocksDBTtlStateTestBase.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ └── [1.4K] pom.xml
├── [4.0K] flink-streaming-java
│ ├── [3.7K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ ├── [4.0K] api
│ │ │ ├── [4.0K] checkpoint
│ │ │ │ ├── [7.2K] CheckpointedFunction.java
│ │ │ │ ├── [3.2K] ExternallyInducedSource.java
│ │ │ │ ├── [7.2K] ListCheckpointed.java
│ │ │ │ └── [1.5K] WithMasterCheckpointHook.java
│ │ │ ├── [3.9K] CheckpointingMode.java
│ │ │ ├── [4.0K] collector
│ │ │ │ └── [4.0K] selector
│ │ │ │ ├── [2.2K] CopyingDirectedOutput.java
│ │ │ │ ├── [5.5K] DirectedOutput.java
│ │ │ │ └── [1.8K] OutputSelector.java
│ │ │ ├── [4.0K] datastream
│ │ │ │ ├── [ 67K] AllWindowedStream.java
│ │ │ │ ├── [5.9K] AsyncDataStream.java
│ │ │ │ ├── [9.3K] BroadcastConnectedStream.java
│ │ │ │ ├── [3.2K] BroadcastStream.java
│ │ │ │ ├── [ 25K] CoGroupedStreams.java
│ │ │ │ ├── [ 18K] ConnectedStreams.java
│ │ │ │ ├── [ 51K] DataStream.java
│ │ │ │ ├── [6.8K] DataStreamSink.java
│ │ │ │ ├── [3.1K] DataStreamSource.java
│ │ │ │ ├── [5.6K] DataStreamUtils.java
│ │ │ │ ├── [7.8K] IterativeStream.java
│ │ │ │ ├── [ 18K] JoinedStreams.java
│ │ │ │ ├── [ 43K] KeyedStream.java
│ │ │ │ ├── [1.8K] MultipleConnectedStreams.java
│ │ │ │ ├── [2.8K] QueryableStateStream.java
│ │ │ │ ├── [ 16K] SingleOutputStreamOperator.java
│ │ │ │ ├── [2.5K] SplitStream.java
│ │ │ │ ├── [ 27K] StreamProjection.java
│ │ │ │ ├── [1.3K] UnsupportedTimeCharacteristicException.java
│ │ │ │ └── [ 66K] WindowedStream.java
│ │ │ ├── [4.0K] environment
│ │ │ │ ├── [ 20K] CheckpointConfig.java
│ │ │ │ ├── [6.8K] ExecutionCheckpointingOptions.java
│ │ │ │ ├── [3.0K] LocalStreamEnvironment.java
│ │ │ │ ├── [ 10K] RemoteStreamEnvironment.java
│ │ │ │ ├── [1.2K] StreamExecutionEnvironmentFactory.java
│ │ │ │ ├── [ 90K] StreamExecutionEnvironment.java
│ │ │ │ └── [2.2K] StreamPipelineOptions.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [4.0K] aggregation
│ │ │ │ │ ├── [1.3K] AggregationFunction.java
│ │ │ │ │ ├── [3.2K] ComparableAggregator.java
│ │ │ │ │ ├── [2.7K] Comparator.java
│ │ │ │ │ ├── [2.9K] SumAggregator.java
│ │ │ │ │ └── [3.0K] SumFunction.java
│ │ │ │ ├── [1.7K] AscendingTimestampExtractor.java
│ │ │ │ ├── [3.6K] AssignerWithPeriodicWatermarks.java
│ │ │ │ ├── [3.9K] AssignerWithPunctuatedWatermarks.java
│ │ │ │ ├── [4.0K] async
│ │ │ │ │ ├── [3.7K] AsyncFunction.java
│ │ │ │ │ ├── [1.6K] ResultFuture.java
│ │ │ │ │ └── [ 10K] RichAsyncFunction.java
│ │ │ │ ├── [4.0K] co
│ │ │ │ │ ├── [4.3K] BaseBroadcastProcessFunction.java
│ │ │ │ │ ├── [5.3K] BroadcastProcessFunction.java
│ │ │ │ │ ├── [2.8K] CoFlatMapFunction.java
│ │ │ │ │ ├── [2.1K] CoMapFunction.java
│ │ │ │ │ ├── [6.3K] CoProcessFunction.java
│ │ │ │ │ ├── [8.8K] KeyedBroadcastProcessFunction.java
│ │ │ │ │ ├── [6.5K] KeyedCoProcessFunction.java
│ │ │ │ │ ├── [3.5K] ProcessJoinFunction.java
│ │ │ │ │ ├── [1.6K] RichCoFlatMapFunction.java
│ │ │ │ │ └── [1.5K] RichCoMapFunction.java
│ │ │ │ ├── [1.9K] IngestionTimeExtractor.java
│ │ │ │ ├── [5.5K] KeyedProcessFunction.java
│ │ │ │ ├── [5.3K] ProcessFunction.java
│ │ │ │ ├── [4.0K] query
│ │ │ │ │ ├── [2.9K] AbstractQueryableStateOperator.java
│ │ │ │ │ ├── [1.6K] QueryableAppendingStateOperator.java
│ │ │ │ │ └── [1.6K] QueryableValueStateOperator.java
│ │ │ │ ├── [4.0K] sink
│ │ │ │ │ ├── [1.2K] DiscardingSink.java
│ │ │ │ │ ├── [4.0K] filesystem
│ │ │ │ │ │ ├── [1.7K] AbstractPartFileWriter.java
│ │ │ │ │ │ ├── [3.8K] BucketAssigner.java
│ │ │ │ │ │ ├── [4.0K] bucketassigners
│ │ │ │ │ │ │ ├── [1.7K] BasePathBucketAssigner.java
│ │ │ │ │ │ │ ├── [4.4K] DateTimeBucketAssigner.java
│ │ │ │ │ │ │ └── [2.6K] SimpleVersionedStringSerializer.java
│ │ │ │ │ │ ├── [1.8K] BucketFactory.java
│ │ │ │ │ │ ├── [ 14K] Bucket.java
│ │ │ │ │ │ ├── [1.4K] BucketLifeCycleListener.java
│ │ │ │ │ │ ├── [ 13K] Buckets.java
│ │ │ │ │ │ ├── [3.9K] BucketState.java
│ │ │ │ │ │ ├── [9.8K] BucketStateSerializer.java
│ │ │ │ │ │ ├── [4.2K] BucketWriter.java
│ │ │ │ │ │ ├── [2.6K] BulkBucketWriter.java
│ │ │ │ │ │ ├── [2.1K] BulkPartWriter.java
│ │ │ │ │ │ ├── [2.1K] DefaultBucketFactoryImpl.java
│ │ │ │ │ │ ├── [2.1K] InProgressFileWriter.java
│ │ │ │ │ │ ├── [2.6K] OutputFileConfig.java
│ │ │ │ │ │ ├── [ 12K] OutputStreamBasedPartFileWriter.java
│ │ │ │ │ │ ├── [1.7K] PartFileInfo.java
│ │ │ │ │ │ ├── [4.0K] rollingpolicies
│ │ │ │ │ │ │ ├── [2.0K] CheckpointRollingPolicy.java
│ │ │ │ │ │ │ ├── [6.4K] DefaultRollingPolicy.java
│ │ │ │ │ │ │ └── [1.7K] OnCheckpointRollingPolicy.java
│ │ │ │ │ │ ├── [2.4K] RollingPolicy.java
│ │ │ │ │ │ ├── [2.4K] RowWiseBucketWriter.java
│ │ │ │ │ │ ├── [1.8K] RowWisePartWriter.java
│ │ │ │ │ │ ├── [3.9K] StreamingFileSinkHelper.java
│ │ │ │ │ │ ├── [ 18K] StreamingFileSink.java
│ │ │ │ │ │ └── [2.6K] WriterProperties.java
│ │ │ │ │ ├── [3.6K] OutputFormatSinkFunction.java
│ │ │ │ │ ├── [3.1K] PrintSinkFunction.java
│ │ │ │ │ ├── [1.2K] RichSinkFunction.java
│ │ │ │ │ ├── [1.5K] SinkContextUtil.java
│ │ │ │ │ ├── [2.6K] SinkFunction.java
│ │ │ │ │ ├── [8.5K] SocketClientSink.java
│ │ │ │ │ ├── [ 31K] TwoPhaseCommitSinkFunction.java
│ │ │ │ │ ├── [1.9K] WriteFormatAsCsv.java
│ │ │ │ │ ├── [1.8K] WriteFormatAsText.java
│ │ │ │ │ ├── [1.7K] WriteFormat.java
│ │ │ │ │ ├── [1.8K] WriteSinkFunctionByMillis.java
│ │ │ │ │ └── [3.0K] WriteSinkFunction.java
│ │ │ │ ├── [4.0K] source
│ │ │ │ │ ├── [ 14K] ContinuousFileMonitoringFunction.java
│ │ │ │ │ ├── [3.3K] ContinuousFileReaderOperatorFactory.java
│ │ │ │ │ ├── [ 18K] ContinuousFileReaderOperator.java
│ │ │ │ │ ├── [4.0K] datagen
│ │ │ │ │ │ ├── [1.9K] DataGenerator.java
│ │ │ │ │ │ ├── [3.3K] DataGeneratorSource.java
│ │ │ │ │ │ ├── [3.1K] RandomGenerator.java
│ │ │ │ │ │ └── [5.4K] SequenceGenerator.java
│ │ │ │ │ ├── [4.6K] FileMonitoringFunction.java
│ │ │ │ │ ├── [1.3K] FileProcessingMode.java
│ │ │ │ │ ├── [2.1K] FileReadFunction.java
│ │ │ │ │ ├── [7.6K] FromElementsFunction.java
│ │ │ │ │ ├── [1.5K] FromIteratorFunction.java
│ │ │ │ │ ├── [2.0K] FromSplittableIteratorFunction.java
│ │ │ │ │ ├── [5.2K] InputFormatSourceFunction.java
│ │ │ │ │ ├── [ 10K] MessageAcknowledgingSourceBase.java
│ │ │ │ │ ├── [5.1K] MultipleIdsMessageAcknowledgingSourceBase.java
│ │ │ │ │ ├── [1.6K] ParallelSourceFunction.java
│ │ │ │ │ ├── [1.7K] RichParallelSourceFunction.java
│ │ │ │ │ ├── [2.3K] RichSourceFunction.java
│ │ │ │ │ ├── [5.9K] SerializedCheckpointData.java
│ │ │ │ │ ├── [5.4K] SocketTextStreamFunction.java
│ │ │ │ │ ├── [ 11K] SourceFunction.java
│ │ │ │ │ ├── [4.6K] StatefulSequenceSource.java
│ │ │ │ │ ├── [4.5K] TimestampedFileInputSplit.java
│ │ │ │ │ └── [2.2K] TimestampedInputSplit.java
│ │ │ │ ├── [2.2K] TimestampAssigner.java
│ │ │ │ ├── [4.0K] timestamps
│ │ │ │ │ ├── [5.0K] AscendingTimestampExtractor.java
│ │ │ │ │ └── [3.4K] BoundedOutOfOrdernessTimestampExtractor.java
│ │ │ │ └── [4.0K] windowing
│ │ │ │ ├── [2.5K] AggregateApplyAllWindowFunction.java
│ │ │ │ ├── [2.5K] AggregateApplyWindowFunction.java
│ │ │ │ ├── [1.9K] AllWindowFunction.java
│ │ │ │ ├── [4.0K] delta
│ │ │ │ │ ├── [2.9K] CosineDistance.java
│ │ │ │ │ ├── [1.6K] DeltaFunction.java
│ │ │ │ │ ├── [2.0K] EuclideanDistance.java
│ │ │ │ │ ├── [3.5K] ExtractionAwareDeltaFunction.java
│ │ │ │ │ └── [4.0K] extractor
│ │ │ │ │ ├── [2.1K] ArrayFromTuple.java
│ │ │ │ │ ├── [2.3K] ConcatenatedExtract.java
│ │ │ │ │ ├── [1.5K] Extractor.java
│ │ │ │ │ ├── [1.7K] FieldFromArray.java
│ │ │ │ │ ├── [1.5K] FieldFromTuple.java
│ │ │ │ │ ├── [2.3K] FieldsFromArray.java
│ │ │ │ │ └── [1.7K] FieldsFromTuple.java
│ │ │ │ ├── [4.4K] FoldApplyAllWindowFunction.java
│ │ │ │ ├── [4.9K] FoldApplyProcessAllWindowFunction.java
│ │ │ │ ├── [4.9K] FoldApplyProcessWindowFunction.java
│ │ │ │ ├── [4.4K] FoldApplyWindowFunction.java
│ │ │ │ ├── [1.9K] InternalProcessApplyAllWindowContext.java
│ │ │ │ ├── [2.1K] InternalProcessApplyWindowContext.java
│ │ │ │ ├── [1.4K] PassThroughAllWindowFunction.java
│ │ │ │ ├── [1.4K] PassThroughWindowFunction.java
│ │ │ │ ├── [3.3K] ProcessAllWindowFunction.java
│ │ │ │ ├── [3.6K] ProcessWindowFunction.java
│ │ │ │ ├── [2.1K] ReduceApplyAllWindowFunction.java
│ │ │ │ ├── [3.1K] ReduceApplyProcessAllWindowFunction.java
│ │ │ │ ├── [3.1K] ReduceApplyProcessWindowFunction.java
│ │ │ │ ├── [2.1K] ReduceApplyWindowFunction.java
│ │ │ │ ├── [1.3K] RichAllWindowFunction.java
│ │ │ │ ├── [1.5K] RichProcessAllWindowFunction.java
│ │ │ │ ├── [1.6K] RichProcessWindowFunction.java
│ │ │ │ ├── [1.8K] RichWindowFunction.java
│ │ │ │ └── [2.0K] WindowFunction.java
│ │ │ ├── [4.0K] graph
│ │ │ │ ├── [1.7K] FunctionMasterCheckpointHookFactory.java
│ │ │ │ ├── [1.9K] GlobalDataExchangeMode.java
│ │ │ │ ├── [6.1K] JSONGenerator.java
│ │ │ │ ├── [ 21K] StreamConfig.java
│ │ │ │ ├── [5.3K] StreamEdge.java
│ │ │ │ ├── [ 33K] StreamGraphGenerator.java
│ │ │ │ ├── [1.3K] StreamGraphHasher.java
│ │ │ │ ├── [9.7K] StreamGraphHasherV2.java
│ │ │ │ ├── [ 29K] StreamGraph.java
│ │ │ │ ├── [1.7K] StreamGraphUserHashHasher.java
│ │ │ │ ├── [ 40K] StreamingJobGraphGenerator.java
│ │ │ │ └── [ 10K] StreamNode.java
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [2.6K] AbstractInput.java
│ │ │ │ ├── [1.9K] AbstractStreamOperatorFactory.java
│ │ │ │ ├── [ 22K] AbstractStreamOperator.java
│ │ │ │ ├── [ 19K] AbstractStreamOperatorV2.java
│ │ │ │ ├── [6.0K] AbstractUdfStreamOperator.java
│ │ │ │ ├── [4.0K] async
│ │ │ │ │ ├── [2.9K] AsyncWaitOperatorFactory.java
│ │ │ │ │ ├── [ 14K] AsyncWaitOperator.java
│ │ │ │ │ └── [4.0K] queue
│ │ │ │ │ ├── [3.9K] OrderedStreamElementQueue.java
│ │ │ │ │ ├── [2.3K] StreamElementQueueEntry.java
│ │ │ │ │ ├── [2.9K] StreamElementQueue.java
│ │ │ │ │ ├── [2.4K] StreamRecordQueueEntry.java
│ │ │ │ │ ├── [9.0K] UnorderedStreamElementQueue.java
│ │ │ │ │ └── [1.8K] WatermarkQueueEntry.java
│ │ │ │ ├── [6.2K] BackendRestorerProcedure.java
│ │ │ │ ├── [1.3K] BoundedMultiInput.java
│ │ │ │ ├── [1.1K] BoundedOneInput.java
│ │ │ │ ├── [1.8K] ChainingStrategy.java
│ │ │ │ ├── [4.0K] co
│ │ │ │ │ ├── [ 13K] CoBroadcastWithKeyedOperator.java
│ │ │ │ │ ├── [8.4K] CoBroadcastWithNonKeyedOperator.java
│ │ │ │ │ ├── [4.8K] CoProcessOperator.java
│ │ │ │ │ ├── [2.3K] CoStreamFlatMap.java
│ │ │ │ │ ├── [1.9K] CoStreamMap.java
│ │ │ │ │ ├── [ 19K] IntervalJoinOperator.java
│ │ │ │ │ ├── [6.4K] KeyedCoProcessOperator.java
│ │ │ │ │ └── [6.2K] LegacyKeyedCoProcessOperator.java
│ │ │ │ ├── [4.0K] collect
│ │ │ │ │ ├── [2.4K] CollectCoordinationRequest.java
│ │ │ │ │ ├── [3.9K] CollectCoordinationResponse.java
│ │ │ │ │ ├── [ 11K] CollectResultFetcher.java
│ │ │ │ │ ├── [2.9K] CollectResultIterator.java
│ │ │ │ │ ├── [1.4K] CollectSinkAddressEvent.java
│ │ │ │ │ ├── [ 17K] CollectSinkFunction.java
│ │ │ │ │ ├── [7.8K] CollectSinkOperatorCoordinator.java
│ │ │ │ │ ├── [3.2K] CollectSinkOperatorFactory.java
│ │ │ │ │ ├── [2.5K] CollectSinkOperator.java
│ │ │ │ │ └── [2.6K] CollectStreamSink.java
│ │ │ │ ├── [1.8K] CoordinatedOperatorFactory.java
│ │ │ │ ├── [2.0K] CountingOutput.java
│ │ │ │ ├── [1.3K] InputFormatOperatorFactory.java
│ │ │ │ ├── [2.2K] Input.java
│ │ │ │ ├── [2.2K] InputSelectable.java
│ │ │ │ ├── [6.5K] InputSelection.java
│ │ │ │ ├── [2.1K] InternalTimer.java
│ │ │ │ ├── [ 15K] InternalTimerServiceImpl.java
│ │ │ │ ├── [2.6K] InternalTimerService.java
│ │ │ │ ├── [4.7K] InternalTimerServiceSerializationProxy.java
│ │ │ │ ├── [3.5K] InternalTimersSnapshot.java
│ │ │ │ ├── [ 17K] InternalTimersSnapshotReaderWriters.java
│ │ │ │ ├── [8.5K] InternalTimeServiceManager.java
│ │ │ │ ├── [1.2K] KeyContext.java
│ │ │ │ ├── [5.5K] KeyedProcessOperator.java
│ │ │ │ ├── [5.3K] LegacyKeyedProcessOperator.java
│ │ │ │ ├── [ 12K] MailboxExecutor.java
│ │ │ │ ├── [1.1K] MultipleInputStreamOperator.java
│ │ │ │ ├── [1.1K] OneInputStreamOperatorFactory.java
│ │ │ │ ├── [2.0K] OneInputStreamOperator.java
│ │ │ │ ├── [1.4K] OnWatermarkCallback.java
│ │ │ │ ├── [3.7K] OperatorSnapshotFinalizer.java
│ │ │ │ ├── [6.8K] OperatorSnapshotFutures.java
│ │ │ │ ├── [1.3K] OutputFormatOperatorFactory.java
│ │ │ │ ├── [2.1K] Output.java
│ │ │ │ ├── [2.1K] OutputTypeConfigurable.java
│ │ │ │ ├── [4.2K] ProcessOperator.java
│ │ │ │ ├── [1.8K] SetupableStreamOperator.java
│ │ │ │ ├── [1.7K] SimpleInputFormatOperatorFactory.java
│ │ │ │ ├── [4.3K] SimpleOperatorFactory.java
│ │ │ │ ├── [1.7K] SimpleOutputFormatOperatorFactory.java
│ │ │ │ ├── [1.6K] SimpleUdfStreamOperatorFactory.java
│ │ │ │ ├── [4.0K] source
│ │ │ │ │ ├── [4.2K] BatchTimestampsAndWatermarks.java
│ │ │ │ │ ├── [7.0K] SourceOutputWithWatermarks.java
│ │ │ │ │ ├── [8.7K] StreamingTimestampsAndWatermarks.java
│ │ │ │ │ ├── [1.7K] TimestampsAndWatermarksContext.java
│ │ │ │ │ ├── [3.6K] TimestampsAndWatermarks.java
│ │ │ │ │ └── [2.7K] WatermarkToDataOutput.java
│ │ │ │ ├── [5.3K] SourceOperatorFactory.java
│ │ │ │ ├── [9.2K] SourceOperator.java
│ │ │ │ ├── [1.6K] StreamFilter.java
│ │ │ │ ├── [1.8K] StreamFlatMap.java
│ │ │ │ ├── [4.0K] StreamGroupedFold.java
│ │ │ │ ├── [2.4K] StreamGroupedReduce.java
│ │ │ │ ├── [9.3K] StreamingRuntimeContext.java
│ │ │ │ ├── [1.6K] StreamMap.java
│ │ │ │ ├── [3.2K] StreamOperatorFactory.java
│ │ │ │ ├── [3.5K] StreamOperatorFactoryUtil.java
│ │ │ │ ├── [6.3K] StreamOperator.java
│ │ │ │ ├── [3.1K] StreamOperatorParameters.java
│ │ │ │ ├── [2.5K] StreamOperatorStateContext.java
│ │ │ │ ├── [ 11K] StreamOperatorStateHandler.java
│ │ │ │ ├── [2.0K] StreamProject.java
│ │ │ │ ├── [3.1K] StreamSink.java
│ │ │ │ ├── [ 17K] StreamSourceContexts.java
│ │ │ │ ├── [6.8K] StreamSource.java
│ │ │ │ ├── [ 22K] StreamTaskStateInitializerImpl.java
│ │ │ │ ├── [2.8K] StreamTaskStateInitializer.java
│ │ │ │ ├── [3.4K] TimerHeapInternalTimer.java
│ │ │ │ ├── [8.3K] TimerSerializer.java
│ │ │ │ ├── [2.2K] TimerSerializerSnapshot.java
│ │ │ │ ├── [2.7K] TimestampedCollector.java
│ │ │ │ ├── [1.4K] Triggerable.java
│ │ │ │ ├── [3.4K] TwoInputStreamOperator.java
│ │ │ │ ├── [1.3K] UdfStreamOperatorFactory.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [4.6K] SimpleVersionedListState.java
│ │ │ │ └── [1.2K] YieldingOperatorFactory.java
│ │ │ ├── [2.1K] SimpleTimerService.java
│ │ │ ├── [4.4K] TimeCharacteristic.java
│ │ │ ├── [1.1K] TimeDomain.java
│ │ │ ├── [3.0K] TimerService.java
│ │ │ ├── [4.0K] transformations
│ │ │ │ ├── [2.8K] AbstractMultipleInputTransformation.java
│ │ │ │ ├── [4.4K] CoFeedbackTransformation.java
│ │ │ │ ├── [4.2K] FeedbackTransformation.java
│ │ │ │ ├── [2.1K] KeyedMultipleInputTransformation.java
│ │ │ │ ├── [3.2K] LegacySourceTransformation.java
│ │ │ │ ├── [1.6K] MultipleInputTransformation.java
│ │ │ │ ├── [4.8K] OneInputTransformation.java
│ │ │ │ ├── [3.4K] PartitionTransformation.java
│ │ │ │ ├── [2.0K] PhysicalTransformation.java
│ │ │ │ ├── [2.7K] SelectTransformation.java
│ │ │ │ ├── [1.5K] ShuffleMode.java
│ │ │ │ ├── [2.2K] SideOutputTransformation.java
│ │ │ │ ├── [4.3K] SinkTransformation.java
│ │ │ │ ├── [2.6K] SourceTransformation.java
│ │ │ │ ├── [2.6K] SplitTransformation.java
│ │ │ │ ├── [6.0K] TwoInputTransformation.java
│ │ │ │ └── [2.5K] UnionTransformation.java
│ │ │ ├── [4.0K] watermark
│ │ │ │ └── [3.1K] Watermark.java
│ │ │ └── [4.0K] windowing
│ │ │ ├── [4.0K] assigners
│ │ │ │ ├── [2.5K] BaseAlignedWindowAssigner.java
│ │ │ │ ├── [3.9K] DynamicEventTimeSessionWindows.java
│ │ │ │ ├── [4.0K] DynamicProcessingTimeSessionWindows.java
│ │ │ │ ├── [4.0K] EventTimeSessionWindows.java
│ │ │ │ ├── [3.5K] GlobalWindows.java
│ │ │ │ ├── [2.1K] MergingWindowAssigner.java
│ │ │ │ ├── [4.1K] ProcessingTimeSessionWindows.java
│ │ │ │ ├── [1.4K] SessionWindowTimeGapExtractor.java
│ │ │ │ ├── [5.4K] SlidingEventTimeWindows.java
│ │ │ │ ├── [5.2K] SlidingProcessingTimeWindows.java
│ │ │ │ ├── [1.9K] SlidingTimeWindows.java
│ │ │ │ ├── [4.9K] TumblingEventTimeWindows.java
│ │ │ │ ├── [4.7K] TumblingProcessingTimeWindows.java
│ │ │ │ ├── [1.8K] TumblingTimeWindows.java
│ │ │ │ └── [3.5K] WindowAssigner.java
│ │ │ ├── [4.0K] evictors
│ │ │ │ ├── [3.2K] CountEvictor.java
│ │ │ │ ├── [4.0K] DeltaEvictor.java
│ │ │ │ ├── [3.5K] Evictor.java
│ │ │ │ └── [4.5K] TimeEvictor.java
│ │ │ ├── [4.0K] time
│ │ │ │ └── [3.8K] Time.java
│ │ │ ├── [4.0K] triggers
│ │ │ │ ├── [4.9K] ContinuousEventTimeTrigger.java
│ │ │ │ ├── [4.3K] ContinuousProcessingTimeTrigger.java
│ │ │ │ ├── [3.3K] CountTrigger.java
│ │ │ │ ├── [3.7K] DeltaTrigger.java
│ │ │ │ ├── [3.1K] EventTimeTrigger.java
│ │ │ │ ├── [2.7K] ProcessingTimeTrigger.java
│ │ │ │ ├── [3.2K] PurgingTrigger.java
│ │ │ │ ├── [ 10K] Trigger.java
│ │ │ │ └── [2.1K] TriggerResult.java
│ │ │ └── [4.0K] windows
│ │ │ ├── [3.7K] GlobalWindow.java
│ │ │ ├── [7.6K] TimeWindow.java
│ │ │ └── [1.4K] Window.java
│ │ ├── [4.0K] experimental
│ │ │ ├── [3.6K] CollectSink.java
│ │ │ ├── [1.0K] package-info.java
│ │ │ └── [6.1K] SocketStreamIterator.java
│ │ ├── [4.0K] runtime
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [1.8K] AbstractDataOutput.java
│ │ │ │ ├── [4.6K] AlternatingCheckpointBarrierHandler.java
│ │ │ │ ├── [1.5K] BlockingQueueBroker.java
│ │ │ │ ├── [ 11K] CheckpointBarrierAligner.java
│ │ │ │ ├── [5.3K] CheckpointBarrierHandler.java
│ │ │ │ ├── [8.6K] CheckpointBarrierTracker.java
│ │ │ │ ├── [ 14K] CheckpointBarrierUnaligner.java
│ │ │ │ ├── [6.6K] CheckpointedInputGate.java
│ │ │ │ ├── [1.8K] InputGateUtil.java
│ │ │ │ ├── [5.2K] InputProcessorUtil.java
│ │ │ │ ├── [4.8K] MultipleInputSelectionHandler.java
│ │ │ │ ├── [2.4K] PushingAsyncDataInput.java
│ │ │ │ ├── [5.3K] RecordWriterOutput.java
│ │ │ │ ├── [1.7K] StreamInputProcessor.java
│ │ │ │ ├── [ 11K] StreamMultipleInputProcessor.java
│ │ │ │ ├── [2.7K] StreamOneInputProcessor.java
│ │ │ │ ├── [1.5K] StreamTaskInput.java
│ │ │ │ ├── [ 11K] StreamTaskNetworkInput.java
│ │ │ │ ├── [2.3K] StreamTaskSourceInput.java
│ │ │ │ ├── [ 14K] StreamTwoInputProcessor.java
│ │ │ │ └── [2.4K] TwoInputSelectionHandler.java
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [1.5K] MinWatermarkGauge.java
│ │ │ │ └── [1.2K] WatermarkGauge.java
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [4.1K] CheckpointCommitter.java
│ │ │ │ ├── [ 12K] GenericWriteAheadSink.java
│ │ │ │ ├── [1.0K] package-info.java
│ │ │ │ ├── [6.2K] TimestampsAndWatermarksOperator.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [3.0K] AssignerWithPeriodicWatermarksAdapter.java
│ │ │ │ │ └── [3.1K] AssignerWithPunctuatedWatermarksAdapter.java
│ │ │ │ └── [4.0K] windowing
│ │ │ │ ├── [ 16K] EvictingWindowOperator.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [3.6K] InternalAggregateProcessAllWindowFunction.java
│ │ │ │ │ ├── [3.5K] InternalAggregateProcessWindowFunction.java
│ │ │ │ │ ├── [2.3K] InternalIterableAllWindowFunction.java
│ │ │ │ │ ├── [3.0K] InternalIterableProcessAllWindowFunction.java
│ │ │ │ │ ├── [2.8K] InternalIterableProcessWindowFunction.java
│ │ │ │ │ ├── [2.3K] InternalIterableWindowFunction.java
│ │ │ │ │ ├── [2.0K] InternalProcessAllWindowContext.java
│ │ │ │ │ ├── [2.2K] InternalProcessWindowContext.java
│ │ │ │ │ ├── [2.3K] InternalSingleValueAllWindowFunction.java
│ │ │ │ │ ├── [3.1K] InternalSingleValueProcessAllWindowFunction.java
│ │ │ │ │ ├── [2.8K] InternalSingleValueProcessWindowFunction.java
│ │ │ │ │ ├── [2.3K] InternalSingleValueWindowFunction.java
│ │ │ │ │ └── [2.7K] InternalWindowFunction.java
│ │ │ │ ├── [ 19K] KeyMap.java
│ │ │ │ ├── [8.7K] MergingWindowSet.java
│ │ │ │ ├── [ 979] package-info.java
│ │ │ │ ├── [3.2K] TimestampedValue.java
│ │ │ │ └── [ 34K] WindowOperator.java
│ │ │ ├── [4.0K] partitioner
│ │ │ │ ├── [1.8K] BroadcastPartitioner.java
│ │ │ │ ├── [1.6K] ConfigurableStreamPartitioner.java
│ │ │ │ ├── [2.1K] CustomPartitionerWrapper.java
│ │ │ │ ├── [1.5K] ForwardPartitioner.java
│ │ │ │ ├── [1.5K] GlobalPartitioner.java
│ │ │ │ ├── [2.6K] KeyGroupStreamPartitioner.java
│ │ │ │ ├── [1.9K] RebalancePartitioner.java
│ │ │ │ ├── [2.9K] RescalePartitioner.java
│ │ │ │ ├── [1.6K] ShufflePartitioner.java
│ │ │ │ └── [1.6K] StreamPartitioner.java
│ │ │ ├── [4.0K] streamrecord
│ │ │ │ ├── [2.8K] LatencyMarker.java
│ │ │ │ ├── [3.1K] StreamElement.java
│ │ │ │ ├── [ 11K] StreamElementSerializer.java
│ │ │ │ └── [5.7K] StreamRecord.java
│ │ │ ├── [4.0K] streamstatus
│ │ │ │ ├── [ 10K] StatusWatermarkValve.java
│ │ │ │ ├── [6.4K] StreamStatus.java
│ │ │ │ ├── [1.3K] StreamStatusMaintainer.java
│ │ │ │ └── [1.1K] StreamStatusProvider.java
│ │ │ └── [4.0K] tasks
│ │ │ ├── [4.1K] AbstractTwoInputStreamTask.java
│ │ │ ├── [9.5K] AsyncCheckpointRunnable.java
│ │ │ ├── [1.2K] AsyncExceptionHandler.java
│ │ │ ├── [1.3K] AsynchronousException.java
│ │ │ ├── [1.5K] ExceptionInChainedOperatorException.java
│ │ │ ├── [4.0K] mailbox
│ │ │ │ ├── [2.4K] MailboxDefaultAction.java
│ │ │ │ ├── [1.4K] MailboxExecutorFactory.java
│ │ │ │ ├── [3.2K] MailboxExecutorImpl.java
│ │ │ │ ├── [ 13K] MailboxProcessor.java
│ │ │ │ ├── [2.8K] Mail.java
│ │ │ │ ├── [8.1K] TaskMailboxImpl.java
│ │ │ │ └── [8.5K] TaskMailbox.java
│ │ │ ├── [4.7K] MultipleInputStreamTask.java
│ │ │ ├── [6.5K] OneInputStreamTask.java
│ │ │ ├── [ 29K] OperatorChain.java
│ │ │ ├── [4.1K] OperatorEventDispatcherImpl.java
│ │ │ ├── [1.3K] package-info.java
│ │ │ ├── [1.5K] ProcessingTimeCallback.java
│ │ │ ├── [1.5K] ProcessingTimeServiceAware.java
│ │ │ ├── [1.5K] ProcessingTimeServiceFactory.java
│ │ │ ├── [4.0K] ProcessingTimeServiceImpl.java
│ │ │ ├── [3.7K] ProcessingTimeService.java
│ │ │ ├── [1.8K] ProcessingTimeServiceUtil.java
│ │ │ ├── [3.0K] SourceOperatorStreamTask.java
│ │ │ ├── [8.5K] SourceStreamTask.java
│ │ │ ├── [4.7K] StreamIterationHead.java
│ │ │ ├── [4.7K] StreamIterationTail.java
│ │ │ ├── [7.9K] StreamOperatorWrapper.java
│ │ │ ├── [3.5K] StreamTaskActionExecutor.java
│ │ │ ├── [2.0K] StreamTaskException.java
│ │ │ ├── [ 43K] StreamTask.java
│ │ │ ├── [ 23K] SubtaskCheckpointCoordinatorImpl.java
│ │ │ ├── [3.2K] SubtaskCheckpointCoordinator.java
│ │ │ ├── [ 10K] SystemProcessingTimeService.java
│ │ │ ├── [6.9K] TestProcessingTimeService.java
│ │ │ ├── [1.3K] TimerException.java
│ │ │ ├── [2.7K] TimerService.java
│ │ │ └── [3.0K] TwoInputStreamTask.java
│ │ └── [4.0K] util
│ │ ├── [4.0K] functions
│ │ │ └── [7.5K] StreamingFunctionUtils.java
│ │ ├── [4.0K] keys
│ │ │ └── [8.5K] KeySelectorUtil.java
│ │ ├── [4.4K] LatencyStats.java
│ │ ├── [4.0K] serialization
│ │ │ ├── [1.7K] AbstractDeserializationSchema.java
│ │ │ ├── [2.3K] DeserializationSchema.java
│ │ │ ├── [1.7K] SerializationSchema.java
│ │ │ ├── [1.7K] SimpleStringSchema.java
│ │ │ └── [2.0K] TypeInformationSerializationSchema.java
│ │ └── [4.0K] typeutils
│ │ ├── [ 10K] FieldAccessorFactory.java
│ │ └── [ 12K] FieldAccessor.java
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] runtime
│ │ │ └── [4.0K] io
│ │ │ └── [4.0K] network
│ │ │ └── [4.0K] partition
│ │ │ └── [4.0K] consumer
│ │ │ └── [7.2K] StreamTestSingleInputGate.java
│ │ └── [4.0K] streaming
│ │ ├── [4.0K] api
│ │ │ ├── [ 15K] AggregationFunctionTest.java
│ │ │ ├── [4.0K] checkpoint
│ │ │ │ └── [3.3K] ListCheckpointedTest.java
│ │ │ ├── [4.0K] collector
│ │ │ │ └── [1.9K] OutputSelectorTest.java
│ │ │ ├── [4.0K] datastream
│ │ │ │ ├── [3.0K] CoGroupedStreamsTest.java
│ │ │ │ ├── [2.9K] JoinedStreamsTest.java
│ │ │ │ ├── [2.6K] SplitSideOutputTest.java
│ │ │ │ ├── [2.7K] UnionSerializerTest.java
│ │ │ │ └── [6.0K] UnionSerializerUpgradeTest.java
│ │ │ ├── [ 56K] DataStreamTest.java
│ │ │ ├── [4.0K] environment
│ │ │ │ ├── [6.2K] CheckpointConfigFromConfigurationTest.java
│ │ │ │ ├── [6.2K] StreamExecutionEnvironmentComplexConfigurationTest.java
│ │ │ │ └── [5.8K] StreamExecutionEnvironmentConfigurationTest.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [3.7K] AscendingTimestampExtractorTest.java
│ │ │ │ ├── [4.0K] async
│ │ │ │ │ └── [ 10K] RichAsyncFunctionTest.java
│ │ │ │ ├── [3.8K] BoundedOutOfOrdernessTimestampExtractorTest.java
│ │ │ │ ├── [8.0K] FromElementsFunctionTest.java
│ │ │ │ ├── [2.0K] IngestionTimeExtractorTest.java
│ │ │ │ ├── [2.0K] ListSourceContext.java
│ │ │ │ ├── [4.5K] PrintSinkFunctionTest.java
│ │ │ │ ├── [4.0K] sink
│ │ │ │ │ ├── [4.0K] filesystem
│ │ │ │ │ │ ├── [2.4K] BucketAssignerITCases.java
│ │ │ │ │ │ ├── [4.0K] bucketassigners
│ │ │ │ │ │ │ └── [2.1K] DateTimeBucketAssignerTest.java
│ │ │ │ │ │ ├── [ 14K] BucketStateSerializerTest.java
│ │ │ │ │ │ ├── [ 21K] BucketsTest.java
│ │ │ │ │ │ ├── [ 15K] BucketTest.java
│ │ │ │ │ │ ├── [8.2K] BulkWriterTest.java
│ │ │ │ │ │ ├── [ 21K] LocalStreamingFileSinkTest.java
│ │ │ │ │ │ ├── [ 10K] RollingPolicyTest.java
│ │ │ │ │ │ ├── [ 13K] TestUtils.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ ├── [1.5K] NoOpCommitter.java
│ │ │ │ │ │ ├── [1.8K] NoOpRecoverableFsDataOutputStream.java
│ │ │ │ │ │ ├── [1.2K] NoOpRecoverable.java
│ │ │ │ │ │ └── [2.3K] NoOpRecoverableWriter.java
│ │ │ │ │ ├── [1.9K] OutputFormatSinkFunctionTest.java
│ │ │ │ │ ├── [8.9K] SocketClientSinkTest.java
│ │ │ │ │ ├── [1.4K] TransactionHolderTest.java
│ │ │ │ │ ├── [ 10K] TwoPhaseCommitSinkFunctionTest.java
│ │ │ │ │ └── [5.4K] TwoPhaseCommitSinkStateSerializerUpgradeTest.java
│ │ │ │ ├── [4.0K] source
│ │ │ │ │ ├── [3.7K] ContinuousFileReaderOperatorTest.java
│ │ │ │ │ ├── [4.0K] datagen
│ │ │ │ │ │ └── [6.9K] DataGeneratorSourceTest.java
│ │ │ │ │ ├── [2.1K] FileMonitoringFunctionTest.java
│ │ │ │ │ ├── [8.9K] InputFormatSourceFunctionTest.java
│ │ │ │ │ └── [8.8K] SocketTextStreamFunctionTest.java
│ │ │ │ ├── [7.4K] StatefulSequenceSourceTest.java
│ │ │ │ └── [4.0K] windowing
│ │ │ │ └── [4.0K] delta
│ │ │ │ └── [4.0K] extractor
│ │ │ │ ├── [5.0K] ArrayFromTupleTest.java
│ │ │ │ ├── [3.1K] ConcatenatedExtractTest.java
│ │ │ │ ├── [1.8K] FieldFromArrayTest.java
│ │ │ │ ├── [3.3K] FieldFromTupleTest.java
│ │ │ │ ├── [3.9K] FieldsFromArrayTest.java
│ │ │ │ └── [4.5K] FieldsFromTupleTest.java
│ │ │ ├── [4.0K] graph
│ │ │ │ ├── [7.9K] SlotAllocationTest.java
│ │ │ │ ├── [ 25K] StreamGraphGeneratorTest.java
│ │ │ │ ├── [ 45K] StreamingJobGraphGeneratorTest.java
│ │ │ │ └── [7.4K] StreamingJobGraphGeneratorWithGlobalDataExchangeModeTest.java
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [ 18K] AbstractStreamOperatorTest.java
│ │ │ │ ├── [4.8K] AbstractStreamOperatorV2Test.java
│ │ │ │ ├── [ 11K] AbstractUdfStreamOperatorLifecycleTest.java
│ │ │ │ ├── [4.0K] async
│ │ │ │ │ ├── [ 31K] AsyncWaitOperatorTest.java
│ │ │ │ │ └── [4.0K] queue
│ │ │ │ │ ├── [2.8K] OrderedStreamElementQueueTest.java
│ │ │ │ │ ├── [2.3K] QueueUtil.java
│ │ │ │ │ ├── [5.4K] StreamElementQueueTest.java
│ │ │ │ │ └── [3.9K] UnorderedStreamElementQueueTest.java
│ │ │ │ ├── [7.9K] BackendRestorerProcedureTest.java
│ │ │ │ ├── [4.0K] co
│ │ │ │ │ ├── [2.5K] BufferEntryMatchers.java
│ │ │ │ │ ├── [4.2K] BufferEntrySerializerUpgradeTest.java
│ │ │ │ │ ├── [ 29K] CoBroadcastWithKeyedOperatorTest.java
│ │ │ │ │ ├── [ 20K] CoBroadcastWithNonKeyedOperatorTest.java
│ │ │ │ │ ├── [4.8K] CoProcessOperatorTest.java
│ │ │ │ │ ├── [6.5K] CoStreamFlatMapTest.java
│ │ │ │ │ ├── [6.1K] CoStreamMapTest.java
│ │ │ │ │ ├── [ 25K] IntervalJoinOperatorTest.java
│ │ │ │ │ ├── [ 21K] KeyedCoProcessOperatorTest.java
│ │ │ │ │ └── [ 19K] LegacyKeyedCoProcessOperatorTest.java
│ │ │ │ ├── [4.0K] collect
│ │ │ │ │ ├── [4.3K] CollectResultIteratorTest.java
│ │ │ │ │ ├── [ 21K] CollectSinkFunctionTest.java
│ │ │ │ │ ├── [6.8K] CollectSinkOperatorCoordinatorTest.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [1.6K] MockFunctionInitializationContext.java
│ │ │ │ │ ├── [1.3K] MockFunctionSnapshotContext.java
│ │ │ │ │ ├── [1.4K] MockOperatorEventGateway.java
│ │ │ │ │ ├── [3.5K] MockOperatorStateStore.java
│ │ │ │ │ ├── [6.6K] TestCoordinationRequestHandler.java
│ │ │ │ │ └── [4.1K] TestJobClient.java
│ │ │ │ ├── [6.5K] InputSelectionTest.java
│ │ │ │ ├── [ 39K] InternalTimerServiceImplTest.java
│ │ │ │ ├── [1.6K] InternalTimeServiceManagerTest.java
│ │ │ │ ├── [ 20K] KeyedProcessOperatorTest.java
│ │ │ │ ├── [1.4K] KeyGroupPartitionerForTimersTest.java
│ │ │ │ ├── [ 17K] LegacyKeyedProcessOperatorTest.java
│ │ │ │ ├── [1.4K] MockStreamStatusMaintainer.java
│ │ │ │ ├── [6.2K] OperatorSnapshotFinalizerTest.java
│ │ │ │ ├── [5.0K] OperatorSnapshotFuturesTest.java
│ │ │ │ ├── [7.2K] ProcessOperatorTest.java
│ │ │ │ ├── [4.0K] source
│ │ │ │ │ ├── [1.9K] CollectingDataOutput.java
│ │ │ │ │ ├── [1.3K] OnEventTestWatermarkGenerator.java
│ │ │ │ │ ├── [1.5K] OnPeriodicTestWatermarkGenerator.java
│ │ │ │ │ ├── [8.7K] SourceOperatorEventTimeTest.java
│ │ │ │ │ ├── [3.1K] SourceOutputWithWatermarksTest.java
│ │ │ │ │ ├── [3.4K] TestingSourceOperator.java
│ │ │ │ │ └── [2.8K] WatermarkToDataOutputTest.java
│ │ │ │ ├── [6.9K] SourceOperatorTest.java
│ │ │ │ ├── [ 10K] StateDescriptorPassingTest.java
│ │ │ │ ├── [ 12K] StateInitializationContextImplTest.java
│ │ │ │ ├── [6.2K] StateSnapshotContextSynchronousImplTest.java
│ │ │ │ ├── [4.8K] StreamFilterTest.java
│ │ │ │ ├── [5.3K] StreamFlatMapTest.java
│ │ │ │ ├── [5.6K] StreamGroupedFoldTest.java
│ │ │ │ ├── [5.7K] StreamGroupedReduceTest.java
│ │ │ │ ├── [ 16K] StreamingRuntimeContextTest.java
│ │ │ │ ├── [4.4K] StreamMapTest.java
│ │ │ │ ├── [8.6K] StreamOperatorStateHandlerTest.java
│ │ │ │ ├── [4.5K] StreamProjectTest.java
│ │ │ │ ├── [3.5K] StreamSinkOperatorTest.java
│ │ │ │ ├── [ 14K] StreamSourceContextIdleDetectionTests.java
│ │ │ │ ├── [ 12K] StreamTaskStateInitializerImplTest.java
│ │ │ │ ├── [6.6K] TestInternalTimerService.java
│ │ │ │ ├── [2.6K] TimerSerializerTest.java
│ │ │ │ ├── [4.3K] TimerSerializerUpgradeTest.java
│ │ │ │ ├── [4.0K] windowing
│ │ │ │ │ └── [4.0K] functions
│ │ │ │ │ └── [ 24K] InternalWindowFunctionTest.java
│ │ │ │ └── [5.9K] WrappingFunctionSnapshotRestoreTest.java
│ │ │ ├── [4.1K] RestartStrategyTest.java
│ │ │ ├── [2.1K] SourceFunctionTest.java
│ │ │ ├── [ 12K] StreamExecutionEnvironmentTest.java
│ │ │ ├── [4.0K] streamtask
│ │ │ │ └── [1.8K] StreamIterationHeadTest.java
│ │ │ ├── [6.6K] TypeFillTest.java
│ │ │ └── [4.0K] windowing
│ │ │ └── [4.0K] deltafunction
│ │ │ ├── [2.1K] CosineDistanceTest.java
│ │ │ └── [2.1K] EuclideanDistanceTest.java
│ │ ├── [4.0K] environment
│ │ │ ├── [3.4K] ExecutorDiscoveryAndJobClientTest.java
│ │ │ └── [2.3K] TestingJobClient.java
│ │ ├── [4.0K] experimental
│ │ │ └── [3.2K] SocketStreamIteratorTest.java
│ │ ├── [4.0K] graph
│ │ │ ├── [3.8K] StreamGraphCoLocationConstraintTest.java
│ │ │ ├── [ 18K] StreamingJobGraphGeneratorNodeHashTest.java
│ │ │ ├── [2.9K] TranslationTest.java
│ │ │ └── [6.6K] WithMasterCheckpointHookConfigTest.java
│ │ ├── [4.0K] runtime
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [ 15K] AlternatingCheckpointBarrierHandlerTest.java
│ │ │ │ ├── [4.0K] benchmark
│ │ │ │ │ ├── [2.3K] DataSkewStreamNetworkThroughputBenchmark.java
│ │ │ │ │ ├── [1.2K] DataSkewStreamNetworkThroughputBenchmarkTest.java
│ │ │ │ │ ├── [3.0K] LongRecordWriterThread.java
│ │ │ │ │ ├── [3.0K] ReceiverThread.java
│ │ │ │ │ ├── [2.0K] SerializingLongReceiver.java
│ │ │ │ │ ├── [6.3K] SingleInputGateBenchmarkFactory.java
│ │ │ │ │ ├── [ 10K] StreamNetworkBenchmarkEnvironment.java
│ │ │ │ │ ├── [1.6K] StreamNetworkBroadcastThroughputBenchmark.java
│ │ │ │ │ ├── [1.2K] StreamNetworkBroadcastThroughputBenchmarkTest.java
│ │ │ │ │ ├── [3.3K] StreamNetworkPointToPointBenchmark.java
│ │ │ │ │ ├── [1.2K] StreamNetworkPointToPointBenchmarkTest.java
│ │ │ │ │ ├── [4.8K] StreamNetworkThroughputBenchmark.java
│ │ │ │ │ └── [4.4K] StreamNetworkThroughputBenchmarkTest.java
│ │ │ │ ├── [7.4K] CheckpointBarrierAlignerMassiveRandomTest.java
│ │ │ │ ├── [ 40K] CheckpointBarrierAlignerTestBase.java
│ │ │ │ ├── [ 13K] CheckpointBarrierTrackerTest.java
│ │ │ │ ├── [5.5K] CheckpointBarrierUnalignerCancellationTest.java
│ │ │ │ ├── [ 34K] CheckpointBarrierUnalignerTest.java
│ │ │ │ ├── [3.4K] CheckpointSequenceValidator.java
│ │ │ │ ├── [1.3K] CreditBasedCheckpointBarrierAlignerTest.java
│ │ │ │ ├── [4.1K] InputProcessorUtilTest.java
│ │ │ │ ├── [3.1K] MockIndexedInputGate.java
│ │ │ │ ├── [4.4K] MockInputGate.java
│ │ │ │ ├── [1.9K] MultipleInputSelectionHandlerTest.java
│ │ │ │ ├── [ 14K] StreamTaskNetworkInputTest.java
│ │ │ │ └── [2.6K] TestEvent.java
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [1.5K] MinWatermarkGaugeTest.java
│ │ │ │ └── [1.2K] WatermarkGaugeTest.java
│ │ │ ├── [4.0K] operators
│ │ │ │ ├── [9.9K] ContinuousFileProcessingRescalingTest.java
│ │ │ │ ├── [8.1K] GenericWriteAheadSinkTest.java
│ │ │ │ ├── [6.6K] MailboxOperatorTest.java
│ │ │ │ ├── [9.8K] StreamOperatorChainingTest.java
│ │ │ │ ├── [9.8K] StreamSourceOperatorLatencyMetricsTest.java
│ │ │ │ ├── [ 10K] StreamSourceOperatorWatermarksTest.java
│ │ │ │ ├── [5.9K] StreamTaskOperatorTimerTest.java
│ │ │ │ ├── [6.6K] StreamTaskTimerTest.java
│ │ │ │ ├── [3.0K] TestProcessingTimeServiceTest.java
│ │ │ │ ├── [ 10K] TimestampsAndWatermarksOperatorTest.java
│ │ │ │ ├── [4.0K] windowing
│ │ │ │ │ ├── [ 75K] AllWindowTranslationTest.java
│ │ │ │ │ ├── [8.7K] ContinuousEventTimeTriggerTest.java
│ │ │ │ │ ├── [7.6K] CountTriggerTest.java
│ │ │ │ │ ├── [8.0K] DynamicEventTimeSessionWindowsTest.java
│ │ │ │ │ ├── [8.4K] DynamicProcessingTimeSessionWindowsTest.java
│ │ │ │ │ ├── [7.5K] EventTimeSessionWindowsTest.java
│ │ │ │ │ ├── [8.5K] EventTimeTriggerTest.java
│ │ │ │ │ ├── [4.0K] EvictingWindowOperatorContractTest.java
│ │ │ │ │ ├── [ 35K] EvictingWindowOperatorTest.java
│ │ │ │ │ ├── [2.5K] GlobalWindowsTest.java
│ │ │ │ │ ├── [3.5K] KeyMapPutIfAbsentTest.java
│ │ │ │ │ ├── [4.0K] KeyMapPutTest.java
│ │ │ │ │ ├── [9.9K] KeyMapTest.java
│ │ │ │ │ ├── [ 21K] MergingWindowSetTest.java
│ │ │ │ │ ├── [1.8K] NonPojoType.java
│ │ │ │ │ ├── [8.0K] ProcessingTimeSessionWindowsTest.java
│ │ │ │ │ ├── [8.1K] ProcessingTimeTriggerTest.java
│ │ │ │ │ ├── [7.6K] PurgingTriggerTest.java
│ │ │ │ │ ├── [ 12K] RegularWindowOperatorContractTest.java
│ │ │ │ │ ├── [1.7K] SimpleTriggerTestHarness.java
│ │ │ │ │ ├── [7.4K] SlidingEventTimeWindowsTest.java
│ │ │ │ │ ├── [8.4K] SlidingProcessingTimeWindowsTest.java
│ │ │ │ │ ├── [3.2K] TimeWindowTest.java
│ │ │ │ │ ├── [9.0K] TimeWindowTranslationTest.java
│ │ │ │ │ ├── [ 13K] TriggerTestHarness.java
│ │ │ │ │ ├── [5.3K] TumblingEventTimeWindowsTest.java
│ │ │ │ │ ├── [6.3K] TumblingProcessingTimeWindowsTest.java
│ │ │ │ │ ├── [1.4K] WindowedValue.java
│ │ │ │ │ ├── [119K] WindowOperatorContractTest.java
│ │ │ │ │ ├── [ 41K] WindowOperatorMigrationTest.java
│ │ │ │ │ ├── [116K] WindowOperatorTest.java
│ │ │ │ │ ├── [5.3K] WindowSerializerUpgradeTest.java
│ │ │ │ │ └── [ 83K] WindowTranslationTest.java
│ │ │ │ └── [9.6K] WriteAheadSinkTestBase.java
│ │ │ ├── [4.0K] partitioner
│ │ │ │ ├── [1.5K] BroadcastPartitionerTest.java
│ │ │ │ ├── [1.4K] ForwardPartitionerTest.java
│ │ │ │ ├── [1.4K] GlobalPartitionerTest.java
│ │ │ │ ├── [2.9K] KeyGroupStreamPartitionerTest.java
│ │ │ │ ├── [1.7K] RebalancePartitionerTest.java
│ │ │ │ ├── [6.7K] RescalePartitionerTest.java
│ │ │ │ ├── [1.8K] ShufflePartitionerTest.java
│ │ │ │ └── [2.0K] StreamPartitionerTest.java
│ │ │ ├── [4.0K] streamrecord
│ │ │ │ ├── [4.5K] StreamElementSerializerTest.java
│ │ │ │ ├── [3.8K] StreamElementSerializerUpgradeTest.java
│ │ │ │ └── [5.3K] StreamRecordTest.java
│ │ │ ├── [4.0K] streamstatus
│ │ │ │ ├── [ 18K] StatusWatermarkValveTest.java
│ │ │ │ └── [2.2K] StreamStatusTest.java
│ │ │ └── [4.0K] tasks
│ │ │ ├── [3.8K] CheckpointExceptionHandlerConfigurationTest.java
│ │ │ ├── [1.9K] ExceptionallyDoneFuture.java
│ │ │ ├── [ 14K] InterruptSensitiveRestoreTest.java
│ │ │ ├── [ 11K] LocalStateForwardingTest.java
│ │ │ ├── [4.0K] mailbox
│ │ │ │ ├── [6.2K] MailboxExecutorImplTest.java
│ │ │ │ ├── [1.8K] SteppingMailboxProcessor.java
│ │ │ │ ├── [ 12K] TaskMailboxImplTest.java
│ │ │ │ └── [ 12K] TaskMailboxProcessorTest.java
│ │ │ ├── [4.1K] MockSubtaskCheckpointCoordinatorBuilder.java
│ │ │ ├── [ 33K] MultipleInputStreamTaskTest.java
│ │ │ ├── [5.9K] OneInputStreamTaskTestHarness.java
│ │ │ ├── [ 42K] OneInputStreamTaskTest.java
│ │ │ ├── [6.2K] OperatorChainTest.java
│ │ │ ├── [4.9K] ProcessingTimeServiceImplTest.java
│ │ │ ├── [ 12K] RestoreStreamTaskTest.java
│ │ │ ├── [6.3K] SourceExternalCheckpointTriggerTest.java
│ │ │ ├── [7.7K] SourceOperatorStreamTaskTest.java
│ │ │ ├── [ 25K] SourceStreamTaskTest.java
│ │ │ ├── [7.1K] SourceTaskTerminationTest.java
│ │ │ ├── [5.9K] StreamConfigChainer.java
│ │ │ ├── [ 11K] StreamMockEnvironment.java
│ │ │ ├── [ 10K] StreamOperatorWrapperTest.java
│ │ │ ├── [6.4K] StreamTaskCancellationBarrierTest.java
│ │ │ ├── [4.8K] StreamTaskExecutionDecorationTest.java
│ │ │ ├── [ 12K] StreamTaskMailboxTestHarnessBuilder.java
│ │ │ ├── [5.2K] StreamTaskMailboxTestHarness.java
│ │ │ ├── [ 14K] StreamTaskMultipleInputSelectiveReadingTest.java
│ │ │ ├── [ 11K] StreamTaskSelectiveReadingTest.java
│ │ │ ├── [ 12K] StreamTaskTerminationTest.java
│ │ │ ├── [ 17K] StreamTaskTestHarness.java
│ │ │ ├── [4.2K] StreamTaskTestHarnessTest.java
│ │ │ ├── [ 71K] StreamTaskTest.java
│ │ │ ├── [ 20K] SubtaskCheckpointCoordinatorTest.java
│ │ │ ├── [ 10K] SynchronousCheckpointITCase.java
│ │ │ ├── [5.5K] SynchronousCheckpointTest.java
│ │ │ ├── [ 12K] SystemProcessingTimeServiceTest.java
│ │ │ ├── [ 17K] TaskCheckpointingBehaviourTest.java
│ │ │ ├── [2.0K] TestBoundedOneInputStreamOperator.java
│ │ │ ├── [2.3K] TestBoundedTwoInputOperator.java
│ │ │ ├── [3.6K] TestSpyWrapperStateBackend.java
│ │ │ ├── [3.3K] TestSubtaskCheckpointCoordinator.java
│ │ │ ├── [6.3K] TwoInputStreamTaskTestHarness.java
│ │ │ └── [ 30K] TwoInputStreamTaskTest.java
│ │ └── [4.0K] util
│ │ ├── [3.0K] AbstractBroadcastStreamOperatorTestHarness.java
│ │ ├── [ 26K] AbstractStreamOperatorTestHarness.java
│ │ ├── [5.4K] AbstractStreamOperatorTestHarnessTest.java
│ │ ├── [1.9K] BroadcastOperatorTestHarness.java
│ │ ├── [2.1K] CollectingSourceContext.java
│ │ ├── [2.3K] CollectorOutput.java
│ │ ├── [3.8K] ContentDump.java
│ │ ├── [1.2K] EvenOddOutputSelector.java
│ │ ├── [2.4K] KeyedBroadcastOperatorTestHarness.java
│ │ ├── [4.4K] KeyedOneInputStreamOperatorTestHarness.java
│ │ ├── [3.0K] KeyedTwoInputStreamOperatorTestHarness.java
│ │ ├── [4.0K] keys
│ │ │ └── [2.9K] ArrayKeySelectorTest.java
│ │ ├── [6.8K] LatencyStatsTest.java
│ │ ├── [2.7K] MockContext.java
│ │ ├── [2.3K] MockDeserializationSchema.java
│ │ ├── [2.3K] MockOutput.java
│ │ ├── [1.9K] MockSerializationSchema.java
│ │ ├── [2.7K] MockStreamConfig.java
│ │ ├── [3.5K] MockStreamingRuntimeContext.java
│ │ ├── [5.3K] MockStreamTaskBuilder.java
│ │ ├── [4.8K] MockStreamTask.java
│ │ ├── [1.1K] NoOpIntMap.java
│ │ ├── [7.4K] OneInputStreamOperatorTestHarness.java
│ │ ├── [7.3K] OperatorSnapshotUtil.java
│ │ ├── [7.7K] ProcessFunctionTestHarnesses.java
│ │ ├── [6.4K] ProcessFunctionTestHarnessesTest.java
│ │ ├── [3.2K] SourceFunctionUtil.java
│ │ ├── [6.8K] StreamRecordMatchers.java
│ │ ├── [1.3K] StreamTaskUtil.java
│ │ ├── [3.0K] TestAnyModeMultipleInputStreamOperator.java
│ │ ├── [1.9K] TestAnyModeReadingStreamOperator.java
│ │ ├── [2.6K] TestBoundedMultipleInputOperator.java
│ │ ├── [4.0K] TestHarnessUtil.java
│ │ ├── [2.3K] TestSequentialMultipleInputStreamOperator.java
│ │ ├── [2.2K] TestSequentialReadingStreamOperator.java
│ │ ├── [2.9K] TwoInputStreamOperatorTestHarness.java
│ │ ├── [4.0K] typeutils
│ │ │ └── [ 14K] FieldAccessorTest.java
│ │ └── [1.6K] WatermarkMatchers.java
│ └── [ 12K] resources
│ ├── [4.0K] bucket-state-migration-test
│ │ ├── [4.0K] empty-v1
│ │ │ └── [ 128] snapshot
│ │ ├── [4.0K] empty-v2
│ │ │ └── [ 128] snapshot
│ │ ├── [4.0K] full-no-in-progress-v1-template
│ │ │ ├── [4.0K] bucket
│ │ │ │ └── [4.0K] test-bucket
│ │ │ └── [1.5K] snapshot
│ │ ├── [4.0K] full-no-in-progress-v2-template
│ │ │ ├── [4.0K] bucket
│ │ │ │ └── [4.0K] test-bucket
│ │ │ └── [1.6K] snapshot
│ │ ├── [4.0K] full-v1-template
│ │ │ ├── [4.0K] bucket
│ │ │ │ └── [4.0K] test-bucket
│ │ │ └── [1.6K] snapshot
│ │ ├── [4.0K] full-v2-template
│ │ │ ├── [4.0K] bucket
│ │ │ │ └── [4.0K] test-bucket
│ │ │ └── [1.6K] snapshot
│ │ ├── [4.0K] only-in-progress-v1
│ │ │ ├── [4.0K] bucket
│ │ │ │ └── [4.0K] test-bucket
│ │ │ └── [ 404] snapshot
│ │ └── [4.0K] only-in-progress-v2
│ │ ├── [4.0K] bucket
│ │ │ └── [4.0K] test-bucket
│ │ └── [ 416] snapshot
│ ├── [4.0K] buffer-entry-serializer-1.11
│ │ ├── [ 214] serializer-snapshot
│ │ └── [ 7] test-data
│ ├── [4.0K] global-window-serializer-1.11
│ │ ├── [ 113] serializer-snapshot
│ │ └── [ 1] test-data
│ ├── [1.3K] log4j2-test.properties
│ ├── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ └── [ 881] org.apache.flink.core.execution.PipelineExecutorFactory
│ ├── [4.0K] stream-element-serializer-1.11
│ │ ├── [ 223] serializer-snapshot
│ │ └── [ 13] test-data
│ ├── [4.0K] timer-serializer-1.11
│ │ ├── [ 268] serializer-snapshot
│ │ └── [ 16] test-data
│ ├── [4.0K] time-window-serializer-1.11
│ │ ├── [ 109] serializer-snapshot
│ │ └── [ 16] test-data
│ ├── [4.0K] two-phase-commit-sink-state-serializer-1.11
│ │ ├── [ 300] serializer-snapshot
│ │ └── [ 35] test-data
│ ├── [4.0K] union-serializer-one-1.11
│ │ ├── [ 288] serializer-snapshot
│ │ └── [ 7] test-data
│ ├── [4.0K] union-serializer-two-1.11
│ │ ├── [ 288] serializer-snapshot
│ │ └── [ 9] test-data
│ ├── [ 222] win-op-migration-test-accum-aligned-flink1.3-snapshot
│ ├── [ 187] win-op-migration-test-aggr-aligned-flink1.3-snapshot
│ ├── [1.7K] win-op-migration-test-apply-event-time-flink1.10-snapshot
│ ├── [1.7K] win-op-migration-test-apply-event-time-flink1.11-snapshot
│ ├── [4.5K] win-op-migration-test-apply-event-time-flink1.3-snapshot
│ ├── [4.5K] win-op-migration-test-apply-event-time-flink1.4-snapshot
│ ├── [4.9K] win-op-migration-test-apply-event-time-flink1.5-snapshot
│ ├── [7.0K] win-op-migration-test-apply-event-time-flink1.6-snapshot
│ ├── [6.3K] win-op-migration-test-apply-event-time-flink1.7-snapshot
│ ├── [1.7K] win-op-migration-test-apply-event-time-flink1.8-snapshot
│ ├── [1.7K] win-op-migration-test-apply-event-time-flink1.9-snapshot
│ ├── [1.6K] win-op-migration-test-apply-processing-time-flink1.10-snapshot
│ ├── [1.6K] win-op-migration-test-apply-processing-time-flink1.11-snapshot
│ ├── [4.4K] win-op-migration-test-apply-processing-time-flink1.3-snapshot
│ ├── [4.4K] win-op-migration-test-apply-processing-time-flink1.4-snapshot
│ ├── [4.8K] win-op-migration-test-apply-processing-time-flink1.5-snapshot
│ ├── [6.9K] win-op-migration-test-apply-processing-time-flink1.6-snapshot
│ ├── [6.2K] win-op-migration-test-apply-processing-time-flink1.7-snapshot
│ ├── [1.6K] win-op-migration-test-apply-processing-time-flink1.8-snapshot
│ ├── [1.6K] win-op-migration-test-apply-processing-time-flink1.9-snapshot
│ ├── [3.9K] win-op-migration-test-kryo-serialized-key-flink1.10-snapshot
│ ├── [3.9K] win-op-migration-test-kryo-serialized-key-flink1.11-snapshot
│ ├── [ 11K] win-op-migration-test-kryo-serialized-key-flink1.3-snapshot
│ ├── [9.3K] win-op-migration-test-kryo-serialized-key-flink1.4-snapshot
│ ├── [ 10K] win-op-migration-test-kryo-serialized-key-flink1.5-snapshot
│ ├── [ 17K] win-op-migration-test-kryo-serialized-key-flink1.6-snapshot
│ ├── [ 21K] win-op-migration-test-kryo-serialized-key-flink1.7-snapshot
│ ├── [3.9K] win-op-migration-test-kryo-serialized-key-flink1.8-snapshot
│ ├── [3.9K] win-op-migration-test-kryo-serialized-key-flink1.9-snapshot
│ ├── [1.6K] win-op-migration-test-reduce-event-time-flink1.10-snapshot
│ ├── [1.6K] win-op-migration-test-reduce-event-time-flink1.11-snapshot
│ ├── [3.4K] win-op-migration-test-reduce-event-time-flink1.3-snapshot
│ ├── [3.4K] win-op-migration-test-reduce-event-time-flink1.4-snapshot
│ ├── [3.8K] win-op-migration-test-reduce-event-time-flink1.5-snapshot
│ ├── [5.9K] win-op-migration-test-reduce-event-time-flink1.6-snapshot
│ ├── [6.2K] win-op-migration-test-reduce-event-time-flink1.7-snapshot
│ ├── [1.6K] win-op-migration-test-reduce-event-time-flink1.8-snapshot
│ ├── [1.6K] win-op-migration-test-reduce-event-time-flink1.9-snapshot
│ ├── [1.5K] win-op-migration-test-reduce-processing-time-flink1.10-snapshot
│ ├── [1.5K] win-op-migration-test-reduce-processing-time-flink1.11-snapshot
│ ├── [3.4K] win-op-migration-test-reduce-processing-time-flink1.3-snapshot
│ ├── [3.4K] win-op-migration-test-reduce-processing-time-flink1.4-snapshot
│ ├── [3.7K] win-op-migration-test-reduce-processing-time-flink1.5-snapshot
│ ├── [5.9K] win-op-migration-test-reduce-processing-time-flink1.6-snapshot
│ ├── [6.1K] win-op-migration-test-reduce-processing-time-flink1.7-snapshot
│ ├── [1.5K] win-op-migration-test-reduce-processing-time-flink1.8-snapshot
│ ├── [1.5K] win-op-migration-test-reduce-processing-time-flink1.9-snapshot
│ ├── [2.6K] win-op-migration-test-session-with-stateful-trigger-flink1.10-snapshot
│ ├── [2.6K] win-op-migration-test-session-with-stateful-trigger-flink1.11-snapshot
│ ├── [8.5K] win-op-migration-test-session-with-stateful-trigger-flink1.3-snapshot
│ ├── [8.5K] win-op-migration-test-session-with-stateful-trigger-flink1.4-snapshot
│ ├── [8.8K] win-op-migration-test-session-with-stateful-trigger-flink1.5-snapshot
│ ├── [ 11K] win-op-migration-test-session-with-stateful-trigger-flink1.6-snapshot
│ ├── [9.7K] win-op-migration-test-session-with-stateful-trigger-flink1.7-snapshot
│ ├── [2.6K] win-op-migration-test-session-with-stateful-trigger-flink1.8-snapshot
│ ├── [2.6K] win-op-migration-test-session-with-stateful-trigger-flink1.9-snapshot
│ ├── [2.1K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.10-snapshot
│ ├── [2.1K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.11-snapshot
│ ├── [7.5K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.3-snapshot
│ ├── [7.5K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.4-snapshot
│ ├── [7.8K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.5-snapshot
│ ├── [ 10K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.6-snapshot
│ ├── [8.9K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.7-snapshot
│ ├── [2.1K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.8-snapshot
│ └── [2.1K] win-op-migration-test-session-with-stateful-trigger-mint-flink1.9-snapshot
├── [4.0K] flink-streaming-scala
│ ├── [8.6K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] api
│ │ └── [4.0K] scala
│ │ ├── [ 36K] AllWindowedStream.scala
│ │ ├── [4.0K] async
│ │ │ ├── [2.5K] AsyncFunction.scala
│ │ │ ├── [1.6K] JavaResultFutureWrapper.scala
│ │ │ ├── [1.7K] ResultFuture.scala
│ │ │ ├── [1.7K] RichAsyncFunction.scala
│ │ │ └── [2.2K] ScalaRichAsyncFunctionWrapper.scala
│ │ ├── [ 11K] AsyncDataStream.scala
│ │ ├── [3.4K] BroadcastConnectedStream.scala
│ │ ├── [8.8K] CoGroupedStreams.scala
│ │ ├── [ 14K] ConnectedStreams.scala
│ │ ├── [ 43K] DataStream.scala
│ │ ├── [2.7K] DataStreamUtils.scala
│ │ ├── [4.0K] extensions
│ │ │ ├── [4.0K] impl
│ │ │ │ └── [4.0K] acceptPartialFunctions
│ │ │ │ ├── [3.3K] OnConnectedStream.scala
│ │ │ │ ├── [2.7K] OnDataStream.scala
│ │ │ │ ├── [2.1K] OnJoinedStream.scala
│ │ │ │ ├── [2.0K] OnKeyedStream.scala
│ │ │ │ └── [4.1K] OnWindowedStream.scala
│ │ │ └── [3.5K] package.scala
│ │ ├── [4.0K] function
│ │ │ ├── [1.8K] AllWindowFunction.scala
│ │ │ ├── [2.9K] ProcessAllWindowFunction.scala
│ │ │ ├── [3.2K] ProcessWindowFunction.scala
│ │ │ ├── [1.5K] RichAllWindowFunction.scala
│ │ │ ├── [1.4K] RichProcessAllWindowFunction.scala
│ │ │ ├── [1.4K] RichProcessWindowFunction.scala
│ │ │ ├── [1.6K] RichWindowFunction.scala
│ │ │ ├── [1.9K] StatefulFunction.scala
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [1.5K] ScalaAllWindowFunction.scala
│ │ │ │ ├── [2.2K] ScalaAllWindowFunctionWrapper.scala
│ │ │ │ ├── [1.2K] ScalaFoldFunction.scala
│ │ │ │ ├── [5.8K] ScalaProcessWindowFunctionWrapper.scala
│ │ │ │ ├── [1.2K] ScalaReduceFunction.scala
│ │ │ │ ├── [1.5K] ScalaWindowFunction.scala
│ │ │ │ └── [2.2K] ScalaWindowFunctionWrapper.scala
│ │ │ └── [1.9K] WindowFunction.scala
│ │ ├── [9.0K] JoinedStreams.scala
│ │ ├── [ 28K] KeyedStream.scala
│ │ ├── [1.5K] OutputTag.scala
│ │ ├── [4.1K] package.scala
│ │ ├── [1.7K] SplitStream.scala
│ │ ├── [ 41K] StreamExecutionEnvironment.scala
│ │ └── [ 34K] WindowedStream.scala
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] streaming
│ │ └── [4.0K] scala
│ │ └── [4.0K] api
│ │ ├── [3.8K] CsvOutputFormatITCase.java
│ │ ├── [1.2K] StatefulFunctionITCase.java
│ │ └── [2.5K] TextOutputFormatITCase.java
│ ├── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ └── [4.0K] scala
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ └── [4.0K] streaming
│ └── [4.0K] api
│ └── [4.0K] scala
│ ├── [ 62K] AllWindowTranslationTest.scala
│ ├── [6.8K] AsyncDataStreamITCase.scala
│ ├── [5.5K] BroadcastStateITCase.scala
│ ├── [5.3K] CaseClassFieldAccessorTest.scala
│ ├── [1.8K] CoGroupedStreamsTest.scala
│ ├── [8.8K] CoGroupJoinITCase.scala
│ ├── [ 28K] DataStreamTest.scala
│ ├── [4.0K] extensions
│ │ ├── [4.0K] base
│ │ │ └── [1.9K] AcceptPFTestBase.scala
│ │ ├── [4.0K] data
│ │ │ └── [1.1K] KeyValuePair.scala
│ │ └── [4.0K] impl
│ │ └── [4.0K] acceptPartialFunctions
│ │ ├── [3.4K] OnConnectedDataStreamTest.scala
│ │ ├── [3.5K] OnDataStreamTest.scala
│ │ ├── [2.5K] OnJoinedStreamTest.scala
│ │ ├── [2.5K] OnKeyedDataStreamTest.scala
│ │ └── [3.5K] OnWindowedStreamTest.scala
│ ├── [4.0K] functions
│ │ └── [4.0K] sink
│ │ └── [4.0K] filesystem
│ │ └── [2.0K] StreamingFileSinkTest.scala
│ ├── [4.4K] IntervalJoinITCase.scala
│ ├── [1.8K] JoinedStreamsTest.scala
│ ├── [3.5K] OutputFormatTestPrograms.scala
│ ├── [1.5K] ReinterpretDataStreamAsKeyedStreamITCase.scala
│ ├── [ 13K] SideOutputITCase.scala
│ ├── [3.2K] SlotAllocationTest.scala
│ ├── [3.0K] StateTestPrograms.scala
│ ├── [2.0K] StreamExecutionEnvironmentTest.scala
│ ├── [5.2K] StreamingOperatorsITCase.scala
│ ├── [6.4K] StreamingScalaAPICompletenessTest.scala
│ ├── [4.0K] testutils
│ │ ├── [2.5K] CheckingIdentityRichAllWindowFunction.scala
│ │ ├── [2.5K] CheckingIdentityRichProcessAllWindowFunction.scala
│ │ ├── [2.5K] CheckingIdentityRichProcessWindowFunction.scala
│ │ └── [2.5K] CheckingIdentityRichWindowFunction.scala
│ ├── [6.4K] TimeWindowTranslationTest.scala
│ ├── [ 13K] WindowFoldITCase.scala
│ ├── [8.9K] WindowFunctionITCase.scala
│ ├── [ 13K] WindowReduceITCase.scala
│ └── [ 74K] WindowTranslationTest.scala
├── [4.0K] flink-table
│ ├── [4.0K] flink-sql-client
│ │ ├── [4.0K] bin
│ │ │ └── [3.7K] sql-client.sh
│ │ ├── [4.0K] conf
│ │ │ └── [5.3K] sql-client-defaults.yaml
│ │ ├── [ 16K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] client
│ │ │ │ ├── [4.0K] cli
│ │ │ │ │ ├── [9.2K] CliChangelogResultView.java
│ │ │ │ │ ├── [ 19K] CliClient.java
│ │ │ │ │ ├── [6.6K] CliInputView.java
│ │ │ │ │ ├── [2.5K] CliOptions.java
│ │ │ │ │ ├── [ 12K] CliOptionsParser.java
│ │ │ │ │ ├── [8.2K] CliResultView.java
│ │ │ │ │ ├── [4.2K] CliRowView.java
│ │ │ │ │ ├── [ 16K] CliStrings.java
│ │ │ │ │ ├── [7.3K] CliTableauResultView.java
│ │ │ │ │ ├── [ 11K] CliTableResultView.java
│ │ │ │ │ ├── [3.8K] CliUtils.java
│ │ │ │ │ ├── [ 13K] CliView.java
│ │ │ │ │ ├── [ 11K] SqlCommandParser.java
│ │ │ │ │ ├── [3.6K] SqlCompleter.java
│ │ │ │ │ └── [2.6K] SqlMultiLineParser.java
│ │ │ │ ├── [4.0K] config
│ │ │ │ │ ├── [3.6K] ConfigUtil.java
│ │ │ │ │ ├── [4.0K] entries
│ │ │ │ │ │ ├── [2.3K] CatalogEntry.java
│ │ │ │ │ │ ├── [2.1K] ConfigEntry.java
│ │ │ │ │ │ ├── [2.9K] ConfigurationEntry.java
│ │ │ │ │ │ ├── [6.0K] DeploymentEntry.java
│ │ │ │ │ │ ├── [ 14K] ExecutionEntry.java
│ │ │ │ │ │ ├── [2.5K] FunctionEntry.java
│ │ │ │ │ │ ├── [2.1K] ModuleEntry.java
│ │ │ │ │ │ ├── [1.2K] SinkTableEntry.java
│ │ │ │ │ │ ├── [1.2K] SourceSinkTableEntry.java
│ │ │ │ │ │ ├── [1.2K] SourceTableEntry.java
│ │ │ │ │ │ ├── [3.5K] TableEntry.java
│ │ │ │ │ │ ├── [2.2K] TemporalTableEntry.java
│ │ │ │ │ │ └── [1.6K] ViewEntry.java
│ │ │ │ │ └── [ 11K] Environment.java
│ │ │ │ ├── [4.0K] gateway
│ │ │ │ │ ├── [6.1K] Executor.java
│ │ │ │ │ ├── [4.0K] local
│ │ │ │ │ │ ├── [2.8K] CollectBatchTableSink.java
│ │ │ │ │ │ ├── [3.2K] CollectStreamTableSink.java
│ │ │ │ │ │ ├── [ 36K] ExecutionContext.java
│ │ │ │ │ │ ├── [ 28K] LocalExecutor.java
│ │ │ │ │ │ ├── [3.1K] ProgramDeployer.java
│ │ │ │ │ │ ├── [4.0K] result
│ │ │ │ │ │ │ ├── [1.7K] BasicResult.java
│ │ │ │ │ │ │ ├── [3.3K] ChangelogCollectStreamResult.java
│ │ │ │ │ │ │ ├── [1.3K] ChangelogResult.java
│ │ │ │ │ │ │ ├── [5.5K] CollectStreamResult.java
│ │ │ │ │ │ │ ├── [1.7K] DynamicResult.java
│ │ │ │ │ │ │ ├── [5.2K] MaterializedCollectBatchResult.java
│ │ │ │ │ │ │ ├── [8.3K] MaterializedCollectStreamResult.java
│ │ │ │ │ │ │ ├── [1.4K] MaterializedResult.java
│ │ │ │ │ │ │ └── [1.2K] Result.java
│ │ │ │ │ │ └── [5.4K] ResultStore.java
│ │ │ │ │ ├── [1.5K] ProgramTargetDescriptor.java
│ │ │ │ │ ├── [1.6K] ResultDescriptor.java
│ │ │ │ │ ├── [2.0K] SessionContext.java
│ │ │ │ │ ├── [1.2K] SqlExecutionException.java
│ │ │ │ │ └── [2.4K] TypedResult.java
│ │ │ │ ├── [1.2K] SqlClientException.java
│ │ │ │ └── [8.1K] SqlClient.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ └── [1.2K] LICENSE.jline
│ │ │ └── [ 346] NOTICE
│ │ └── [4.0K] test
│ │ ├── [4.0K] assembly
│ │ │ └── [1.2K] test-table-factories.xml
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] client
│ │ │ ├── [4.0K] cli
│ │ │ │ ├── [ 18K] CliClientTest.java
│ │ │ │ ├── [8.8K] CliResultViewTest.java
│ │ │ │ ├── [ 18K] CliTableauResultViewTest.java
│ │ │ │ ├── [ 16K] SqlCommandParserTest.java
│ │ │ │ ├── [4.8K] TestingExecutorBuilder.java
│ │ │ │ ├── [9.2K] TestingExecutor.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [2.0K] SqlParserHelper.java
│ │ │ │ └── [1.7K] TerminalUtils.java
│ │ │ └── [4.0K] gateway
│ │ │ ├── [4.0K] local
│ │ │ │ ├── [ 11K] DependencyTest.java
│ │ │ │ ├── [5.1K] EnvironmentTest.java
│ │ │ │ ├── [ 17K] ExecutionContextTest.java
│ │ │ │ ├── [ 65K] LocalExecutorITCase.java
│ │ │ │ └── [4.0K] result
│ │ │ │ └── [6.3K] MaterializedCollectStreamResultTest.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [1.2K] DummyTableSinkFactory.java
│ │ │ ├── [1.2K] DummyTableSourceFactory.java
│ │ │ ├── [1.9K] EnvironmentFileUtil.java
│ │ │ ├── [4.1K] SimpleCatalogFactory.java
│ │ │ ├── [5.7K] TestTableSinkFactoryBase.java
│ │ │ ├── [6.4K] TestTableSourceFactoryBase.java
│ │ │ ├── [3.2K] TestUserClassLoaderJar.java
│ │ │ └── [2.6K] UserDefinedFunctions.java
│ │ └── [4.0K] resources
│ │ ├── [1.3K] log4j2-test.properties
│ │ ├── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [1.3K] org.apache.flink.table.factories.TableFactory
│ │ ├── [ 970] test-data-1.csv
│ │ ├── [1.1K] test-data.csv
│ │ ├── [1.2K] test-factory-services-file
│ │ ├── [4.5K] test-sql-client-catalogs.yaml
│ │ ├── [1.4K] test-sql-client-configuration.yaml
│ │ ├── [4.4K] test-sql-client-defaults.yaml
│ │ ├── [1.3K] test-sql-client-dialect.yaml
│ │ ├── [2.0K] test-sql-client-factory.yaml
│ │ ├── [1.9K] test-sql-client-modules.yaml
│ │ ├── [1.3K] test-sql-client-python-functions.yaml
│ │ └── [2.9K] test-sql-client-streaming.yaml
│ ├── [4.0K] flink-sql-parser
│ │ ├── [9.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] codegen
│ │ │ │ ├── [1.7K] config.fmpp
│ │ │ │ ├── [4.0K] data
│ │ │ │ │ └── [ 13K] Parser.tdd
│ │ │ │ └── [4.0K] includes
│ │ │ │ ├── [1.1K] compoundIdentifier.ftl
│ │ │ │ └── [ 33K] parserImpls.ftl
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ └── [4.0K] parser
│ │ │ │ │ ├── [4.0K] ddl
│ │ │ │ │ │ ├── [4.0K] constraint
│ │ │ │ │ │ │ ├── [1.4K] SqlConstraintEnforcement.java
│ │ │ │ │ │ │ ├── [5.3K] SqlTableConstraint.java
│ │ │ │ │ │ │ └── [1.4K] SqlUniqueSpec.java
│ │ │ │ │ │ ├── [2.9K] SqlAddPartitions.java
│ │ │ │ │ │ ├── [2.8K] SqlAddReplaceColumns.java
│ │ │ │ │ │ ├── [2.9K] SqlAlterDatabase.java
│ │ │ │ │ │ ├── [3.6K] SqlAlterFunction.java
│ │ │ │ │ │ ├── [2.1K] SqlAlterTableAddConstraint.java
│ │ │ │ │ │ ├── [2.1K] SqlAlterTableDropConstraint.java
│ │ │ │ │ │ ├── [3.0K] SqlAlterTable.java
│ │ │ │ │ │ ├── [2.6K] SqlAlterTableProperties.java
│ │ │ │ │ │ ├── [2.0K] SqlAlterTableRename.java
│ │ │ │ │ │ ├── [1.8K] SqlAlterViewAs.java
│ │ │ │ │ │ ├── [1.9K] SqlAlterView.java
│ │ │ │ │ │ ├── [2.2K] SqlAlterViewProperties.java
│ │ │ │ │ │ ├── [1.9K] SqlAlterViewRename.java
│ │ │ │ │ │ ├── [3.1K] SqlChangeColumn.java
│ │ │ │ │ │ ├── [2.9K] SqlCreateCatalog.java
│ │ │ │ │ │ ├── [3.6K] SqlCreateDatabase.java
│ │ │ │ │ │ ├── [3.5K] SqlCreateFunction.java
│ │ │ │ │ │ ├── [10.0K] SqlCreateTable.java
│ │ │ │ │ │ ├── [4.1K] SqlCreateView.java
│ │ │ │ │ │ ├── [2.2K] SqlDropCatalog.java
│ │ │ │ │ │ ├── [2.5K] SqlDropDatabase.java
│ │ │ │ │ │ ├── [2.7K] SqlDropFunction.java
│ │ │ │ │ │ ├── [2.5K] SqlDropPartitions.java
│ │ │ │ │ │ ├── [2.6K] SqlDropTable.java
│ │ │ │ │ │ ├── [2.3K] SqlDropView.java
│ │ │ │ │ │ ├── [3.4K] SqlTableColumn.java
│ │ │ │ │ │ ├── [8.0K] SqlTableLike.java
│ │ │ │ │ │ ├── [2.5K] SqlTableOption.java
│ │ │ │ │ │ ├── [2.0K] SqlUseCatalog.java
│ │ │ │ │ │ ├── [2.1K] SqlUseDatabase.java
│ │ │ │ │ │ └── [2.5K] SqlWatermark.java
│ │ │ │ │ ├── [4.0K] dml
│ │ │ │ │ │ ├── [5.4K] RichSqlInsert.java
│ │ │ │ │ │ └── [1.4K] RichSqlInsertKeyword.java
│ │ │ │ │ ├── [4.0K] dql
│ │ │ │ │ │ ├── [2.0K] SqlDescribeCatalog.java
│ │ │ │ │ │ ├── [2.3K] SqlDescribeDatabase.java
│ │ │ │ │ │ ├── [2.4K] SqlRichDescribeTable.java
│ │ │ │ │ │ ├── [1.7K] SqlShowCatalogs.java
│ │ │ │ │ │ ├── [1.7K] SqlShowDatabases.java
│ │ │ │ │ │ ├── [2.1K] SqlShowFunctions.java
│ │ │ │ │ │ ├── [1.7K] SqlShowTables.java
│ │ │ │ │ │ └── [1.7K] SqlShowViews.java
│ │ │ │ │ ├── [4.0K] error
│ │ │ │ │ │ └── [1.7K] SqlValidateException.java
│ │ │ │ │ ├── [1.2K] ExtendedSqlNode.java
│ │ │ │ │ ├── [1.9K] package-info.java
│ │ │ │ │ ├── [2.1K] SqlPartitionUtils.java
│ │ │ │ │ ├── [2.6K] SqlProperty.java
│ │ │ │ │ ├── [4.0K] type
│ │ │ │ │ │ ├── [4.8K] ExtendedSqlCollectionTypeNameSpec.java
│ │ │ │ │ │ ├── [5.1K] ExtendedSqlRowTypeNameSpec.java
│ │ │ │ │ │ ├── [3.3K] SqlMapTypeNameSpec.java
│ │ │ │ │ │ └── [3.1K] SqlRawTypeNameSpec.java
│ │ │ │ │ ├── [4.0K] utils
│ │ │ │ │ │ └── [1.4K] ParserResource.java
│ │ │ │ │ └── [4.0K] validate
│ │ │ │ │ └── [3.0K] FlinkSqlConformance.java
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] calcite
│ │ │ │ └── [1.4K] ExtendedRelTypeFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] org.apache.flink.sql.parser.utils
│ │ │ └── [1.0K] ParserResource.properties
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] sql
│ │ └── [4.0K] parser
│ │ ├── [7.8K] CreateTableLikeTest.java
│ │ ├── [5.0K] Fixture.java
│ │ ├── [ 21K] FlinkDDLDataTypeTest.java
│ │ ├── [ 33K] FlinkSqlParserImplTest.java
│ │ ├── [1.3K] FlinkSqlUnParserTest.java
│ │ ├── [3.5K] TableApiIdentifierParsingTest.java
│ │ └── [2.0K] TestRelDataTypeFactory.java
│ ├── [4.0K] flink-sql-parser-hive
│ │ ├── [6.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] codegen
│ │ │ │ ├── [1.7K] config.fmpp
│ │ │ │ ├── [4.0K] data
│ │ │ │ │ └── [ 15K] Parser.tdd
│ │ │ │ └── [4.0K] includes
│ │ │ │ ├── [1.1K] compoundIdentifier.ftl
│ │ │ │ └── [ 38K] parserImpls.ftl
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] sql
│ │ │ └── [4.0K] parser
│ │ │ └── [4.0K] hive
│ │ │ ├── [4.0K] ddl
│ │ │ │ ├── [ 15K] HiveDDLUtils.java
│ │ │ │ ├── [3.1K] SqlAddHivePartitions.java
│ │ │ │ ├── [2.0K] SqlAlterHiveDatabase.java
│ │ │ │ ├── [2.1K] SqlAlterHiveDatabaseLocation.java
│ │ │ │ ├── [2.6K] SqlAlterHiveDatabaseOwner.java
│ │ │ │ ├── [2.0K] SqlAlterHiveDatabaseProps.java
│ │ │ │ ├── [2.4K] SqlAlterHivePartitionRename.java
│ │ │ │ ├── [2.9K] SqlAlterHiveTableAddReplaceColumn.java
│ │ │ │ ├── [2.9K] SqlAlterHiveTableChangeColumn.java
│ │ │ │ ├── [2.0K] SqlAlterHiveTableFileFormat.java
│ │ │ │ ├── [2.3K] SqlAlterHiveTable.java
│ │ │ │ ├── [2.1K] SqlAlterHiveTableLocation.java
│ │ │ │ ├── [2.2K] SqlAlterHiveTableProps.java
│ │ │ │ ├── [3.6K] SqlAlterHiveTableSerDe.java
│ │ │ │ ├── [2.0K] SqlAlterHiveViewProperties.java
│ │ │ │ ├── [3.4K] SqlCreateHiveDatabase.java
│ │ │ │ ├── [ 18K] SqlCreateHiveTable.java
│ │ │ │ ├── [3.1K] SqlCreateHiveView.java
│ │ │ │ ├── [1.7K] SqlDescribeHiveTable.java
│ │ │ │ ├── [1.3K] SqlHiveConstraintEnable.java
│ │ │ │ ├── [1.2K] SqlHiveConstraintRely.java
│ │ │ │ ├── [1.9K] SqlHiveConstraintTrait.java
│ │ │ │ └── [1.3K] SqlHiveConstraintValidate.java
│ │ │ ├── [4.0K] dml
│ │ │ │ └── [3.4K] RichSqlHiveInsert.java
│ │ │ ├── [1.6K] package-info.java
│ │ │ └── [4.0K] type
│ │ │ └── [2.3K] ExtendedHiveStructTypeNameSpec.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] sql
│ │ └── [4.0K] parser
│ │ └── [4.0K] hive
│ │ └── [ 14K] FlinkHiveSqlParserImplTest.java
│ ├── [4.0K] flink-table-api-java
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ ├── [2.3K] AggregatedTable.java
│ │ │ │ │ ├── [2.0K] ApiExpression.java
│ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ ├── [ 15K] ExecutionConfigOptions.java
│ │ │ │ │ │ ├── [5.4K] OptimizerConfigOptions.java
│ │ │ │ │ │ └── [2.2K] TableConfigOptions.java
│ │ │ │ │ ├── [8.3K] EnvironmentSettings.java
│ │ │ │ │ ├── [1.3K] ExplainDetail.java
│ │ │ │ │ ├── [ 19K] Expressions.java
│ │ │ │ │ ├── [2.8K] FlatAggregateTable.java
│ │ │ │ │ ├── [4.9K] GroupedTable.java
│ │ │ │ │ ├── [2.6K] GroupWindowedTable.java
│ │ │ │ │ ├── [1.9K] GroupWindow.java
│ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ ├── [ 37K] BaseExpressions.java
│ │ │ │ │ │ ├── [4.9K] CatalogTableSchemaResolver.java
│ │ │ │ │ │ ├── [1.3K] Registration.java
│ │ │ │ │ │ ├── [1.8K] SelectTableSink.java
│ │ │ │ │ │ ├── [3.4K] StatementSetImpl.java
│ │ │ │ │ │ ├── [ 57K] TableEnvironmentImpl.java
│ │ │ │ │ │ ├── [4.2K] TableEnvironmentInternal.java
│ │ │ │ │ │ ├── [ 29K] TableImpl.java
│ │ │ │ │ │ └── [8.0K] TableResultImpl.java
│ │ │ │ │ ├── [3.3K] Over.java
│ │ │ │ │ ├── [2.2K] OverWindowedTable.java
│ │ │ │ │ ├── [2.0K] OverWindow.java
│ │ │ │ │ ├── [2.3K] OverWindowPartitioned.java
│ │ │ │ │ ├── [3.0K] OverWindowPartitionedOrdered.java
│ │ │ │ │ ├── [3.0K] OverWindowPartitionedOrderedPreceding.java
│ │ │ │ │ ├── [1.3K] PlannerConfig.java
│ │ │ │ │ ├── [1.2K] ResultKind.java
│ │ │ │ │ ├── [2.5K] Session.java
│ │ │ │ │ ├── [2.5K] SessionWithGap.java
│ │ │ │ │ ├── [2.2K] SessionWithGapOnTime.java
│ │ │ │ │ ├── [1.4K] SessionWithGapOnTimeWithAlias.java
│ │ │ │ │ ├── [3.2K] Slide.java
│ │ │ │ │ ├── [2.7K] SlideWithSizeAndSlide.java
│ │ │ │ │ ├── [2.4K] SlideWithSizeAndSlideOnTime.java
│ │ │ │ │ ├── [1.6K] SlideWithSizeAndSlideOnTimeWithAlias.java
│ │ │ │ │ ├── [2.8K] SlideWithSize.java
│ │ │ │ │ ├── [1.5K] SqlDialect.java
│ │ │ │ │ ├── [1.2K] SqlParserException.java
│ │ │ │ │ ├── [2.1K] StatementSet.java
│ │ │ │ │ ├── [ 12K] TableConfig.java
│ │ │ │ │ ├── [ 44K] TableEnvironment.java
│ │ │ │ │ ├── [ 42K] Table.java
│ │ │ │ │ ├── [7.0K] TableResult.java
│ │ │ │ │ ├── [2.4K] Tumble.java
│ │ │ │ │ ├── [2.5K] TumbleWithSize.java
│ │ │ │ │ ├── [2.2K] TumbleWithSizeOnTime.java
│ │ │ │ │ ├── [1.4K] TumbleWithSizeOnTimeWithAlias.java
│ │ │ │ │ └── [4.7K] WindowGroupedTable.java
│ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ ├── [2.6K] AbstractCatalogTable.java
│ │ │ │ │ ├── [2.6K] AbstractCatalogView.java
│ │ │ │ │ ├── [2.3K] CatalogDatabaseImpl.java
│ │ │ │ │ ├── [2.8K] CatalogFunctionImpl.java
│ │ │ │ │ ├── [ 27K] CatalogManager.java
│ │ │ │ │ ├── [1.8K] CatalogPartitionImpl.java
│ │ │ │ │ ├── [3.8K] CatalogTableBuilder.java
│ │ │ │ │ ├── [3.8K] CatalogTableImpl.java
│ │ │ │ │ ├── [1.7K] CatalogViewImpl.java
│ │ │ │ │ ├── [6.1K] ConnectorCatalogTable.java
│ │ │ │ │ ├── [5.7K] DataTypeFactoryImpl.java
│ │ │ │ │ ├── [ 25K] FunctionCatalog.java
│ │ │ │ │ ├── [3.2K] FunctionLookup.java
│ │ │ │ │ ├── [2.9K] GenericInMemoryCatalogFactory.java
│ │ │ │ │ ├── [ 25K] GenericInMemoryCatalog.java
│ │ │ │ │ └── [2.0K] QueryOperationCatalogView.java
│ │ │ │ ├── [4.0K] delegation
│ │ │ │ │ ├── [2.2K] ExecutorFactory.java
│ │ │ │ │ ├── [2.4K] Executor.java
│ │ │ │ │ ├── [2.6K] Parser.java
│ │ │ │ │ ├── [2.4K] PlannerExpressionParser.java
│ │ │ │ │ ├── [2.3K] PlannerFactory.java
│ │ │ │ │ ├── [4.4K] Planner.java
│ │ │ │ │ └── [1.6K] PlannerTypeInferenceUtil.java
│ │ │ │ ├── [4.0K] descriptors
│ │ │ │ │ ├── [1.5K] BatchTableDescriptor.java
│ │ │ │ │ ├── [3.7K] ConnectTableDescriptor.java
│ │ │ │ │ ├── [1.5K] GenericInMemoryCatalogDescriptor.java
│ │ │ │ │ ├── [1.2K] GenericInMemoryCatalogValidator.java
│ │ │ │ │ └── [1.5K] StreamTableDescriptor.java
│ │ │ │ ├── [4.0K] expressions
│ │ │ │ │ ├── [ 13K] ApiExpressionUtils.java
│ │ │ │ │ ├── [2.7K] ApiExpressionVisitor.java
│ │ │ │ │ ├── [1.5K] ExpressionParser.java
│ │ │ │ │ ├── [2.5K] LocalReferenceExpression.java
│ │ │ │ │ ├── [2.6K] LookupCallExpression.java
│ │ │ │ │ ├── [1.6K] ResolvedExpressionVisitor.java
│ │ │ │ │ ├── [4.0K] resolver
│ │ │ │ │ │ ├── [ 16K] ExpressionResolver.java
│ │ │ │ │ │ ├── [1.9K] LocalOverWindow.java
│ │ │ │ │ │ ├── [2.9K] LookupCallResolver.java
│ │ │ │ │ │ ├── [4.0K] lookups
│ │ │ │ │ │ │ ├── [3.9K] FieldReferenceLookup.java
│ │ │ │ │ │ │ └── [1.4K] TableReferenceLookup.java
│ │ │ │ │ │ └── [4.0K] rules
│ │ │ │ │ │ ├── [9.0K] ExpandColumnFunctionsRule.java
│ │ │ │ │ │ ├── [1.6K] LookupCallByNameRule.java
│ │ │ │ │ │ ├── [5.1K] OverWindowResolverRule.java
│ │ │ │ │ │ ├── [2.7K] QualifyBuiltInFunctionsRule.java
│ │ │ │ │ │ ├── [3.5K] ReferenceResolverRule.java
│ │ │ │ │ │ ├── [ 14K] ResolveCallByArgumentsRule.java
│ │ │ │ │ │ ├── [3.1K] ResolverRule.java
│ │ │ │ │ │ ├── [2.7K] ResolverRules.java
│ │ │ │ │ │ ├── [1.4K] RuleExpressionVisitor.java
│ │ │ │ │ │ ├── [2.2K] StarReferenceFlatteningRule.java
│ │ │ │ │ │ └── [1.4K] UnwrapApiExpressionRule.java
│ │ │ │ │ ├── [2.7K] TableReferenceExpression.java
│ │ │ │ │ ├── [4.6K] UnresolvedCallExpression.java
│ │ │ │ │ ├── [2.2K] UnresolvedReferenceExpression.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [3.8K] ApiExpressionDefaultVisitor.java
│ │ │ │ │ └── [2.4K] ResolvedExpressionDefaultVisitor.java
│ │ │ │ ├── [4.0K] factories
│ │ │ │ │ ├── [1.8K] ComponentFactory.java
│ │ │ │ │ ├── [2.8K] ComponentFactoryService.java
│ │ │ │ │ └── [4.4K] TableFactoryUtil.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [3.4K] FunctionDefinitionUtil.java
│ │ │ │ │ └── [3.6K] TemporalTableFunctionImpl.java
│ │ │ │ ├── [4.0K] module
│ │ │ │ │ └── [4.3K] ModuleManager.java
│ │ │ │ ├── [4.0K] operations
│ │ │ │ │ ├── [2.6K] AggregateQueryOperation.java
│ │ │ │ │ ├── [3.0K] CalculatedQueryOperation.java
│ │ │ │ │ ├── [2.1K] CatalogQueryOperation.java
│ │ │ │ │ ├── [2.9K] CatalogSinkModifyOperation.java
│ │ │ │ │ ├── [4.0K] ddl
│ │ │ │ │ │ ├── [2.6K] AddPartitionsOperation.java
│ │ │ │ │ │ ├── [2.6K] AlterCatalogFunctionOperation.java
│ │ │ │ │ │ ├── [2.1K] AlterDatabaseOperation.java
│ │ │ │ │ │ ├── [1.3K] AlterOperation.java
│ │ │ │ │ │ ├── [1.4K] AlterPartitionOperation.java
│ │ │ │ │ │ ├── [1.9K] AlterPartitionPropertiesOperation.java
│ │ │ │ │ │ ├── [2.2K] AlterTableAddConstraintOperation.java
│ │ │ │ │ │ ├── [1.5K] AlterTableDropConstraintOperation.java
│ │ │ │ │ │ ├── [1.3K] AlterTableOperation.java
│ │ │ │ │ │ ├── [1.8K] AlterTablePropertiesOperation.java
│ │ │ │ │ │ ├── [1.5K] AlterTableRenameOperation.java
│ │ │ │ │ │ ├── [1.6K] AlterTableSchemaOperation.java
│ │ │ │ │ │ ├── [1.5K] AlterViewAsOperation.java
│ │ │ │ │ │ ├── [1.3K] AlterViewOperation.java
│ │ │ │ │ │ ├── [1.8K] AlterViewPropertiesOperation.java
│ │ │ │ │ │ ├── [1.5K] AlterViewRenameOperation.java
│ │ │ │ │ │ ├── [2.6K] CreateCatalogFunctionOperation.java
│ │ │ │ │ │ ├── [1.9K] CreateCatalogOperation.java
│ │ │ │ │ │ ├── [2.3K] CreateDatabaseOperation.java
│ │ │ │ │ │ ├── [1.4K] CreateOperation.java
│ │ │ │ │ │ ├── [2.4K] CreateTableOperation.java
│ │ │ │ │ │ ├── [2.4K] CreateTempSystemFunctionOperation.java
│ │ │ │ │ │ ├── [2.4K] CreateViewOperation.java
│ │ │ │ │ │ ├── [2.2K] DropCatalogFunctionOperation.java
│ │ │ │ │ │ ├── [1.7K] DropCatalogOperation.java
│ │ │ │ │ │ ├── [1.9K] DropDatabaseOperation.java
│ │ │ │ │ │ ├── [1.2K] DropOperation.java
│ │ │ │ │ │ ├── [2.0K] DropPartitionsOperation.java
│ │ │ │ │ │ ├── [2.1K] DropTableOperation.java
│ │ │ │ │ │ ├── [1.9K] DropTempSystemFunctionOperation.java
│ │ │ │ │ │ └── [2.1K] DropViewOperation.java
│ │ │ │ │ ├── [1.8K] DescribeTableOperation.java
│ │ │ │ │ ├── [1.7K] DistinctQueryOperation.java
│ │ │ │ │ ├── [1.4K] ExplainOperation.java
│ │ │ │ │ ├── [2.1K] FilterQueryOperation.java
│ │ │ │ │ ├── [3.7K] JoinQueryOperation.java
│ │ │ │ │ ├── [1.5K] ModifyOperation.java
│ │ │ │ │ ├── [1.2K] ModifyOperationVisitor.java
│ │ │ │ │ ├── [1.5K] Operation.java
│ │ │ │ │ ├── [4.1K] OperationUtils.java
│ │ │ │ │ ├── [2.5K] OutputConversionModifyOperation.java
│ │ │ │ │ ├── [2.3K] ProjectQueryOperation.java
│ │ │ │ │ ├── [2.0K] QueryOperation.java
│ │ │ │ │ ├── [1.6K] QueryOperationVisitor.java
│ │ │ │ │ ├── [3.0K] SetQueryOperation.java
│ │ │ │ │ ├── [1.0K] ShowCatalogsOperation.java
│ │ │ │ │ ├── [1.0K] ShowDatabasesOperation.java
│ │ │ │ │ ├── [1.0K] ShowFunctionsOperation.java
│ │ │ │ │ ├── [1.1K] ShowOperation.java
│ │ │ │ │ ├── [1.0K] ShowTablesOperation.java
│ │ │ │ │ ├── [1.0K] ShowViewsOperation.java
│ │ │ │ │ ├── [2.6K] SortQueryOperation.java
│ │ │ │ │ ├── [2.3K] TableSourceQueryOperation.java
│ │ │ │ │ ├── [1.7K] UnregisteredSinkModifyOperation.java
│ │ │ │ │ ├── [1.2K] UseCatalogOperation.java
│ │ │ │ │ ├── [1.4K] UseDatabaseOperation.java
│ │ │ │ │ ├── [1.3K] UseOperation.java
│ │ │ │ │ ├── [4.0K] utils
│ │ │ │ │ │ ├── [ 23K] AggregateOperationFactory.java
│ │ │ │ │ │ ├── [4.2K] AliasOperationUtils.java
│ │ │ │ │ │ ├── [5.8K] CalculatedTableFactory.java
│ │ │ │ │ │ ├── [5.5K] ColumnOperationUtils.java
│ │ │ │ │ │ ├── [5.7K] JoinOperationFactory.java
│ │ │ │ │ │ ├── [ 10K] OperationExpressionsUtils.java
│ │ │ │ │ │ ├── [ 33K] OperationTreeBuilder.java
│ │ │ │ │ │ ├── [8.7K] ProjectionOperationFactory.java
│ │ │ │ │ │ ├── [3.4K] QueryOperationDefaultVisitor.java
│ │ │ │ │ │ ├── [3.7K] SetOperationFactory.java
│ │ │ │ │ │ ├── [5.1K] SortOperationFactory.java
│ │ │ │ │ │ └── [ 14K] ValuesOperationFactory.java
│ │ │ │ │ ├── [2.6K] ValuesQueryOperation.java
│ │ │ │ │ └── [7.2K] WindowAggregateQueryOperation.java
│ │ │ │ ├── [4.0K] sources
│ │ │ │ │ └── [4.0K] tsextractors
│ │ │ │ │ ├── [4.4K] ExistingField.java
│ │ │ │ │ └── [2.4K] StreamRecordTimestamp.java
│ │ │ │ └── [4.0K] typeutils
│ │ │ │ └── [ 26K] FieldInfoUtils.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 843] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [3.6K] TableEnvironmentTest.java
│ │ │ │ └── [1.9K] WindowCreationValidationTest.java
│ │ │ ├── [4.0K] catalog
│ │ │ │ ├── [2.2K] CatalogTableImpTest.java
│ │ │ │ ├── [3.8K] CatalogTestBase.java
│ │ │ │ ├── [ 21K] FunctionCatalogTest.java
│ │ │ │ ├── [2.6K] GenericInMemoryCatalogFactoryTest.java
│ │ │ │ └── [7.1K] GenericInMemoryCatalogTest.java
│ │ │ ├── [4.0K] descriptor
│ │ │ │ └── [2.3K] GenericInMemoryCatalogDescriptorTest.java
│ │ │ ├── [4.0K] descriptors
│ │ │ │ └── [2.0K] ConnectTableDescriptorTest.java
│ │ │ ├── [4.0K] expressions
│ │ │ │ ├── [4.1K] ObjectToExpressionTest.java
│ │ │ │ └── [4.0K] resolver
│ │ │ │ └── [ 11K] ExpressionResolverTest.java
│ │ │ ├── [4.0K] factories
│ │ │ │ ├── [2.5K] ComponentFactoryServiceTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [1.1K] OtherTestPlannerFactory.java
│ │ │ │ └── [2.3K] TestPlannerFactory.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [5.1K] FunctionDefinitionUtilTest.java
│ │ │ │ ├── [1.5K] TestGenericUDF.java
│ │ │ │ └── [1.5K] TestSimpleUDF.java
│ │ │ ├── [4.0K] operations
│ │ │ │ ├── [3.8K] QueryOperationTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ └── [ 14K] ValuesOperationTreeBuilderTest.java
│ │ │ ├── [4.0K] typeutils
│ │ │ │ └── [3.8K] FieldInfoUtilsTest.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [1.9K] CatalogManagerMocks.java
│ │ │ ├── [1.5K] ConnectorDescriptorMock.java
│ │ │ ├── [1.6K] ExecutorMock.java
│ │ │ ├── [1.4K] FormatDescriptorMock.java
│ │ │ ├── [5.3K] FunctionLookupMock.java
│ │ │ ├── [1.5K] ParserMock.java
│ │ │ ├── [1.8K] PlannerMock.java
│ │ │ ├── [3.1K] TableEnvironmentMock.java
│ │ │ ├── [4.1K] TableSourceFactoryMock.java
│ │ │ └── [1.5K] TableSourceMock.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ └── [ 955] org.apache.flink.table.factories.TableFactory
│ ├── [4.0K] flink-table-api-java-bridge
│ │ ├── [3.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ └── [4.0K] bridge
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ ├── [ 21K] BatchTableEnvironment.java
│ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ └── [ 14K] StreamTableEnvironmentImpl.java
│ │ │ │ │ └── [ 29K] StreamTableEnvironment.java
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ ├── [4.0K] sink
│ │ │ │ │ │ └── [1.5K] SinkFunctionProvider.java
│ │ │ │ │ └── [4.0K] source
│ │ │ │ │ ├── [4.0K] abilities
│ │ │ │ │ │ ├── [1.4K] PeriodicWatermarkAssignerProvider.java
│ │ │ │ │ │ └── [1.4K] PunctuatedWatermarkAssignerProvider.java
│ │ │ │ │ └── [1.7K] SourceFunctionProvider.java
│ │ │ │ ├── [4.0K] descriptors
│ │ │ │ │ ├── [ 11K] OldCsv.java
│ │ │ │ │ ├── [3.2K] OldCsvValidator.java
│ │ │ │ │ ├── [8.0K] RowtimeValidator.java
│ │ │ │ │ └── [ 13K] SchemaValidator.java
│ │ │ │ ├── [4.0K] factories
│ │ │ │ │ ├── [1.8K] BatchTableSinkFactory.java
│ │ │ │ │ ├── [1.8K] BatchTableSourceFactory.java
│ │ │ │ │ ├── [2.7K] BlackHoleTableSinkFactory.java
│ │ │ │ │ ├── [ 12K] DataGenTableSourceFactory.java
│ │ │ │ │ ├── [5.8K] PrintTableSinkFactory.java
│ │ │ │ │ ├── [2.2K] StreamTableSinkFactory.java
│ │ │ │ │ └── [2.2K] StreamTableSourceFactory.java
│ │ │ │ ├── [4.0K] operations
│ │ │ │ │ ├── [2.5K] DataSetQueryOperation.java
│ │ │ │ │ └── [3.7K] JavaDataStreamQueryOperation.java
│ │ │ │ ├── [4.0K] sinks
│ │ │ │ │ ├── [1.4K] AppendStreamTableSink.java
│ │ │ │ │ ├── [1.5K] BatchTableSink.java
│ │ │ │ │ ├── [1.8K] CsvAppendTableSinkFactory.java
│ │ │ │ │ ├── [1.4K] CsvBatchTableSinkFactory.java
│ │ │ │ │ ├── [6.2K] CsvTableSinkFactoryBase.java
│ │ │ │ │ ├── [6.5K] CsvTableSink.java
│ │ │ │ │ ├── [1.7K] OutputFormatTableSink.java
│ │ │ │ │ ├── [2.1K] RetractStreamTableSink.java
│ │ │ │ │ ├── [1.4K] StreamTableSink.java
│ │ │ │ │ └── [3.3K] UpsertStreamTableSink.java
│ │ │ │ └── [4.0K] sources
│ │ │ │ ├── [1.5K] BatchTableSource.java
│ │ │ │ ├── [1.8K] CsvAppendTableSourceFactory.java
│ │ │ │ ├── [1.4K] CsvBatchTableSourceFactory.java
│ │ │ │ ├── [7.6K] CsvTableSourceFactoryBase.java
│ │ │ │ ├── [ 19K] CsvTableSource.java
│ │ │ │ ├── [2.0K] InputFormatTableSource.java
│ │ │ │ ├── [1.6K] StreamTableSource.java
│ │ │ │ └── [4.0K] wmstrategies
│ │ │ │ ├── [2.1K] AscendingTimestamps.java
│ │ │ │ ├── [2.5K] BoundedOutOfOrderTimestamps.java
│ │ │ │ ├── [1.4K] PeriodicWatermarkAssigner.java
│ │ │ │ └── [1.5K] PunctuatedWatermarkAssigner.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 955] org.apache.flink.table.factories.Factory
│ │ │ └── [1007] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ ├── [4.0K] api
│ │ │ └── [4.0K] bridge
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] internal
│ │ │ └── [4.3K] StreamTableEnvironmentImplTest.java
│ │ ├── [4.0K] factories
│ │ │ ├── [2.0K] BlackHoleSinkFactoryTest.java
│ │ │ ├── [5.0K] CsvTableSinkFactoryTest.java
│ │ │ ├── [8.2K] DataGenTableSourceFactoryTest.java
│ │ │ └── [2.2K] PrintSinkFactoryTest.java
│ │ └── [4.0K] sources
│ │ └── [1.4K] CsvTableSourceTest.java
│ ├── [4.0K] flink-table-api-scala
│ │ ├── [4.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] api
│ │ │ ├── [ 24K] ImplicitExpressionConversions.scala
│ │ │ ├── [5.1K] ImplicitExpressionOperations.scala
│ │ │ └── [1.5K] package.scala
│ │ └── [4.0K] test
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ ├── [4.0K] api
│ │ │ ├── [9.6K] ExpressionsConsistencyCheckTest.scala
│ │ │ └── [2.5K] ImplicitConversionsTest.scala
│ │ ├── [4.0K] expressions
│ │ │ └── [1.9K] ObjectToExpressionScalaTest.scala
│ │ └── [4.0K] types
│ │ └── [4.0K] extraction
│ │ ├── [4.3K] DataTypeExtractorScalaTest.scala
│ │ └── [6.7K] TypeInferenceExtractorScalaTest.scala
│ ├── [4.0K] flink-table-api-scala-bridge
│ │ ├── [3.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ └── [4.0K] operations
│ │ │ │ └── [3.6K] ScalaDataStreamQueryOperation.java
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] bridge
│ │ │ └── [4.0K] scala
│ │ │ ├── [ 16K] BatchTableEnvironment.scala
│ │ │ ├── [2.3K] DataSetConversions.scala
│ │ │ ├── [2.4K] DataStreamConversions.scala
│ │ │ ├── [4.0K] internal
│ │ │ │ └── [ 12K] StreamTableEnvironmentImpl.scala
│ │ │ ├── [3.5K] package.scala
│ │ │ ├── [ 21K] StreamTableEnvironment.scala
│ │ │ └── [4.0K] TableConversions.scala
│ │ └── [4.0K] test
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ └── [4.0K] api
│ │ └── [4.0K] bridge
│ │ └── [4.0K] scala
│ │ └── [4.0K] internal
│ │ └── [3.8K] StreamTableEnvironmentImplTest.scala
│ ├── [4.0K] flink-table-common
│ │ ├── [2.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] annotation
│ │ │ │ │ ├── [ 13K] DataTypeHint.java
│ │ │ │ │ ├── [1.4K] ExtractionVersion.java
│ │ │ │ │ ├── [6.0K] FunctionHint.java
│ │ │ │ │ ├── [1.3K] FunctionHints.java
│ │ │ │ │ ├── [1.0K] HintFlag.java
│ │ │ │ │ ├── [1.7K] InputGroup.java
│ │ │ │ │ └── [1.2K] UnknownSerializer.java
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ ├── [2.8K] AmbiguousTableFactoryException.java
│ │ │ │ │ ├── [1.2K] CatalogNotExistException.java
│ │ │ │ │ ├── [4.0K] constraints
│ │ │ │ │ │ ├── [1.8K] AbstractConstraint.java
│ │ │ │ │ │ ├── [2.2K] Constraint.java
│ │ │ │ │ │ └── [2.9K] UniqueConstraint.java
│ │ │ │ │ ├── [ 43K] DataTypes.java
│ │ │ │ │ ├── [4.0K] dataview
│ │ │ │ │ │ ├── [1.4K] DataView.java
│ │ │ │ │ │ ├── [4.6K] ListView.java
│ │ │ │ │ │ └── [6.6K] MapView.java
│ │ │ │ │ ├── [1.0K] ExpressionParserException.java
│ │ │ │ │ ├── [3.1K] NoMatchingTableFactoryException.java
│ │ │ │ │ ├── [3.8K] TableColumn.java
│ │ │ │ │ ├── [1.3K] TableException.java
│ │ │ │ │ ├── [1.3K] TableNotExistException.java
│ │ │ │ │ ├── [ 24K] TableSchema.java
│ │ │ │ │ ├── [9.6K] Types.java
│ │ │ │ │ ├── [1.0K] UnresolvedException.java
│ │ │ │ │ ├── [1.2K] ValidationException.java
│ │ │ │ │ └── [3.2K] WatermarkSpec.java
│ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ ├── [1.6K] AbstractCatalog.java
│ │ │ │ │ ├── [2.3K] CatalogBaseTable.java
│ │ │ │ │ ├── [1.6K] CatalogDatabase.java
│ │ │ │ │ ├── [1.8K] CatalogFunction.java
│ │ │ │ │ ├── [ 27K] Catalog.java
│ │ │ │ │ ├── [1.7K] CatalogPartition.java
│ │ │ │ │ ├── [2.1K] CatalogPartitionSpec.java
│ │ │ │ │ ├── [1.8K] CatalogTable.java
│ │ │ │ │ ├── [1.8K] CatalogView.java
│ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ └── [1.4K] CatalogConfig.java
│ │ │ │ │ ├── [3.5K] DataTypeFactory.java
│ │ │ │ │ ├── [4.0K] exceptions
│ │ │ │ │ │ ├── [1.3K] CatalogException.java
│ │ │ │ │ │ ├── [1.3K] DatabaseAlreadyExistException.java
│ │ │ │ │ │ ├── [1.3K] DatabaseNotEmptyException.java
│ │ │ │ │ │ ├── [1.3K] DatabaseNotExistException.java
│ │ │ │ │ │ ├── [1.4K] FunctionAlreadyExistException.java
│ │ │ │ │ │ ├── [1.4K] FunctionNotExistException.java
│ │ │ │ │ │ ├── [1.6K] PartitionAlreadyExistsException.java
│ │ │ │ │ │ ├── [1.7K] PartitionNotExistException.java
│ │ │ │ │ │ ├── [2.0K] PartitionSpecInvalidException.java
│ │ │ │ │ │ ├── [1.4K] TableAlreadyExistException.java
│ │ │ │ │ │ ├── [1.4K] TableNotExistException.java
│ │ │ │ │ │ ├── [1.4K] TableNotPartitionedException.java
│ │ │ │ │ │ └── [1.4K] TablePartitionedException.java
│ │ │ │ │ ├── [1.0K] FunctionLanguage.java
│ │ │ │ │ ├── [3.7K] ObjectIdentifier.java
│ │ │ │ │ ├── [2.6K] ObjectPath.java
│ │ │ │ │ ├── [4.0K] stats
│ │ │ │ │ │ ├── [1.6K] CatalogColumnStatisticsDataBase.java
│ │ │ │ │ │ ├── [1.8K] CatalogColumnStatisticsDataBinary.java
│ │ │ │ │ │ ├── [1.8K] CatalogColumnStatisticsDataBoolean.java
│ │ │ │ │ │ ├── [1.8K] CatalogColumnStatisticsDataDate.java
│ │ │ │ │ │ ├── [1.9K] CatalogColumnStatisticsDataDouble.java
│ │ │ │ │ │ ├── [1.8K] CatalogColumnStatisticsDataLong.java
│ │ │ │ │ │ ├── [2.0K] CatalogColumnStatisticsDataString.java
│ │ │ │ │ │ ├── [2.4K] CatalogColumnStatistics.java
│ │ │ │ │ │ ├── [2.5K] CatalogTableStatistics.java
│ │ │ │ │ │ └── [1.1K] Date.java
│ │ │ │ │ └── [4.3K] UnresolvedIdentifier.java
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ ├── [2.9K] ChangelogMode.java
│ │ │ │ │ ├── [4.0K] format
│ │ │ │ │ │ ├── [1.4K] DecodingFormat.java
│ │ │ │ │ │ ├── [1.4K] EncodingFormat.java
│ │ │ │ │ │ └── [2.1K] Format.java
│ │ │ │ │ ├── [2.1K] RuntimeConverter.java
│ │ │ │ │ ├── [4.0K] sink
│ │ │ │ │ │ ├── [4.0K] abilities
│ │ │ │ │ │ │ ├── [1.4K] SupportsOverwrite.java
│ │ │ │ │ │ │ └── [5.5K] SupportsPartitioning.java
│ │ │ │ │ │ ├── [7.5K] DynamicTableSink.java
│ │ │ │ │ │ └── [1.5K] OutputFormatProvider.java
│ │ │ │ │ └── [4.0K] source
│ │ │ │ │ ├── [4.0K] abilities
│ │ │ │ │ │ ├── [4.5K] SupportsComputedColumnPushDown.java
│ │ │ │ │ │ ├── [4.2K] SupportsFilterPushDown.java
│ │ │ │ │ │ ├── [1.7K] SupportsLimitPushDown.java
│ │ │ │ │ │ ├── [3.4K] SupportsPartitionPushDown.java
│ │ │ │ │ │ ├── [3.2K] SupportsProjectionPushDown.java
│ │ │ │ │ │ └── [3.5K] SupportsWatermarkPushDown.java
│ │ │ │ │ ├── [1.6K] AsyncTableFunctionProvider.java
│ │ │ │ │ ├── [5.4K] DynamicTableSource.java
│ │ │ │ │ ├── [1.6K] InputFormatProvider.java
│ │ │ │ │ ├── [4.2K] LookupTableSource.java
│ │ │ │ │ ├── [5.1K] ScanTableSource.java
│ │ │ │ │ └── [1.6K] TableFunctionProvider.java
│ │ │ │ ├── [4.0K] data
│ │ │ │ │ ├── [9.5K] ArrayData.java
│ │ │ │ │ ├── [4.0K] binary
│ │ │ │ │ │ ├── [ 18K] BinaryArrayData.java
│ │ │ │ │ │ ├── [2.4K] BinaryFormat.java
│ │ │ │ │ │ ├── [4.0K] BinaryMapData.java
│ │ │ │ │ │ ├── [4.6K] BinaryRawValueData.java
│ │ │ │ │ │ ├── [ 13K] BinaryRowData.java
│ │ │ │ │ │ ├── [2.2K] BinarySection.java
│ │ │ │ │ │ ├── [ 35K] BinarySegmentUtils.java
│ │ │ │ │ │ ├── [ 26K] BinaryStringData.java
│ │ │ │ │ │ ├── [4.3K] LazyBinaryFormat.java
│ │ │ │ │ │ ├── [5.3K] MurmurHashUtils.java
│ │ │ │ │ │ ├── [ 10K] NestedRowData.java
│ │ │ │ │ │ ├── [8.8K] StringUtf8Utils.java
│ │ │ │ │ │ └── [2.2K] TypedSetters.java
│ │ │ │ │ ├── [7.5K] DecimalData.java
│ │ │ │ │ ├── [8.5K] GenericArrayData.java
│ │ │ │ │ ├── [3.4K] GenericMapData.java
│ │ │ │ │ ├── [7.4K] GenericRowData.java
│ │ │ │ │ ├── [1.9K] MapData.java
│ │ │ │ │ ├── [2.5K] RawValueData.java
│ │ │ │ │ ├── [ 14K] RowData.java
│ │ │ │ │ ├── [2.3K] StringData.java
│ │ │ │ │ └── [6.9K] TimestampData.java
│ │ │ │ ├── [4.0K] dataview
│ │ │ │ │ ├── [5.7K] ListViewSerializer.java
│ │ │ │ │ ├── [2.3K] ListViewSerializerSnapshot.java
│ │ │ │ │ ├── [1.7K] ListViewTypeInfoFactory.java
│ │ │ │ │ ├── [3.4K] ListViewTypeInfo.java
│ │ │ │ │ ├── [5.8K] MapViewSerializer.java
│ │ │ │ │ ├── [2.4K] MapViewSerializerSnapshot.java
│ │ │ │ │ ├── [2.0K] MapViewTypeInfoFactory.java
│ │ │ │ │ ├── [4.0K] MapViewTypeInfo.java
│ │ │ │ │ ├── [5.0K] NullAwareMapSerializer.java
│ │ │ │ │ ├── [2.5K] NullAwareMapSerializerSnapshot.java
│ │ │ │ │ └── [2.7K] NullSerializer.java
│ │ │ │ ├── [4.0K] descriptors
│ │ │ │ │ ├── [3.0K] CatalogDescriptor.java
│ │ │ │ │ ├── [1.8K] CatalogDescriptorValidator.java
│ │ │ │ │ ├── [7.0K] ClassInstance.java
│ │ │ │ │ ├── [2.3K] ClassInstanceValidator.java
│ │ │ │ │ ├── [2.4K] ConnectorDescriptor.java
│ │ │ │ │ ├── [1.9K] ConnectorDescriptorValidator.java
│ │ │ │ │ ├── [1.3K] CoreModuleDescriptor.java
│ │ │ │ │ ├── [1.2K] CoreModuleDescriptorValidator.java
│ │ │ │ │ ├── [2.1K] CustomConnectorDescriptor.java
│ │ │ │ │ ├── [1.1K] DescriptorBase.java
│ │ │ │ │ ├── [1.5K] Descriptor.java
│ │ │ │ │ ├── [ 48K] DescriptorProperties.java
│ │ │ │ │ ├── [1.2K] DescriptorValidator.java
│ │ │ │ │ ├── [1.7K] FileSystem.java
│ │ │ │ │ ├── [1.4K] FileSystemValidator.java
│ │ │ │ │ ├── [1.9K] FormatDescriptor.java
│ │ │ │ │ ├── [2.0K] FormatDescriptorValidator.java
│ │ │ │ │ ├── [1.9K] FunctionDescriptor.java
│ │ │ │ │ ├── [1.8K] FunctionDescriptorValidator.java
│ │ │ │ │ ├── [1.3K] HierarchyDescriptor.java
│ │ │ │ │ ├── [1.5K] HierarchyDescriptorValidator.java
│ │ │ │ │ ├── [4.7K] LiteralValue.java
│ │ │ │ │ ├── [5.4K] LiteralValueValidator.java
│ │ │ │ │ ├── [1.9K] ModuleDescriptor.java
│ │ │ │ │ ├── [1.3K] ModuleDescriptorValidator.java
│ │ │ │ │ ├── [1.2K] PythonFunctionValidator.java
│ │ │ │ │ ├── [5.8K] Rowtime.java
│ │ │ │ │ ├── [7.5K] Schema.java
│ │ │ │ │ ├── [2.1K] StreamTableDescriptorValidator.java
│ │ │ │ │ └── [5.6K] TableDescriptor.java
│ │ │ │ ├── [4.0K] expressions
│ │ │ │ │ ├── [4.5K] CallExpression.java
│ │ │ │ │ ├── [1.6K] ExpressionDefaultVisitor.java
│ │ │ │ │ ├── [1.8K] Expression.java
│ │ │ │ │ ├── [1.7K] ExpressionUtils.java
│ │ │ │ │ ├── [1.8K] ExpressionVisitor.java
│ │ │ │ │ ├── [3.3K] FieldReferenceExpression.java
│ │ │ │ │ ├── [2.1K] ResolvedExpression.java
│ │ │ │ │ ├── [2.0K] ResolvedFieldReference.java
│ │ │ │ │ ├── [1.0K] TableSymbol.java
│ │ │ │ │ ├── [1.2K] TimeIntervalUnit.java
│ │ │ │ │ ├── [1.1K] TimePointUnit.java
│ │ │ │ │ ├── [2.4K] TypeLiteralExpression.java
│ │ │ │ │ └── [9.8K] ValueLiteralExpression.java
│ │ │ │ ├── [4.0K] factories
│ │ │ │ │ ├── [1.4K] CatalogFactory.java
│ │ │ │ │ ├── [2.2K] DecodingFormatFactory.java
│ │ │ │ │ ├── [1.4K] DeserializationFormatFactory.java
│ │ │ │ │ ├── [1.6K] DeserializationSchemaFactory.java
│ │ │ │ │ ├── [2.6K] DynamicTableFactory.java
│ │ │ │ │ ├── [1.6K] DynamicTableSinkFactory.java
│ │ │ │ │ ├── [1.6K] DynamicTableSourceFactory.java
│ │ │ │ │ ├── [2.1K] EncodingFormatFactory.java
│ │ │ │ │ ├── [3.5K] Factory.java
│ │ │ │ │ ├── [ 21K] FactoryUtil.java
│ │ │ │ │ ├── [5.5K] FileSystemFormatFactory.java
│ │ │ │ │ ├── [1.4K] FunctionDefinitionFactory.java
│ │ │ │ │ ├── [1.4K] ModuleFactory.java
│ │ │ │ │ ├── [1.4K] SerializationFormatFactory.java
│ │ │ │ │ ├── [1.6K] SerializationSchemaFactory.java
│ │ │ │ │ ├── [3.2K] TableFactory.java
│ │ │ │ │ ├── [ 16K] TableFactoryService.java
│ │ │ │ │ ├── [7.8K] TableFormatFactoryBase.java
│ │ │ │ │ ├── [2.6K] TableFormatFactory.java
│ │ │ │ │ ├── [2.0K] TableSinkFactoryContextImpl.java
│ │ │ │ │ ├── [3.7K] TableSinkFactory.java
│ │ │ │ │ ├── [1.8K] TableSourceFactoryContextImpl.java
│ │ │ │ │ └── [3.4K] TableSourceFactory.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [3.2K] AggregateFunctionDefinition.java
│ │ │ │ │ ├── [6.1K] AggregateFunction.java
│ │ │ │ │ ├── [4.9K] AsyncTableFunction.java
│ │ │ │ │ ├── [4.1K] BuiltInFunctionDefinition.java
│ │ │ │ │ ├── [ 30K] BuiltInFunctionDefinitions.java
│ │ │ │ │ ├── [3.1K] FunctionContext.java
│ │ │ │ │ ├── [2.8K] FunctionDefinition.java
│ │ │ │ │ ├── [4.2K] FunctionIdentifier.java
│ │ │ │ │ ├── [1.1K] FunctionKind.java
│ │ │ │ │ ├── [1.1K] FunctionRequirement.java
│ │ │ │ │ ├── [7.8K] FunctionService.java
│ │ │ │ │ ├── [4.0K] python
│ │ │ │ │ │ ├── [1.6K] PythonEnv.java
│ │ │ │ │ │ ├── [1.9K] PythonFunctionInfo.java
│ │ │ │ │ │ ├── [1.5K] PythonFunction.java
│ │ │ │ │ │ ├── [1013] PythonFunctionKind.java
│ │ │ │ │ │ ├── [3.5K] PythonScalarFunction.java
│ │ │ │ │ │ ├── [3.5K] PythonTableFunction.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ └── [1.9K] PythonFunctionUtils.java
│ │ │ │ │ ├── [2.6K] ScalarFunctionDefinition.java
│ │ │ │ │ ├── [6.0K] ScalarFunction.java
│ │ │ │ │ ├── [3.3K] TableAggregateFunctionDefinition.java
│ │ │ │ │ ├── [5.6K] TableAggregateFunction.java
│ │ │ │ │ ├── [2.9K] TableFunctionDefinition.java
│ │ │ │ │ ├── [8.3K] TableFunction.java
│ │ │ │ │ ├── [1.2K] TemporalTableFunction.java
│ │ │ │ │ ├── [2.1K] UserDefinedAggregateFunction.java
│ │ │ │ │ ├── [ 13K] UserDefinedFunctionHelper.java
│ │ │ │ │ └── [4.0K] UserDefinedFunction.java
│ │ │ │ ├── [4.0K] module
│ │ │ │ │ ├── [1.6K] CoreModuleFactory.java
│ │ │ │ │ ├── [1.7K] CoreModule.java
│ │ │ │ │ └── [1.8K] Module.java
│ │ │ │ ├── [4.0K] plan
│ │ │ │ │ └── [4.0K] stats
│ │ │ │ │ ├── [8.5K] ColumnStats.java
│ │ │ │ │ └── [3.3K] TableStats.java
│ │ │ │ ├── [4.0K] sinks
│ │ │ │ │ ├── [1.3K] OverwritableTableSink.java
│ │ │ │ │ ├── [4.6K] PartitionableTableSink.java
│ │ │ │ │ ├── [2.6K] TableSinkBase.java
│ │ │ │ │ └── [3.8K] TableSink.java
│ │ │ │ ├── [4.0K] sources
│ │ │ │ │ ├── [2.6K] DefinedFieldMapping.java
│ │ │ │ │ ├── [1.5K] DefinedProctimeAttribute.java
│ │ │ │ │ ├── [1.6K] DefinedRowtimeAttributes.java
│ │ │ │ │ ├── [2.3K] FieldComputer.java
│ │ │ │ │ ├── [2.9K] FilterableTableSource.java
│ │ │ │ │ ├── [1.7K] LimitableTableSource.java
│ │ │ │ │ ├── [2.1K] LookupableTableSource.java
│ │ │ │ │ ├── [3.4K] NestedFieldsProjectableTableSource.java
│ │ │ │ │ ├── [2.2K] PartitionableTableSource.java
│ │ │ │ │ ├── [2.4K] ProjectableTableSource.java
│ │ │ │ │ ├── [2.4K] RowtimeAttributeDescriptor.java
│ │ │ │ │ ├── [3.6K] TableSource.java
│ │ │ │ │ ├── [7.5K] TableSourceValidation.java
│ │ │ │ │ ├── [4.0K] tsextractors
│ │ │ │ │ │ ├── [2.1K] TimestampExtractor.java
│ │ │ │ │ │ └── [3.7K] TimestampExtractorUtils.java
│ │ │ │ │ └── [4.0K] wmstrategies
│ │ │ │ │ ├── [1.7K] PreserveWatermarks.java
│ │ │ │ │ └── [2.0K] WatermarkStrategy.java
│ │ │ │ ├── [4.0K] types
│ │ │ │ │ ├── [2.7K] AbstractDataType.java
│ │ │ │ │ ├── [2.2K] AtomicDataType.java
│ │ │ │ │ ├── [4.1K] CollectionDataType.java
│ │ │ │ │ ├── [5.0K] DataType.java
│ │ │ │ │ ├── [1.2K] DataTypeVisitor.java
│ │ │ │ │ ├── [4.0K] extraction
│ │ │ │ │ │ ├── [ 20K] DataTypeExtractor.java
│ │ │ │ │ │ ├── [ 11K] DataTypeTemplate.java
│ │ │ │ │ │ ├── [ 31K] ExtractionUtils.java
│ │ │ │ │ │ ├── [2.9K] FunctionArgumentTemplate.java
│ │ │ │ │ │ ├── [ 20K] FunctionMappingExtractor.java
│ │ │ │ │ │ ├── [1.9K] FunctionResultTemplate.java
│ │ │ │ │ │ ├── [3.9K] FunctionSignatureTemplate.java
│ │ │ │ │ │ ├── [5.6K] FunctionTemplate.java
│ │ │ │ │ │ ├── [5.2K] TemplateUtils.java
│ │ │ │ │ │ └── [ 10K] TypeInferenceExtractor.java
│ │ │ │ │ ├── [2.8K] FieldsDataType.java
│ │ │ │ │ ├── [4.0K] inference
│ │ │ │ │ │ ├── [1.8K] ArgumentCount.java
│ │ │ │ │ │ ├── [2.7K] ArgumentTypeStrategy.java
│ │ │ │ │ │ ├── [3.6K] CallContext.java
│ │ │ │ │ │ ├── [2.7K] ConstantArgumentCount.java
│ │ │ │ │ │ ├── [ 11K] InputTypeStrategies.java
│ │ │ │ │ │ ├── [3.2K] InputTypeStrategy.java
│ │ │ │ │ │ ├── [2.8K] Signature.java
│ │ │ │ │ │ ├── [4.0K] strategies
│ │ │ │ │ │ │ ├── [4.3K] AndArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [1.9K] AnyArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [2.7K] ArrayInputTypeStrategy.java
│ │ │ │ │ │ │ ├── [3.3K] ExplicitArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [1.9K] ExplicitTypeStrategy.java
│ │ │ │ │ │ │ ├── [5.3K] FamilyArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [2.6K] LiteralArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [3.8K] MapInputTypeStrategy.java
│ │ │ │ │ │ │ ├── [3.1K] MappingTypeStrategy.java
│ │ │ │ │ │ │ ├── [1.5K] MissingTypeStrategy.java
│ │ │ │ │ │ │ ├── [4.5K] OrArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [6.3K] OrInputTypeStrategy.java
│ │ │ │ │ │ │ ├── [2.3K] OutputArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [3.7K] RootArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [4.2K] SequenceInputTypeStrategy.java
│ │ │ │ │ │ │ ├── [7.0K] StrategyUtils.java
│ │ │ │ │ │ │ ├── [1.7K] UseArgumentTypeStrategy.java
│ │ │ │ │ │ │ ├── [5.4K] VaryingSequenceInputTypeStrategy.java
│ │ │ │ │ │ │ └── [2.5K] WildcardInputTypeStrategy.java
│ │ │ │ │ │ ├── [4.0K] transforms
│ │ │ │ │ │ │ ├── [2.0K] DataTypeConversionClassTransformation.java
│ │ │ │ │ │ │ ├── [2.1K] LegacyDecimalTypeTransformation.java
│ │ │ │ │ │ │ └── [2.0K] LegacyRawTypeTransformation.java
│ │ │ │ │ │ ├── [6.6K] TypeInference.java
│ │ │ │ │ │ ├── [ 17K] TypeInferenceUtil.java
│ │ │ │ │ │ ├── [4.0K] TypeStrategies.java
│ │ │ │ │ │ ├── [1.4K] TypeStrategy.java
│ │ │ │ │ │ ├── [1.1K] TypeTransformation.java
│ │ │ │ │ │ ├── [3.3K] TypeTransformations.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ ├── [3.5K] AdaptedCallContext.java
│ │ │ │ │ │ └── [2.7K] UnknownCallContext.java
│ │ │ │ │ ├── [3.3K] KeyValueDataType.java
│ │ │ │ │ ├── [4.0K] logical
│ │ │ │ │ │ ├── [3.7K] ArrayType.java
│ │ │ │ │ │ ├── [2.5K] BigIntType.java
│ │ │ │ │ │ ├── [4.5K] BinaryType.java
│ │ │ │ │ │ ├── [2.5K] BooleanType.java
│ │ │ │ │ │ ├── [4.7K] CharType.java
│ │ │ │ │ │ ├── [2.8K] DateType.java
│ │ │ │ │ │ ├── [9.4K] DayTimeIntervalType.java
│ │ │ │ │ │ ├── [4.4K] DecimalType.java
│ │ │ │ │ │ ├── [4.8K] DistinctType.java
│ │ │ │ │ │ ├── [2.6K] DoubleType.java
│ │ │ │ │ │ ├── [2.6K] FloatType.java
│ │ │ │ │ │ ├── [2.5K] IntType.java
│ │ │ │ │ │ ├── [3.7K] LegacyTypeInformationType.java
│ │ │ │ │ │ ├── [6.0K] LocalZonedTimestampType.java
│ │ │ │ │ │ ├── [1.5K] LogicalTypeFamily.java
│ │ │ │ │ │ ├── [7.2K] LogicalType.java
│ │ │ │ │ │ ├── [5.0K] LogicalTypeRoot.java
│ │ │ │ │ │ ├── [2.3K] LogicalTypeVisitor.java
│ │ │ │ │ │ ├── [4.0K] MapType.java
│ │ │ │ │ │ ├── [3.8K] MultisetType.java
│ │ │ │ │ │ ├── [2.8K] NullType.java
│ │ │ │ │ │ ├── [6.0K] RawType.java
│ │ │ │ │ │ ├── [8.2K] RowType.java
│ │ │ │ │ │ ├── [2.5K] SmallIntType.java
│ │ │ │ │ │ ├── [ 13K] StructuredType.java
│ │ │ │ │ │ ├── [3.1K] SymbolType.java
│ │ │ │ │ │ ├── [1.1K] TimestampKind.java
│ │ │ │ │ │ ├── [5.1K] TimestampType.java
│ │ │ │ │ │ ├── [4.5K] TimeType.java
│ │ │ │ │ │ ├── [2.5K] TinyIntType.java
│ │ │ │ │ │ ├── [4.8K] TypeInformationRawType.java
│ │ │ │ │ │ ├── [3.7K] UnresolvedUserDefinedType.java
│ │ │ │ │ │ ├── [3.3K] UserDefinedType.java
│ │ │ │ │ │ ├── [4.0K] utils
│ │ │ │ │ │ │ ├── [ 19K] LogicalTypeCasts.java
│ │ │ │ │ │ │ ├── [ 15K] LogicalTypeChecks.java
│ │ │ │ │ │ │ ├── [5.6K] LogicalTypeDefaultVisitor.java
│ │ │ │ │ │ │ ├── [5.3K] LogicalTypeDuplicator.java
│ │ │ │ │ │ │ ├── [ 25K] LogicalTypeGeneralization.java
│ │ │ │ │ │ │ ├── [ 27K] LogicalTypeParser.java
│ │ │ │ │ │ │ └── [4.1K] LogicalTypeUtils.java
│ │ │ │ │ │ ├── [5.0K] VarBinaryType.java
│ │ │ │ │ │ ├── [5.1K] VarCharType.java
│ │ │ │ │ │ ├── [6.0K] YearMonthIntervalType.java
│ │ │ │ │ │ └── [5.3K] ZonedTimestampType.java
│ │ │ │ │ ├── [3.5K] UnresolvedDataType.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [4.8K] ClassDataTypeConverter.java
│ │ │ │ │ ├── [1.9K] DataTypeDefaultVisitor.java
│ │ │ │ │ ├── [9.6K] DataTypeUtils.java
│ │ │ │ │ ├── [ 16K] LegacyTypeInfoDataTypeConverter.java
│ │ │ │ │ ├── [7.6K] LogicalTypeDataTypeConverter.java
│ │ │ │ │ ├── [2.9K] TypeConversions.java
│ │ │ │ │ └── [8.0K] ValueDataTypeConverter.java
│ │ │ │ ├── [4.0K] typeutils
│ │ │ │ │ ├── [3.3K] InternalTypeInfo.java
│ │ │ │ │ ├── [3.2K] TimeIndicatorTypeInfo.java
│ │ │ │ │ └── [4.5K] TimeIntervalTypeInfo.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [1.2K] TableConnectorUtil.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [ 11K] EncodingUtils.java
│ │ │ │ ├── [9.9K] PartitionPathUtils.java
│ │ │ │ ├── [ 12K] PrintUtils.java
│ │ │ │ ├── [1.4K] TableConnectorUtils.java
│ │ │ │ ├── [6.6K] TableSchemaUtils.java
│ │ │ │ ├── [2.1K] ThreadLocalCache.java
│ │ │ │ ├── [ 13K] TypeMappingUtils.java
│ │ │ │ └── [ 16K] TypeStringUtils.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 830] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [4.0K] constraints
│ │ │ │ │ └── [1.6K] UniqueConstraintTest.java
│ │ │ │ └── [ 10K] TableSchemaTest.java
│ │ │ ├── [4.0K] catalog
│ │ │ │ ├── [ 46K] CatalogTest.java
│ │ │ │ └── [9.0K] CatalogTestUtil.java
│ │ │ ├── [4.0K] dataview
│ │ │ │ └── [3.1K] NullAwareMapSerializerTest.java
│ │ │ ├── [4.0K] descriptors
│ │ │ │ ├── [3.4K] CatalogDescriptorTest.java
│ │ │ │ ├── [9.7K] DescriptorPropertiesTest.java
│ │ │ │ ├── [2.9K] DescriptorTestBase.java
│ │ │ │ └── [4.0K] module
│ │ │ │ └── [2.0K] CoreModuleDescriptorTest.java
│ │ │ ├── [4.0K] expressions
│ │ │ │ └── [9.1K] ExpressionTest.java
│ │ │ ├── [4.0K] factories
│ │ │ │ ├── [9.4K] FactoryUtilTest.java
│ │ │ │ ├── [4.0K] module
│ │ │ │ │ └── [1.8K] CoreModuleFactoryTest.java
│ │ │ │ ├── [3.2K] TableFormatFactoryBaseTest.java
│ │ │ │ ├── [5.4K] TableSinkFactoryServiceTest.java
│ │ │ │ ├── [7.6K] TestDynamicTableFactory.java
│ │ │ │ ├── [5.4K] TestFormatFactory.java
│ │ │ │ └── [2.6K] TestTableSinkFactory.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [5.0K] FunctionServiceTest.java
│ │ │ │ └── [7.6K] UserDefinedFunctionHelperTest.java
│ │ │ ├── [4.0K] module
│ │ │ │ └── [1.1K] CoreModuleTest.java
│ │ │ ├── [4.0K] plan
│ │ │ │ └── [4.0K] stats
│ │ │ │ └── [4.0K] TableStatsTest.java
│ │ │ ├── [4.0K] sources
│ │ │ │ └── [3.2K] TableSourceTestBase.java
│ │ │ ├── [4.0K] types
│ │ │ │ ├── [3.5K] ClassDataTypeConverterTest.java
│ │ │ │ ├── [ 17K] DataTypesTest.java
│ │ │ │ ├── [4.2K] DataTypeTest.java
│ │ │ │ ├── [4.0K] extraction
│ │ │ │ │ ├── [ 31K] DataTypeExtractorTest.java
│ │ │ │ │ ├── [ 28K] TypeInferenceExtractorTest.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ └── [3.0K] DataTypeHintMock.java
│ │ │ │ ├── [4.0K] inference
│ │ │ │ │ ├── [ 27K] InputTypeStrategiesTest.java
│ │ │ │ │ ├── [7.7K] TypeStrategiesTest.java
│ │ │ │ │ ├── [5.4K] TypeTransformationsTest.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [2.3K] CallContextMock.java
│ │ │ │ │ └── [1.4K] FunctionDefinitionMock.java
│ │ │ │ ├── [4.6K] LegacyTypeInfoDataTypeConverterTest.java
│ │ │ │ ├── [4.0K] logical
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ └── [4.8K] LogicalTypeChecksTest.java
│ │ │ │ ├── [9.5K] LogicalTypeCastAvoidanceTest.java
│ │ │ │ ├── [5.5K] LogicalTypeCastsTest.java
│ │ │ │ ├── [5.3K] LogicalTypeDuplicatorTest.java
│ │ │ │ ├── [9.4K] LogicalTypeGeneralizationTest.java
│ │ │ │ ├── [ 15K] LogicalTypeParserTest.java
│ │ │ │ ├── [ 25K] LogicalTypesTest.java
│ │ │ │ ├── [2.1K] TypeTestingUtils.java
│ │ │ │ ├── [4.0K] utils
│ │ │ │ │ ├── [2.6K] DataTypeFactoryMock.java
│ │ │ │ │ └── [5.5K] DataTypeUtilsTest.java
│ │ │ │ └── [4.6K] ValueDataTypeConverterTest.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [2.7K] EncodingUtilsTest.java
│ │ │ ├── [ 11K] PrintUtilsTest.java
│ │ │ ├── [4.2K] TableSchemaUtilsTest.java
│ │ │ ├── [ 14K] TypeMappingUtilsTest.java
│ │ │ └── [6.5K] TypeStringUtilsTest.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ ├── [ 890] org.apache.flink.table.factories.Factory
│ │ └── [ 836] org.apache.flink.table.factories.TableFactory
│ ├── [4.0K] flink-table-planner
│ │ ├── [ 14K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ ├── [4.0K] jdbc
│ │ │ │ │ │ └── [1.3K] CalciteSchemaBuilder.java
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ └── [4.0K] validate
│ │ │ │ │ │ └── [2.9K] ProcedureNamespace.java
│ │ │ │ │ └── [4.0K] sql2rel
│ │ │ │ │ └── [2.7K] AuxiliaryConverter.java
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ └── [4.0K] bridge
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [2.6K] package-info.java
│ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ ├── [3.4K] CalciteParser.java
│ │ │ │ │ └── [2.7K] FlinkCalciteSqlValidator.java
│ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ ├── [3.4K] CatalogCalciteSchema.java
│ │ │ │ │ ├── [3.1K] CatalogManagerCalciteSchema.java
│ │ │ │ │ ├── [1.9K] CatalogReader.java
│ │ │ │ │ ├── [7.6K] DatabaseCalciteSchema.java
│ │ │ │ │ ├── [6.1K] FunctionCatalogOperatorTable.java
│ │ │ │ │ └── [4.0K] QueryOperationCatalogViewTable.java
│ │ │ │ ├── [4.0K] executor
│ │ │ │ │ ├── [3.0K] StreamExecutorFactory.java
│ │ │ │ │ └── [3.1K] StreamExecutor.java
│ │ │ │ ├── [4.0K] explain
│ │ │ │ │ ├── [3.0K] Node.java
│ │ │ │ │ └── [5.3K] PlanJsonParser.java
│ │ │ │ ├── [4.0K] expressions
│ │ │ │ │ └── [5.2K] PlannerTypeInferenceUtilImpl.java
│ │ │ │ ├── [4.0K] plan
│ │ │ │ │ ├── [ 20K] QueryOperationConverter.java
│ │ │ │ │ └── [4.0K] rules
│ │ │ │ │ ├── [4.5K] AbstractPythonCorrelateRuleBase.java
│ │ │ │ │ ├── [4.0K] batch
│ │ │ │ │ │ └── [2.5K] DataSetPythonCorrelateRule.java
│ │ │ │ │ ├── [4.0K] logical
│ │ │ │ │ │ ├── [4.2K] CalcPythonCorrelateTransposeRule.java
│ │ │ │ │ │ ├── [8.8K] ExtendedAggregateExtractProjectRule.java
│ │ │ │ │ │ ├── [ 13K] FlinkFilterJoinRule.java
│ │ │ │ │ │ └── [9.3K] PythonCorrelateSplitRule.java
│ │ │ │ │ └── [4.0K] stream
│ │ │ │ │ └── [2.7K] DataStreamPythonCorrelateRule.java
│ │ │ │ ├── [4.0K] planner
│ │ │ │ │ ├── [3.3K] ParserImpl.java
│ │ │ │ │ ├── [ 10K] PlanningConfigurationBuilder.java
│ │ │ │ │ └── [2.3K] StreamPlannerFactory.java
│ │ │ │ ├── [4.0K] runtime
│ │ │ │ │ └── [4.0K] types
│ │ │ │ │ └── [2.0K] CRowSerializerSnapshot.java
│ │ │ │ ├── [4.0K] sinks
│ │ │ │ │ ├── [3.8K] BatchSelectTableSink.java
│ │ │ │ │ ├── [2.1K] SelectTableSinkSchemaConverter.java
│ │ │ │ │ └── [3.4K] StreamSelectTableSink.java
│ │ │ │ ├── [4.0K] sqlexec
│ │ │ │ │ ├── [1.2K] SqlConversionException.java
│ │ │ │ │ └── [ 29K] SqlToOperationConverter.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [ 11K] DummyStreamExecutionEnvironment.java
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [4.0K] licenses
│ │ │ │ │ ├── [ 21K] LICENSE.icu4j
│ │ │ │ │ └── [1.6K] LICENSE.janino
│ │ │ │ ├── [1.0K] NOTICE
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 888] org.apache.flink.table.factories.TableFactory
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [4.0K] bridge
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] internal
│ │ │ │ │ │ └── [4.8K] BatchTableEnvironmentImpl.scala
│ │ │ │ │ └── [4.0K] scala
│ │ │ │ │ └── [4.0K] internal
│ │ │ │ │ └── [3.7K] BatchTableEnvironmentImpl.scala
│ │ │ │ ├── [4.0K] dataview
│ │ │ │ │ └── [1.9K] DataViewSpec.scala
│ │ │ │ ├── [1.6K] exceptions.scala
│ │ │ │ └── [4.0K] internal
│ │ │ │ ├── [ 26K] BatchTableEnvImpl.scala
│ │ │ │ └── [ 51K] TableEnvImpl.scala
│ │ │ ├── [4.0K] calcite
│ │ │ │ ├── [ 11K] CalciteConfig.scala
│ │ │ │ ├── [7.7K] FlinkPlannerImpl.scala
│ │ │ │ ├── [1.9K] FlinkRelBuilderFactory.scala
│ │ │ │ ├── [5.1K] FlinkRelBuilder.scala
│ │ │ │ ├── [1.5K] FlinkRelOptClusterFactory.scala
│ │ │ │ ├── [ 18K] FlinkTypeFactory.scala
│ │ │ │ ├── [1.8K] FlinkTypeSystem.scala
│ │ │ │ ├── [8.1K] PreValidateReWriter.scala
│ │ │ │ └── [ 22K] RelTimeIndicatorConverter.scala
│ │ │ ├── [4.0K] catalog
│ │ │ │ └── [ 13K] BasicOperatorTable.scala
│ │ │ ├── [4.0K] codegen
│ │ │ │ ├── [ 39K] AggregationCodeGenerator.scala
│ │ │ │ ├── [4.0K] calls
│ │ │ │ │ ├── [8.3K] BuiltInMethods.scala
│ │ │ │ │ ├── [3.4K] CallGenerator.scala
│ │ │ │ │ ├── [1.3K] ConstantCallGen.scala
│ │ │ │ │ ├── [2.1K] CurrentTimePointCallGen.scala
│ │ │ │ │ ├── [1.8K] DateFormatCallGen.scala
│ │ │ │ │ ├── [3.9K] ExtractCallGen.scala
│ │ │ │ │ ├── [2.7K] FloorCeilCallGen.scala
│ │ │ │ │ ├── [ 21K] FunctionGenerator.scala
│ │ │ │ │ ├── [3.1K] HashCalcCallGen.scala
│ │ │ │ │ ├── [1.6K] MethodCallGen.scala
│ │ │ │ │ ├── [1.6K] MultiTypeMethodCallGen.scala
│ │ │ │ │ ├── [1.4K] NotCallGenerator.scala
│ │ │ │ │ ├── [2.0K] RandCallGen.scala
│ │ │ │ │ ├── [4.8K] ScalarFunctionCallGen.scala
│ │ │ │ │ ├── [ 50K] ScalarOperators.scala
│ │ │ │ │ ├── [4.2K] TableFunctionCallGen.scala
│ │ │ │ │ ├── [4.8K] TimestampDiffCallGen.scala
│ │ │ │ │ └── [2.0K] TrimCallGen.scala
│ │ │ │ ├── [ 68K] CodeGenerator.scala
│ │ │ │ ├── [ 985] CodeGenException.scala
│ │ │ │ ├── [ 12K] CodeGenUtils.scala
│ │ │ │ ├── [4.4K] CollectorCodeGenerator.scala
│ │ │ │ ├── [1.5K] Compiler.scala
│ │ │ │ ├── [8.4K] ExpressionReducer.scala
│ │ │ │ ├── [8.6K] FunctionCodeGenerator.scala
│ │ │ │ ├── [3.5K] generated.scala
│ │ │ │ ├── [1.8K] Indenter.scala
│ │ │ │ ├── [3.1K] InputFormatCodeGenerator.scala
│ │ │ │ ├── [ 32K] MatchCodeGenerator.scala
│ │ │ │ └── [1.1K] package.scala
│ │ │ ├── [4.0K] dataview
│ │ │ │ ├── [1.5K] StateListView.scala
│ │ │ │ └── [1.8K] StateMapView.scala
│ │ │ ├── [4.0K] expressions
│ │ │ │ ├── [ 14K] aggregations.scala
│ │ │ │ ├── [6.8K] arithmetic.scala
│ │ │ │ ├── [ 11K] call.scala
│ │ │ │ ├── [2.2K] cast.scala
│ │ │ │ ├── [8.7K] collection.scala
│ │ │ │ ├── [8.7K] comparison.scala
│ │ │ │ ├── [3.8K] composite.scala
│ │ │ │ ├── [1.1K] ExpressionBridge.scala
│ │ │ │ ├── [8.9K] fieldExpression.scala
│ │ │ │ ├── [4.6K] hashExpressions.scala
│ │ │ │ ├── [2.5K] InputTypeSpec.scala
│ │ │ │ ├── [5.9K] literals.scala
│ │ │ │ ├── [3.8K] logic.scala
│ │ │ │ ├── [ 19K] mathExpressions.scala
│ │ │ │ ├── [1.9K] ordering.scala
│ │ │ │ ├── [1.8K] overOffsets.scala
│ │ │ │ ├── [1.4K] package.scala
│ │ │ │ ├── [ 26K] PlannerExpressionConverter.scala
│ │ │ │ ├── [ 27K] PlannerExpressionParserImpl.scala
│ │ │ │ ├── [3.6K] PlannerExpression.scala
│ │ │ │ ├── [2.6K] PlannerExpressionUtils.scala
│ │ │ │ ├── [ 20K] stringExpressions.scala
│ │ │ │ ├── [4.1K] subquery.scala
│ │ │ │ ├── [4.2K] symbols.scala
│ │ │ │ ├── [ 15K] time.scala
│ │ │ │ └── [2.3K] windowProperties.scala
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [4.0K] aggfunctions
│ │ │ │ │ ├── [9.8K] AvgAggFunction.scala
│ │ │ │ │ ├── [3.9K] CollectAggFunction.scala
│ │ │ │ │ ├── [2.6K] CountAggFunction.scala
│ │ │ │ │ ├── [3.5K] DistinctAccumulator.scala
│ │ │ │ │ ├── [5.3K] MaxAggFunction.scala
│ │ │ │ │ ├── [7.8K] MaxAggFunctionWithRetract.scala
│ │ │ │ │ ├── [5.3K] MinAggFunction.scala
│ │ │ │ │ ├── [7.8K] MinAggFunctionWithRetract.scala
│ │ │ │ │ ├── [1.3K] Ordering.scala
│ │ │ │ │ ├── [2.6K] Sum0AggFunction.scala
│ │ │ │ │ ├── [2.9K] Sum0WithRetractAggFunction.scala
│ │ │ │ │ ├── [5.0K] SumAggFunction.scala
│ │ │ │ │ └── [5.8K] SumWithRetractAggFunction.scala
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ ├── [1.6K] ProctimeSqlFunction.scala
│ │ │ │ │ ├── [7.7K] ScalarSqlFunctions.scala
│ │ │ │ │ └── [1.3K] StreamRecordTimestampSqlFunction.scala
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [8.0K] AggSqlFunction.scala
│ │ │ │ ├── [3.6K] ScalarSqlFunction.scala
│ │ │ │ ├── [2.4K] TableSqlFunction.scala
│ │ │ │ └── [ 24K] UserDefinedFunctionUtils.scala
│ │ │ ├── [4.0K] operations
│ │ │ │ └── [2.8K] PlannerQueryOperation.java
│ │ │ ├── [4.0K] plan
│ │ │ │ ├── [3.0K] BatchOptimizer.scala
│ │ │ │ ├── [4.0K] cost
│ │ │ │ │ ├── [1.5K] DataSetCostFactory.scala
│ │ │ │ │ ├── [4.8K] DataSetCost.scala
│ │ │ │ │ ├── [1.2K] FlinkDefaultRelMetadataProvider.scala
│ │ │ │ │ └── [1.5K] FlinkRelMdRowCount.scala
│ │ │ │ ├── [4.0K] logical
│ │ │ │ │ ├── [2.0K] groupWindows.scala
│ │ │ │ │ ├── [1.5K] MatchRecognize.scala
│ │ │ │ │ └── [4.0K] rel
│ │ │ │ │ ├── [2.0K] LogicalTableAggregate.scala
│ │ │ │ │ ├── [6.0K] LogicalTemporalTableJoin.scala
│ │ │ │ │ ├── [3.7K] LogicalWindowAggregate.scala
│ │ │ │ │ ├── [4.3K] LogicalWindowTableAggregate.scala
│ │ │ │ │ └── [2.6K] TableAggregate.scala
│ │ │ │ ├── [4.0K] nodes
│ │ │ │ │ ├── [2.6K] CommonAggregate.scala
│ │ │ │ │ ├── [6.0K] CommonCalc.scala
│ │ │ │ │ ├── [6.5K] CommonCorrelate.scala
│ │ │ │ │ ├── [3.5K] CommonJoin.scala
│ │ │ │ │ ├── [5.5K] CommonMatchRecognize.scala
│ │ │ │ │ ├── [9.9K] CommonPythonBase.scala
│ │ │ │ │ ├── [3.9K] CommonPythonCalc.scala
│ │ │ │ │ ├── [3.7K] CommonPythonCorrelate.scala
│ │ │ │ │ ├── [ 924] CommonScan.scala
│ │ │ │ │ ├── [3.2K] CommonSort.scala
│ │ │ │ │ ├── [3.8K] CommonTableAggregate.scala
│ │ │ │ │ ├── [4.0K] dataset
│ │ │ │ │ │ ├── [3.3K] BatchScan.scala
│ │ │ │ │ │ ├── [5.9K] BatchTableSourceScan.scala
│ │ │ │ │ │ ├── [5.4K] DataSetAggregate.scala
│ │ │ │ │ │ ├── [2.4K] DataSetCalcBase.scala
│ │ │ │ │ │ ├── [3.1K] DataSetCalc.scala
│ │ │ │ │ │ ├── [2.9K] DataSetCorrelateBase.scala
│ │ │ │ │ │ ├── [3.8K] DataSetCorrelate.scala
│ │ │ │ │ │ ├── [3.1K] DataSetDistinct.scala
│ │ │ │ │ │ ├── [3.2K] DataSetIntersect.scala
│ │ │ │ │ │ ├── [ 19K] DataSetJoin.scala
│ │ │ │ │ │ ├── [3.5K] DataSetMinus.scala
│ │ │ │ │ │ ├── [4.9K] DataSetPythonCalc.scala
│ │ │ │ │ │ ├── [3.6K] DataSetPythonCorrelate.scala
│ │ │ │ │ │ ├── [1.3K] DataSetRel.scala
│ │ │ │ │ │ ├── [3.1K] DataSetScan.scala
│ │ │ │ │ │ ├── [6.7K] DataSetSingleRowJoin.scala
│ │ │ │ │ │ ├── [2.2K] DataSetSink.scala
│ │ │ │ │ │ ├── [4.5K] DataSetSort.scala
│ │ │ │ │ │ ├── [3.1K] DataSetUnion.scala
│ │ │ │ │ │ ├── [3.2K] DataSetValues.scala
│ │ │ │ │ │ └── [ 18K] DataSetWindowAggregate.scala
│ │ │ │ │ ├── [4.0K] datastream
│ │ │ │ │ │ ├── [2.5K] DataStreamCalcBase.scala
│ │ │ │ │ │ ├── [3.5K] DataStreamCalc.scala
│ │ │ │ │ │ ├── [2.6K] DataStreamCorrelateBase.scala
│ │ │ │ │ │ ├── [3.9K] DataStreamCorrelate.scala
│ │ │ │ │ │ ├── [6.0K] DataStreamGroupAggregateBase.scala
│ │ │ │ │ │ ├── [2.5K] DataStreamGroupAggregate.scala
│ │ │ │ │ │ ├── [2.6K] DataStreamGroupTableAggregate.scala
│ │ │ │ │ │ ├── [ 14K] DataStreamGroupWindowAggregateBase.scala
│ │ │ │ │ │ ├── [2.2K] DataStreamGroupWindowAggregate.scala
│ │ │ │ │ │ ├── [2.2K] DataStreamGroupWindowTableAggregate.scala
│ │ │ │ │ │ ├── [4.8K] DataStreamJoin.scala
│ │ │ │ │ │ ├── [5.5K] DataStreamJoinToCoProcessTranslator.scala
│ │ │ │ │ │ ├── [ 14K] DataStreamMatch.scala
│ │ │ │ │ │ ├── [ 12K] DataStreamOverAggregate.scala
│ │ │ │ │ │ ├── [3.5K] DataStreamPythonCalc.scala
│ │ │ │ │ │ ├── [4.0K] DataStreamPythonCorrelate.scala
│ │ │ │ │ │ ├── [2.0K] DataStreamRel.scala
│ │ │ │ │ │ ├── [3.4K] DataStreamScan.scala
│ │ │ │ │ │ ├── [8.1K] DataStreamSink.scala
│ │ │ │ │ │ ├── [6.7K] DataStreamSort.scala
│ │ │ │ │ │ ├── [9.1K] DataStreamTemporalJoinToCoProcessTranslator.scala
│ │ │ │ │ │ ├── [2.5K] DataStreamTemporalTableJoin.scala
│ │ │ │ │ │ ├── [2.5K] DataStreamUnion.scala
│ │ │ │ │ │ ├── [2.8K] DataStreamValues.scala
│ │ │ │ │ │ ├── [ 11K] DataStreamWindowJoin.scala
│ │ │ │ │ │ ├── [2.5K] retractionTraitDefs.scala
│ │ │ │ │ │ ├── [3.7K] retractionTraits.scala
│ │ │ │ │ │ ├── [4.3K] StreamScan.scala
│ │ │ │ │ │ └── [8.1K] StreamTableSourceScan.scala
│ │ │ │ │ ├── [1.3K] FlinkConventions.scala
│ │ │ │ │ ├── [3.9K] FlinkRelNode.scala
│ │ │ │ │ ├── [4.0K] logical
│ │ │ │ │ │ ├── [3.5K] FlinkLogicalAggregate.scala
│ │ │ │ │ │ ├── [2.6K] FlinkLogicalCalc.scala
│ │ │ │ │ │ ├── [2.7K] FlinkLogicalCorrelate.scala
│ │ │ │ │ │ ├── [2.3K] FlinkLogicalDataSetScan.scala
│ │ │ │ │ │ ├── [2.3K] FlinkLogicalDataStreamScan.scala
│ │ │ │ │ │ ├── [2.7K] FlinkLogicalIntersect.scala
│ │ │ │ │ │ ├── [1.9K] FlinkLogicalJoinBase.scala
│ │ │ │ │ │ ├── [3.7K] FlinkLogicalJoin.scala
│ │ │ │ │ │ ├── [3.4K] FlinkLogicalMatch.scala
│ │ │ │ │ │ ├── [2.6K] FlinkLogicalMinus.scala
│ │ │ │ │ │ ├── [2.4K] FlinkLogicalOverWindow.scala
│ │ │ │ │ │ ├── [ 960] FlinkLogicalRel.scala
│ │ │ │ │ │ ├── [2.5K] FlinkLogicalSink.scala
│ │ │ │ │ │ ├── [3.1K] FlinkLogicalSort.scala
│ │ │ │ │ │ ├── [2.6K] FlinkLogicalTableAggregate.scala
│ │ │ │ │ │ ├── [4.0K] FlinkLogicalTableFunctionScan.scala
│ │ │ │ │ │ ├── [4.5K] FlinkLogicalTableSourceScan.scala
│ │ │ │ │ │ ├── [3.1K] FlinkLogicalTemporalTableJoin.scala
│ │ │ │ │ │ ├── [3.0K] FlinkLogicalUnion.scala
│ │ │ │ │ │ ├── [3.0K] FlinkLogicalValues.scala
│ │ │ │ │ │ ├── [4.8K] FlinkLogicalWindowAggregate.scala
│ │ │ │ │ │ └── [4.3K] FlinkLogicalWindowTableAggregate.scala
│ │ │ │ │ ├── [1.8K] LogicalSink.scala
│ │ │ │ │ ├── [3.7K] OverAggregate.scala
│ │ │ │ │ ├── [2.1K] PhysicalTableSourceScan.scala
│ │ │ │ │ └── [2.1K] Sink.scala
│ │ │ │ ├── [9.8K] Optimizer.scala
│ │ │ │ ├── [4.0K] rules
│ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ ├── [6.1K] ConvertToNotInOrInRule.scala
│ │ │ │ │ │ ├── [ 13K] LogicalWindowAggregateRule.scala
│ │ │ │ │ │ ├── [3.1K] WindowAggregateReduceFunctionsRule.scala
│ │ │ │ │ │ └── [9.9K] WindowPropertiesRule.scala
│ │ │ │ │ ├── [4.0K] dataSet
│ │ │ │ │ │ ├── [2.3K] BatchTableSourceScanRule.scala
│ │ │ │ │ │ ├── [2.5K] DataSetAggregateRule.scala
│ │ │ │ │ │ ├── [2.2K] DataSetCalcRule.scala
│ │ │ │ │ │ ├── [3.7K] DataSetCorrelateRule.scala
│ │ │ │ │ │ ├── [2.3K] DataSetDistinctRule.scala
│ │ │ │ │ │ ├── [2.0K] DataSetIntersectRule.scala
│ │ │ │ │ │ ├── [2.5K] DataSetJoinRule.scala
│ │ │ │ │ │ ├── [4.0K] DataSetLogicalWindowAggregateRule.scala
│ │ │ │ │ │ ├── [1.9K] DataSetMinusRule.scala
│ │ │ │ │ │ ├── [2.2K] DataSetPythonCalcRule.scala
│ │ │ │ │ │ ├── [1.7K] DataSetScanRule.scala
│ │ │ │ │ │ ├── [3.2K] DataSetSingleRowJoinRule.scala
│ │ │ │ │ │ ├── [1.8K] DataSetSinkRule.scala
│ │ │ │ │ │ ├── [1.8K] DataSetSortRule.scala
│ │ │ │ │ │ ├── [2.2K] DataSetUnionRule.scala
│ │ │ │ │ │ ├── [1.7K] DataSetValuesRule.scala
│ │ │ │ │ │ └── [2.8K] DataSetWindowAggregateRule.scala
│ │ │ │ │ ├── [4.0K] datastream
│ │ │ │ │ │ ├── [2.3K] DataStreamCalcRule.scala
│ │ │ │ │ │ ├── [3.8K] DataStreamCorrelateRule.scala
│ │ │ │ │ │ ├── [2.7K] DataStreamGroupAggregateRule.scala
│ │ │ │ │ │ ├── [2.7K] DataStreamGroupWindowAggregateRule.scala
│ │ │ │ │ │ ├── [2.8K] DataStreamGroupWindowTableAggregateRule.scala
│ │ │ │ │ │ ├── [3.6K] DataStreamJoinRule.scala
│ │ │ │ │ │ ├── [4.7K] DataStreamLogicalWindowAggregateRule.scala
│ │ │ │ │ │ ├── [5.3K] DataStreamMatchRule.scala
│ │ │ │ │ │ ├── [2.2K] DataStreamOverAggregateRule.scala
│ │ │ │ │ │ ├── [2.4K] DataStreamPythonCalcRule.scala
│ │ │ │ │ │ ├── [8.0K] DataStreamRetractionRules.scala
│ │ │ │ │ │ ├── [1.8K] DataStreamScanRule.scala
│ │ │ │ │ │ ├── [1.8K] DataStreamSinkRule.scala
│ │ │ │ │ │ ├── [3.3K] DataStreamSortRule.scala
│ │ │ │ │ │ ├── [2.3K] DataStreamTableAggregateRule.scala
│ │ │ │ │ │ ├── [2.6K] DataStreamTemporalTableJoinRule.scala
│ │ │ │ │ │ ├── [2.0K] DataStreamUnionRule.scala
│ │ │ │ │ │ ├── [1.8K] DataStreamValuesRule.scala
│ │ │ │ │ │ ├── [3.9K] DataStreamWindowJoinRule.scala
│ │ │ │ │ │ └── [2.4K] StreamTableSourceScanRule.scala
│ │ │ │ │ ├── [9.7K] FlinkRuleSets.scala
│ │ │ │ │ └── [4.0K] logical
│ │ │ │ │ ├── [5.1K] DecomposeGroupingSetRule.scala
│ │ │ │ │ ├── [1.9K] EnumerableToLogicalTableScan.scala
│ │ │ │ │ ├── [8.9K] LogicalCorrelateToTemporalTableJoinRule.scala
│ │ │ │ │ ├── [6.4K] LogicalUnnestRule.scala
│ │ │ │ │ ├── [5.9K] PushFilterIntoTableSourceScanRule.scala
│ │ │ │ │ ├── [7.5K] PushProjectIntoTableSourceScanRule.scala
│ │ │ │ │ ├── [ 16K] PythonCalcSplitRule.scala
│ │ │ │ │ ├── [5.7K] SplitPythonConditionFromCorrelateRule.scala
│ │ │ │ │ └── [3.3K] SplitPythonConditionFromJoinRule.scala
│ │ │ │ ├── [4.0K] schema
│ │ │ │ │ ├── [1.8K] ArrayRelDataType.scala
│ │ │ │ │ ├── [2.8K] CompositeRelDataType.scala
│ │ │ │ │ ├── [3.3K] FlinkTableFunctionImpl.scala
│ │ │ │ │ ├── [1.9K] GenericRelDataType.scala
│ │ │ │ │ ├── [1.7K] MapRelDataType.scala
│ │ │ │ │ ├── [1.6K] MultisetRelDataType.scala
│ │ │ │ │ ├── [2.4K] RowSchema.scala
│ │ │ │ │ ├── [1.7K] TableSinkTable.scala
│ │ │ │ │ ├── [4.4K] TableSourceTable.scala
│ │ │ │ │ └── [1.8K] TimeIndicatorRelDataType.scala
│ │ │ │ ├── [4.0K] stats
│ │ │ │ │ └── [2.9K] FlinkStatistic.scala
│ │ │ │ ├── [4.8K] StreamOptimizer.scala
│ │ │ │ ├── [3.8K] TreeNode.scala
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [2.7K] CorrelateUtil.scala
│ │ │ │ ├── [4.9K] ExplodeFunctionUtil.scala
│ │ │ │ ├── [4.4K] PythonUtil.scala
│ │ │ │ ├── [2.1K] RexDefaultVisitor.scala
│ │ │ │ ├── [ 13K] RexProgramExtractor.scala
│ │ │ │ ├── [3.0K] RexProgramRewriter.scala
│ │ │ │ └── [9.6K] UpdatingPlanChecker.scala
│ │ │ ├── [4.0K] planner
│ │ │ │ ├── [5.5K] Conversions.scala
│ │ │ │ ├── [8.3K] DataStreamConversions.scala
│ │ │ │ └── [ 14K] StreamPlanner.scala
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [4.0K] aggregate
│ │ │ │ │ ├── [2.9K] AggregateAggFunction.scala
│ │ │ │ │ ├── [ 68K] AggregateUtil.scala
│ │ │ │ │ ├── [2.1K] CleanupState.scala
│ │ │ │ │ ├── [2.4K] CoProcessFunctionWithCleanupState.scala
│ │ │ │ │ ├── [3.3K] DataSetAggFunction.scala
│ │ │ │ │ ├── [2.7K] DataSetFinalAggFunction.scala
│ │ │ │ │ ├── [2.8K] DataSetPreAggFunction.scala
│ │ │ │ │ ├── [6.5K] DataSetSessionWindowAggReduceGroupFunction.scala
│ │ │ │ │ ├── [5.7K] DataSetSessionWindowAggregatePreProcessor.scala
│ │ │ │ │ ├── [2.4K] DataSetSlideTimeWindowAggFlatMapFunction.scala
│ │ │ │ │ ├── [5.1K] DataSetSlideTimeWindowAggReduceGroupFunction.scala
│ │ │ │ │ ├── [3.7K] DataSetSlideWindowAggReduceCombineFunction.scala
│ │ │ │ │ ├── [4.1K] DataSetSlideWindowAggReduceGroupFunction.scala
│ │ │ │ │ ├── [3.0K] DataSetTumbleCountWindowAggReduceGroupFunction.scala
│ │ │ │ │ ├── [4.0K] DataSetTumbleTimeWindowAggReduceCombineFunction.scala
│ │ │ │ │ ├── [3.9K] DataSetTumbleTimeWindowAggReduceGroupFunction.scala
│ │ │ │ │ ├── [3.9K] DataSetWindowAggMapFunction.scala
│ │ │ │ │ ├── [1.0K] DistinctReduce.scala
│ │ │ │ │ ├── [4.8K] GeneratedAggregations.scala
│ │ │ │ │ ├── [6.1K] GroupAggProcessFunction.scala
│ │ │ │ │ ├── [5.8K] GroupTableAggProcessFunction.scala
│ │ │ │ │ ├── [2.5K] IncrementalAggregateAllTimeWindowFunction.scala
│ │ │ │ │ ├── [2.8K] IncrementalAggregateAllWindowFunction.scala
│ │ │ │ │ ├── [2.7K] IncrementalAggregateTimeWindowFunction.scala
│ │ │ │ │ ├── [3.1K] IncrementalAggregateWindowFunction.scala
│ │ │ │ │ ├── [2.4K] KeyedProcessFunctionWithCleanupState.scala
│ │ │ │ │ ├── [2.4K] ProcessFunctionWithCleanupState.scala
│ │ │ │ │ ├── [7.9K] ProcTimeBoundedRangeOver.scala
│ │ │ │ │ ├── [7.3K] ProcTimeBoundedRowsOver.scala
│ │ │ │ │ ├── [3.3K] ProcTimeSortProcessFunction.scala
│ │ │ │ │ ├── [3.7K] ProcTimeUnboundedOver.scala
│ │ │ │ │ ├── [8.7K] RowTimeBoundedRangeOver.scala
│ │ │ │ │ ├── [9.5K] RowTimeBoundedRowsOver.scala
│ │ │ │ │ ├── [4.7K] RowTimeSortProcessFunction.scala
│ │ │ │ │ ├── [ 11K] RowTimeUnboundedOver.scala
│ │ │ │ │ ├── [7.5K] SortUtil.scala
│ │ │ │ │ └── [2.9K] TimeWindowPropertyCollector.scala
│ │ │ │ ├── [4.0K] conversion
│ │ │ │ │ ├── [1.4K] CRowToJavaTupleMapFunction.scala
│ │ │ │ │ ├── [2.3K] CRowToJavaTupleMapRunner.scala
│ │ │ │ │ ├── [1.1K] CRowToRowMapFunction.scala
│ │ │ │ │ ├── [1.2K] CRowToScalaTupleMapFunction.scala
│ │ │ │ │ └── [2.1K] CRowToScalaTupleMapRunner.scala
│ │ │ │ ├── [3.1K] CorrelateFlatMapRunner.scala
│ │ │ │ ├── [1.5K] CountPartitionFunction.scala
│ │ │ │ ├── [3.5K] CRowCorrelateProcessRunner.scala
│ │ │ │ ├── [1.6K] CRowKeySelector.scala
│ │ │ │ ├── [2.2K] CRowMapRunner.scala
│ │ │ │ ├── [2.8K] CRowOutputProcessRunner.scala
│ │ │ │ ├── [2.7K] CRowProcessRunner.scala
│ │ │ │ ├── [1.3K] CRowWrappingCollector.scala
│ │ │ │ ├── [2.3K] FlatJoinRunner.scala
│ │ │ │ ├── [2.2K] FlatMapRunner.scala
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [5.2K] DateTimeFunctions.scala
│ │ │ │ │ └── [9.5K] ScalarFunctions.scala
│ │ │ │ ├── [1.5K] IntersectCoGroupFunction.scala
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ ├── [2.1K] CRowValuesInputFormat.scala
│ │ │ │ │ └── [2.0K] ValuesInputFormat.scala
│ │ │ │ ├── [4.0K] join
│ │ │ │ │ ├── [5.6K] BaseTwoInputStreamOperatorWithStateRetention.scala
│ │ │ │ │ ├── [1.3K] CountingCollector.scala
│ │ │ │ │ ├── [2.1K] CRowWrappingMultiOutputCollector.scala
│ │ │ │ │ ├── [1.6K] EmitAwareCollector.scala
│ │ │ │ │ ├── [3.3K] NonWindowFullJoin.scala
│ │ │ │ │ ├── [4.5K] NonWindowFullJoinWithNonEquiPredicates.scala
│ │ │ │ │ ├── [3.5K] NonWindowInnerJoin.scala
│ │ │ │ │ ├── [8.5K] NonWindowJoin.scala
│ │ │ │ │ ├── [3.4K] NonWindowLeftRightJoin.scala
│ │ │ │ │ ├── [4.8K] NonWindowLeftRightJoinWithNonEquiPredicates.scala
│ │ │ │ │ ├── [7.2K] NonWindowOuterJoin.scala
│ │ │ │ │ ├── [6.0K] NonWindowOuterJoinWithNonEquiPredicates.scala
│ │ │ │ │ ├── [2.2K] OuterJoinPaddingUtil.scala
│ │ │ │ │ ├── [2.3K] ProcTimeBoundedStreamJoin.scala
│ │ │ │ │ ├── [2.9K] RowTimeBoundedStreamJoin.scala
│ │ │ │ │ ├── [4.1K] TemporalProcessTimeJoin.scala
│ │ │ │ │ ├── [ 13K] TemporalRowtimeJoin.scala
│ │ │ │ │ ├── [ 21K] TimeBoundedStreamJoin.scala
│ │ │ │ │ └── [ 18K] WindowJoinUtil.scala
│ │ │ │ ├── [2.1K] LimitFilterFunction.scala
│ │ │ │ ├── [1.5K] MapJoinLeftRunner.scala
│ │ │ │ ├── [1.5K] MapJoinRightRunner.scala
│ │ │ │ ├── [2.1K] MapRunner.scala
│ │ │ │ ├── [2.5K] MapSideJoinRunner.scala
│ │ │ │ ├── [4.0K] match
│ │ │ │ │ ├── [1.2K] EventRowComparator.scala
│ │ │ │ │ ├── [2.1K] IterativeConditionRunner.scala
│ │ │ │ │ └── [2.6K] PatternProcessFunctionRunner.scala
│ │ │ │ ├── [1.6K] MinusCoGroupFunction.scala
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [2.1K] KeyedCoProcessOperatorWithWatermarkDelay.scala
│ │ │ │ │ └── [2.1K] KeyedProcessOperatorWithWatermarkDelay.scala
│ │ │ │ ├── [7.8K] outerJoinGroupReduceRunners.scala
│ │ │ │ ├── [6.4K] outerJoinRunners.scala
│ │ │ │ ├── [2.2K] OutputRowtimeProcessFunction.scala
│ │ │ │ ├── [1.5K] RowKeySelector.scala
│ │ │ │ ├── [1.9K] RowtimeProcessFunction.scala
│ │ │ │ ├── [1.4K] TableAggregateCollector.scala
│ │ │ │ ├── [2.3K] TableFunctionCollector.scala
│ │ │ │ ├── [4.0K] triggers
│ │ │ │ │ └── [4.5K] StateCleaningCountTrigger.scala
│ │ │ │ └── [4.0K] types
│ │ │ │ ├── [3.2K] CRowComparator.scala
│ │ │ │ ├── [1.8K] CRow.scala
│ │ │ │ ├── [3.9K] CRowSerializer.scala
│ │ │ │ └── [3.1K] CRowTypeInfo.scala
│ │ │ ├── [4.0K] sinks
│ │ │ │ ├── [2.1K] DataStreamTableSink.scala
│ │ │ │ └── [3.2K] TableSinkUtils.scala
│ │ │ ├── [4.0K] sources
│ │ │ │ └── [5.9K] TableSourceUtil.scala
│ │ │ ├── [4.0K] typeutils
│ │ │ │ ├── [9.8K] TypeCheckUtils.scala
│ │ │ │ └── [4.5K] TypeCoercion.scala
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [7.7K] DummyExecutionEnvironment.java
│ │ │ │ ├── [1.8K] DummyNoOpOperator.java
│ │ │ │ ├── [2.1K] JavaScalaConversionUtil.scala
│ │ │ │ ├── [1.0K] Logging.scala
│ │ │ │ ├── [2.0K] MatchUtil.scala
│ │ │ │ └── [4.0K] python
│ │ │ │ └── [ 14K] PythonTableUtils.scala
│ │ │ └── [4.0K] validate
│ │ │ └── [1.6K] ValidationResult.scala
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ └── [2.4K] StreamTableEnvironmentTest.java
│ │ │ ├── [4.0K] catalog
│ │ │ │ ├── [ 10K] CatalogManagerTest.java
│ │ │ │ ├── [9.6K] CatalogStructureBuilder.java
│ │ │ │ ├── [3.6K] DatabaseCalciteSchemaTest.java
│ │ │ │ ├── [9.8K] PathResolutionTest.java
│ │ │ │ ├── [3.0K] TestExternalTableSourceFactory.java
│ │ │ │ └── [7.8K] ViewExpansionTest.java
│ │ │ ├── [4.0K] dataview
│ │ │ │ ├── [4.6K] ListViewSerializerUpgradeTest.java
│ │ │ │ └── [4.4K] MapViewSerializerUpgradeTest.java
│ │ │ ├── [4.0K] factories
│ │ │ │ ├── [2.8K] CatalogFactoryServiceTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ └── [1.9K] TestCatalogFactory.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ ├── [3.4K] JavaTableSourceITCase.java
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ ├── [8.1K] GroupingSetsITCase.java
│ │ │ │ │ │ └── [7.2K] JavaSqlITCase.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ └── [ 27K] JavaTableEnvironmentITCase.java
│ │ │ │ ├── [4.0K] stream
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ ├── [ 15K] FunctionITCase.java
│ │ │ │ │ │ └── [6.3K] JavaSqlITCase.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ └── [4.0K] ValuesITCase.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [1.2K] JavaPojos.java
│ │ │ │ ├── [2.5K] JavaStreamTestData.java
│ │ │ │ ├── [ 10K] JavaUserDefinedAggFunctions.java
│ │ │ │ ├── [4.1K] JavaUserDefinedScalarFunctions.java
│ │ │ │ └── [1.8K] JavaUserDefinedTableFunctions.java
│ │ │ ├── [4.0K] sqlexec
│ │ │ │ └── [ 27K] SqlToOperationConverterTest.java
│ │ │ └── [4.0K] types
│ │ │ └── [4.0K] python
│ │ │ └── [2.2K] ExamplePointUserDefinedType.java
│ │ ├── [4.0K] resources
│ │ │ ├── [4.0K] list-view-serializer-1.11
│ │ │ │ ├── [ 269] serializer-snapshot
│ │ │ │ └── [ 16] test-data
│ │ │ ├── [1.3K] log4j2-test.properties
│ │ │ ├── [1.1K] logback-test.xml
│ │ │ ├── [4.0K] map-view-serializer-1.11
│ │ │ │ ├── [ 351] serializer-snapshot
│ │ │ │ └── [ 11] test-data
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [1.3K] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] scala
│ │ ├── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ ├── [ 21K] BatchTableEnvironmentTest.scala
│ │ │ │ │ ├── [7.4K] ExplainTest.scala
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ ├── [4.4K] AggregateTest.scala
│ │ │ │ │ │ ├── [2.6K] CalcTest.scala
│ │ │ │ │ │ ├── [ 11K] CorrelateTest.scala
│ │ │ │ │ │ ├── [ 11K] DistinctAggregateTest.scala
│ │ │ │ │ │ ├── [6.5K] GroupingSetsTest.scala
│ │ │ │ │ │ ├── [ 14K] GroupWindowTest.scala
│ │ │ │ │ │ ├── [8.8K] JoinTest.scala
│ │ │ │ │ │ ├── [8.9K] SetOperatorsTest.scala
│ │ │ │ │ │ ├── [9.4K] SingleRowJoinTest.scala
│ │ │ │ │ │ ├── [3.8K] TemporalTableJoinTest.scala
│ │ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ │ ├── [1.3K] CalcValidationTest.scala
│ │ │ │ │ │ ├── [1.7K] CorrelateValidationTest.scala
│ │ │ │ │ │ ├── [3.2K] GroupWindowValidationTest.scala
│ │ │ │ │ │ ├── [4.3K] InsertIntoValidationTest.scala
│ │ │ │ │ │ ├── [4.2K] JoinValidationTest.scala
│ │ │ │ │ │ ├── [2.0K] OverWindowValidationTest.scala
│ │ │ │ │ │ └── [1.4K] SortValidationTest.scala
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [3.9K] AggregateTest.scala
│ │ │ │ │ ├── [ 11K] CalcTest.scala
│ │ │ │ │ ├── [1.9K] ColumnFunctionsTest.scala
│ │ │ │ │ ├── [7.1K] CorrelateTest.scala
│ │ │ │ │ ├── [ 15K] GroupWindowTest.scala
│ │ │ │ │ ├── [9.4K] JoinTest.scala
│ │ │ │ │ ├── [7.5K] SetOperatorsTest.scala
│ │ │ │ │ ├── [4.0K] stringexpr
│ │ │ │ │ │ ├── [ 10K] AggregateStringExpressionTest.scala
│ │ │ │ │ │ ├── [9.9K] CalcStringExpressionTest.scala
│ │ │ │ │ │ ├── [4.1K] CorrelateStringExpressionTest.scala
│ │ │ │ │ │ ├── [6.3K] JoinStringExpressionTest.scala
│ │ │ │ │ │ ├── [2.4K] SetOperatorsTest.scala
│ │ │ │ │ │ └── [1.9K] SortStringExpressionTest.scala
│ │ │ │ │ ├── [2.2K] TemporalTableJoinTest.scala
│ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ ├── [6.8K] AggregateValidationTest.scala
│ │ │ │ │ ├── [4.1K] CalcValidationTest.scala
│ │ │ │ │ ├── [1.7K] CorrelateValidationTest.scala
│ │ │ │ │ ├── [5.9K] GroupWindowValidationTest.scala
│ │ │ │ │ ├── [2.7K] InsertIntoValidationTest.scala
│ │ │ │ │ ├── [5.5K] JoinValidationTest.scala
│ │ │ │ │ ├── [1.9K] OverWindowValidationTest.scala
│ │ │ │ │ ├── [4.3K] SetOperatorsValidationTest.scala
│ │ │ │ │ └── [2.1K] SortValidationTest.scala
│ │ │ │ ├── [4.0K] stream
│ │ │ │ │ ├── [5.3K] ExplainTest.scala
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ ├── [5.0K] AggregateTest.scala
│ │ │ │ │ │ ├── [ 12K] CorrelateTest.scala
│ │ │ │ │ │ ├── [4.9K] DistinctAggregateTest.scala
│ │ │ │ │ │ ├── [ 13K] GroupWindowTest.scala
│ │ │ │ │ │ ├── [ 31K] JoinTest.scala
│ │ │ │ │ │ ├── [2.2K] MatchRecognizeTest.scala
│ │ │ │ │ │ ├── [ 23K] OverWindowTest.scala
│ │ │ │ │ │ ├── [7.2K] SetOperatorsTest.scala
│ │ │ │ │ │ ├── [2.1K] SortTest.scala
│ │ │ │ │ │ ├── [2.4K] TableFactoryTest.scala
│ │ │ │ │ │ ├── [8.7K] TemporalTableJoinTest.scala
│ │ │ │ │ │ ├── [2.7K] UnionTest.scala
│ │ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ │ ├── [1.7K] CorrelateValidationTest.scala
│ │ │ │ │ │ ├── [3.8K] InsertIntoValidationTest.scala
│ │ │ │ │ │ ├── [7.2K] JoinValidationTest.scala
│ │ │ │ │ │ ├── [2.5K] MatchRecognizeValidationTest.scala
│ │ │ │ │ │ ├── [2.4K] OverWindowValidationTest.scala
│ │ │ │ │ │ ├── [2.0K] SortValidationTest.scala
│ │ │ │ │ │ └── [3.8K] WindowAggregateValidationTest.scala
│ │ │ │ │ ├── [ 14K] StreamTableEnvironmentTest.scala
│ │ │ │ │ ├── [7.3K] StreamTableEnvironmentValidationTest.scala
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [ 13K] AggregateTest.scala
│ │ │ │ │ ├── [8.2K] CalcTest.scala
│ │ │ │ │ ├── [ 11K] ColumnFunctionsTest.scala
│ │ │ │ │ ├── [ 13K] CorrelateTest.scala
│ │ │ │ │ ├── [ 19K] GroupWindowTableAggregateTest.scala
│ │ │ │ │ ├── [ 23K] GroupWindowTest.scala
│ │ │ │ │ ├── [ 19K] JoinTest.scala
│ │ │ │ │ ├── [ 17K] OverWindowTest.scala
│ │ │ │ │ ├── [7.0K] SetOperatorsTest.scala
│ │ │ │ │ ├── [4.0K] stringexpr
│ │ │ │ │ │ ├── [8.0K] AggregateStringExpressionTest.scala
│ │ │ │ │ │ ├── [5.6K] CalcStringExpressionTest.scala
│ │ │ │ │ │ ├── [6.5K] CorrelateStringExpressionTest.scala
│ │ │ │ │ │ ├── [7.4K] GroupWindowStringExpressionTest.scala
│ │ │ │ │ │ ├── [6.0K] GroupWindowTableAggregateStringExpressionTest.scala
│ │ │ │ │ │ ├── [8.9K] OverWindowStringExpressionTest.scala
│ │ │ │ │ │ ├── [1.9K] SetOperatorsStringExpressionTest.scala
│ │ │ │ │ │ └── [3.4K] TableAggregateStringExpressionTest.scala
│ │ │ │ │ ├── [5.8K] TableAggregateTest.scala
│ │ │ │ │ ├── [ 14K] TableSourceTest.scala
│ │ │ │ │ ├── [9.5K] TemporalTableJoinTest.scala
│ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ ├── [4.7K] AggregateValidationTest.scala
│ │ │ │ │ ├── [5.1K] CalcValidationTest.scala
│ │ │ │ │ ├── [6.5K] CorrelateValidationTest.scala
│ │ │ │ │ ├── [8.9K] GroupWindowTableAggregateValidationTest.scala
│ │ │ │ │ ├── [ 11K] GroupWindowValidationTest.scala
│ │ │ │ │ ├── [3.2K] InsertIntoValidationTest.scala
│ │ │ │ │ ├── [9.3K] JoinValidationTest.scala
│ │ │ │ │ ├── [5.5K] OverWindowValidationTest.scala
│ │ │ │ │ ├── [3.4K] SetOperatorsValidationTest.scala
│ │ │ │ │ ├── [4.9K] TableAggregateValidationTest.scala
│ │ │ │ │ ├── [3.4K] TableSinkValidationTest.scala
│ │ │ │ │ ├── [2.8K] TableSourceValidationTest.scala
│ │ │ │ │ ├── [3.8K] TemporalTableJoinValidationTest.scala
│ │ │ │ │ └── [3.4K] UnsupportedOpsValidationTest.scala
│ │ │ │ ├── [ 24K] TableEnvironmentITCase.scala
│ │ │ │ ├── [ 19K] TableEnvironmentTest.scala
│ │ │ │ ├── [4.2K] TableITCase.scala
│ │ │ │ ├── [ 17K] TableSourceTest.scala
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [3.6K] ColumnFunctionsValidationTest.scala
│ │ │ │ ├── [1.4K] InlineTableValidationTest.scala
│ │ │ │ ├── [7.9K] TableEnvironmentValidationTest.scala
│ │ │ │ ├── [2.1K] TableSchemaValidationTest.scala
│ │ │ │ ├── [2.9K] TableSinksValidationTest.scala
│ │ │ │ ├── [ 11K] TableSourceValidationTest.scala
│ │ │ │ └── [2.3K] UserDefinedFunctionValidationTest.scala
│ │ │ ├── [4.0K] calcite
│ │ │ │ └── [ 17K] CalciteConfigBuilderTest.scala
│ │ │ ├── [4.0K] catalog
│ │ │ │ └── [ 30K] CatalogTableITCase.scala
│ │ │ ├── [4.0K] dataview
│ │ │ │ ├── [2.0K] ListViewSerializerTest.scala
│ │ │ │ └── [2.3K] MapViewSerializerTest.scala
│ │ │ ├── [4.0K] descriptors
│ │ │ │ ├── [3.2K] ClassInstanceTest.scala
│ │ │ │ ├── [1.9K] FileSystemTest.scala
│ │ │ │ ├── [1.8K] FunctionDescriptorTest.scala
│ │ │ │ ├── [3.7K] LiteralValueTest.scala
│ │ │ │ ├── [3.7K] OldCsvTest.scala
│ │ │ │ ├── [5.9K] RowtimeTest.scala
│ │ │ │ ├── [3.2K] SchemaTest.scala
│ │ │ │ ├── [8.2K] SchemaValidatorTest.scala
│ │ │ │ ├── [4.8K] TableDescriptorTest.scala
│ │ │ │ └── [1.4K] TestTableDescriptor.scala
│ │ │ ├── [4.0K] expressions
│ │ │ │ ├── [6.1K] ArrayTypeTest.scala
│ │ │ │ ├── [4.4K] CompositeAccessTest.scala
│ │ │ │ ├── [2.3K] DateTimeFunctionTest.scala
│ │ │ │ ├── [7.6K] DecimalTypeTest.scala
│ │ │ │ ├── [2.0K] KeywordParseTest.scala
│ │ │ │ ├── [4.1K] LiteralTest.scala
│ │ │ │ ├── [4.9K] MapTypeTest.scala
│ │ │ │ ├── [2.5K] NonDeterministicTests.scala
│ │ │ │ ├── [2.9K] RowTypeTest.scala
│ │ │ │ ├── [ 69K] ScalarFunctionsTest.scala
│ │ │ │ ├── [ 16K] ScalarOperatorsTest.scala
│ │ │ │ ├── [ 13K] SqlExpressionTest.scala
│ │ │ │ ├── [ 13K] TemporalTypesTest.scala
│ │ │ │ ├── [ 11K] UserDefinedScalarFunctionTest.scala
│ │ │ │ ├── [4.0K] utils
│ │ │ │ │ ├── [2.6K] ArrayTypeTestBase.scala
│ │ │ │ │ ├── [3.5K] CompositeTypeTestBase.scala
│ │ │ │ │ ├── [8.7K] ExpressionTestBase.scala
│ │ │ │ │ ├── [2.3K] MapTypeTestBase.scala
│ │ │ │ │ ├── [2.3K] RowTypeTestBase.scala
│ │ │ │ │ ├── [2.8K] ScalarOperatorsTestBase.scala
│ │ │ │ │ ├── [3.6K] ScalarTypesTestBase.scala
│ │ │ │ │ └── [8.3K] userDefinedScalarFunctions.scala
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [2.8K] ArrayTypeValidationTest.scala
│ │ │ │ ├── [1.9K] CompositeAccessValidationTest.scala
│ │ │ │ ├── [1.8K] MapTypeValidationTest.scala
│ │ │ │ ├── [1.5K] RowTypeValidationTest.scala
│ │ │ │ ├── [6.8K] ScalarFunctionsValidationTest.scala
│ │ │ │ └── [2.6K] ScalarOperatorsValidationTest.scala
│ │ │ ├── [4.0K] factories
│ │ │ │ ├── [5.4K] TableFormatFactoryServiceTest.scala
│ │ │ │ ├── [4.3K] TableSourceFactoryServiceTest.scala
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [2.0K] TestAmbiguousTableFormatFactory.scala
│ │ │ │ ├── [9.0K] TestCollectionTableFactory.scala
│ │ │ │ ├── [1.8K] TestDeserializationSchema.scala
│ │ │ │ ├── [2.3K] TestFixedFormatTableFactory.scala
│ │ │ │ ├── [1.6K] TestSerializationSchema.scala
│ │ │ │ ├── [2.3K] TestTableFormatFactory.scala
│ │ │ │ ├── [1.5K] TestTableFormat.scala
│ │ │ │ ├── [2.4K] TestTableSourceFactory.scala
│ │ │ │ └── [2.1K] TestWildcardFormatTableSourceFactory.scala
│ │ │ ├── [4.0K] match
│ │ │ │ ├── [8.4K] MatchRecognizeValidationTest.scala
│ │ │ │ ├── [5.2K] PatternTranslatorTestBase.scala
│ │ │ │ └── [ 11K] PatternTranslatorTest.scala
│ │ │ ├── [4.0K] plan
│ │ │ │ ├── [2.6K] CalcPythonCorrelateTransposeRuleTest.scala
│ │ │ │ ├── [ 16K] ExpressionReductionRulesTest.scala
│ │ │ │ ├── [3.5K] NormalizationRulesTest.scala
│ │ │ │ ├── [ 18K] PythonCalcSplitRuleTest.scala
│ │ │ │ ├── [6.3K] PythonCorrelateSplitRuleTest.scala
│ │ │ │ ├── [5.0K] QueryDecorrelationTest.scala
│ │ │ │ ├── [ 14K] RetractionRulesTest.scala
│ │ │ │ ├── [ 24K] RexProgramExtractorTest.scala
│ │ │ │ ├── [2.0K] RexProgramRewriterTest.scala
│ │ │ │ ├── [3.4K] RexProgramTestBase.scala
│ │ │ │ ├── [2.5K] SplitPythonConditionFromCorrelateRuleTest.scala
│ │ │ │ ├── [3.6K] SplitPythonConditionFromJoinRuleTest.scala
│ │ │ │ ├── [ 18K] TimeIndicatorConversionTest.scala
│ │ │ │ └── [9.6K] UpdatingPlanCheckerTest.scala
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [4.0K] aggfunctions
│ │ │ │ │ ├── [6.7K] AggFunctionTestBase.scala
│ │ │ │ │ ├── [5.1K] AvgFunctionTest.scala
│ │ │ │ │ ├── [7.4K] CollectAggFunctionTest.scala
│ │ │ │ │ ├── [1.6K] CountAggFunctionTest.scala
│ │ │ │ │ ├── [1.7K] CountAggFunctionWithNonParamTest.scala
│ │ │ │ │ ├── [7.5K] MaxAggFunctionTest.scala
│ │ │ │ │ ├── [8.5K] MaxWithRetractAggFunctionTest.scala
│ │ │ │ │ ├── [7.5K] MinAggFunctionTest.scala
│ │ │ │ │ ├── [8.3K] MinWithRetractAggFunctionTest.scala
│ │ │ │ │ ├── [4.1K] Sum0AggFunctionTest.scala
│ │ │ │ │ ├── [4.6K] Sum0WithRetractAggFunctionTest.scala
│ │ │ │ │ ├── [4.1K] SumAggFunctionTest.scala
│ │ │ │ │ └── [4.6K] SumWithRetractAggFunctionTest.scala
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ ├── [ 21K] AggregateITCase.scala
│ │ │ │ │ │ ├── [ 15K] CalcITCase.scala
│ │ │ │ │ │ ├── [ 21K] JoinITCase.scala
│ │ │ │ │ │ ├── [8.8K] PartitionableSinkITCase.scala
│ │ │ │ │ │ ├── [ 11K] SetOperatorsITCase.scala
│ │ │ │ │ │ ├── [7.0K] SortITCase.scala
│ │ │ │ │ │ ├── [ 25K] TableEnvironmentITCase.scala
│ │ │ │ │ │ └── [3.6K] TableSourceITCase.scala
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [ 16K] AggregateITCase.scala
│ │ │ │ │ ├── [ 23K] CalcITCase.scala
│ │ │ │ │ ├── [ 14K] CorrelateITCase.scala
│ │ │ │ │ ├── [ 15K] GroupWindowITCase.scala
│ │ │ │ │ ├── [ 22K] JoinITCase.scala
│ │ │ │ │ ├── [8.6K] SetOperatorsITCase.scala
│ │ │ │ │ ├── [8.5K] SortITCase.scala
│ │ │ │ │ ├── [8.3K] TableEnvironmentITCase.scala
│ │ │ │ │ ├── [2.3K] TableITCase.scala
│ │ │ │ │ ├── [4.0K] TableSinkITCase.scala
│ │ │ │ │ └── [ 28K] TableSourceITCase.scala
│ │ │ │ ├── [4.0K] harness
│ │ │ │ │ ├── [6.9K] AggFunctionHarnessTest.scala
│ │ │ │ │ ├── [5.9K] BaseTwoInputStreamOperatorWithStateRetentionTest.scala
│ │ │ │ │ ├── [ 15K] GroupAggregateHarnessTest.scala
│ │ │ │ │ ├── [ 18K] HarnessTestBase.scala
│ │ │ │ │ ├── [ 71K] JoinHarnessTest.scala
│ │ │ │ │ ├── [3.2K] MatchHarnessTest.scala
│ │ │ │ │ ├── [ 36K] OverWindowHarnessTest.scala
│ │ │ │ │ ├── [ 11K] SortProcessFunctionHarnessTest.scala
│ │ │ │ │ ├── [5.7K] StateCleaningCountTriggerHarnessTest.scala
│ │ │ │ │ ├── [9.1K] TableAggregateHarnessTest.scala
│ │ │ │ │ └── [ 31K] TemporalJoinHarnessTest.scala
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [3.3K] KeyedCoProcessOperatorWithWatermarkDelayTest.scala
│ │ │ │ │ ├── [4.9K] KeyedProcessFunctionWithCleanupStateTest.scala
│ │ │ │ │ ├── [2.7K] KeyedProcessOperatorWithWatermarkDelayTest.scala
│ │ │ │ │ └── [5.0K] ProcessFunctionWithCleanupStateTest.scala
│ │ │ │ ├── [4.0K] stream
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ ├── [ 13K] InsertIntoITCase.scala
│ │ │ │ │ │ ├── [ 45K] JoinITCase.scala
│ │ │ │ │ │ ├── [ 25K] MatchRecognizeITCase.scala
│ │ │ │ │ │ ├── [ 35K] OverWindowITCase.scala
│ │ │ │ │ │ ├── [4.5K] SetOperatorsITCase.scala
│ │ │ │ │ │ ├── [5.7K] SortITCase.scala
│ │ │ │ │ │ ├── [ 32K] SqlITCase.scala
│ │ │ │ │ │ ├── [2.2K] TableSourceITCase.scala
│ │ │ │ │ │ └── [9.8K] TemporalJoinITCase.scala
│ │ │ │ │ ├── [4.0K] table
│ │ │ │ │ │ ├── [ 11K] AggregateITCase.scala
│ │ │ │ │ │ ├── [ 15K] CalcITCase.scala
│ │ │ │ │ │ ├── [ 11K] CorrelateITCase.scala
│ │ │ │ │ │ ├── [ 20K] GroupWindowITCase.scala
│ │ │ │ │ │ ├── [ 20K] GroupWindowTableAggregateITCase.scala
│ │ │ │ │ │ ├── [ 23K] JoinITCase.scala
│ │ │ │ │ │ ├── [ 14K] OverWindowITCase.scala
│ │ │ │ │ │ ├── [5.5K] RetractionITCase.scala
│ │ │ │ │ │ ├── [6.2K] SetOperatorsITCase.scala
│ │ │ │ │ │ ├── [6.1K] TableAggregateITCase.scala
│ │ │ │ │ │ ├── [ 24K] TableSinkITCase.scala
│ │ │ │ │ │ └── [ 30K] TableSourceITCase.scala
│ │ │ │ │ └── [ 24K] TimeAttributesITCase.scala
│ │ │ │ ├── [4.0K] types
│ │ │ │ │ ├── [2.3K] CRowComparatorTest.scala
│ │ │ │ │ └── [4.0K] CRowSerializerTest.scala
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [4.4K] CommonTestData.scala
│ │ │ │ ├── [1.9K] SortTestUtils.scala
│ │ │ │ ├── [1.6K] StreamingWithStateTestBase.scala
│ │ │ │ ├── [2.6K] StreamITCase.scala
│ │ │ │ ├── [3.5K] StreamTestData.scala
│ │ │ │ ├── [1.9K] TableProgramsClusterTestBase.scala
│ │ │ │ ├── [1.7K] TableProgramsCollectionTestBase.scala
│ │ │ │ ├── [1.6K] TableProgramsTestBase.scala
│ │ │ │ ├── [1.5K] TimeTestUtil.scala
│ │ │ │ └── [1.9K] UserDefinedFunctionTestUtils.scala
│ │ │ ├── [4.0K] typeutils
│ │ │ │ └── [2.8K] TypeCheckUtilsTest.scala
│ │ │ ├── [4.0K] util
│ │ │ │ └── [4.0K] python
│ │ │ │ └── [2.0K] PythonTableUtilsTest.scala
│ │ │ └── [4.0K] utils
│ │ │ ├── [5.9K] InMemoryTableFactory.scala
│ │ │ ├── [1.7K] InputTypeBuilder.scala
│ │ │ ├── [1.4K] LogicalPlanFormatUtils.scala
│ │ │ ├── [5.9K] MemoryTableSourceSinkUtil.scala
│ │ │ ├── [5.6K] MockTableEnvironment.scala
│ │ │ ├── [ 15K] TableTestBase.scala
│ │ │ ├── [2.6K] TestContextTableFactory.scala
│ │ │ ├── [ 11K] TestFilterableTableSource.scala
│ │ │ ├── [3.1K] testTableSinks.scala
│ │ │ ├── [9.5K] testTableSources.scala
│ │ │ ├── [5.4K] UserDefinedAggFunctions.scala
│ │ │ ├── [7.1K] UserDefinedTableAggFunctions.scala
│ │ │ └── [6.7K] UserDefinedTableFunctions.scala
│ │ └── [4.0K] resources
│ │ ├── [ 945] testExecuteSqlWithExplainInsert0.out
│ │ ├── [1.2K] testExecuteSqlWithExplainInsert1.out
│ │ ├── [ 648] testExecuteSqlWithExplainSelect0.out
│ │ ├── [ 885] testExecuteSqlWithExplainSelect1.out
│ │ ├── [ 945] testExplainSqlWithInsert0.out
│ │ ├── [1.3K] testExplainSqlWithInsert1.out
│ │ ├── [ 648] testExplainSqlWithSelect0.out
│ │ ├── [ 885] testExplainSqlWithSelect1.out
│ │ ├── [ 874] testFilter0.out
│ │ ├── [2.6K] testFilter1.out
│ │ ├── [ 481] testFilterStream0.out
│ │ ├── [ 931] testFromToDataStreamAndSqlUpdate.out
│ │ ├── [ 932] testInsert1.out
│ │ ├── [ 910] testInsert.out
│ │ ├── [1.5K] testJoin0.out
│ │ ├── [4.6K] testJoin1.out
│ │ ├── [1.7K] testMultipleInserts1.out
│ │ ├── [1.7K] testMultipleInserts.out
│ │ ├── [ 931] testSqlUpdateAndToDataStream.out
│ │ ├── [1.7K] testStatementSet0.out
│ │ ├── [2.6K] testStatementSet1.out
│ │ ├── [1.1K] testUnion0.out
│ │ ├── [3.7K] testUnion1.out
│ │ └── [ 565] testUnionStream0.out
│ ├── [4.0K] flink-table-planner-blink
│ │ ├── [ 15K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ ├── [4.0K] jdbc
│ │ │ │ │ │ └── [1.3K] CalciteSchemaBuilder.java
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ └── [4.0K] validate
│ │ │ │ │ │ └── [2.9K] ProcedureNamespace.java
│ │ │ │ │ └── [4.0K] sql2rel
│ │ │ │ │ └── [2.7K] AuxiliaryConverter.java
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] planner
│ │ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ │ ├── [3.9K] CalciteParser.java
│ │ │ │ │ │ ├── [3.3K] FlinkCalciteSqlValidator.java
│ │ │ │ │ │ ├── [1.2K] SqlExprToRexConverterFactory.java
│ │ │ │ │ │ ├── [5.7K] SqlExprToRexConverterImpl.java
│ │ │ │ │ │ └── [1.5K] SqlExprToRexConverter.java
│ │ │ │ │ ├── [4.0K] catalog
│ │ │ │ │ │ ├── [2.8K] CatalogCalciteSchema.java
│ │ │ │ │ │ ├── [2.6K] CatalogManagerCalciteSchema.java
│ │ │ │ │ │ ├── [8.3K] CatalogSchemaTable.java
│ │ │ │ │ │ ├── [5.6K] DatabaseCalciteSchema.java
│ │ │ │ │ │ ├── [1.7K] FlinkSchema.java
│ │ │ │ │ │ ├── [9.3K] FunctionCatalogOperatorTable.java
│ │ │ │ │ │ ├── [3.0K] QueryOperationCatalogViewTable.java
│ │ │ │ │ │ └── [2.1K] SqlCatalogViewTable.java
│ │ │ │ │ ├── [4.0K] delegation
│ │ │ │ │ │ ├── [2.2K] BatchExecutor.java
│ │ │ │ │ │ ├── [3.1K] BlinkExecutorFactory.java
│ │ │ │ │ │ ├── [2.5K] BlinkPlannerFactory.java
│ │ │ │ │ │ ├── [2.3K] ExecutorBase.java
│ │ │ │ │ │ ├── [1.5K] FlinkSqlParserFactories.java
│ │ │ │ │ │ ├── [4.1K] ParserImpl.java
│ │ │ │ │ │ ├── [ 12K] PlannerContext.java
│ │ │ │ │ │ └── [2.0K] StreamExecutor.java
│ │ │ │ │ ├── [4.0K] expressions
│ │ │ │ │ │ ├── [2.3K] CallExpressionResolver.java
│ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ ├── [1.8K] CallExpressionConvertRule.java
│ │ │ │ │ │ │ ├── [ 19K] CustomizedConvertRule.java
│ │ │ │ │ │ │ ├── [ 11K] DirectConvertRule.java
│ │ │ │ │ │ │ ├── [ 11K] ExpressionConverter.java
│ │ │ │ │ │ │ ├── [2.6K] FunctionDefinitionConvertRule.java
│ │ │ │ │ │ │ ├── [2.3K] LegacyScalarFunctionConvertRule.java
│ │ │ │ │ │ │ └── [8.0K] OverConvertRule.java
│ │ │ │ │ │ ├── [4.7K] DeclarativeExpressionResolver.java
│ │ │ │ │ │ ├── [5.6K] ExpressionBuilder.java
│ │ │ │ │ │ ├── [5.6K] PlannerTypeInferenceUtilImpl.java
│ │ │ │ │ │ ├── [2.0K] RexNodeExpression.java
│ │ │ │ │ │ └── [5.5K] SqlAggFunctionVisitor.java
│ │ │ │ │ ├── [4.0K] functions
│ │ │ │ │ │ ├── [4.0K] aggfunctions
│ │ │ │ │ │ │ ├── [6.6K] AvgAggFunction.java
│ │ │ │ │ │ │ ├── [4.7K] CollectAggFunction.java
│ │ │ │ │ │ │ ├── [2.7K] Count1AggFunction.java
│ │ │ │ │ │ │ ├── [2.9K] CountAggFunction.java
│ │ │ │ │ │ │ ├── [6.4K] DeclarativeAggregateFunction.java
│ │ │ │ │ │ │ ├── [3.4K] DenseRankAggFunction.java
│ │ │ │ │ │ │ ├── [5.9K] FirstValueAggFunction.java
│ │ │ │ │ │ │ ├── [ 13K] FirstValueWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [5.0K] IncrSumAggFunction.java
│ │ │ │ │ │ │ ├── [6.5K] IncrSumWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [5.8K] LastValueAggFunction.java
│ │ │ │ │ │ │ ├── [ 13K] LastValueWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [7.7K] LeadLagAggFunction.java
│ │ │ │ │ │ │ ├── [3.6K] ListAggFunction.java
│ │ │ │ │ │ │ ├── [5.7K] ListAggWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [6.2K] ListAggWsWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [5.8K] MaxAggFunction.java
│ │ │ │ │ │ │ ├── [ 12K] MaxWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [5.8K] MinAggFunction.java
│ │ │ │ │ │ │ ├── [ 12K] MinWithRetractAggFunction.java
│ │ │ │ │ │ │ ├── [3.8K] RankAggFunction.java
│ │ │ │ │ │ │ ├── [4.9K] RankLikeAggFunctionBase.java
│ │ │ │ │ │ │ ├── [2.5K] RowNumberAggFunction.java
│ │ │ │ │ │ │ ├── [8.7K] SingleValueAggFunction.java
│ │ │ │ │ │ │ ├── [5.5K] Sum0AggFunction.java
│ │ │ │ │ │ │ ├── [4.6K] SumAggFunction.java
│ │ │ │ │ │ │ └── [6.1K] SumWithRetractAggFunction.java
│ │ │ │ │ │ ├── [4.0K] bridging
│ │ │ │ │ │ │ ├── [6.0K] BridgingSqlAggFunction.java
│ │ │ │ │ │ │ ├── [5.2K] BridgingSqlFunction.java
│ │ │ │ │ │ │ └── [6.1K] BridgingUtils.java
│ │ │ │ │ │ ├── [4.0K] inference
│ │ │ │ │ │ │ ├── [4.1K] AbstractSqlCallContext.java
│ │ │ │ │ │ │ ├── [1.6K] ArgumentCountRange.java
│ │ │ │ │ │ │ ├── [4.1K] CallBindingCallContext.java
│ │ │ │ │ │ │ ├── [3.1K] OperatorBindingCallContext.java
│ │ │ │ │ │ │ ├── [6.4K] TypeInferenceOperandChecker.java
│ │ │ │ │ │ │ ├── [3.8K] TypeInferenceOperandInference.java
│ │ │ │ │ │ │ └── [3.3K] TypeInferenceReturnInference.java
│ │ │ │ │ │ ├── [1.4K] InternalFunctionDefinitions.java
│ │ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ │ ├── [2.7K] CalciteSqlFunction.java
│ │ │ │ │ │ │ ├── [ 39K] FlinkSqlOperatorTable.java
│ │ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ │ └── [1.6K] SqlAuxiliaryGroupAggFunction.java
│ │ │ │ │ │ │ ├── [2.2K] ProctimeMaterializeSqlFunction.java
│ │ │ │ │ │ │ ├── [2.7K] SqlFirstLastValueAggFunction.java
│ │ │ │ │ │ │ ├── [2.6K] SqlListAggFunction.java
│ │ │ │ │ │ │ ├── [1.4K] SqlThrowExceptionFunction.java
│ │ │ │ │ │ │ └── [1.8K] StreamRecordTimestampSqlFunction.java
│ │ │ │ │ │ ├── [4.0K] tablefunctions
│ │ │ │ │ │ │ └── [2.4K] ReplicateRows.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ ├── [3.5K] HiveAggSqlFunction.java
│ │ │ │ │ │ ├── [2.8K] HiveFunctionUtils.java
│ │ │ │ │ │ ├── [3.4K] HiveScalarSqlFunction.java
│ │ │ │ │ │ └── [8.8K] HiveTableSqlFunction.java
│ │ │ │ │ ├── [4.0K] hint
│ │ │ │ │ │ ├── [2.5K] FlinkHints.java
│ │ │ │ │ │ └── [1.8K] FlinkHintStrategies.java
│ │ │ │ │ ├── [4.0K] operations
│ │ │ │ │ │ ├── [3.7K] DataStreamQueryOperation.java
│ │ │ │ │ │ ├── [ 17K] MergeTableLikeUtil.java
│ │ │ │ │ │ ├── [2.7K] PlannerQueryOperation.java
│ │ │ │ │ │ ├── [2.7K] RichTableSourceQueryOperation.java
│ │ │ │ │ │ ├── [1.2K] SqlConversionException.java
│ │ │ │ │ │ ├── [7.6K] SqlCreateTableConverter.java
│ │ │ │ │ │ └── [ 36K] SqlToOperationConverter.java
│ │ │ │ │ ├── [4.0K] plan
│ │ │ │ │ │ ├── [8.2K] FlinkCalciteCatalogReader.java
│ │ │ │ │ │ ├── [4.0K] metadata
│ │ │ │ │ │ │ ├── [8.4K] FlinkMetadata.java
│ │ │ │ │ │ │ ├── [ 20K] FlinkRelMdCollation.java
│ │ │ │ │ │ │ └── [9.2K] FlinkRelMetadataQuery.java
│ │ │ │ │ │ ├── [4.0K] nodes
│ │ │ │ │ │ │ ├── [4.0K] exec
│ │ │ │ │ │ │ │ ├── [1.1K] ExecNodeVisitorImpl.java
│ │ │ │ │ │ │ │ └── [1.1K] ExecNodeVisitor.java
│ │ │ │ │ │ │ └── [4.0K] process
│ │ │ │ │ │ │ ├── [1.4K] DAGProcessContext.java
│ │ │ │ │ │ │ └── [1.2K] DAGProcessor.java
│ │ │ │ │ │ ├── [1.4K] PartialFinalType.java
│ │ │ │ │ │ ├── [ 29K] QueryOperationConverter.java
│ │ │ │ │ │ ├── [4.0K] rules
│ │ │ │ │ │ │ ├── [4.0K] logical
│ │ │ │ │ │ │ │ ├── [4.3K] CalcPythonCorrelateTransposeRule.java
│ │ │ │ │ │ │ │ ├── [ 35K] FlinkAggregateExpandDistinctAggregatesRule.java
│ │ │ │ │ │ │ │ ├── [ 21K] FlinkAggregateJoinTransposeRule.java
│ │ │ │ │ │ │ │ ├── [5.2K] FlinkAggregateRemoveRule.java
│ │ │ │ │ │ │ │ ├── [3.0K] FlinkJoinPushExpressionsRule.java
│ │ │ │ │ │ │ │ ├── [4.9K] FlinkProjectJoinTransposeRule.java
│ │ │ │ │ │ │ │ ├── [3.1K] FlinkSemiAntiJoinFilterTransposeRule.java
│ │ │ │ │ │ │ │ ├── [9.4K] FlinkSemiAntiJoinJoinTransposeRule.java
│ │ │ │ │ │ │ │ ├── [7.4K] FlinkSemiAntiJoinProjectTransposeRule.java
│ │ │ │ │ │ │ │ ├── [5.1K] PushProjectIntoTableSourceScanRule.java
│ │ │ │ │ │ │ │ ├── [9.2K] PythonCorrelateSplitRule.java
│ │ │ │ │ │ │ │ └── [ 49K] SubQueryDecorrelator.java
│ │ │ │ │ │ │ └── [4.0K] physical
│ │ │ │ │ │ │ ├── [4.0K] batch
│ │ │ │ │ │ │ │ └── [4.8K] BatchExecPythonCorrelateRule.java
│ │ │ │ │ │ │ └── [4.0K] stream
│ │ │ │ │ │ │ └── [5.1K] StreamExecPythonCorrelateRule.java
│ │ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ │ ├── [2.4K] ExpandingPreparingTable.java
│ │ │ │ │ │ │ ├── [9.3K] FlinkPreparingTableBase.java
│ │ │ │ │ │ │ ├── [2.0K] RawRelDataType.java
│ │ │ │ │ │ │ └── [5.0K] StructuredRelDataType.java
│ │ │ │ │ │ ├── [4.0K] trait
│ │ │ │ │ │ │ ├── [1.1K] ModifyKind.java
│ │ │ │ │ │ │ ├── [5.4K] ModifyKindSet.java
│ │ │ │ │ │ │ └── [1.3K] UpdateKind.java
│ │ │ │ │ │ ├── [4.0K] type
│ │ │ │ │ │ │ ├── [5.8K] FlinkReturnTypes.java
│ │ │ │ │ │ │ ├── [2.7K] NumericExceptFirstOperandChecker.java
│ │ │ │ │ │ │ └── [2.5K] NumericOrDefaultReturnTypeInference.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ ├── [1.5K] JoinTypeUtil.java
│ │ │ │ │ │ ├── [2.8K] KeySelectorUtil.java
│ │ │ │ │ │ ├── [1.1K] OperatorType.java
│ │ │ │ │ │ └── [3.2K] RelDescriptionWriterImpl.java
│ │ │ │ │ ├── [4.0K] sinks
│ │ │ │ │ │ ├── [1.5K] BatchSelectTableSink.java
│ │ │ │ │ │ ├── [3.4K] SelectTableSinkBase.java
│ │ │ │ │ │ ├── [2.8K] SelectTableSinkSchemaConverter.java
│ │ │ │ │ │ └── [1.7K] StreamSelectTableSink.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [1.5K] AggregatePhaseStrategy.java
│ │ │ │ │ ├── [6.0K] CatalogTableStatisticsConverter.java
│ │ │ │ │ ├── [ 11K] DummyStreamExecutionEnvironment.java
│ │ │ │ │ ├── [4.0K] ExecutorUtils.java
│ │ │ │ │ ├── [6.2K] Expander.java
│ │ │ │ │ ├── [7.7K] OperationConverterUtils.java
│ │ │ │ │ ├── [2.7K] ShortcutUtils.java
│ │ │ │ │ ├── [2.1K] ShuffleModeUtils.java
│ │ │ │ │ ├── [1.8K] SingleElementIterator.java
│ │ │ │ │ └── [3.9K] TableConfigUtils.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.1K] TimestampStringUtils.java
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [4.0K] licenses
│ │ │ │ │ ├── [ 21K] LICENSE.icu4j
│ │ │ │ │ └── [1.6K] LICENSE.janino
│ │ │ │ ├── [1.0K] NOTICE
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 907] org.apache.flink.table.factories.TableFactory
│ │ │ └── [4.0K] scala
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] expressions
│ │ │ │ └── [ 27K] PlannerExpressionParserImpl.scala
│ │ │ └── [4.0K] planner
│ │ │ ├── [4.0K] calcite
│ │ │ │ ├── [7.3K] CalciteConfig.scala
│ │ │ │ ├── [1.4K] FlinkContextImpl.scala
│ │ │ │ ├── [1.9K] FlinkContext.scala
│ │ │ │ ├── [2.5K] FlinkLocalRef.scala
│ │ │ │ ├── [9.3K] FlinkLogicalRelFactories.scala
│ │ │ │ ├── [8.7K] FlinkPlannerImpl.scala
│ │ │ │ ├── [7.2K] FlinkRelBuilder.scala
│ │ │ │ ├── [3.8K] FlinkRelFactories.scala
│ │ │ │ ├── [1.7K] FlinkRelOptClusterFactory.scala
│ │ │ │ ├── [ 22K] FlinkTypeFactory.scala
│ │ │ │ ├── [7.2K] FlinkTypeSystem.scala
│ │ │ │ ├── [ 11K] PreValidateReWriter.scala
│ │ │ │ └── [ 25K] RelTimeIndicatorConverter.scala
│ │ │ ├── [4.0K] codegen
│ │ │ │ ├── [4.0K] agg
│ │ │ │ │ ├── [1.8K] AggCodeGen.scala
│ │ │ │ │ ├── [ 42K] AggsHandlerCodeGenerator.scala
│ │ │ │ │ ├── [4.0K] batch
│ │ │ │ │ │ ├── [ 26K] AggCodeGenHelper.scala
│ │ │ │ │ │ ├── [4.0K] AggWithoutKeysCodeGenerator.scala
│ │ │ │ │ │ ├── [8.8K] HashAggCodeGenerator.scala
│ │ │ │ │ │ ├── [ 31K] HashAggCodeGenHelper.scala
│ │ │ │ │ │ ├── [ 31K] HashWindowCodeGenerator.scala
│ │ │ │ │ │ ├── [5.2K] SortAggCodeGenerator.scala
│ │ │ │ │ │ ├── [8.8K] SortWindowCodeGenerator.scala
│ │ │ │ │ │ └── [ 30K] WindowCodeGenerator.scala
│ │ │ │ │ ├── [ 10K] DeclarativeAggCodeGen.scala
│ │ │ │ │ ├── [ 34K] DistinctAggCodeGen.scala
│ │ │ │ │ └── [ 20K] ImperativeAggCodeGen.scala
│ │ │ │ ├── [7.6K] CalcCodeGenerator.scala
│ │ │ │ ├── [4.0K] calls
│ │ │ │ │ ├── [ 14K] BridgingSqlFunctionCallGen.scala
│ │ │ │ │ ├── [ 18K] BuiltInMethods.scala
│ │ │ │ │ ├── [1.3K] CallGenerator.scala
│ │ │ │ │ ├── [1.4K] ConstantCallGen.scala
│ │ │ │ │ ├── [2.3K] CurrentTimePointCallGen.scala
│ │ │ │ │ ├── [2.8K] DivCallGen.scala
│ │ │ │ │ ├── [5.3K] ExtractCallGen.scala
│ │ │ │ │ ├── [4.6K] FloorCeilCallGen.scala
│ │ │ │ │ ├── [ 19K] FunctionGenerator.scala
│ │ │ │ │ ├── [1.5K] HashCodeCallGen.scala
│ │ │ │ │ ├── [2.8K] IfCallGen.scala
│ │ │ │ │ ├── [6.3K] LikeCallGen.scala
│ │ │ │ │ ├── [2.7K] MethodCallGen.scala
│ │ │ │ │ ├── [1.4K] NotCallGen.scala
│ │ │ │ │ ├── [2.6K] PrintCallGen.scala
│ │ │ │ │ ├── [2.0K] RandCallGen.scala
│ │ │ │ │ ├── [6.8K] ScalarFunctionCallGen.scala
│ │ │ │ │ ├── [ 87K] ScalarOperatorGens.scala
│ │ │ │ │ ├── [ 26K] StringCallGen.scala
│ │ │ │ │ ├── [6.1K] TableFunctionCallGen.scala
│ │ │ │ │ └── [5.5K] TimestampDiffCallGen.scala
│ │ │ │ ├── [ 29K] CodeGeneratorContext.scala
│ │ │ │ ├── [ 993] CodeGenException.scala
│ │ │ │ ├── [ 37K] CodeGenUtils.scala
│ │ │ │ ├── [6.0K] CollectorCodeGenerator.scala
│ │ │ │ ├── [ 14K] CorrelateCodeGenerator.scala
│ │ │ │ ├── [5.7K] EqualiserCodeGenerator.scala
│ │ │ │ ├── [2.6K] ExpandCodeGenerator.scala
│ │ │ │ ├── [ 30K] ExprCodeGenerator.scala
│ │ │ │ ├── [ 11K] ExpressionReducer.scala
│ │ │ │ ├── [7.9K] FunctionCodeGenerator.scala
│ │ │ │ ├── [3.7K] GeneratedExpression.scala
│ │ │ │ ├── [ 33K] GenerateUtils.scala
│ │ │ │ ├── [3.8K] HashCodeGenerator.scala
│ │ │ │ ├── [1.8K] Indenter.scala
│ │ │ │ ├── [3.2K] InputFormatCodeGenerator.scala
│ │ │ │ ├── [ 13K] LongHashJoinGenerator.scala
│ │ │ │ ├── [ 16K] LookupJoinCodeGenerator.scala
│ │ │ │ ├── [ 29K] MatchCodeGenerator.scala
│ │ │ │ ├── [ 12K] NestedLoopJoinCodeGenerator.scala
│ │ │ │ ├── [9.0K] OperatorCodeGenerator.scala
│ │ │ │ ├── [4.0K] over
│ │ │ │ │ ├── [3.0K] MultiFieldRangeBoundComparatorCodeGenerator.scala
│ │ │ │ │ └── [6.7K] RangeBoundComparatorCodeGenerator.scala
│ │ │ │ ├── [7.8K] ProjectionCodeGenerator.scala
│ │ │ │ ├── [6.3K] SinkCodeGenerator.scala
│ │ │ │ ├── [4.0K] sort
│ │ │ │ │ ├── [3.0K] ComparatorCodeGenerator.scala
│ │ │ │ │ └── [ 15K] SortCodeGenerator.scala
│ │ │ │ ├── [2.2K] ValuesCodeGenerator.scala
│ │ │ │ └── [3.2K] WatermarkGeneratorCodeGenerator.scala
│ │ │ ├── [4.0K] dataview
│ │ │ │ ├── [1.4K] DataViewSpec.scala
│ │ │ │ └── [8.6K] DataViewUtils.scala
│ │ │ ├── [4.0K] delegation
│ │ │ │ ├── [6.4K] BatchPlanner.scala
│ │ │ │ ├── [ 16K] PlannerBase.scala
│ │ │ │ └── [5.9K] StreamPlanner.scala
│ │ │ ├── [4.0K] expressions
│ │ │ │ ├── [9.0K] aggregations.scala
│ │ │ │ ├── [5.7K] arithmetic.scala
│ │ │ │ ├── [9.5K] call.scala
│ │ │ │ ├── [1.8K] cast.scala
│ │ │ │ ├── [4.2K] collection.scala
│ │ │ │ ├── [7.4K] comparison.scala
│ │ │ │ ├── [3.5K] composite.scala
│ │ │ │ ├── [1.2K] ExpressionBridge.scala
│ │ │ │ ├── [7.2K] fieldExpression.scala
│ │ │ │ ├── [3.4K] hashExpressions.scala
│ │ │ │ ├── [2.5K] InputTypeSpec.scala
│ │ │ │ ├── [3.7K] literals.scala
│ │ │ │ ├── [3.4K] logic.scala
│ │ │ │ ├── [ 14K] mathExpressions.scala
│ │ │ │ ├── [1.6K] ordering.scala
│ │ │ │ ├── [1.8K] overOffsets.scala
│ │ │ │ ├── [ 25K] PlannerExpressionConverter.scala
│ │ │ │ ├── [3.3K] PlannerExpression.scala
│ │ │ │ ├── [2.6K] PlannerExpressionUtils.scala
│ │ │ │ ├── [3.0K] plannerWindowProperties.scala
│ │ │ │ ├── [1.9K] Reinterpret.scala
│ │ │ │ ├── [8.6K] ReturnTypeInference.scala
│ │ │ │ ├── [ 17K] stringExpressions.scala
│ │ │ │ ├── [3.4K] subquery.scala
│ │ │ │ ├── [3.9K] symbols.scala
│ │ │ │ ├── [ 14K] time.scala
│ │ │ │ ├── [3.8K] TreeNode.scala
│ │ │ │ └── [2.0K] windowProperties.scala
│ │ │ ├── [4.0K] functions
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [8.6K] AggSqlFunction.scala
│ │ │ │ ├── [7.1K] ScalarSqlFunction.scala
│ │ │ │ ├── [6.8K] TableSqlFunction.scala
│ │ │ │ └── [ 34K] UserDefinedFunctionUtils.scala
│ │ │ ├── [1.4K] package.scala
│ │ │ ├── [4.0K] plan
│ │ │ │ ├── [4.0K] cost
│ │ │ │ │ ├── [1.1K] FlinkCostBase.scala
│ │ │ │ │ ├── [1.2K] FlinkCostFactoryBase.scala
│ │ │ │ │ ├── [1.6K] FlinkCostFactory.scala
│ │ │ │ │ └── [ 11K] FlinkCost.scala
│ │ │ │ ├── [4.0K] logical
│ │ │ │ │ ├── [2.8K] groupWindows.scala
│ │ │ │ │ └── [1.5K] MatchRecognize.scala
│ │ │ │ ├── [4.0K] metadata
│ │ │ │ │ ├── [ 18K] AggCallSelectivityEstimator.scala
│ │ │ │ │ ├── [1.9K] FlinkDefaultRelMetadataProvider.scala
│ │ │ │ │ ├── [ 30K] FlinkRelMdColumnInterval.scala
│ │ │ │ │ ├── [ 11K] FlinkRelMdColumnNullCount.scala
│ │ │ │ │ ├── [5.0K] FlinkRelMdColumnOriginNullCount.scala
│ │ │ │ │ ├── [ 25K] FlinkRelMdColumnUniqueness.scala
│ │ │ │ │ ├── [2.1K] FlinkRelMdCumulativeCost.scala
│ │ │ │ │ ├── [ 22K] FlinkRelMdDistinctRowCount.scala
│ │ │ │ │ ├── [4.2K] FlinkRelMdDistribution.scala
│ │ │ │ │ ├── [ 10K] FlinkRelMdFilteredColumnInterval.scala
│ │ │ │ │ ├── [ 23K] FlinkRelMdModifiedMonotonicity.scala
│ │ │ │ │ ├── [2.0K] FlinkRelMdNonCumulativeCost.scala
│ │ │ │ │ ├── [5.0K] FlinkRelMdPercentageOriginalRows.scala
│ │ │ │ │ ├── [ 14K] FlinkRelMdPopulationSize.scala
│ │ │ │ │ ├── [ 17K] FlinkRelMdRowCount.scala
│ │ │ │ │ ├── [ 11K] FlinkRelMdSelectivity.scala
│ │ │ │ │ ├── [ 17K] FlinkRelMdSize.scala
│ │ │ │ │ ├── [ 16K] FlinkRelMdUniqueGroups.scala
│ │ │ │ │ ├── [ 19K] FlinkRelMdUniqueKeys.scala
│ │ │ │ │ └── [ 46K] SelectivityEstimator.scala
│ │ │ │ ├── [4.0K] nodes
│ │ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ │ ├── [4.3K] Expand.scala
│ │ │ │ │ │ ├── [2.3K] LegacySink.scala
│ │ │ │ │ │ ├── [2.0K] LogicalExpand.scala
│ │ │ │ │ │ ├── [2.2K] LogicalLegacySink.scala
│ │ │ │ │ │ ├── [2.6K] LogicalRank.scala
│ │ │ │ │ │ ├── [2.3K] LogicalSink.scala
│ │ │ │ │ │ ├── [2.1K] LogicalTableAggregate.scala
│ │ │ │ │ │ ├── [1.9K] LogicalWatermarkAssigner.scala
│ │ │ │ │ │ ├── [2.7K] LogicalWindowAggregate.scala
│ │ │ │ │ │ ├── [3.2K] LogicalWindowTableAggregate.scala
│ │ │ │ │ │ ├── [5.1K] Rank.scala
│ │ │ │ │ │ ├── [2.6K] Sink.scala
│ │ │ │ │ │ ├── [4.0K] TableAggregate.scala
│ │ │ │ │ │ ├── [2.9K] WatermarkAssigner.scala
│ │ │ │ │ │ ├── [3.2K] WindowAggregate.scala
│ │ │ │ │ │ └── [2.7K] WindowTableAggregate.scala
│ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ ├── [3.6K] CommonCalc.scala
│ │ │ │ │ │ ├── [2.1K] CommonIntermediateTableScan.scala
│ │ │ │ │ │ ├── [ 33K] CommonLookupJoin.scala
│ │ │ │ │ │ ├── [5.0K] CommonPhysicalExchange.scala
│ │ │ │ │ │ ├── [3.6K] CommonPhysicalJoin.scala
│ │ │ │ │ │ ├── [4.4K] CommonPhysicalSink.scala
│ │ │ │ │ │ ├── [3.7K] CommonPhysicalTableSourceScan.scala
│ │ │ │ │ │ ├── [8.8K] CommonPythonBase.scala
│ │ │ │ │ │ ├── [5.2K] CommonPythonCalc.scala
│ │ │ │ │ │ └── [4.3K] CommonPythonCorrelate.scala
│ │ │ │ │ ├── [4.0K] exec
│ │ │ │ │ │ ├── [1.2K] BatchExecNode.scala
│ │ │ │ │ │ ├── [5.2K] ExecNode.scala
│ │ │ │ │ │ └── [1.1K] StreamExecNode.scala
│ │ │ │ │ ├── [2.2K] FlinkConventions.scala
│ │ │ │ │ ├── [4.6K] FlinkRelNode.scala
│ │ │ │ │ ├── [4.0K] logical
│ │ │ │ │ │ ├── [5.9K] FlinkLogicalAggregate.scala
│ │ │ │ │ │ ├── [2.8K] FlinkLogicalCalc.scala
│ │ │ │ │ │ ├── [3.2K] FlinkLogicalCorrelate.scala
│ │ │ │ │ │ ├── [3.7K] FlinkLogicalDataStreamTableScan.scala
│ │ │ │ │ │ ├── [2.8K] FlinkLogicalExpand.scala
│ │ │ │ │ │ ├── [3.2K] FlinkLogicalIntermediateTableScan.scala
│ │ │ │ │ │ ├── [3.0K] FlinkLogicalIntersect.scala
│ │ │ │ │ │ ├── [3.8K] FlinkLogicalJoin.scala
│ │ │ │ │ │ ├── [3.0K] FlinkLogicalLegacySink.scala
│ │ │ │ │ │ ├── [4.6K] FlinkLogicalLegacyTableSourceScan.scala
│ │ │ │ │ │ ├── [3.4K] FlinkLogicalMatch.scala
│ │ │ │ │ │ ├── [3.0K] FlinkLogicalMinus.scala
│ │ │ │ │ │ ├── [3.6K] FlinkLogicalOverAggregate.scala
│ │ │ │ │ │ ├── [3.9K] FlinkLogicalRank.scala
│ │ │ │ │ │ ├── [1.0K] FlinkLogicalRel.scala
│ │ │ │ │ │ ├── [3.1K] FlinkLogicalSink.scala
│ │ │ │ │ │ ├── [3.2K] FlinkLogicalSnapshot.scala
│ │ │ │ │ │ ├── [5.2K] FlinkLogicalSort.scala
│ │ │ │ │ │ ├── [2.7K] FlinkLogicalTableAggregate.scala
│ │ │ │ │ │ ├── [3.9K] FlinkLogicalTableFunctionScan.scala
│ │ │ │ │ │ ├── [4.4K] FlinkLogicalTableSourceScan.scala
│ │ │ │ │ │ ├── [3.0K] FlinkLogicalUnion.scala
│ │ │ │ │ │ ├── [3.2K] FlinkLogicalValues.scala
│ │ │ │ │ │ ├── [2.8K] FlinkLogicalWatermarkAssigner.scala
│ │ │ │ │ │ ├── [4.1K] FlinkLogicalWindowAggregate.scala
│ │ │ │ │ │ └── [3.7K] FlinkLogicalWindowTableAggregate.scala
│ │ │ │ │ └── [4.0K] physical
│ │ │ │ │ ├── [4.0K] batch
│ │ │ │ │ │ ├── [4.0K] BatchExecBoundedStreamScan.scala
│ │ │ │ │ │ ├── [5.1K] BatchExecCalcBase.scala
│ │ │ │ │ │ ├── [2.8K] BatchExecCalc.scala
│ │ │ │ │ │ ├── [7.2K] BatchExecCorrelateBase.scala
│ │ │ │ │ │ ├── [3.0K] BatchExecCorrelate.scala
│ │ │ │ │ │ ├── [7.8K] BatchExecExchange.scala
│ │ │ │ │ │ ├── [3.8K] BatchExecExpand.scala
│ │ │ │ │ │ ├── [3.3K] BatchExecGroupAggregateBase.scala
│ │ │ │ │ │ ├── [6.1K] BatchExecHashAggregateBase.scala
│ │ │ │ │ │ ├── [5.7K] BatchExecHashAggregate.scala
│ │ │ │ │ │ ├── [ 10K] BatchExecHashJoin.scala
│ │ │ │ │ │ ├── [6.4K] BatchExecHashWindowAggregateBase.scala
│ │ │ │ │ │ ├── [2.8K] BatchExecHashWindowAggregate.scala
│ │ │ │ │ │ ├── [1.7K] BatchExecIntermediateTableScan.scala
│ │ │ │ │ │ ├── [9.1K] BatchExecJoinBase.scala
│ │ │ │ │ │ ├── [7.2K] BatchExecLegacySink.scala
│ │ │ │ │ │ ├── [7.3K] BatchExecLegacyTableSourceScan.scala
│ │ │ │ │ │ ├── [4.2K] BatchExecLimit.scala
│ │ │ │ │ │ ├── [4.7K] BatchExecLocalHashAggregate.scala
│ │ │ │ │ │ ├── [2.8K] BatchExecLocalHashWindowAggregate.scala
│ │ │ │ │ │ ├── [5.1K] BatchExecLocalSortAggregate.scala
│ │ │ │ │ │ ├── [2.8K] BatchExecLocalSortWindowAggregate.scala
│ │ │ │ │ │ ├── [3.0K] BatchExecLookupJoin.scala
│ │ │ │ │ │ ├── [5.9K] BatchExecNestedLoopJoin.scala
│ │ │ │ │ │ ├── [ 26K] BatchExecOverAggregate.scala
│ │ │ │ │ │ ├── [2.5K] BatchExecPythonCalc.scala
│ │ │ │ │ │ ├── [3.0K] BatchExecPythonCorrelate.scala
│ │ │ │ │ │ ├── [ 12K] BatchExecRank.scala
│ │ │ │ │ │ ├── [3.6K] BatchExecSink.scala
│ │ │ │ │ │ ├── [4.9K] BatchExecSortAggregateBase.scala
│ │ │ │ │ │ ├── [6.2K] BatchExecSortAggregate.scala
│ │ │ │ │ │ ├── [5.9K] BatchExecSortLimit.scala
│ │ │ │ │ │ ├── [ 11K] BatchExecSortMergeJoin.scala
│ │ │ │ │ │ ├── [5.2K] BatchExecSort.scala
│ │ │ │ │ │ ├── [5.5K] BatchExecSortWindowAggregateBase.scala
│ │ │ │ │ │ ├── [2.8K] BatchExecSortWindowAggregate.scala
│ │ │ │ │ │ ├── [3.9K] BatchExecTableSourceScan.scala
│ │ │ │ │ │ ├── [4.8K] BatchExecUnion.scala
│ │ │ │ │ │ ├── [3.2K] BatchExecValues.scala
│ │ │ │ │ │ ├── [3.1K] BatchExecWindowAggregateBase.scala
│ │ │ │ │ │ └── [1.0K] BatchPhysicalRel.scala
│ │ │ │ │ ├── [1.6K] FlinkPhysicalRel.scala
│ │ │ │ │ ├── [3.5K] PhysicalLegacyTableSourceScan.scala
│ │ │ │ │ └── [4.0K] stream
│ │ │ │ │ ├── [2.2K] StreamExecCalcBase.scala
│ │ │ │ │ ├── [3.6K] StreamExecCalc.scala
│ │ │ │ │ ├── [3.5K] StreamExecCorrelateBase.scala
│ │ │ │ │ ├── [3.3K] StreamExecCorrelate.scala
│ │ │ │ │ ├── [6.3K] StreamExecDataStreamScan.scala
│ │ │ │ │ ├── [6.8K] StreamExecDeduplicate.scala
│ │ │ │ │ ├── [4.4K] StreamExecExchange.scala
│ │ │ │ │ ├── [3.7K] StreamExecExpand.scala
│ │ │ │ │ ├── [8.0K] StreamExecGlobalGroupAggregate.scala
│ │ │ │ │ ├── [2.5K] StreamExecGroupAggregateBase.scala
│ │ │ │ │ ├── [7.5K] StreamExecGroupAggregate.scala
│ │ │ │ │ ├── [6.1K] StreamExecGroupTableAggregate.scala
│ │ │ │ │ ├── [ 13K] StreamExecGroupWindowAggregateBase.scala
│ │ │ │ │ ├── [2.3K] StreamExecGroupWindowAggregate.scala
│ │ │ │ │ ├── [2.5K] StreamExecGroupWindowTableAggregate.scala
│ │ │ │ │ ├── [7.6K] StreamExecIncrementalGroupAggregate.scala
│ │ │ │ │ ├── [1.8K] StreamExecIntermediateTableScan.scala
│ │ │ │ │ ├── [ 13K] StreamExecIntervalJoin.scala
│ │ │ │ │ ├── [8.2K] StreamExecJoin.scala
│ │ │ │ │ ├── [8.8K] StreamExecLegacySink.scala
│ │ │ │ │ ├── [ 11K] StreamExecLegacyTableSourceScan.scala
│ │ │ │ │ ├── [6.3K] StreamExecLimit.scala
│ │ │ │ │ ├── [5.5K] StreamExecLocalGroupAggregate.scala
│ │ │ │ │ ├── [3.1K] StreamExecLookupJoin.scala
│ │ │ │ │ ├── [ 17K] StreamExecMatch.scala
│ │ │ │ │ ├── [4.5K] StreamExecMiniBatchAssigner.scala
│ │ │ │ │ ├── [ 16K] StreamExecOverAggregate.scala
│ │ │ │ │ ├── [2.6K] StreamExecPythonCalc.scala
│ │ │ │ │ ├── [3.2K] StreamExecPythonCorrelate.scala
│ │ │ │ │ ├── [8.4K] StreamExecRank.scala
│ │ │ │ │ ├── [4.3K] StreamExecSink.scala
│ │ │ │ │ ├── [7.8K] StreamExecSortLimit.scala
│ │ │ │ │ ├── [5.5K] StreamExecSort.scala
│ │ │ │ │ ├── [3.6K] StreamExecTableSourceScan.scala
│ │ │ │ │ ├── [ 14K] StreamExecTemporalJoin.scala
│ │ │ │ │ ├── [7.4K] StreamExecTemporalSort.scala
│ │ │ │ │ ├── [2.9K] StreamExecUnion.scala
│ │ │ │ │ ├── [2.9K] StreamExecValues.scala
│ │ │ │ │ ├── [4.5K] StreamExecWatermarkAssigner.scala
│ │ │ │ │ └── [1.2K] StreamPhysicalRel.scala
│ │ │ │ ├── [4.0K] optimize
│ │ │ │ │ ├── [3.7K] BatchCommonSubGraphBasedOptimizer.scala
│ │ │ │ │ ├── [5.2K] CommonSubGraphBasedOptimizer.scala
│ │ │ │ │ ├── [1.4K] Optimizer.scala
│ │ │ │ │ ├── [4.0K] program
│ │ │ │ │ │ ├── [1.0K] BatchOptimizeContext.scala
│ │ │ │ │ │ ├── [9.3K] FlinkBatchProgram.scala
│ │ │ │ │ │ ├── [5.3K] FlinkChainedProgram.scala
│ │ │ │ │ │ ├── [ 32K] FlinkChangelogModeInferenceProgram.scala
│ │ │ │ │ │ ├── [3.4K] FlinkDecorrelateProgram.scala
│ │ │ │ │ │ ├── [3.4K] FlinkGroupProgram.scala
│ │ │ │ │ │ ├── [3.3K] FlinkHepProgram.scala
│ │ │ │ │ │ ├── [6.4K] FlinkHepRuleSetProgram.scala
│ │ │ │ │ │ ├── [1.4K] FlinkMiniBatchIntervalTraitInitProgram.scala
│ │ │ │ │ │ ├── [1.1K] FlinkOptimizeContext.scala
│ │ │ │ │ │ ├── [1.3K] FlinkOptimizeProgram.scala
│ │ │ │ │ │ ├── [1.4K] FlinkRelTimeIndicatorProgram.scala
│ │ │ │ │ │ ├── [2.3K] FlinkRuleSetProgram.scala
│ │ │ │ │ │ ├── [8.7K] FlinkStreamProgram.scala
│ │ │ │ │ │ ├── [4.8K] FlinkVolcanoProgram.scala
│ │ │ │ │ │ └── [1.8K] StreamOptimizeContext.scala
│ │ │ │ │ ├── [ 17K] RelNodeBlock.scala
│ │ │ │ │ └── [ 13K] StreamCommonSubGraphBasedOptimizer.scala
│ │ │ │ ├── [4.0K] reuse
│ │ │ │ │ ├── [ 13K] DeadlockBreakupProcessor.scala
│ │ │ │ │ └── [8.6K] SubplanReuser.scala
│ │ │ │ ├── [4.0K] rules
│ │ │ │ │ ├── [ 15K] FlinkBatchRuleSets.scala
│ │ │ │ │ ├── [ 15K] FlinkStreamRuleSets.scala
│ │ │ │ │ ├── [4.0K] logical
│ │ │ │ │ │ ├── [4.5K] AggregateReduceGroupingRule.scala
│ │ │ │ │ │ ├── [3.3K] BatchLogicalWindowAggregateRule.scala
│ │ │ │ │ │ ├── [7.2K] CalcRankTransposeRule.scala
│ │ │ │ │ │ ├── [2.0K] CalcSnapshotTransposeRule.scala
│ │ │ │ │ │ ├── [6.6K] ConvertToNotInOrInRule.scala
│ │ │ │ │ │ ├── [ 16K] DecomposeGroupingSetsRule.scala
│ │ │ │ │ │ ├── [2.0K] EnumerableToLogicalTableScan.scala
│ │ │ │ │ │ ├── [4.0K] FlinkCalcMergeRule.scala
│ │ │ │ │ │ ├── [1.8K] FlinkLimit0RemoveRule.scala
│ │ │ │ │ │ ├── [9.6K] FlinkLogicalRankRule.scala
│ │ │ │ │ │ ├── [2.4K] FlinkPruneEmptyRules.scala
│ │ │ │ │ │ ├── [6.5K] FlinkRewriteSubQueryRule.scala
│ │ │ │ │ │ ├── [ 16K] FlinkSubQueryRemoveRule.scala
│ │ │ │ │ │ ├── [6.0K] JoinConditionEqualityTransferRule.scala
│ │ │ │ │ │ ├── [4.5K] JoinConditionTypeCoerceRule.scala
│ │ │ │ │ │ ├── [5.2K] JoinDependentConditionDerivationRule.scala
│ │ │ │ │ │ ├── [4.2K] JoinDeriveNullFilterRule.scala
│ │ │ │ │ │ ├── [9.6K] LogicalCorrelateToJoinFromTemporalTableFunctionRule.scala
│ │ │ │ │ │ ├── [5.1K] LogicalCorrelateToJoinFromTemporalTableRule.scala
│ │ │ │ │ │ ├── [7.2K] LogicalUnnestRule.scala
│ │ │ │ │ │ ├── [ 14K] LogicalWindowAggregateRuleBase.scala
│ │ │ │ │ │ ├── [6.4K] ProjectSemiAntiJoinTransposeRule.scala
│ │ │ │ │ │ ├── [7.0K] PruneAggregateCallRule.scala
│ │ │ │ │ │ ├── [6.5K] PushFilterIntoLegacyTableSourceScanRule.scala
│ │ │ │ │ │ ├── [5.2K] PushLimitIntoLegacyTableSourceScanRule.scala
│ │ │ │ │ │ ├── [ 11K] PushPartitionIntoLegacyTableSourceScanRule.scala
│ │ │ │ │ │ ├── [5.1K] PushProjectIntoLegacyTableSourceScanRule.scala
│ │ │ │ │ │ ├── [ 16K] PythonCalcSplitRule.scala
│ │ │ │ │ │ ├── [3.1K] RankNumberColumnRemoveRule.scala
│ │ │ │ │ │ ├── [2.3K] ReplaceIntersectWithSemiJoinRule.scala
│ │ │ │ │ │ ├── [2.2K] ReplaceMinusWithAntiJoinRule.scala
│ │ │ │ │ │ ├── [8.2K] RewriteCoalesceRule.scala
│ │ │ │ │ │ ├── [5.0K] RewriteIntersectAllRule.scala
│ │ │ │ │ │ ├── [3.9K] RewriteMinusAllRule.scala
│ │ │ │ │ │ ├── [4.9K] RewriteMultiJoinConditionRule.scala
│ │ │ │ │ │ ├── [3.4K] SimplifyFilterConditionRule.scala
│ │ │ │ │ │ ├── [2.3K] SimplifyJoinConditionRule.scala
│ │ │ │ │ │ ├── [ 18K] SplitAggregateRule.scala
│ │ │ │ │ │ ├── [5.9K] SplitPythonConditionFromCorrelateRule.scala
│ │ │ │ │ │ ├── [3.3K] SplitPythonConditionFromJoinRule.scala
│ │ │ │ │ │ ├── [4.0K] StreamLogicalWindowAggregateRule.scala
│ │ │ │ │ │ ├── [3.1K] WindowAggregateReduceFunctionsRule.scala
│ │ │ │ │ │ ├── [4.8K] WindowGroupReorderRule.scala
│ │ │ │ │ │ └── [ 11K] WindowPropertiesRule.scala
│ │ │ │ │ └── [4.0K] physical
│ │ │ │ │ ├── [4.0K] batch
│ │ │ │ │ │ ├── [9.1K] BatchExecAggRuleBase.scala
│ │ │ │ │ │ ├── [2.3K] BatchExecBoundedStreamScanRule.scala
│ │ │ │ │ │ ├── [2.3K] BatchExecCalcRule.scala
│ │ │ │ │ │ ├── [3.1K] BatchExecConstantTableFunctionScanRule.scala
│ │ │ │ │ │ ├── [3.5K] BatchExecCorrelateRule.scala
│ │ │ │ │ │ ├── [1.9K] BatchExecExpandRule.scala
│ │ │ │ │ │ ├── [7.3K] BatchExecHashAggRule.scala
│ │ │ │ │ │ ├── [7.7K] BatchExecHashJoinRule.scala
│ │ │ │ │ │ ├── [1.9K] BatchExecIntermediateTableScanRule.scala
│ │ │ │ │ │ ├── [4.3K] BatchExecJoinRuleBase.scala
│ │ │ │ │ │ ├── [3.7K] BatchExecLegacySinkRule.scala
│ │ │ │ │ │ ├── [2.7K] BatchExecLegacyTableSourceScanRule.scala
│ │ │ │ │ │ ├── [3.8K] BatchExecLimitRule.scala
│ │ │ │ │ │ ├── [3.3K] BatchExecLookupJoinRule.scala
│ │ │ │ │ │ ├── [2.5K] BatchExecNestedLoopJoinRuleBase.scala
│ │ │ │ │ │ ├── [3.5K] BatchExecNestedLoopJoinRule.scala
│ │ │ │ │ │ ├── [7.2K] BatchExecOverAggregateRule.scala
│ │ │ │ │ │ ├── [2.3K] BatchExecPythonCalcRule.scala
│ │ │ │ │ │ ├── [4.2K] BatchExecRankRule.scala
│ │ │ │ │ │ ├── [3.0K] BatchExecSingleRowJoinRule.scala
│ │ │ │ │ │ ├── [4.1K] BatchExecSinkRule.scala
│ │ │ │ │ │ ├── [7.8K] BatchExecSortAggRule.scala
│ │ │ │ │ │ ├── [4.0K] BatchExecSortLimitRule.scala
│ │ │ │ │ │ ├── [6.3K] BatchExecSortMergeJoinRule.scala
│ │ │ │ │ │ ├── [3.5K] BatchExecSortRule.scala
│ │ │ │ │ │ ├── [2.7K] BatchExecTableSourceScanRule.scala
│ │ │ │ │ │ ├── [2.1K] BatchExecUnionRule.scala
│ │ │ │ │ │ ├── [1.9K] BatchExecValuesRule.scala
│ │ │ │ │ │ ├── [ 17K] BatchExecWindowAggregateRule.scala
│ │ │ │ │ │ ├── [5.9K] EnforceLocalAggRuleBase.scala
│ │ │ │ │ │ ├── [3.0K] EnforceLocalHashAggRule.scala
│ │ │ │ │ │ ├── [4.1K] EnforceLocalSortAggRule.scala
│ │ │ │ │ │ ├── [2.5K] RemoveRedundantLocalHashAggRule.scala
│ │ │ │ │ │ ├── [2.3K] RemoveRedundantLocalRankRule.scala
│ │ │ │ │ │ └── [4.3K] RemoveRedundantLocalSortAggRule.scala
│ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ └── [6.8K] CommonLookupJoinRule.scala
│ │ │ │ │ ├── [7.3K] FlinkExpandConversionRule.scala
│ │ │ │ │ └── [4.0K] stream
│ │ │ │ │ ├── [8.3K] IncrementalAggregateRule.scala
│ │ │ │ │ ├── [6.5K] MiniBatchIntervalInferRule.scala
│ │ │ │ │ ├── [2.3K] StreamExecCalcRule.scala
│ │ │ │ │ ├── [3.1K] StreamExecConstantTableFunctionScanRule.scala
│ │ │ │ │ ├── [5.3K] StreamExecCorrelateRule.scala
│ │ │ │ │ ├── [2.3K] StreamExecDataStreamScanRule.scala
│ │ │ │ │ ├── [5.2K] StreamExecDeduplicateRule.scala
│ │ │ │ │ ├── [2.0K] StreamExecExpandRule.scala
│ │ │ │ │ ├── [2.9K] StreamExecGroupAggregateRule.scala
│ │ │ │ │ ├── [2.5K] StreamExecGroupTableAggregateRule.scala
│ │ │ │ │ ├── [3.8K] StreamExecGroupWindowAggregateRule.scala
│ │ │ │ │ ├── [3.8K] StreamExecGroupWindowTableAggregateRule.scala
│ │ │ │ │ ├── [2.0K] StreamExecIntermediateTableScanRule.scala
│ │ │ │ │ ├── [5.0K] StreamExecIntervalJoinRule.scala
│ │ │ │ │ ├── [5.2K] StreamExecJoinRule.scala
│ │ │ │ │ ├── [3.6K] StreamExecLegacySinkRule.scala
│ │ │ │ │ ├── [2.7K] StreamExecLegacyTableSourceScanRule.scala
│ │ │ │ │ ├── [2.4K] StreamExecLimitRule.scala
│ │ │ │ │ ├── [3.3K] StreamExecLookupJoinRule.scala
│ │ │ │ │ ├── [5.7K] StreamExecMatchRule.scala
│ │ │ │ │ ├── [2.9K] StreamExecOverAggregateRule.scala
│ │ │ │ │ ├── [2.4K] StreamExecPythonCalcRule.scala
│ │ │ │ │ ├── [2.8K] StreamExecRankRule.scala
│ │ │ │ │ ├── [3.9K] StreamExecSinkRule.scala
│ │ │ │ │ ├── [2.7K] StreamExecSortLimitRule.scala
│ │ │ │ │ ├── [2.5K] StreamExecSortRule.scala
│ │ │ │ │ ├── [2.6K] StreamExecTableSourceScanRule.scala
│ │ │ │ │ ├── [3.7K] StreamExecTemporalJoinRule.scala
│ │ │ │ │ ├── [3.7K] StreamExecTemporalSortRule.scala
│ │ │ │ │ ├── [2.1K] StreamExecUnionRule.scala
│ │ │ │ │ ├── [1.9K] StreamExecValuesRule.scala
│ │ │ │ │ ├── [2.2K] StreamExecWatermarkAssignerRule.scala
│ │ │ │ │ └── [7.1K] TwoStageOptimizedAggregateRule.scala
│ │ │ │ ├── [4.0K] schema
│ │ │ │ │ ├── [ 11K] CatalogSourceTable.scala
│ │ │ │ │ ├── [5.7K] DataStreamTable.scala
│ │ │ │ │ ├── [2.6K] DeferredTypeFlinkTableFunction.scala
│ │ │ │ │ ├── [2.3K] FlinkTableFunction.scala
│ │ │ │ │ ├── [2.2K] GenericRelDataType.scala
│ │ │ │ │ ├── [2.0K] IntermediateRelTable.scala
│ │ │ │ │ ├── [9.4K] LegacyCatalogSourceTable.scala
│ │ │ │ │ ├── [4.9K] LegacyTableSourceTable.scala
│ │ │ │ │ ├── [3.8K] TableSourceTable.scala
│ │ │ │ │ ├── [1.8K] TimeIndicatorRelDataType.scala
│ │ │ │ │ └── [2.7K] TypedFlinkTableFunction.scala
│ │ │ │ ├── [4.0K] stats
│ │ │ │ │ ├── [6.2K] FlinkStatistic.scala
│ │ │ │ │ └── [ 13K] ValueInterval.scala
│ │ │ │ ├── [4.0K] trait
│ │ │ │ │ ├── [9.5K] FlinkRelDistribution.scala
│ │ │ │ │ ├── [1.7K] FlinkRelDistributionTraitDef.scala
│ │ │ │ │ ├── [1.7K] MiniBatchIntervalTraitDef.scala
│ │ │ │ │ ├── [3.5K] MiniBatchIntervalTrait.scala
│ │ │ │ │ ├── [1.8K] ModifyKindSetTraitDef.scala
│ │ │ │ │ ├── [3.0K] ModifyKindSetTrait.scala
│ │ │ │ │ ├── [1.5K] RelModifiedMonotonicity.scala
│ │ │ │ │ ├── [2.3K] TraitUtil.scala
│ │ │ │ │ ├── [1.7K] UpdateKindTraitDef.scala
│ │ │ │ │ └── [4.2K] UpdateKindTrait.scala
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [ 25K] AggFunctionFactory.scala
│ │ │ │ ├── [ 29K] AggregateUtil.scala
│ │ │ │ ├── [5.0K] aggregation.scala
│ │ │ │ ├── [4.8K] ChangelogPlanUtils.scala
│ │ │ │ ├── [ 12K] ColumnIntervalUtil.scala
│ │ │ │ ├── [5.4K] CorrelateUtil.scala
│ │ │ │ ├── [ 14K] ExecNodePlanDumper.scala
│ │ │ │ ├── [9.5K] ExpandUtil.scala
│ │ │ │ ├── [5.4K] ExplodeFunctionUtil.scala
│ │ │ │ ├── [ 29K] FlinkRelMdUtil.scala
│ │ │ │ ├── [ 18K] FlinkRelOptUtil.scala
│ │ │ │ ├── [ 15K] FlinkRexUtil.scala
│ │ │ │ ├── [ 19K] IntervalJoinUtil.scala
│ │ │ │ ├── [4.7K] JoinUtil.scala
│ │ │ │ ├── [1.6K] LookupJoinUtil.scala
│ │ │ │ ├── [2.0K] MatchUtil.scala
│ │ │ │ ├── [4.4K] OverAggregateUtil.scala
│ │ │ │ ├── [6.7K] PartitionPruner.scala
│ │ │ │ ├── [4.6K] PythonUtil.scala
│ │ │ │ ├── [4.6K] RankProcessStrategy.scala
│ │ │ │ ├── [ 11K] RankUtil.scala
│ │ │ │ ├── [ 28K] RelExplainUtil.scala
│ │ │ │ ├── [7.1K] RelShuttles.scala
│ │ │ │ ├── [4.2K] RelTreeWriterImpl.scala
│ │ │ │ ├── [2.1K] RexDefaultVisitor.scala
│ │ │ │ ├── [ 17K] RexNodeExtractor.scala
│ │ │ │ ├── [2.1K] RexNodeRewriter.scala
│ │ │ │ ├── [5.4K] ScanUtil.scala
│ │ │ │ ├── [4.7K] SetOpRewriteUtil.scala
│ │ │ │ ├── [4.5K] SortUtil.scala
│ │ │ │ ├── [3.6K] TemporalJoinUtil.scala
│ │ │ │ ├── [2.0K] UpdatingPlanChecker.scala
│ │ │ │ └── [7.9K] WindowEmitStrategy.scala
│ │ │ ├── [4.0K] sinks
│ │ │ │ ├── [2.9K] CollectTableSink.scala
│ │ │ │ ├── [2.2K] DataStreamTableSink.scala
│ │ │ │ └── [ 17K] TableSinkUtils.scala
│ │ │ ├── [4.0K] sources
│ │ │ │ └── [ 12K] TableSourceUtil.scala
│ │ │ ├── [4.0K] typeutils
│ │ │ │ ├── [5.9K] TypeCoercion.scala
│ │ │ │ └── [ 10K] TypeInfoCheckUtils.scala
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [2.1K] JavaScalaConversionUtil.scala
│ │ │ │ ├── [1.0K] Logging.scala
│ │ │ │ ├── [2.5K] PlanUtil.scala
│ │ │ │ └── [4.0K] python
│ │ │ │ └── [ 14K] PythonTableUtils.scala
│ │ │ └── [4.0K] validate
│ │ │ └── [1.6K] ValidationResult.scala
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ └── [2.3K] EnvironmentTest.java
│ │ │ └── [4.0K] planner
│ │ │ ├── [4.0K] catalog
│ │ │ │ ├── [4.0K] CatalogConstraintTest.java
│ │ │ │ ├── [4.5K] CatalogITCase.java
│ │ │ │ ├── [ 16K] CatalogStatisticsTest.java
│ │ │ │ └── [6.6K] JavaCatalogTableTest.java
│ │ │ ├── [4.0K] codegen
│ │ │ │ ├── [4.0K] agg
│ │ │ │ │ └── [2.1K] TestLongAvgFunc.java
│ │ │ │ ├── [3.7K] EqualiserCodeGeneratorTest.java
│ │ │ │ ├── [2.8K] LongHashJoinGeneratorTest.java
│ │ │ │ └── [ 21K] SortCodeGeneratorTest.java
│ │ │ ├── [4.0K] delegation
│ │ │ │ └── [2.4K] BatchExecutorTest.java
│ │ │ ├── [4.0K] expressions
│ │ │ │ ├── [4.0K] converter
│ │ │ │ │ └── [8.6K] ExpressionConverterTest.java
│ │ │ │ └── [3.6K] TypeConversionsTest.java
│ │ │ ├── [4.0K] factories
│ │ │ │ ├── [ 16K] TestValuesRuntimeFunctions.java
│ │ │ │ └── [ 21K] TestValuesTableFactory.java
│ │ │ ├── [4.0K] functions
│ │ │ │ └── [4.0K] aggfunctions
│ │ │ │ ├── [ 12K] AggFunctionTestBase.java
│ │ │ │ ├── [6.3K] FirstLastValueAggFunctionWithOrderTestBase.java
│ │ │ │ ├── [ 11K] FirstValueAggFunctionWithOrderTest.java
│ │ │ │ ├── [9.9K] FirstValueAggFunctionWithoutOrderTest.java
│ │ │ │ ├── [ 12K] FirstValueWithRetractAggFunctionWithOrderTest.java
│ │ │ │ ├── [ 11K] FirstValueWithRetractAggFunctionWithoutOrderTest.java
│ │ │ │ ├── [ 11K] LastValueAggFunctionWithOrderTest.java
│ │ │ │ ├── [9.9K] LastValueAggFunctionWithoutOrderTest.java
│ │ │ │ ├── [ 12K] LastValueWithRetractAggFunctionWithOrderTest.java
│ │ │ │ ├── [ 11K] LastValueWithRetractAggFunctionWithoutOrderTest.java
│ │ │ │ ├── [2.6K] ListAggWithRetractAggFunctionTest.java
│ │ │ │ ├── [6.2K] ListAggWsWithRetractAggFunctionTest.java
│ │ │ │ ├── [ 16K] MaxWithRetractAggFunctionTest.java
│ │ │ │ └── [ 16K] MinWithRetractAggFunctionTest.java
│ │ │ ├── [4.0K] operations
│ │ │ │ ├── [ 24K] MergeTableLikeUtilTest.java
│ │ │ │ └── [ 46K] SqlToOperationConverterTest.java
│ │ │ ├── [4.0K] plan
│ │ │ │ ├── [3.9K] FlinkCalciteCatalogReaderTest.java
│ │ │ │ ├── [4.0K] rules
│ │ │ │ │ └── [4.0K] logical
│ │ │ │ │ └── [3.8K] PushProjectIntoTableSourceScanRuleTest.java
│ │ │ │ ├── [4.0K] stream
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ └── [4.1K] NullTypeTest.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ └── [6.9K] ValuesTest.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ └── [ 10K] JavaUserDefinedAggFunctions.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [4.0K] stream
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ └── [ 33K] FunctionITCase.java
│ │ │ │ │ └── [4.0K] table
│ │ │ │ │ ├── [1.5K] BlackHoleConnectorITCase.java
│ │ │ │ │ ├── [5.5K] FunctionITCase.java
│ │ │ │ │ ├── [4.0K] PrintConnectorITCase.java
│ │ │ │ │ └── [ 13K] ValuesITCase.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [2.0K] BatchAbstractTestBase.java
│ │ │ │ ├── [8.1K] FailingCollectionSource.java
│ │ │ │ ├── [2.9K] JavaPojos.java
│ │ │ │ ├── [ 10K] JavaUserDefinedAggFunctions.java
│ │ │ │ ├── [6.9K] JavaUserDefinedScalarFunctions.java
│ │ │ │ ├── [3.4K] JavaUserDefinedTableFunctions.java
│ │ │ │ └── [2.0K] RangeInputFormat.java
│ │ │ └── [4.0K] utils
│ │ │ ├── [2.1K] CatalogTableStatisticsConverterTest.java
│ │ │ ├── [ 25K] DiffRepository.java
│ │ │ ├── [5.8K] OperationMatchers.java
│ │ │ ├── [2.8K] PlannerMocks.java
│ │ │ ├── [3.6K] RowDataTestUtil.java
│ │ │ ├── [4.1K] ShuffleModeUtilsTest.java
│ │ │ ├── [4.8K] TestCsvFileSystemFormatFactory.java
│ │ │ ├── [6.4K] TestRowDataCsvInputFormat.java
│ │ │ └── [ 18K] XmlOutput.java
│ │ ├── [4.0K] resources
│ │ │ ├── [4.0K] digest
│ │ │ │ ├── [1.4K] testGetDigestWithDynamicFunction.out
│ │ │ │ └── [1.4K] testGetDigestWithDynamicFunctionView.out
│ │ │ ├── [4.0K] explain
│ │ │ │ ├── [1.1K] testExecuteSqlWithExplainInsert.out
│ │ │ │ ├── [ 790] testExecuteSqlWithExplainSelect.out
│ │ │ │ ├── [1.1K] testExplainSqlWithInsert.out
│ │ │ │ ├── [ 828] testExplainSqlWithSelect.out
│ │ │ │ ├── [1013] testFromToDataStreamAndSqlUpdate.out
│ │ │ │ ├── [1.1K] testSqlUpdateAndToDataStream.out
│ │ │ │ ├── [2.1K] testStatementSet.out
│ │ │ │ └── [1.1K] testStreamTableEnvironmentExplain.out
│ │ │ ├── [1.3K] log4j2-test.properties
│ │ │ ├── [1.1K] logback-test.xml
│ │ │ ├── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 914] org.apache.flink.table.factories.Factory
│ │ │ │ └── [2.3K] org.apache.flink.table.factories.TableFactory
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ └── [ 25K] ExplainTest.xml
│ │ │ │ └── [4.0K] stream
│ │ │ │ └── [ 37K] ExplainTest.xml
│ │ │ ├── [4.0K] executor
│ │ │ │ └── [2.2K] BatchExecutorTest.xml
│ │ │ └── [4.0K] planner
│ │ │ ├── [4.0K] catalog
│ │ │ │ └── [7.3K] JavaCatalogTableTest.xml
│ │ │ └── [4.0K] plan
│ │ │ ├── [4.0K] batch
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ ├── [4.0K] agg
│ │ │ │ │ │ ├── [ 52K] AggregateReduceGroupingTest.xml
│ │ │ │ │ │ ├── [ 48K] DistinctAggregateTest.xml
│ │ │ │ │ │ ├── [ 56K] GroupingSetsTest.xml
│ │ │ │ │ │ ├── [ 84K] HashAggregateTest.xml
│ │ │ │ │ │ ├── [ 37K] OverAggregateTest.xml
│ │ │ │ │ │ ├── [ 98K] SortAggregateTest.xml
│ │ │ │ │ │ └── [ 82K] WindowAggregateTest.xml
│ │ │ │ │ ├── [ 15K] CalcTest.xml
│ │ │ │ │ ├── [ 47K] DagOptimizationTest.xml
│ │ │ │ │ ├── [ 19K] DeadlockBreakupTest.xml
│ │ │ │ │ ├── [4.0K] join
│ │ │ │ │ │ ├── [ 17K] BroadcastHashJoinTest.xml
│ │ │ │ │ │ ├── [101K] BroadcastHashSemiAntiJoinTest.xml
│ │ │ │ │ │ ├── [ 40K] JoinReorderTest.xml
│ │ │ │ │ │ ├── [ 32K] LookupJoinTest.xml
│ │ │ │ │ │ ├── [ 34K] NestedLoopJoinTest.xml
│ │ │ │ │ │ ├── [133K] NestedLoopSemiAntiJoinTest.xml
│ │ │ │ │ │ ├── [136K] SemiAntiJoinTest.xml
│ │ │ │ │ │ ├── [ 21K] ShuffledHashJoinTest.xml
│ │ │ │ │ │ ├── [106K] ShuffledHashSemiAntiJoinTest.xml
│ │ │ │ │ │ ├── [ 12K] SingleRowJoinTest.xml
│ │ │ │ │ │ ├── [ 22K] SortMergeJoinTest.xml
│ │ │ │ │ │ └── [106K] SortMergeSemiAntiJoinTest.xml
│ │ │ │ │ ├── [3.5K] LegacySinkTest.xml
│ │ │ │ │ ├── [ 13K] LegacyTableSourceTest.xml
│ │ │ │ │ ├── [ 11K] LimitTest.xml
│ │ │ │ │ ├── [5.0K] PartitionableSinkTest.xml
│ │ │ │ │ ├── [ 11K] RankTest.xml
│ │ │ │ │ ├── [ 38K] RemoveCollationTest.xml
│ │ │ │ │ ├── [ 68K] RemoveShuffleTest.xml
│ │ │ │ │ ├── [ 14K] SetOperatorsTest.xml
│ │ │ │ │ ├── [8.0K] SortLimitTest.xml
│ │ │ │ │ ├── [4.4K] SortTest.xml
│ │ │ │ │ ├── [ 60K] SubplanReuseTest.xml
│ │ │ │ │ ├── [4.9K] TableScanTest.xml
│ │ │ │ │ ├── [3.5K] TableSinkTest.xml
│ │ │ │ │ ├── [2.9K] TableSourceTest.xml
│ │ │ │ │ ├── [4.1K] UnionTest.xml
│ │ │ │ │ ├── [ 14K] UnnestTest.xml
│ │ │ │ │ └── [3.9K] ValuesTest.xml
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.9K] AggregateTest.xml
│ │ │ │ ├── [ 10K] CalcTest.xml
│ │ │ │ ├── [1.4K] ColumnFunctionsTest.xml
│ │ │ │ ├── [8.7K] CorrelateTest.xml
│ │ │ │ ├── [6.8K] GroupWindowTest.xml
│ │ │ │ ├── [ 14K] JoinTest.xml
│ │ │ │ ├── [1.5K] PythonCalcTest.xml
│ │ │ │ ├── [ 10K] SetOperatorsTest.xml
│ │ │ │ └── [4.0K] stringexpr
│ │ │ │ ├── [9.5K] CorrelateStringExpressionTest.xml
│ │ │ │ └── [1.9K] SetOperatorsTest.xml
│ │ │ ├── [4.0K] common
│ │ │ │ └── [6.9K] ViewsExpandingTest.xml
│ │ │ ├── [4.0K] hint
│ │ │ │ └── [ 15K] OptionsHintTest.xml
│ │ │ ├── [4.0K] rules
│ │ │ │ ├── [4.0K] logical
│ │ │ │ │ ├── [ 47K] AggregateReduceGroupingRuleTest.xml
│ │ │ │ │ ├── [ 15K] CalcPruneAggregateCallRuleTest.xml
│ │ │ │ │ ├── [2.3K] CalcPythonCorrelateTransposeRuleTest.xml
│ │ │ │ │ ├── [ 12K] CalcRankTransposeRuleTest.xml
│ │ │ │ │ ├── [ 21K] ConvertToNotInOrInRuleTest.xml
│ │ │ │ │ ├── [9.4K] DecomposeGroupingSetsRuleTest.xml
│ │ │ │ │ ├── [2.6K] ExpressionReductionRulesTest.xml
│ │ │ │ │ ├── [ 36K] FlinkAggregateExpandDistinctAggregatesRuleTest.xml
│ │ │ │ │ ├── [ 12K] FlinkAggregateJoinTransposeRuleTest.xml
│ │ │ │ │ ├── [ 23K] FlinkAggregateRemoveRuleTest.xml
│ │ │ │ │ ├── [3.2K] FlinkCalcMergeRuleTest.xml
│ │ │ │ │ ├── [ 18K] FlinkFilterJoinRuleTest.xml
│ │ │ │ │ ├── [5.7K] FlinkJoinPushExpressionsRuleTest.xml
│ │ │ │ │ ├── [3.8K] FlinkJoinToMultiJoinRuleTest.xml
│ │ │ │ │ ├── [7.7K] FlinkLimit0RemoveRuleTest.xml
│ │ │ │ │ ├── [ 17K] FlinkLogicalRankRuleForConstantRangeTest.xml
│ │ │ │ │ ├── [ 15K] FlinkLogicalRankRuleForRangeEndTest.xml
│ │ │ │ │ ├── [2.3K] FlinkPruneEmptyRulesTest.xml
│ │ │ │ │ ├── [3.1K] FlinkSemiAntiJoinFilterTransposeRuleTest.xml
│ │ │ │ │ ├── [ 57K] FlinkSemiAntiJoinJoinTransposeRuleTest.xml
│ │ │ │ │ ├── [4.3K] FlinkSemiAntiJoinProjectTransposeRuleTest.xml
│ │ │ │ │ ├── [ 16K] JoinConditionEqualityTransferRuleTest.xml
│ │ │ │ │ ├── [ 19K] JoinConditionTypeCoerceRuleTest.xml
│ │ │ │ │ ├── [ 11K] JoinDependentConditionDerivationRuleTest.xml
│ │ │ │ │ ├── [ 11K] JoinDeriveNullFilterRuleTest.xml
│ │ │ │ │ ├── [ 13K] LogicalUnnestRuleTest.xml
│ │ │ │ │ ├── [ 14K] ProjectPruneAggregateCallRuleTest.xml
│ │ │ │ │ ├── [ 20K] ProjectSemiAntiJoinTransposeRuleTest.xml
│ │ │ │ │ ├── [ 14K] PushFilterIntoLegacyTableSourceScanRuleTest.xml
│ │ │ │ │ ├── [ 31K] PushPartitionIntoLegacyTableSourceScanRuleTest.xml
│ │ │ │ │ ├── [6.2K] PushProjectIntoLegacyTableSourceScanRuleTest.xml
│ │ │ │ │ ├── [5.5K] PushProjectIntoTableSourceScanRuleTest.xml
│ │ │ │ │ ├── [ 18K] PythonCalcSplitRuleTest.xml
│ │ │ │ │ ├── [6.0K] PythonCorrelateSplitRuleTest.xml
│ │ │ │ │ ├── [5.1K] RankNumberColumnRemoveRuleTest.xml
│ │ │ │ │ ├── [5.2K] ReplaceIntersectWithSemiJoinRuleTest.xml
│ │ │ │ │ ├── [5.2K] ReplaceMinusWithAntiJoinRuleTest.xml
│ │ │ │ │ ├── [9.5K] RewriteCoalesceRuleTest.xml
│ │ │ │ │ ├── [8.2K] RewriteIntersectAllRuleTest.xml
│ │ │ │ │ ├── [7.7K] RewriteMinusAllRuleTest.xml
│ │ │ │ │ ├── [ 17K] RewriteMultiJoinConditionRuleTest.xml
│ │ │ │ │ ├── [ 11K] SimplifyFilterConditionRuleTest.xml
│ │ │ │ │ ├── [3.5K] SimplifyJoinConditionRuleTest.xml
│ │ │ │ │ ├── [ 20K] SplitAggregateRuleTest.xml
│ │ │ │ │ ├── [2.3K] SplitPythonConditionFromCorrelateRuleTest.xml
│ │ │ │ │ ├── [3.5K] SplitPythonConditionFromJoinRuleTest.xml
│ │ │ │ │ ├── [4.0K] subquery
│ │ │ │ │ │ ├── [ 29K] FlinkRewriteSubQueryRuleTest.xml
│ │ │ │ │ │ ├── [108K] SubQueryAntiJoinTest.xml
│ │ │ │ │ │ ├── [4.9K] SubqueryCorrelateVariablesValidationTest.xml
│ │ │ │ │ │ └── [216K] SubQuerySemiJoinTest.xml
│ │ │ │ │ └── [ 22K] WindowGroupReorderRuleTest.xml
│ │ │ │ └── [4.0K] physical
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ ├── [7.4K] EnforceLocalHashAggRuleTest.xml
│ │ │ │ │ ├── [ 11K] EnforceLocalSortAggRuleTest.xml
│ │ │ │ │ ├── [6.2K] RemoveRedundantLocalHashAggRuleTest.xml
│ │ │ │ │ ├── [5.1K] RemoveRedundantLocalRankRuleTest.xml
│ │ │ │ │ └── [6.7K] RemoveRedundantLocalSortAggRuleTest.xml
│ │ │ │ └── [4.0K] stream
│ │ │ │ └── [ 10K] ChangelogModeInferenceTest.xml
│ │ │ └── [4.0K] stream
│ │ │ ├── [4.0K] sql
│ │ │ │ ├── [4.0K] agg
│ │ │ │ │ ├── [ 29K] AggregateTest.xml
│ │ │ │ │ ├── [ 98K] DistinctAggregateTest.xml
│ │ │ │ │ ├── [ 45K] GroupingSetsTest.xml
│ │ │ │ │ ├── [ 31K] IncrementalAggregateTest.xml
│ │ │ │ │ ├── [ 24K] OverAggregateTest.xml
│ │ │ │ │ ├── [8.1K] TwoStageAggregateTest.xml
│ │ │ │ │ └── [ 32K] WindowAggregateTest.xml
│ │ │ │ ├── [ 15K] CalcTest.xml
│ │ │ │ ├── [ 58K] DagOptimizationTest.xml
│ │ │ │ ├── [9.6K] DeduplicateTest.xml
│ │ │ │ ├── [4.0K] join
│ │ │ │ │ ├── [ 25K] IntervalJoinTest.xml
│ │ │ │ │ ├── [ 45K] JoinReorderTest.xml
│ │ │ │ │ ├── [ 59K] JoinTest.xml
│ │ │ │ │ ├── [ 37K] LookupJoinTest.xml
│ │ │ │ │ ├── [137K] SemiAntiJoinTest.xml
│ │ │ │ │ └── [7.6K] TemporalJoinTest.xml
│ │ │ │ ├── [ 15K] LegacySinkTest.xml
│ │ │ │ ├── [ 20K] LegacyTableSourceTest.xml
│ │ │ │ ├── [ 21K] LimitTest.xml
│ │ │ │ ├── [ 36K] MiniBatchIntervalInferTest.xml
│ │ │ │ ├── [7.9K] ModifiedMonotonicityTest.xml
│ │ │ │ ├── [4.3K] PartitionableSinkTest.xml
│ │ │ │ ├── [ 35K] RankTest.xml
│ │ │ │ ├── [ 15K] RelTimeIndicatorConverterTest.xml
│ │ │ │ ├── [ 14K] SetOperatorsTest.xml
│ │ │ │ ├── [ 45K] SortLimitTest.xml
│ │ │ │ ├── [7.3K] SortTest.xml
│ │ │ │ ├── [ 35K] SubplanReuseTest.xml
│ │ │ │ ├── [ 11K] TableScanTest.xml
│ │ │ │ ├── [ 11K] TableSinkTest.xml
│ │ │ │ ├── [6.8K] TableSourceTest.xml
│ │ │ │ ├── [4.1K] UnionTest.xml
│ │ │ │ ├── [ 13K] UnnestTest.xml
│ │ │ │ └── [3.8K] ValuesTest.xml
│ │ │ └── [4.0K] table
│ │ │ ├── [ 12K] AggregateTest.xml
│ │ │ ├── [ 11K] CalcTest.xml
│ │ │ ├── [ 10K] ColumnFunctionsTest.xml
│ │ │ ├── [ 14K] CorrelateTest.xml
│ │ │ ├── [4.2K] GroupWindowTableAggregateTest.xml
│ │ │ ├── [ 23K] GroupWindowTest.xml
│ │ │ ├── [ 19K] JoinTest.xml
│ │ │ ├── [8.3K] LegacyTableSourceTest.xml
│ │ │ ├── [ 18K] OverWindowTest.xml
│ │ │ ├── [1.5K] PythonCalcTest.xml
│ │ │ ├── [6.5K] SetOperatorsTest.xml
│ │ │ ├── [6.0K] TableAggregateTest.xml
│ │ │ ├── [7.3K] TableSourceTest.xml
│ │ │ ├── [5.0K] TemporalTableJoinTest.xml
│ │ │ ├── [6.1K] TwoStageAggregateTest.xml
│ │ │ └── [ 13K] ValuesTest.xml
│ │ └── [4.0K] scala
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] table
│ │ ├── [4.0K] api
│ │ │ ├── [4.0K] batch
│ │ │ │ └── [4.5K] ExplainTest.scala
│ │ │ ├── [4.0K] stream
│ │ │ │ ├── [6.5K] ExplainTest.scala
│ │ │ │ └── [4.0K] sql
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [9.9K] MatchRecognizeValidationTest.scala
│ │ │ │ └── [2.1K] OverWindowValidationTest.scala
│ │ │ ├── [ 26K] TableEnvironmentITCase.scala
│ │ │ ├── [ 38K] TableEnvironmentTest.scala
│ │ │ ├── [5.3K] TableITCase.scala
│ │ │ └── [4.0K] validation
│ │ │ └── [2.4K] UserDefinedFunctionValidationTest.scala
│ │ └── [4.0K] planner
│ │ ├── [4.0K] calcite
│ │ │ ├── [8.8K] CalciteConfigBuilderTest.scala
│ │ │ └── [3.5K] FlinkTypeFactoryTest.scala
│ │ ├── [4.0K] catalog
│ │ │ ├── [ 31K] CatalogTableITCase.scala
│ │ │ ├── [2.1K] CatalogTableTest.scala
│ │ │ └── [8.6K] CatalogViewITCase.scala
│ │ ├── [4.0K] codegen
│ │ │ ├── [4.0K] agg
│ │ │ │ ├── [3.9K] AggsHandlerCodeGeneratorTest.scala
│ │ │ │ ├── [5.4K] AggTestBase.scala
│ │ │ │ └── [4.0K] batch
│ │ │ │ ├── [3.3K] AggWithoutKeysTest.scala
│ │ │ │ ├── [3.7K] BatchAggTestBase.scala
│ │ │ │ ├── [4.6K] HashAggCodeGeneratorTest.scala
│ │ │ │ └── [4.1K] SortAggCodeGeneratorTest.scala
│ │ │ ├── [2.1K] HashCodeGeneratorTest.scala
│ │ │ ├── [3.9K] ProjectionCodeGeneratorTest.scala
│ │ │ └── [7.0K] WatermarkGeneratorCodeGenTest.scala
│ │ ├── [4.0K] expressions
│ │ │ ├── [9.7K] ArrayTypeTest.scala
│ │ │ ├── [4.3K] CompositeAccessTest.scala
│ │ │ ├── [ 31K] DecimalTypeTest.scala
│ │ │ ├── [4.5K] JsonFunctionsTest.scala
│ │ │ ├── [2.1K] KeywordParseTest.scala
│ │ │ ├── [4.0K] LiteralTest.scala
│ │ │ ├── [8.0K] MapTypeTest.scala
│ │ │ ├── [2.7K] NonDeterministicTests.scala
│ │ │ ├── [4.1K] RowTypeTest.scala
│ │ │ ├── [ 94K] ScalarFunctionsTest.scala
│ │ │ ├── [3.9K] ScalarOperatorsTest.scala
│ │ │ ├── [ 12K] SqlExpressionTest.scala
│ │ │ ├── [ 37K] TemporalTypesTest.scala
│ │ │ ├── [ 14K] UserDefinedScalarFunctionTest.scala
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [2.6K] ArrayTypeTestBase.scala
│ │ │ │ ├── [3.6K] CompositeTypeTestBase.scala
│ │ │ │ ├── [9.1K] ExpressionTestBase.scala
│ │ │ │ ├── [3.0K] MapTypeTestBase.scala
│ │ │ │ ├── [2.5K] RowTypeTestBase.scala
│ │ │ │ ├── [2.8K] ScalarOperatorsTestBase.scala
│ │ │ │ ├── [6.2K] ScalarTypesTestBase.scala
│ │ │ │ └── [ 11K] userDefinedScalarFunctions.scala
│ │ │ └── [4.0K] validation
│ │ │ ├── [2.8K] ArrayTypeValidationTest.scala
│ │ │ ├── [1.9K] CompositeAccessValidationTest.scala
│ │ │ ├── [1.9K] MapTypeValidationTest.scala
│ │ │ ├── [1.4K] RowTypeValidationTest.scala
│ │ │ ├── [7.9K] ScalarFunctionsValidationTest.scala
│ │ │ └── [2.6K] ScalarOperatorsValidationTest.scala
│ │ ├── [4.0K] factories
│ │ │ └── [4.0K] utils
│ │ │ └── [8.7K] TestCollectionTableFactory.scala
│ │ ├── [4.0K] match
│ │ │ ├── [5.9K] PatternTranslatorTestBase.scala
│ │ │ └── [ 11K] PatternTranslatorTest.scala
│ │ ├── [4.0K] plan
│ │ │ ├── [4.0K] batch
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ ├── [4.0K] agg
│ │ │ │ │ │ ├── [1.0K] AggregateReduceGroupingTest.scala
│ │ │ │ │ │ ├── [6.3K] AggregateTestBase.scala
│ │ │ │ │ │ ├── [1010] DistinctAggregateTest.scala
│ │ │ │ │ │ ├── [ 13K] GroupingSetsTest.scala
│ │ │ │ │ │ ├── [2.7K] HashAggregateTest.scala
│ │ │ │ │ │ ├── [10.0K] OverAggregateTest.scala
│ │ │ │ │ │ ├── [2.0K] SortAggregateTest.scala
│ │ │ │ │ │ └── [ 14K] WindowAggregateTest.scala
│ │ │ │ │ ├── [4.6K] CalcTest.scala
│ │ │ │ │ ├── [ 22K] DagOptimizationTest.scala
│ │ │ │ │ ├── [7.5K] DeadlockBreakupTest.scala
│ │ │ │ │ ├── [4.0K] join
│ │ │ │ │ │ ├── [4.9K] BroadcastHashJoinTest.scala
│ │ │ │ │ │ ├── [6.8K] BroadcastHashSemiAntiJoinTest.scala
│ │ │ │ │ │ ├── [1.1K] JoinReorderTest.scala
│ │ │ │ │ │ ├── [6.6K] JoinTestBase.scala
│ │ │ │ │ │ ├── [ 12K] LookupJoinTest.scala
│ │ │ │ │ │ ├── [1.2K] NestedLoopJoinTest.scala
│ │ │ │ │ │ ├── [1.2K] NestedLoopSemiAntiJoinTest.scala
│ │ │ │ │ │ ├── [ 19K] SemiAntiJoinTestBase.scala
│ │ │ │ │ │ ├── [1002] SemiAntiJoinTest.scala
│ │ │ │ │ │ ├── [4.1K] ShuffledHashJoinTest.scala
│ │ │ │ │ │ ├── [6.1K] ShuffledHashSemiAntiJoinTest.scala
│ │ │ │ │ │ ├── [3.4K] SingleRowJoinTest.scala
│ │ │ │ │ │ ├── [3.7K] SortMergeJoinTest.scala
│ │ │ │ │ │ ├── [6.1K] SortMergeSemiAntiJoinTest.scala
│ │ │ │ │ │ └── [3.9K] TemporalJoinTest.scala
│ │ │ │ │ ├── [2.6K] LegacySinkTest.scala
│ │ │ │ │ ├── [6.9K] LegacyTableSourceTest.scala
│ │ │ │ │ ├── [3.8K] LimitTest.scala
│ │ │ │ │ ├── [2.7K] PartitionableSinkTest.scala
│ │ │ │ │ ├── [5.8K] RankTest.scala
│ │ │ │ │ ├── [ 13K] RemoveCollationTest.scala
│ │ │ │ │ ├── [ 20K] RemoveShuffleTest.scala
│ │ │ │ │ ├── [4.5K] SetOperatorsTest.scala
│ │ │ │ │ ├── [3.7K] SortLimitTest.scala
│ │ │ │ │ ├── [3.0K] SortTest.scala
│ │ │ │ │ ├── [ 15K] SubplanReuseTest.scala
│ │ │ │ │ ├── [4.9K] TableScanTest.scala
│ │ │ │ │ ├── [2.7K] TableSinkTest.scala
│ │ │ │ │ ├── [2.3K] TableSourceTest.scala
│ │ │ │ │ ├── [2.0K] UnionTest.scala
│ │ │ │ │ ├── [1.1K] UnnestTest.scala
│ │ │ │ │ └── [1.5K] ValuesTest.scala
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [2.3K] AggregateTest.scala
│ │ │ │ ├── [6.3K] CalcTest.scala
│ │ │ │ ├── [1.6K] ColumnFunctionsTest.scala
│ │ │ │ ├── [4.2K] CorrelateTest.scala
│ │ │ │ ├── [5.0K] GroupWindowTest.scala
│ │ │ │ ├── [6.8K] JoinTest.scala
│ │ │ │ ├── [1.5K] PythonCalcTest.scala
│ │ │ │ ├── [4.0K] SetOperatorsTest.scala
│ │ │ │ ├── [4.0K] stringexpr
│ │ │ │ │ ├── [ 10K] AggregateStringExpressionTest.scala
│ │ │ │ │ ├── [ 10K] CalcStringExpressionTest.scala
│ │ │ │ │ ├── [3.0K] CorrelateStringExpressionTest.scala
│ │ │ │ │ ├── [6.6K] JoinStringExpressionTest.scala
│ │ │ │ │ ├── [1.7K] SetOperatorsTest.scala
│ │ │ │ │ └── [2.0K] SortStringExpressionTest.scala
│ │ │ │ ├── [2.4K] TemporalTableJoinTest.scala
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [6.9K] AggregateValidationTest.scala
│ │ │ │ ├── [3.4K] CalcValidationTest.scala
│ │ │ │ ├── [1.7K] CorrelateValidationTest.scala
│ │ │ │ ├── [6.0K] GroupWindowValidationTest.scala
│ │ │ │ ├── [5.1K] JoinValidationTest.scala
│ │ │ │ ├── [2.0K] OverWindowValidationTest.scala
│ │ │ │ ├── [4.3K] SetOperatorsValidationTest.scala
│ │ │ │ └── [2.2K] SortValidationTest.scala
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [ 10K] AggregateReduceGroupingTestBase.scala
│ │ │ │ ├── [7.5K] DistinctAggregateTestBase.scala
│ │ │ │ ├── [7.0K] JoinReorderTestBase.scala
│ │ │ │ ├── [3.3K] TableFactoryTest.scala
│ │ │ │ ├── [4.2K] UnnestTestBase.scala
│ │ │ │ └── [8.4K] ViewsExpandingTest.scala
│ │ │ ├── [4.0K] cost
│ │ │ │ └── [7.2K] FlinkCostTest.scala
│ │ │ ├── [4.0K] hint
│ │ │ │ └── [6.4K] OptionsHintTest.scala
│ │ │ ├── [4.0K] metadata
│ │ │ │ ├── [ 29K] AggCallSelectivityEstimatorTest.scala
│ │ │ │ ├── [ 31K] FlinkRelMdColumnIntervalTest.scala
│ │ │ │ ├── [ 12K] FlinkRelMdColumnNullCountTest.scala
│ │ │ │ ├── [6.1K] FlinkRelMdColumnOriginNullCountTest.scala
│ │ │ │ ├── [ 32K] FlinkRelMdColumnUniquenessTest.scala
│ │ │ │ ├── [2.0K] FlinkRelMdCumulativeCostTest.scala
│ │ │ │ ├── [ 38K] FlinkRelMdDistinctRowCountTest.scala
│ │ │ │ ├── [5.0K] FlinkRelMdDistributionTest.scala
│ │ │ │ ├── [ 11K] FlinkRelMdFilteredColumnIntervalTest.scala
│ │ │ │ ├── [ 90K] FlinkRelMdHandlerTestBase.scala
│ │ │ │ ├── [ 12K] FlinkRelMdModifiedMonotonicityTest.scala
│ │ │ │ ├── [2.0K] FlinkRelMdNonCumulativeCostTest.scala
│ │ │ │ ├── [3.7K] FlinkRelMdPercentageOriginalRowsTest.scala
│ │ │ │ ├── [ 20K] FlinkRelMdPopulationSizeTest.scala
│ │ │ │ ├── [6.7K] FlinkRelMdRowCollationTest.scala
│ │ │ │ ├── [9.4K] FlinkRelMdRowCountTest.scala
│ │ │ │ ├── [ 25K] FlinkRelMdSelectivityTest.scala
│ │ │ │ ├── [7.4K] FlinkRelMdSizeTest.scala
│ │ │ │ ├── [ 32K] FlinkRelMdUniqueGroupsTest.scala
│ │ │ │ ├── [ 11K] FlinkRelMdUniqueKeysTest.scala
│ │ │ │ ├── [6.3K] MetadataHandlerConsistencyTest.scala
│ │ │ │ ├── [ 10K] MetadataTestUtil.scala
│ │ │ │ └── [ 48K] SelectivityEstimatorTest.scala
│ │ │ ├── [4.0K] optimize
│ │ │ │ └── [4.0K] program
│ │ │ │ ├── [5.8K] FlinkChainedProgramTest.scala
│ │ │ │ ├── [3.9K] FlinkHepRuleSetProgramTest.scala
│ │ │ │ └── [1.7K] FlinkVolcanoProgramTest.scala
│ │ │ ├── [4.0K] rules
│ │ │ │ ├── [4.0K] logical
│ │ │ │ │ ├── [1.6K] AggregateReduceGroupingRuleTest.scala
│ │ │ │ │ ├── [2.0K] CalcPruneAggregateCallRuleTest.scala
│ │ │ │ │ ├── [2.6K] CalcPythonCorrelateTransposeRuleTest.scala
│ │ │ │ │ ├── [5.7K] CalcRankTransposeRuleTest.scala
│ │ │ │ │ ├── [5.5K] ConvertToNotInOrInRuleTest.scala
│ │ │ │ │ ├── [4.3K] DecomposeGroupingSetsRuleTest.scala
│ │ │ │ │ ├── [2.3K] ExpressionReductionRulesTest.scala
│ │ │ │ │ ├── [1.6K] FlinkAggregateExpandDistinctAggregatesRuleTest.scala
│ │ │ │ │ ├── [5.1K] FlinkAggregateJoinTransposeRuleTest.scala
│ │ │ │ │ ├── [7.8K] FlinkAggregateRemoveRuleTest.scala
│ │ │ │ │ ├── [3.2K] FlinkCalcMergeRuleTest.scala
│ │ │ │ │ ├── [5.0K] FlinkFilterJoinRuleTest.scala
│ │ │ │ │ ├── [2.8K] FlinkJoinPushExpressionsRuleTest.scala
│ │ │ │ │ ├── [2.6K] FlinkJoinToMultiJoinRuleTest.scala
│ │ │ │ │ ├── [3.1K] FlinkLimit0RemoveRuleTest.scala
│ │ │ │ │ ├── [5.9K] FlinkLogicalRankRuleForConstantRangeTest.scala
│ │ │ │ │ ├── [5.5K] FlinkLogicalRankRuleForRangeEndTest.scala
│ │ │ │ │ ├── [2.5K] FlinkPruneEmptyRulesTest.scala
│ │ │ │ │ ├── [2.6K] FlinkSemiAntiJoinFilterTransposeRuleTest.scala
│ │ │ │ │ ├── [ 13K] FlinkSemiAntiJoinJoinTransposeRuleTest.scala
│ │ │ │ │ ├── [2.8K] FlinkSemiAntiJoinProjectTransposeRuleTest.scala
│ │ │ │ │ ├── [4.5K] JoinConditionEqualityTransferRuleTest.scala
│ │ │ │ │ ├── [4.0K] JoinConditionTypeCoerceRuleTest.scala
│ │ │ │ │ ├── [4.0K] JoinDependentConditionDerivationRuleTest.scala
│ │ │ │ │ ├── [4.3K] JoinDeriveNullFilterRuleTest.scala
│ │ │ │ │ ├── [1.9K] LogicalUnnestRuleTest.scala
│ │ │ │ │ ├── [2.0K] ProjectPruneAggregateCallRuleTest.scala
│ │ │ │ │ ├── [5.0K] ProjectSemiAntiJoinTransposeRuleTest.scala
│ │ │ │ │ ├── [5.1K] PruneAggregateCallRuleTestBase.scala
│ │ │ │ │ ├── [5.3K] PushFilterIntoLegacyTableSourceScanRuleTest.scala
│ │ │ │ │ ├── [5.9K] PushPartitionIntoLegacyTableSourceScanRuleTest.scala
│ │ │ │ │ ├── [5.0K] PushProjectIntoLegacyTableSourceScanRuleTest.scala
│ │ │ │ │ ├── [6.6K] PythonCalcSplitRuleTest.scala
│ │ │ │ │ ├── [3.5K] PythonCorrelateSplitRuleTest.scala
│ │ │ │ │ ├── [2.8K] RankNumberColumnRemoveRuleTest.scala
│ │ │ │ │ ├── [2.5K] ReplaceIntersectWithSemiJoinRuleTest.scala
│ │ │ │ │ ├── [2.5K] ReplaceMinusWithAntiJoinRuleTest.scala
│ │ │ │ │ ├── [4.5K] RewriteCoalesceRuleTest.scala
│ │ │ │ │ ├── [2.5K] RewriteIntersectAllRuleTest.scala
│ │ │ │ │ ├── [2.5K] RewriteMinusAllRuleTest.scala
│ │ │ │ │ ├── [5.0K] RewriteMultiJoinConditionRuleTest.scala
│ │ │ │ │ ├── [3.9K] SimplifyFilterConditionRuleTest.scala
│ │ │ │ │ ├── [2.5K] SimplifyJoinConditionRuleTest.scala
│ │ │ │ │ ├── [5.0K] SplitAggregateRuleTest.scala
│ │ │ │ │ ├── [2.7K] SplitPythonConditionFromCorrelateRuleTest.scala
│ │ │ │ │ ├── [2.9K] SplitPythonConditionFromJoinRuleTest.scala
│ │ │ │ │ ├── [4.0K] subquery
│ │ │ │ │ │ ├── [7.8K] FlinkRewriteSubQueryRuleTest.scala
│ │ │ │ │ │ ├── [ 27K] SubQueryAntiJoinTest.scala
│ │ │ │ │ │ ├── [4.0K] SubqueryCorrelateVariablesValidationTest.scala
│ │ │ │ │ │ ├── [ 60K] SubQuerySemiJoinTest.scala
│ │ │ │ │ │ └── [1.8K] SubQueryTestBase.scala
│ │ │ │ │ └── [5.6K] WindowGroupReorderRuleTest.scala
│ │ │ │ └── [4.0K] physical
│ │ │ │ ├── [4.0K] batch
│ │ │ │ │ ├── [2.0K] EnforceLocalAggRuleTestBase.scala
│ │ │ │ │ ├── [3.2K] EnforceLocalHashAggRuleTest.scala
│ │ │ │ │ ├── [3.8K] EnforceLocalSortAggRuleTest.scala
│ │ │ │ │ ├── [3.2K] RemoveRedundantLocalHashAggRuleTest.scala
│ │ │ │ │ ├── [2.1K] RemoveRedundantLocalRankRuleTest.scala
│ │ │ │ │ └── [2.9K] RemoveRedundantLocalSortAggRuleTest.scala
│ │ │ │ └── [4.0K] stream
│ │ │ │ └── [3.3K] ChangelogModeInferenceTest.scala
│ │ │ ├── [4.0K] schema
│ │ │ │ └── [1.4K] TimeIndicatorRelDataTypeTest.scala
│ │ │ ├── [4.0K] stats
│ │ │ │ └── [ 21K] ValueIntervalTest.scala
│ │ │ ├── [4.0K] stream
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ ├── [4.0K] agg
│ │ │ │ │ │ ├── [8.5K] AggregateTest.scala
│ │ │ │ │ │ ├── [6.6K] DistinctAggregateTest.scala
│ │ │ │ │ │ ├── [ 13K] GroupingSetsTest.scala
│ │ │ │ │ │ ├── [1.8K] IncrementalAggregateTest.scala
│ │ │ │ │ │ ├── [ 13K] OverAggregateTest.scala
│ │ │ │ │ │ ├── [2.6K] TwoStageAggregateTest.scala
│ │ │ │ │ │ └── [ 14K] WindowAggregateTest.scala
│ │ │ │ │ ├── [4.6K] CalcTest.scala
│ │ │ │ │ ├── [ 27K] DagOptimizationTest.scala
│ │ │ │ │ ├── [5.5K] DeduplicateTest.scala
│ │ │ │ │ ├── [4.0K] join
│ │ │ │ │ │ ├── [ 15K] IntervalJoinTest.scala
│ │ │ │ │ │ ├── [1.1K] JoinReorderTest.scala
│ │ │ │ │ │ ├── [ 10K] JoinTest.scala
│ │ │ │ │ │ ├── [ 23K] LookupJoinTest.scala
│ │ │ │ │ │ ├── [ 18K] SemiAntiJoinTest.scala
│ │ │ │ │ │ └── [4.9K] TemporalJoinTest.scala
│ │ │ │ │ ├── [8.7K] LegacySinkTest.scala
│ │ │ │ │ ├── [ 15K] LegacyTableSourceTest.scala
│ │ │ │ │ ├── [5.6K] LimitTest.scala
│ │ │ │ │ ├── [ 14K] MiniBatchIntervalInferTest.scala
│ │ │ │ │ ├── [9.6K] ModifiedMonotonicityTest.scala
│ │ │ │ │ ├── [2.5K] PartitionableSinkTest.scala
│ │ │ │ │ ├── [ 17K] RankTest.scala
│ │ │ │ │ ├── [5.2K] RelTimeIndicatorConverterTest.scala
│ │ │ │ │ ├── [4.3K] SetOperatorsTest.scala
│ │ │ │ │ ├── [9.7K] SortLimitTest.scala
│ │ │ │ │ ├── [2.3K] SortTest.scala
│ │ │ │ │ ├── [9.9K] SubplanReuseTest.scala
│ │ │ │ │ ├── [ 11K] TableScanTest.scala
│ │ │ │ │ ├── [9.1K] TableSinkTest.scala
│ │ │ │ │ ├── [5.5K] TableSourceTest.scala
│ │ │ │ │ ├── [2.0K] UnionTest.scala
│ │ │ │ │ ├── [1.1K] UnnestTest.scala
│ │ │ │ │ └── [1.5K] ValuesTest.scala
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [6.1K] AggregateTest.scala
│ │ │ │ ├── [5.0K] CalcTest.scala
│ │ │ │ ├── [7.2K] ColumnFunctionsTest.scala
│ │ │ │ ├── [5.9K] CorrelateTest.scala
│ │ │ │ ├── [2.2K] GroupWindowTableAggregateTest.scala
│ │ │ │ ├── [ 13K] GroupWindowTest.scala
│ │ │ │ ├── [8.3K] JoinTest.scala
│ │ │ │ ├── [ 11K] LegacyTableSourceTest.scala
│ │ │ │ ├── [6.8K] OverWindowTest.scala
│ │ │ │ ├── [1.5K] PythonCalcTest.scala
│ │ │ │ ├── [2.9K] SetOperatorsTest.scala
│ │ │ │ ├── [4.0K] stringexpr
│ │ │ │ │ ├── [7.2K] AggregateStringExpressionTest.scala
│ │ │ │ │ ├── [5.7K] CalcStringExpressionTest.scala
│ │ │ │ │ ├── [6.9K] CorrelateStringExpressionTest.scala
│ │ │ │ │ ├── [7.5K] GroupWindowStringExpressionTest.scala
│ │ │ │ │ ├── [6.0K] GroupWindowTableAggregateStringExpressionTest.scala
│ │ │ │ │ ├── [9.1K] OverWindowStringExpressionTest.scala
│ │ │ │ │ ├── [1.9K] SetOperatorsStringExpressionTest.scala
│ │ │ │ │ └── [3.4K] TableAggregateStringExpressionTest.scala
│ │ │ │ ├── [3.0K] TableAggregateTest.scala
│ │ │ │ ├── [6.5K] TableSourceTest.scala
│ │ │ │ ├── [6.3K] TemporalTableJoinTest.scala
│ │ │ │ ├── [3.5K] TwoStageAggregateTest.scala
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [5.4K] AggregateValidationTest.scala
│ │ │ │ ├── [5.2K] CalcValidationTest.scala
│ │ │ │ ├── [6.4K] CorrelateValidationTest.scala
│ │ │ │ ├── [3.2K] GroupWindowTableAggregateValidationTest.scala
│ │ │ │ ├── [ 11K] GroupWindowValidationTest.scala
│ │ │ │ ├── [4.8K] LegacyTableSinkValidationTest.scala
│ │ │ │ ├── [5.6K] OverWindowValidationTest.scala
│ │ │ │ ├── [3.2K] SetOperatorsValidationTest.scala
│ │ │ │ ├── [5.1K] TableAggregateValidationTest.scala
│ │ │ │ ├── [3.9K] TemporalTableJoinValidationTest.scala
│ │ │ │ └── [4.5K] UnsupportedOpsValidationTest.scala
│ │ │ ├── [4.0K] trait
│ │ │ │ └── [7.4K] FlinkRelDistributionTest.scala
│ │ │ └── [4.0K] utils
│ │ │ ├── [7.8K] FlinkRelOptUtilTest.scala
│ │ │ ├── [ 18K] FlinkRexUtilTest.scala
│ │ │ ├── [1.7K] InputTypeBuilder.scala
│ │ │ ├── [3.0K] lookupFunctions.scala
│ │ │ ├── [6.6K] PartitionPrunerTest.scala
│ │ │ ├── [1.5K] pojos.scala
│ │ │ ├── [ 33K] RexNodeExtractorTest.scala
│ │ │ ├── [2.5K] RexNodeRewriterTest.scala
│ │ │ ├── [3.6K] RexNodeTestBase.scala
│ │ │ └── [2.6K] TestContextTableFactory.scala
│ │ ├── [4.0K] runtime
│ │ │ ├── [4.0K] batch
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ ├── [4.0K] agg
│ │ │ │ │ │ ├── [ 25K] AggregateITCaseBase.scala
│ │ │ │ │ │ ├── [8.1K] AggregateJoinTransposeITCase.scala
│ │ │ │ │ │ ├── [ 19K] AggregateReduceGroupingITCase.scala
│ │ │ │ │ │ ├── [8.5K] AggregateRemoveITCase.scala
│ │ │ │ │ │ ├── [ 11K] DistinctAggregateITCaseBase.scala
│ │ │ │ │ │ ├── [ 23K] GroupingSetsITCase.scala
│ │ │ │ │ │ ├── [1.2K] HashAggITCase.scala
│ │ │ │ │ │ ├── [1.3K] HashDistinctAggregateITCase.scala
│ │ │ │ │ │ ├── [4.0K] PruneAggregateCallITCase.scala
│ │ │ │ │ │ ├── [ 16K] SortAggITCase.scala
│ │ │ │ │ │ ├── [2.9K] SortDistinctAggregateITCase.scala
│ │ │ │ │ │ └── [ 28K] WindowAggregateITCase.scala
│ │ │ │ │ ├── [1.5K] BatchFileSystemITCaseBase.scala
│ │ │ │ │ ├── [ 40K] CalcITCase.scala
│ │ │ │ │ ├── [8.5K] CorrelateITCase2.scala
│ │ │ │ │ ├── [ 12K] CorrelateITCase.scala
│ │ │ │ │ ├── [ 13K] DecimalITCase.scala
│ │ │ │ │ ├── [1.5K] FileSystemTestCsvITCase.scala
│ │ │ │ │ ├── [4.0K] join
│ │ │ │ │ │ ├── [5.9K] InnerJoinITCase.scala
│ │ │ │ │ │ ├── [5.9K] JoinConditionTypeCoerceITCase.scala
│ │ │ │ │ │ ├── [2.1K] JoinITCaseHelper.scala
│ │ │ │ │ │ ├── [ 31K] JoinITCase.scala
│ │ │ │ │ │ ├── [ 11K] JoinWithoutKeyITCase.scala
│ │ │ │ │ │ ├── [8.9K] LookupJoinITCase.scala
│ │ │ │ │ │ ├── [ 12K] OuterJoinITCase.scala
│ │ │ │ │ │ ├── [2.0K] ScalarQueryITCase.scala
│ │ │ │ │ │ └── [ 17K] SemiJoinITCase.scala
│ │ │ │ │ ├── [ 11K] LegacyTableSourceITCase.scala
│ │ │ │ │ ├── [3.0K] Limit0RemoveITCase.scala
│ │ │ │ │ ├── [3.1K] LimitITCase.scala
│ │ │ │ │ ├── [ 19K] MiscITCase.scala
│ │ │ │ │ ├── [ 68K] OverWindowITCase.scala
│ │ │ │ │ ├── [ 14K] PartitionableSinkITCase.scala
│ │ │ │ │ ├── [5.5K] RankITCase.scala
│ │ │ │ │ ├── [4.7K] SetOperatorsITCase.scala
│ │ │ │ │ ├── [3.9K] SortLimitITCase.scala
│ │ │ │ │ ├── [3.7K] TableScanITCase.scala
│ │ │ │ │ ├── [7.5K] TableSourceITCase.scala
│ │ │ │ │ ├── [8.2K] TimestampITCase.scala
│ │ │ │ │ ├── [4.6K] UnionITCase.scala
│ │ │ │ │ ├── [8.0K] UnnestITCase.scala
│ │ │ │ │ └── [1.2K] ValuesITCase.scala
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [ 16K] AggregationITCase.scala
│ │ │ │ ├── [ 23K] CalcITCase.scala
│ │ │ │ ├── [ 12K] CorrelateITCase.scala
│ │ │ │ ├── [ 11K] DecimalITCase.scala
│ │ │ │ ├── [ 14K] GroupWindowITCase.scala
│ │ │ │ ├── [ 16K] JoinITCase.scala
│ │ │ │ ├── [6.6K] LegacyTableSinkITCase.scala
│ │ │ │ ├── [ 33K] OverWindowITCase.scala
│ │ │ │ ├── [6.9K] SetOperatorsITCase.scala
│ │ │ │ ├── [3.4K] SortITCase.scala
│ │ │ │ └── [6.0K] TableSinkITCase.scala
│ │ │ ├── [9.4K] FileSystemITCaseBase.scala
│ │ │ ├── [4.0K] harness
│ │ │ │ ├── [6.2K] AbstractTwoInputStreamOperatorWithTTLTest.scala
│ │ │ │ ├── [5.2K] GroupAggregateHarnessTest.scala
│ │ │ │ ├── [5.2K] HarnessTestBase.scala
│ │ │ │ ├── [ 37K] OverWindowHarnessTest.scala
│ │ │ │ └── [6.7K] TableAggregateHarnessTest.scala
│ │ │ ├── [4.0K] stream
│ │ │ │ ├── [6.5K] FsStreamingSinkITCaseBase.scala
│ │ │ │ ├── [4.0K] sql
│ │ │ │ │ ├── [ 40K] AggregateITCase.scala
│ │ │ │ │ ├── [9.9K] AggregateRemoveITCase.scala
│ │ │ │ │ ├── [ 11K] AsyncLookupJoinITCase.scala
│ │ │ │ │ ├── [ 11K] CalcITCase.scala
│ │ │ │ │ ├── [6.1K] ChangelogSourceITCase.scala
│ │ │ │ │ ├── [ 13K] CorrelateITCase.scala
│ │ │ │ │ ├── [4.4K] DeduplicateITCase.scala
│ │ │ │ │ ├── [1.7K] FsStreamingSinkTestCsvITCase.scala
│ │ │ │ │ ├── [ 30K] IntervalJoinITCase.scala
│ │ │ │ │ ├── [ 38K] JoinITCase.scala
│ │ │ │ │ ├── [ 16K] LegacyTableSourceITCase.scala
│ │ │ │ │ ├── [6.5K] Limit0RemoveITCase.scala
│ │ │ │ │ ├── [3.3K] LimitITCase.scala
│ │ │ │ │ ├── [ 15K] LookupJoinITCase.scala
│ │ │ │ │ ├── [ 27K] MatchRecognizeITCase.scala
│ │ │ │ │ ├── [ 36K] OverWindowITCase.scala
│ │ │ │ │ ├── [4.5K] PruneAggregateCallITCase.scala
│ │ │ │ │ ├── [ 39K] RankITCase.scala
│ │ │ │ │ ├── [ 15K] SemiAntiJoinStreamITCase.scala
│ │ │ │ │ ├── [4.6K] SetOperatorsITCase.scala
│ │ │ │ │ ├── [6.7K] SortITCase.scala
│ │ │ │ │ ├── [3.3K] SortLimitITCase.scala
│ │ │ │ │ ├── [ 12K] SplitAggregateITCase.scala
│ │ │ │ │ ├── [2.0K] StreamFileSystemITCaseBase.scala
│ │ │ │ │ ├── [1.5K] StreamFileSystemTestCsvITCase.scala
│ │ │ │ │ ├── [5.1K] StreamTableEnvironmentITCase.scala
│ │ │ │ │ ├── [6.0K] TableScanITCase.scala
│ │ │ │ │ ├── [8.4K] TableSourceITCase.scala
│ │ │ │ │ ├── [9.8K] TemporalJoinITCase.scala
│ │ │ │ │ ├── [6.1K] TemporalSortITCase.scala
│ │ │ │ │ ├── [6.2K] TimeAttributeITCase.scala
│ │ │ │ │ ├── [6.1K] TimestampITCase.scala
│ │ │ │ │ ├── [ 10K] UnnestITCase.scala
│ │ │ │ │ ├── [1.8K] ValuesITCase.scala
│ │ │ │ │ └── [ 14K] WindowAggregateITCase.scala
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [ 13K] AggregateITCase.scala
│ │ │ │ ├── [ 16K] CalcITCase.scala
│ │ │ │ ├── [ 12K] CorrelateITCase.scala
│ │ │ │ ├── [ 12K] GroupWindowITCase.scala
│ │ │ │ ├── [ 14K] GroupWindowTableAggregateITCase.scala
│ │ │ │ ├── [ 47K] JoinITCase.scala
│ │ │ │ ├── [ 21K] LegacyTableSinkITCase.scala
│ │ │ │ ├── [6.7K] MiniBatchGroupWindowITCase.scala
│ │ │ │ ├── [ 15K] OverWindowITCase.scala
│ │ │ │ ├── [5.1K] RetractionITCase.scala
│ │ │ │ ├── [5.9K] SetOperatorsITCase.scala
│ │ │ │ ├── [3.9K] SubQueryITCase.scala
│ │ │ │ ├── [6.3K] TableAggregateITCase.scala
│ │ │ │ └── [ 20K] TableSinkITCase.scala
│ │ │ └── [4.0K] utils
│ │ │ ├── [ 11K] BatchTableEnvUtil.scala
│ │ │ ├── [ 18K] BatchTestBase.scala
│ │ │ ├── [ 14K] CollectionBatchExecTable.scala
│ │ │ ├── [7.7K] InMemoryLookupableTableSource.scala
│ │ │ ├── [1.9K] SortTestUtils.scala
│ │ │ ├── [3.0K] StreamingTestBase.scala
│ │ │ ├── [3.0K] StreamingWithAggTestBase.scala
│ │ │ ├── [2.6K] StreamingWithMiniBatchTestBase.scala
│ │ │ ├── [9.2K] StreamingWithStateTestBase.scala
│ │ │ ├── [2.1K] StreamTableEnvUtil.scala
│ │ │ ├── [ 17K] StreamTestSink.scala
│ │ │ ├── [1.5K] TableEnvUtil.scala
│ │ │ ├── [ 20K] TestData.scala
│ │ │ ├── [4.3K] TestSinkUtil.scala
│ │ │ ├── [4.0K] TimeTestUtil.scala
│ │ │ └── [ 13K] UserDefinedFunctionTestUtils.scala
│ │ └── [4.0K] utils
│ │ ├── [ 10K] AvgAggFunction.scala
│ │ ├── [7.1K] ColumnIntervalUtilTest.scala
│ │ ├── [2.4K] CountAggFunction.scala
│ │ ├── [1.7K] DateTimeTestUtil.scala
│ │ ├── [1.4K] LogicalPlanFormatUtils.scala
│ │ ├── [7.6K] MemoryTableSourceSinkUtil.scala
│ │ ├── [5.0K] SumAggFunction.scala
│ │ ├── [ 43K] TableTestBase.scala
│ │ ├── [4.6K] TestLimitableTableSource.scala
│ │ ├── [ 46K] testTableSourceSinks.scala
│ │ ├── [5.4K] UserDefinedAggFunctions.scala
│ │ ├── [7.9K] UserDefinedTableAggFunctions.scala
│ │ └── [ 14K] UserDefinedTableFunctions.scala
│ ├── [4.0K] flink-table-runtime-blink
│ │ ├── [5.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ └── [4.0K] table
│ │ │ │ ├── [4.0K] data
│ │ │ │ │ ├── [4.0K] binary
│ │ │ │ │ │ ├── [2.1K] BinaryRowDataUtil.java
│ │ │ │ │ │ └── [ 34K] BinaryStringDataUtil.java
│ │ │ │ │ ├── [6.0K] BoxedWrapperRowData.java
│ │ │ │ │ ├── [6.8K] ColumnarArrayData.java
│ │ │ │ │ ├── [5.8K] ColumnarRowData.java
│ │ │ │ │ ├── [4.0K] conversion
│ │ │ │ │ │ ├── [1.5K] ArrayBooleanArrayConverter.java
│ │ │ │ │ │ ├── [1.5K] ArrayByteArrayConverter.java
│ │ │ │ │ │ ├── [1.5K] ArrayDoubleArrayConverter.java
│ │ │ │ │ │ ├── [1.5K] ArrayFloatArrayConverter.java
│ │ │ │ │ │ ├── [1.4K] ArrayIntArrayConverter.java
│ │ │ │ │ │ ├── [1.5K] ArrayLongArrayConverter.java
│ │ │ │ │ │ ├── [7.2K] ArrayObjectArrayConverter.java
│ │ │ │ │ │ ├── [1.5K] ArrayShortArrayConverter.java
│ │ │ │ │ │ ├── [2.3K] DataStructureConverter.java
│ │ │ │ │ │ ├── [ 11K] DataStructureConverters.java
│ │ │ │ │ │ ├── [1.5K] DateDateConverter.java
│ │ │ │ │ │ ├── [1.5K] DateLocalDateConverter.java
│ │ │ │ │ │ ├── [1.4K] DayTimeIntervalDurationConverter.java
│ │ │ │ │ │ ├── [2.1K] DecimalBigDecimalConverter.java
│ │ │ │ │ │ ├── [1.2K] IdentityConverter.java
│ │ │ │ │ │ ├── [1.5K] LocalZonedTimestampInstantConverter.java
│ │ │ │ │ │ ├── [1.5K] LocalZonedTimestampIntConverter.java
│ │ │ │ │ │ ├── [1.5K] LocalZonedTimestampLongConverter.java
│ │ │ │ │ │ ├── [4.5K] MapMapConverter.java
│ │ │ │ │ │ ├── [2.1K] RawByteArrayConverter.java
│ │ │ │ │ │ ├── [2.1K] RawObjectConverter.java
│ │ │ │ │ │ ├── [3.4K] RowRowConverter.java
│ │ │ │ │ │ ├── [1.5K] StringByteArrayConverter.java
│ │ │ │ │ │ ├── [1.5K] StringStringConverter.java
│ │ │ │ │ │ ├── [ 10K] StructuredObjectConverter.java
│ │ │ │ │ │ ├── [1.5K] TimeLocalTimeConverter.java
│ │ │ │ │ │ ├── [1.3K] TimeLongConverter.java
│ │ │ │ │ │ ├── [1.5K] TimestampLocalDateTimeConverter.java
│ │ │ │ │ │ ├── [1.5K] TimestampTimestampConverter.java
│ │ │ │ │ │ ├── [1.5K] TimeTimeConverter.java
│ │ │ │ │ │ └── [2.8K] YearMonthIntervalPeriodConverter.java
│ │ │ │ │ ├── [9.8K] DecimalDataUtils.java
│ │ │ │ │ ├── [5.0K] JoinedRowData.java
│ │ │ │ │ ├── [4.5K] UpdatableRowData.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [ 47K] DataFormatConverters.java
│ │ │ │ │ │ ├── [1.7K] MapDataUtil.java
│ │ │ │ │ │ └── [2.2K] RowDataUtil.java
│ │ │ │ │ ├── [4.0K] vector
│ │ │ │ │ │ ├── [1023] ArrayColumnVector.java
│ │ │ │ │ │ ├── [ 980] BooleanColumnVector.java
│ │ │ │ │ │ ├── [ 968] ByteColumnVector.java
│ │ │ │ │ │ ├── [1.5K] BytesColumnVector.java
│ │ │ │ │ │ ├── [ 992] ColumnVector.java
│ │ │ │ │ │ ├── [1.0K] DecimalColumnVector.java
│ │ │ │ │ │ ├── [1.2K] Dictionary.java
│ │ │ │ │ │ ├── [ 976] DoubleColumnVector.java
│ │ │ │ │ │ ├── [ 972] FloatColumnVector.java
│ │ │ │ │ │ ├── [4.0K] heap
│ │ │ │ │ │ │ ├── [3.3K] AbstractHeapVector.java
│ │ │ │ │ │ │ ├── [1.8K] HeapBooleanVector.java
│ │ │ │ │ │ │ ├── [4.0K] HeapBytesVector.java
│ │ │ │ │ │ │ ├── [1.7K] HeapByteVector.java
│ │ │ │ │ │ │ ├── [2.7K] HeapDoubleVector.java
│ │ │ │ │ │ │ ├── [2.6K] HeapFloatVector.java
│ │ │ │ │ │ │ ├── [2.7K] HeapIntVector.java
│ │ │ │ │ │ │ ├── [2.4K] HeapLongVector.java
│ │ │ │ │ │ │ ├── [1.7K] HeapShortVector.java
│ │ │ │ │ │ │ └── [2.0K] HeapTimestampVector.java
│ │ │ │ │ │ ├── [ 964] IntColumnVector.java
│ │ │ │ │ │ ├── [ 968] LongColumnVector.java
│ │ │ │ │ │ ├── [1.0K] RowColumnVector.java
│ │ │ │ │ │ ├── [ 972] ShortColumnVector.java
│ │ │ │ │ │ ├── [1.0K] TimestampColumnVector.java
│ │ │ │ │ │ ├── [4.0K] VectorizedColumnBatch.java
│ │ │ │ │ │ └── [4.0K] writable
│ │ │ │ │ │ ├── [1.8K] AbstractWritableVector.java
│ │ │ │ │ │ ├── [1.2K] WritableBooleanVector.java
│ │ │ │ │ │ ├── [1.3K] WritableBytesVector.java
│ │ │ │ │ │ ├── [1.2K] WritableByteVector.java
│ │ │ │ │ │ ├── [1.9K] WritableColumnVector.java
│ │ │ │ │ │ ├── [1.6K] WritableDoubleVector.java
│ │ │ │ │ │ ├── [1.6K] WritableFloatVector.java
│ │ │ │ │ │ ├── [1.8K] WritableIntVector.java
│ │ │ │ │ │ ├── [1.5K] WritableLongVector.java
│ │ │ │ │ │ ├── [1.2K] WritableShortVector.java
│ │ │ │ │ │ └── [1.3K] WritableTimestampVector.java
│ │ │ │ │ └── [4.0K] writer
│ │ │ │ │ ├── [ 12K] AbstractBinaryWriter.java
│ │ │ │ │ ├── [7.6K] BinaryArrayWriter.java
│ │ │ │ │ ├── [3.4K] BinaryRowWriter.java
│ │ │ │ │ └── [8.4K] BinaryWriter.java
│ │ │ │ ├── [4.0K] filesystem
│ │ │ │ │ ├── [4.0K] DefaultPartTimeExtractor.java
│ │ │ │ │ ├── [2.2K] DynamicPartitionWriter.java
│ │ │ │ │ ├── [1.7K] EmptyMetaStoreFactory.java
│ │ │ │ │ ├── [4.8K] FileSystemCommitter.java
│ │ │ │ │ ├── [1.6K] FileSystemFactory.java
│ │ │ │ │ ├── [7.0K] FileSystemLookupFunction.java
│ │ │ │ │ ├── [9.0K] FileSystemOptions.java
│ │ │ │ │ ├── [6.9K] FileSystemOutputFormat.java
│ │ │ │ │ ├── [4.2K] FileSystemTableFactory.java
│ │ │ │ │ ├── [ 17K] FileSystemTableSink.java
│ │ │ │ │ ├── [9.9K] FileSystemTableSource.java
│ │ │ │ │ ├── [2.2K] GroupedPartitionWriter.java
│ │ │ │ │ ├── [1.8K] MetastoreCommitPolicy.java
│ │ │ │ │ ├── [1.3K] OutputFormatFactory.java
│ │ │ │ │ ├── [4.3K] PartitionCommitPolicy.java
│ │ │ │ │ ├── [1.6K] PartitionComputer.java
│ │ │ │ │ ├── [4.1K] PartitionLoader.java
│ │ │ │ │ ├── [5.8K] PartitionTempFileManager.java
│ │ │ │ │ ├── [2.0K] PartitionTimeExtractor.java
│ │ │ │ │ ├── [1.8K] PartitionWriterFactory.java
│ │ │ │ │ ├── [2.1K] PartitionWriter.java
│ │ │ │ │ ├── [3.6K] RowDataPartitionComputer.java
│ │ │ │ │ ├── [4.0K] RowPartitionComputer.java
│ │ │ │ │ ├── [2.3K] SingleDirectoryWriter.java
│ │ │ │ │ ├── [4.0K] stream
│ │ │ │ │ │ ├── [2.5K] PartitionCommitTrigger.java
│ │ │ │ │ │ ├── [5.7K] PartitionTimeCommitTigger.java
│ │ │ │ │ │ ├── [3.9K] ProcTimeCommitTigger.java
│ │ │ │ │ │ ├── [9.1K] StreamingFileCommitter.java
│ │ │ │ │ │ └── [5.7K] StreamingFileWriter.java
│ │ │ │ │ ├── [1.7K] SuccessFileCommitPolicy.java
│ │ │ │ │ └── [2.4K] TableMetaStoreFactory.java
│ │ │ │ └── [4.0K] runtime
│ │ │ │ ├── [4.0K] collector
│ │ │ │ │ ├── [2.5K] TableFunctionCollector.java
│ │ │ │ │ ├── [2.1K] TableFunctionResultFuture.java
│ │ │ │ │ └── [1.6K] WrappingCollector.java
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ ├── [4.0K] sink
│ │ │ │ │ │ ├── [1.8K] DataStructureConverterWrapper.java
│ │ │ │ │ │ └── [2.2K] SinkRuntimeProviderContext.java
│ │ │ │ │ └── [4.0K] source
│ │ │ │ │ ├── [1.9K] DataStructureConverterWrapper.java
│ │ │ │ │ ├── [2.3K] LookupRuntimeProviderContext.java
│ │ │ │ │ └── [2.1K] ScanRuntimeProviderContext.java
│ │ │ │ ├── [4.0K] context
│ │ │ │ │ ├── [1.7K] ExecutionContextImpl.java
│ │ │ │ │ └── [1.3K] ExecutionContext.java
│ │ │ │ ├── [4.0K] dataview
│ │ │ │ │ ├── [2.2K] NullAwareMapIterator.java
│ │ │ │ │ ├── [3.0K] PerKeyStateDataViewStore.java
│ │ │ │ │ ├── [4.2K] PerWindowStateDataViewStore.java
│ │ │ │ │ ├── [1.1K] StateDataView.java
│ │ │ │ │ ├── [2.3K] StateDataViewStore.java
│ │ │ │ │ ├── [3.4K] StateListView.java
│ │ │ │ │ └── [ 11K] StateMapView.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [2.1K] CleanupState.java
│ │ │ │ │ ├── [3.1K] KeyedProcessFunctionWithCleanupState.java
│ │ │ │ │ ├── [ 47K] SqlDateTimeUtils.java
│ │ │ │ │ ├── [ 30K] SqlFunctionUtils.java
│ │ │ │ │ ├── [5.2K] SqlLikeChainChecker.java
│ │ │ │ │ └── [8.4K] SqlLikeUtils.java
│ │ │ │ ├── [4.0K] generated
│ │ │ │ │ ├── [3.3K] AggsHandleFunctionBase.java
│ │ │ │ │ ├── [1.4K] AggsHandleFunction.java
│ │ │ │ │ ├── [3.9K] CompileUtils.java
│ │ │ │ │ ├── [1.2K] GeneratedAggsHandleFunction.java
│ │ │ │ │ ├── [3.0K] GeneratedClass.java
│ │ │ │ │ ├── [1.5K] GeneratedCollector.java
│ │ │ │ │ ├── [1.5K] GeneratedFunction.java
│ │ │ │ │ ├── [1.4K] GeneratedHashFunction.java
│ │ │ │ │ ├── [1.5K] GeneratedInput.java
│ │ │ │ │ ├── [1.4K] GeneratedJoinCondition.java
│ │ │ │ │ ├── [1.2K] GeneratedNamespaceAggsHandleFunction.java
│ │ │ │ │ ├── [1.2K] GeneratedNamespaceTableAggsHandleFunction.java
│ │ │ │ │ ├── [1.3K] GeneratedNormalizedKeyComputer.java
│ │ │ │ │ ├── [1.5K] GeneratedOperator.java
│ │ │ │ │ ├── [1.3K] GeneratedProjection.java
│ │ │ │ │ ├── [1.4K] GeneratedRecordComparator.java
│ │ │ │ │ ├── [1.4K] GeneratedRecordEqualiser.java
│ │ │ │ │ ├── [1.5K] GeneratedResultFuture.java
│ │ │ │ │ ├── [1.2K] GeneratedTableAggsHandleFunction.java
│ │ │ │ │ ├── [1.2K] GeneratedWatermarkGenerator.java
│ │ │ │ │ ├── [1.1K] HashFunction.java
│ │ │ │ │ ├── [1.2K] JoinCondition.java
│ │ │ │ │ ├── [2.9K] NamespaceAggsHandleFunctionBase.java
│ │ │ │ │ ├── [1.4K] NamespaceAggsHandleFunction.java
│ │ │ │ │ ├── [1.5K] NamespaceTableAggsHandleFunction.java
│ │ │ │ │ ├── [2.0K] NormalizedKeyComputer.java
│ │ │ │ │ ├── [1.1K] Projection.java
│ │ │ │ │ ├── [1.3K] RecordComparator.java
│ │ │ │ │ ├── [1.2K] RecordEqualiser.java
│ │ │ │ │ ├── [1.7K] TableAggsHandleFunction.java
│ │ │ │ │ └── [1.5K] WatermarkGenerator.java
│ │ │ │ ├── [4.0K] hashtable
│ │ │ │ │ ├── [ 17K] BaseHybridHashTable.java
│ │ │ │ │ ├── [ 23K] BinaryHashBucketArea.java
│ │ │ │ │ ├── [ 21K] BinaryHashPartition.java
│ │ │ │ │ ├── [ 24K] BinaryHashTable.java
│ │ │ │ │ ├── [7.4K] BuildSideIterator.java
│ │ │ │ │ ├── [2.7K] HashTableBloomFilter.java
│ │ │ │ │ ├── [ 29K] LongHashPartition.java
│ │ │ │ │ ├── [ 18K] LongHybridHashTable.java
│ │ │ │ │ ├── [4.9K] LookupBucketIterator.java
│ │ │ │ │ ├── [1.9K] ProbeIterator.java
│ │ │ │ │ └── [1.6K] WrappedRowIterator.java
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ ├── [2.5K] BinaryRowChannelInputViewIterator.java
│ │ │ │ │ ├── [1.5K] ChannelWithMeta.java
│ │ │ │ │ ├── [6.3K] CompressedBlockChannelReader.java
│ │ │ │ │ ├── [5.4K] CompressedBlockChannelWriter.java
│ │ │ │ │ ├── [5.1K] CompressedHeaderlessChannelReaderInputView.java
│ │ │ │ │ ├── [4.2K] CompressedHeaderlessChannelWriterOutputView.java
│ │ │ │ │ └── [3.5K] HeaderlessChannelWriterOutputView.java
│ │ │ │ ├── [4.0K] keyselector
│ │ │ │ │ ├── [2.1K] BinaryRowDataKeySelector.java
│ │ │ │ │ ├── [1.6K] EmptyRowDataKeySelector.java
│ │ │ │ │ └── [1.3K] RowDataKeySelector.java
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [3.3K] AbstractProcessStreamOperator.java
│ │ │ │ │ ├── [4.0K] aggregate
│ │ │ │ │ │ ├── [ 23K] BytesHashMap.java
│ │ │ │ │ │ ├── [2.0K] BytesHashMapSpillMemorySegmentPool.java
│ │ │ │ │ │ ├── [8.1K] GroupAggFunction.java
│ │ │ │ │ │ ├── [5.6K] GroupTableAggFunction.java
│ │ │ │ │ │ ├── [8.3K] MiniBatchGlobalGroupAggFunction.java
│ │ │ │ │ │ ├── [8.3K] MiniBatchGroupAggFunction.java
│ │ │ │ │ │ ├── [5.1K] MiniBatchIncrementalGroupAggFunction.java
│ │ │ │ │ │ ├── [3.4K] MiniBatchLocalGroupAggFunction.java
│ │ │ │ │ │ └── [3.1K] RecordCounter.java
│ │ │ │ │ ├── [4.0K] bundle
│ │ │ │ │ │ ├── [5.8K] AbstractMapBundleOperator.java
│ │ │ │ │ │ ├── [1.5K] KeyedMapBundleOperator.java
│ │ │ │ │ │ ├── [2.1K] MapBundleFunction.java
│ │ │ │ │ │ ├── [1.7K] MapBundleOperator.java
│ │ │ │ │ │ └── [4.0K] trigger
│ │ │ │ │ │ ├── [1.3K] BundleTriggerCallback.java
│ │ │ │ │ │ ├── [1.7K] BundleTrigger.java
│ │ │ │ │ │ ├── [2.1K] CoBundleTrigger.java
│ │ │ │ │ │ ├── [1.8K] CountBundleTrigger.java
│ │ │ │ │ │ └── [2.0K] CountCoBundleTrigger.java
│ │ │ │ │ ├── [2.1K] CodeGenOperatorFactory.java
│ │ │ │ │ ├── [4.0K] deduplicate
│ │ │ │ │ │ ├── [3.3K] DeduplicateFunctionHelper.java
│ │ │ │ │ │ ├── [2.5K] DeduplicateKeepFirstRowFunction.java
│ │ │ │ │ │ ├── [2.9K] DeduplicateKeepLastRowFunction.java
│ │ │ │ │ │ ├── [3.2K] MiniBatchDeduplicateKeepFirstRowFunction.java
│ │ │ │ │ │ └── [3.5K] MiniBatchDeduplicateKeepLastRowFunction.java
│ │ │ │ │ ├── [4.0K] join
│ │ │ │ │ │ ├── [1.7K] FlinkJoinType.java
│ │ │ │ │ │ ├── [ 14K] HashJoinOperator.java
│ │ │ │ │ │ ├── [2.2K] HashJoinType.java
│ │ │ │ │ │ ├── [4.0K] interval
│ │ │ │ │ │ │ ├── [1.6K] EmitAwareCollector.java
│ │ │ │ │ │ │ ├── [2.2K] ProcTimeIntervalJoin.java
│ │ │ │ │ │ │ ├── [2.9K] RowTimeIntervalJoin.java
│ │ │ │ │ │ │ └── [ 19K] TimeIntervalJoin.java
│ │ │ │ │ │ ├── [2.5K] KeyedCoProcessOperatorWithWatermarkDelay.java
│ │ │ │ │ │ ├── [4.0K] lookup
│ │ │ │ │ │ │ ├── [ 11K] AsyncLookupJoinRunner.java
│ │ │ │ │ │ │ ├── [5.4K] AsyncLookupJoinWithCalcRunner.java
│ │ │ │ │ │ │ ├── [2.1K] DelegatingResultFuture.java
│ │ │ │ │ │ │ ├── [3.9K] LookupJoinRunner.java
│ │ │ │ │ │ │ └── [3.1K] LookupJoinWithCalcRunner.java
│ │ │ │ │ │ ├── [1.7K] NullAwareJoinHelper.java
│ │ │ │ │ │ ├── [2.8K] OuterJoinPaddingUtil.java
│ │ │ │ │ │ ├── [5.3K] SortMergeFullOuterJoinIterator.java
│ │ │ │ │ │ ├── [2.7K] SortMergeInnerJoinIterator.java
│ │ │ │ │ │ ├── [4.6K] SortMergeJoinIterator.java
│ │ │ │ │ │ ├── [ 17K] SortMergeJoinOperator.java
│ │ │ │ │ │ ├── [3.0K] SortMergeOneSideOuterJoinIterator.java
│ │ │ │ │ │ ├── [4.0K] stream
│ │ │ │ │ │ │ ├── [9.1K] AbstractStreamingJoinOperator.java
│ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ ├── [4.2K] JoinInputSideSpec.java
│ │ │ │ │ │ │ │ ├── [1.7K] JoinRecordStateView.java
│ │ │ │ │ │ │ │ ├── [7.0K] JoinRecordStateViews.java
│ │ │ │ │ │ │ │ ├── [2.3K] OuterJoinRecordStateView.java
│ │ │ │ │ │ │ │ └── [ 10K] OuterJoinRecordStateViews.java
│ │ │ │ │ │ │ ├── [ 12K] StreamingJoinOperator.java
│ │ │ │ │ │ │ └── [7.7K] StreamingSemiAntiJoinOperator.java
│ │ │ │ │ │ └── [4.0K] temporal
│ │ │ │ │ │ ├── [6.2K] BaseTwoInputStreamOperatorWithStateRetention.java
│ │ │ │ │ │ ├── [4.4K] TemporalProcessTimeJoinOperator.java
│ │ │ │ │ │ └── [ 14K] TemporalRowTimeJoinOperator.java
│ │ │ │ │ ├── [4.0K] match
│ │ │ │ │ │ ├── [2.2K] IterativeConditionRunner.java
│ │ │ │ │ │ ├── [2.4K] PatternProcessFunctionRunner.java
│ │ │ │ │ │ ├── [1.8K] RowDataEventComparator.java
│ │ │ │ │ │ └── [2.2K] RowtimeProcessFunction.java
│ │ │ │ │ ├── [4.0K] over
│ │ │ │ │ │ ├── [9.5K] AbstractRowTimeUnboundedPrecedingOver.java
│ │ │ │ │ │ ├── [5.3K] BufferDataOverWindowOperator.java
│ │ │ │ │ │ ├── [4.0K] frame
│ │ │ │ │ │ │ ├── [2.3K] InsensitiveOverFrame.java
│ │ │ │ │ │ │ ├── [4.2K] OffsetOverFrame.java
│ │ │ │ │ │ │ ├── [3.1K] OverWindowFrame.java
│ │ │ │ │ │ │ ├── [3.5K] RangeSlidingOverFrame.java
│ │ │ │ │ │ │ ├── [2.9K] RangeUnboundedFollowingOverFrame.java
│ │ │ │ │ │ │ ├── [2.6K] RangeUnboundedPrecedingOverFrame.java
│ │ │ │ │ │ │ ├── [2.9K] RowSlidingOverFrame.java
│ │ │ │ │ │ │ ├── [2.3K] RowUnboundedFollowingOverFrame.java
│ │ │ │ │ │ │ ├── [2.3K] RowUnboundedPrecedingOverFrame.java
│ │ │ │ │ │ │ ├── [3.7K] SlidingOverFrame.java
│ │ │ │ │ │ │ ├── [3.4K] UnboundedFollowingOverFrame.java
│ │ │ │ │ │ │ ├── [3.0K] UnboundedOverWindowFrame.java
│ │ │ │ │ │ │ └── [2.6K] UnboundedPrecedingOverFrame.java
│ │ │ │ │ │ ├── [4.4K] NonBufferOverWindowOperator.java
│ │ │ │ │ │ ├── [9.9K] ProcTimeRangeBoundedPrecedingFunction.java
│ │ │ │ │ │ ├── [8.4K] ProcTimeRowsBoundedPrecedingFunction.java
│ │ │ │ │ │ ├── [4.3K] ProcTimeUnboundedPrecedingFunction.java
│ │ │ │ │ │ ├── [9.8K] RowTimeRangeBoundedPrecedingFunction.java
│ │ │ │ │ │ ├── [2.6K] RowTimeRangeUnboundedPrecedingFunction.java
│ │ │ │ │ │ ├── [9.9K] RowTimeRowsBoundedPrecedingFunction.java
│ │ │ │ │ │ └── [2.4K] RowTimeRowsUnboundedPrecedingFunction.java
│ │ │ │ │ ├── [4.0K] rank
│ │ │ │ │ │ ├── [ 11K] AbstractTopNFunction.java
│ │ │ │ │ │ ├── [8.7K] AppendOnlyTopNFunction.java
│ │ │ │ │ │ ├── [1.5K] ConstantRankRange.java
│ │ │ │ │ │ ├── [1.4K] ConstantRankRangeWithoutEnd.java
│ │ │ │ │ │ ├── [1.1K] RankRange.java
│ │ │ │ │ │ ├── [2.0K] RankType.java
│ │ │ │ │ │ ├── [ 16K] RetractableTopNFunction.java
│ │ │ │ │ │ ├── [6.9K] TopNBuffer.java
│ │ │ │ │ │ ├── [ 19K] UpdatableTopNFunction.java
│ │ │ │ │ │ └── [1.4K] VariableRankRange.java
│ │ │ │ │ ├── [4.0K] sink
│ │ │ │ │ │ └── [5.0K] SinkOperator.java
│ │ │ │ │ ├── [4.0K] sort
│ │ │ │ │ │ ├── [8.0K] AbstractBinaryExternalMerger.java
│ │ │ │ │ │ ├── [2.1K] BaseTemporalSortOperator.java
│ │ │ │ │ │ ├── [3.2K] BinaryExternalMerger.java
│ │ │ │ │ │ ├── [ 36K] BinaryExternalSorter.java
│ │ │ │ │ │ ├── [8.7K] BinaryIndexedSortable.java
│ │ │ │ │ │ ├── [7.1K] BinaryInMemorySortBuffer.java
│ │ │ │ │ │ ├── [3.6K] BinaryKVExternalMerger.java
│ │ │ │ │ │ ├── [5.8K] BinaryKVInMemorySortBuffer.java
│ │ │ │ │ │ ├── [3.0K] BinaryMergeIterator.java
│ │ │ │ │ │ ├── [7.1K] BufferedKVExternalSorter.java
│ │ │ │ │ │ ├── [2.5K] ChannelReaderKVInputViewIterator.java
│ │ │ │ │ │ ├── [2.1K] LimitOperator.java
│ │ │ │ │ │ ├── [1.7K] ListMemorySegmentPool.java
│ │ │ │ │ │ ├── [3.8K] ProcTimeSortOperator.java
│ │ │ │ │ │ ├── [3.9K] RankOperator.java
│ │ │ │ │ │ ├── [5.4K] RowTimeSortOperator.java
│ │ │ │ │ │ ├── [3.7K] SortLimitOperator.java
│ │ │ │ │ │ ├── [4.4K] SortOperator.java
│ │ │ │ │ │ ├── [6.9K] SortUtil.java
│ │ │ │ │ │ ├── [2.6K] SpillChannelManager.java
│ │ │ │ │ │ └── [5.6K] StreamSortOperator.java
│ │ │ │ │ ├── [1.6K] TableStreamOperator.java
│ │ │ │ │ ├── [4.0K] values
│ │ │ │ │ │ └── [2.6K] ValuesInputFormat.java
│ │ │ │ │ ├── [4.0K] window
│ │ │ │ │ │ ├── [6.6K] AggregateWindowOperator.java
│ │ │ │ │ │ ├── [4.0K] assigners
│ │ │ │ │ │ │ ├── [3.6K] CountSlidingWindowAssigner.java
│ │ │ │ │ │ │ ├── [2.9K] CountTumblingWindowAssigner.java
│ │ │ │ │ │ │ ├── [1.2K] InternalTimeWindowAssigner.java
│ │ │ │ │ │ │ ├── [2.1K] MergingWindowAssigner.java
│ │ │ │ │ │ │ ├── [1.9K] PanedWindowAssigner.java
│ │ │ │ │ │ │ ├── [4.2K] SessionWindowAssigner.java
│ │ │ │ │ │ │ ├── [5.3K] SlidingWindowAssigner.java
│ │ │ │ │ │ │ ├── [4.3K] TumblingWindowAssigner.java
│ │ │ │ │ │ │ └── [3.0K] WindowAssigner.java
│ │ │ │ │ │ ├── [4.1K] CountWindow.java
│ │ │ │ │ │ ├── [4.0K] grouping
│ │ │ │ │ │ │ ├── [3.2K] HeapWindowsGrouping.java
│ │ │ │ │ │ │ └── [8.2K] WindowsGrouping.java
│ │ │ │ │ │ ├── [4.0K] internal
│ │ │ │ │ │ │ ├── [3.0K] GeneralWindowProcessFunction.java
│ │ │ │ │ │ │ ├── [6.6K] InternalWindowProcessFunction.java
│ │ │ │ │ │ │ ├── [6.6K] MergingWindowProcessFunction.java
│ │ │ │ │ │ │ ├── [9.2K] MergingWindowSet.java
│ │ │ │ │ │ │ └── [3.7K] PanedWindowProcessFunction.java
│ │ │ │ │ │ ├── [4.6K] TableAggregateWindowOperator.java
│ │ │ │ │ │ ├── [6.5K] TimeWindow.java
│ │ │ │ │ │ ├── [4.0K] triggers
│ │ │ │ │ │ │ ├── [4.6K] ElementTriggers.java
│ │ │ │ │ │ │ ├── [ 11K] EventTimeTriggers.java
│ │ │ │ │ │ │ ├── [8.9K] ProcessingTimeTriggers.java
│ │ │ │ │ │ │ └── [7.9K] Trigger.java
│ │ │ │ │ │ ├── [1.5K] Window.java
│ │ │ │ │ │ ├── [ 14K] WindowOperatorBuilder.java
│ │ │ │ │ │ └── [ 22K] WindowOperator.java
│ │ │ │ │ └── [4.0K] wmassigners
│ │ │ │ │ ├── [1.8K] BoundedOutOfOrderWatermarkGenerator.java
│ │ │ │ │ ├── [4.2K] ProcTimeMiniBatchAssignerOperator.java
│ │ │ │ │ ├── [4.4K] RowTimeMiniBatchAssginerOperator.java
│ │ │ │ │ ├── [2.7K] WatermarkAssignerOperatorFactory.java
│ │ │ │ │ └── [6.7K] WatermarkAssignerOperator.java
│ │ │ │ ├── [4.0K] partitioner
│ │ │ │ │ └── [2.4K] BinaryHashPartitioner.java
│ │ │ │ ├── [4.0K] types
│ │ │ │ │ ├── [1.9K] ClassDataTypeConverter.java
│ │ │ │ │ ├── [1.3K] ClassLogicalTypeConverter.java
│ │ │ │ │ ├── [6.7K] DataTypePrecisionFixer.java
│ │ │ │ │ ├── [5.1K] InternalSerializers.java
│ │ │ │ │ ├── [1.6K] LogicalTypeDataTypeConverter.java
│ │ │ │ │ ├── [ 10K] PlannerTypeUtils.java
│ │ │ │ │ ├── [8.5K] TypeInfoDataTypeConverter.java
│ │ │ │ │ └── [2.4K] TypeInfoLogicalTypeConverter.java
│ │ │ │ ├── [4.0K] typeutils
│ │ │ │ │ ├── [5.5K] AbstractMapSerializer.java
│ │ │ │ │ ├── [3.9K] AbstractMapTypeInfo.java
│ │ │ │ │ ├── [4.3K] AbstractRowDataSerializer.java
│ │ │ │ │ ├── [ 10K] ArrayDataSerializer.java
│ │ │ │ │ ├── [2.7K] BigDecimalTypeInfo.java
│ │ │ │ │ ├── [ 13K] BinaryRowDataSerializer.java
│ │ │ │ │ ├── [5.5K] DecimalDataSerializer.java
│ │ │ │ │ ├── [2.8K] DecimalDataTypeInfo.java
│ │ │ │ │ ├── [2.3K] LegacyInstantTypeInfo.java
│ │ │ │ │ ├── [2.4K] LegacyLocalDateTimeTypeInfo.java
│ │ │ │ │ ├── [2.4K] LegacyTimestampTypeInfo.java
│ │ │ │ │ ├── [ 10K] MapDataSerializer.java
│ │ │ │ │ ├── [5.3K] RawValueDataSerializer.java
│ │ │ │ │ ├── [ 11K] RowDataSerializer.java
│ │ │ │ │ ├── [6.9K] RowDataTypeInfo.java
│ │ │ │ │ ├── [3.8K] SortedMapSerializer.java
│ │ │ │ │ ├── [4.2K] SortedMapSerializerSnapshot.java
│ │ │ │ │ ├── [4.2K] SortedMapTypeInfo.java
│ │ │ │ │ ├── [3.7K] StringDataSerializer.java
│ │ │ │ │ ├── [2.2K] StringDataTypeInfo.java
│ │ │ │ │ ├── [5.4K] TimestampDataSerializer.java
│ │ │ │ │ ├── [2.5K] TimestampDataTypeInfo.java
│ │ │ │ │ ├── [5.5K] TypeCheckUtils.java
│ │ │ │ │ └── [2.7K] WrapperTypeInfo.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [4.0K] collections
│ │ │ │ │ ├── [1.4K] ByteHashSet.java
│ │ │ │ │ ├── [3.3K] DoubleHashSet.java
│ │ │ │ │ ├── [3.2K] FloatHashSet.java
│ │ │ │ │ ├── [3.3K] IntHashSet.java
│ │ │ │ │ ├── [3.4K] LongHashSet.java
│ │ │ │ │ ├── [1.4K] ObjectHashSet.java
│ │ │ │ │ ├── [4.6K] OptimizableHashSet.java
│ │ │ │ │ └── [3.4K] ShortHashSet.java
│ │ │ │ ├── [5.3K] FileChannelUtil.java
│ │ │ │ ├── [ 13K] JsonUtils.java
│ │ │ │ ├── [3.1K] LazyMemorySegmentPool.java
│ │ │ │ ├── [2.1K] LRUMap.java
│ │ │ │ ├── [1.4K] MemorySegmentPool.java
│ │ │ │ ├── [5.2K] MurmurHashUtil.java
│ │ │ │ ├── [ 20K] ResettableExternalBuffer.java
│ │ │ │ ├── [2.0K] ResettableRowBuffer.java
│ │ │ │ ├── [1.8K] RowIterator.java
│ │ │ │ ├── [ 30K] SegmentsUtil.java
│ │ │ │ ├── [1.5K] StateTtlConfigUtil.java
│ │ │ │ ├── [1.6K] StreamRecordCollector.java
│ │ │ │ └── [8.9K] StringUtf8Utils.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 366] NOTICE
│ │ │ └── [4.0K] services
│ │ │ └── [ 839] org.apache.flink.table.factories.TableFactory
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] table
│ │ │ ├── [4.0K] data
│ │ │ │ ├── [4.0K] binary
│ │ │ │ │ └── [7.5K] BinarySegmentUtilsTest.java
│ │ │ │ ├── [ 18K] BinaryArrayDataTest.java
│ │ │ │ ├── [ 37K] BinaryRowDataTest.java
│ │ │ │ ├── [ 31K] BinaryStringDataTest.java
│ │ │ │ ├── [8.8K] DataFormatConvertersTest.java
│ │ │ │ ├── [ 22K] DataStructureConvertersTest.java
│ │ │ │ ├── [8.3K] DecimalDataTest.java
│ │ │ │ ├── [6.0K] NestedRowDataTest.java
│ │ │ │ ├── [9.5K] RowDataTest.java
│ │ │ │ ├── [5.8K] TimestampDataTest.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [5.3K] DataFormatTestUtil.java
│ │ │ │ └── [4.0K] vector
│ │ │ │ ├── [ 11K] ColumnVectorTest.java
│ │ │ │ └── [9.2K] VectorizedColumnBatchTest.java
│ │ │ ├── [4.0K] filesystem
│ │ │ │ ├── [4.9K] FileSystemCommitterTest.java
│ │ │ │ ├── [8.8K] FileSystemOutputFormatTest.java
│ │ │ │ ├── [5.6K] PartitionWriterTest.java
│ │ │ │ ├── [2.3K] RowPartitionComputerTest.java
│ │ │ │ └── [4.0K] stream
│ │ │ │ └── [5.9K] StreamingFileWriterTest.java
│ │ │ ├── [4.0K] runtime
│ │ │ │ ├── [4.0K] generated
│ │ │ │ │ ├── [2.3K] CompileUtilsTest.java
│ │ │ │ │ ├── [1.7K] GeneratedCollectorWrapper.java
│ │ │ │ │ ├── [1.7K] GeneratedFunctionWrapper.java
│ │ │ │ │ └── [1.8K] GeneratedResultFutureWrapper.java
│ │ │ │ ├── [4.0K] hashtable
│ │ │ │ │ ├── [ 36K] BinaryHashTableTest.java
│ │ │ │ │ └── [ 22K] LongHashTableTest.java
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ └── [2.8K] CompressedHeaderlessChannelTest.java
│ │ │ │ ├── [4.0K] operators
│ │ │ │ │ ├── [4.0K] aggregate
│ │ │ │ │ │ ├── [ 16K] BytesHashMapTest.java
│ │ │ │ │ │ ├── [4.2K] HashAggTest.java
│ │ │ │ │ │ └── [8.7K] SumHashAggTestOperator.java
│ │ │ │ │ ├── [4.0K] bundle
│ │ │ │ │ │ ├── [3.7K] MapBundleOperatorTest.java
│ │ │ │ │ │ └── [4.0K] trigger
│ │ │ │ │ │ ├── [1.5K] CountBundleTriggerTest.java
│ │ │ │ │ │ ├── [1.7K] CountCoBundleTriggerTest.java
│ │ │ │ │ │ └── [1.2K] TestTriggerCallback.java
│ │ │ │ │ ├── [4.0K] deduplicate
│ │ │ │ │ │ ├── [1.9K] DeduplicateFunctionTestBase.java
│ │ │ │ │ │ ├── [3.7K] DeduplicateKeepFirstRowFunctionTest.java
│ │ │ │ │ │ ├── [6.1K] DeduplicateKeepLastRowFunctionTest.java
│ │ │ │ │ │ ├── [4.5K] MiniBatchDeduplicateKeepFirstRowFunctionTest.java
│ │ │ │ │ │ └── [7.9K] MiniBatchDeduplicateKeepLastRowFunctionTest.java
│ │ │ │ │ ├── [4.0K] join
│ │ │ │ │ │ ├── [ 12K] AsyncLookupJoinHarnessTest.java
│ │ │ │ │ │ ├── [ 15K] Int2HashJoinOperatorTest.java
│ │ │ │ │ │ ├── [8.4K] Int2SortMergeJoinOperatorTest.java
│ │ │ │ │ │ ├── [4.0K] interval
│ │ │ │ │ │ │ ├── [7.4K] ProcTimeIntervalJoinTest.java
│ │ │ │ │ │ │ ├── [ 17K] RowTimeIntervalJoinTest.java
│ │ │ │ │ │ │ └── [2.9K] TimeIntervalStreamJoinTestBase.java
│ │ │ │ │ │ ├── [9.9K] LookupJoinHarnessTest.java
│ │ │ │ │ │ ├── [ 14K] RandomSortMergeInnerJoinTest.java
│ │ │ │ │ │ ├── [8.3K] RandomSortMergeOuterJoinTest.java
│ │ │ │ │ │ ├── [ 13K] SortMergeJoinIteratorTest.java
│ │ │ │ │ │ ├── [ 12K] String2HashJoinOperatorTest.java
│ │ │ │ │ │ └── [9.2K] String2SortMergeJoinOperatorTest.java
│ │ │ │ │ ├── [4.0K] over
│ │ │ │ │ │ ├── [9.4K] BufferDataOverWindowOperatorTest.java
│ │ │ │ │ │ ├── [6.1K] NonBufferOverWindowOperatorTest.java
│ │ │ │ │ │ ├── [3.9K] ProcTimeRangeBoundedPrecedingFunctionTest.java
│ │ │ │ │ │ ├── [4.0K] RowTimeRangeBoundedPrecedingFunctionTest.java
│ │ │ │ │ │ └── [2.3K] SumAggsHandleFunction.java
│ │ │ │ │ ├── [4.0K] rank
│ │ │ │ │ │ ├── [2.9K] AppendOnlyTopNFunctionTest.java
│ │ │ │ │ │ ├── [ 17K] RetractableTopNFunctionTest.java
│ │ │ │ │ │ ├── [ 15K] TopNFunctionTestBase.java
│ │ │ │ │ │ └── [ 11K] UpdatableTopNFunctionTest.java
│ │ │ │ │ ├── [4.0K] sort
│ │ │ │ │ │ ├── [ 12K] BinaryExternalSorterTest.java
│ │ │ │ │ │ ├── [5.7K] BinaryMergeIteratorTest.java
│ │ │ │ │ │ ├── [5.9K] BufferedKVExternalSorterTest.java
│ │ │ │ │ │ ├── [2.6K] IntNormalizedKeyComputer.java
│ │ │ │ │ │ ├── [1.5K] IntRecordComparator.java
│ │ │ │ │ │ ├── [5.4K] ProcTimeSortOperatorTest.java
│ │ │ │ │ │ ├── [9.1K] RowTimeSortOperatorTest.java
│ │ │ │ │ │ ├── [4.1K] SortUtilTest.java
│ │ │ │ │ │ ├── [4.1K] StreamSortOperatorTest.java
│ │ │ │ │ │ ├── [2.2K] StringNormalizedKeyComputer.java
│ │ │ │ │ │ ├── [1.4K] StringRecordComparator.java
│ │ │ │ │ │ └── [1.5K] TestMemorySegmentPool.java
│ │ │ │ │ ├── [4.0K] window
│ │ │ │ │ │ ├── [4.0K] assigners
│ │ │ │ │ │ │ ├── [5.4K] SessionWindowAssignerTest.java
│ │ │ │ │ │ │ ├── [6.2K] SlidingWindowAssignerTest.java
│ │ │ │ │ │ │ └── [3.4K] TumblingWindowAssignerTest.java
│ │ │ │ │ │ ├── [4.0K] grouping
│ │ │ │ │ │ │ └── [ 14K] HeapWindowsGroupingTest.java
│ │ │ │ │ │ ├── [ 21K] MergingWindowSetTest.java
│ │ │ │ │ │ ├── [4.0K] triggers
│ │ │ │ │ │ │ └── [4.5K] TriggersTest.java
│ │ │ │ │ │ ├── [ 12K] WindowOperatorContractTest.java
│ │ │ │ │ │ ├── [ 54K] WindowOperatorTest.java
│ │ │ │ │ │ └── [1.1K] WindowTestUtils.java
│ │ │ │ │ └── [4.0K] wmassigners
│ │ │ │ │ ├── [4.2K] ProcTimeMiniBatchAssignerOperatorTest.java
│ │ │ │ │ ├── [4.7K] RowTimeMiniBatchAssginerOperatorTest.java
│ │ │ │ │ ├── [2.3K] WatermarkAssignerOperatorTestBase.java
│ │ │ │ │ └── [ 10K] WatermarkAssignerOperatorTest.java
│ │ │ │ ├── [4.0K] types
│ │ │ │ │ ├── [5.5K] DataTypePrecisionFixerTest.java
│ │ │ │ │ └── [8.5K] LogicalTypeAssignableTest.java
│ │ │ │ ├── [4.0K] typeutils
│ │ │ │ │ ├── [5.8K] ArrayDataSerializerTest.java
│ │ │ │ │ ├── [1.2K] BigDecimalTypeInfoTest.java
│ │ │ │ │ ├── [1.9K] BinaryRowSerializerTest.java
│ │ │ │ │ ├── [1.6K] DecimalSerializerTest.java
│ │ │ │ │ ├── [1.4K] InternalTypeInfoTest.java
│ │ │ │ │ ├── [6.5K] MapDataSerializerTest.java
│ │ │ │ │ ├── [2.2K] RawValueDataSerializerTest.java
│ │ │ │ │ ├── [9.2K] RowDataSerializerTest.java
│ │ │ │ │ ├── [2.6K] RowDataTypeInfoTest.java
│ │ │ │ │ ├── [4.3K] SerializerTestUtil.java
│ │ │ │ │ ├── [1.6K] StringDataSerializerTest.java
│ │ │ │ │ ├── [2.1K] TimestampDataSerializerTest.java
│ │ │ │ │ └── [1.6K] WrapperTypeInfoTest.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [2.8K] BinaryRowDataKeySelector.java
│ │ │ │ ├── [2.1K] GenericRowRecordSortComparator.java
│ │ │ │ ├── [ 29K] ResettableExternalBufferTest.java
│ │ │ │ ├── [5.0K] RowDataHarnessAssertor.java
│ │ │ │ ├── [1.6K] RowDataRecordEqualiser.java
│ │ │ │ ├── [6.4K] StreamRecordUtils.java
│ │ │ │ └── [2.5K] UniformBinaryRowGenerator.java
│ │ │ └── [4.0K] utils
│ │ │ └── [3.1K] RawValueDataAsserter.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ ├── [4.0K] flink-table-uber
│ │ └── [4.3K] pom.xml
│ ├── [4.0K] flink-table-uber-blink
│ │ └── [4.9K] pom.xml
│ └── [2.8K] pom.xml
├── [4.0K] flink-tests
│ ├── [ 19K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] test
│ ├── [4.0K] assembly
│ │ ├── [1.3K] test-checkpointing-custom_kv_state-assembly.xml
│ │ ├── [1.2K] test-classloading_policy-assembly.xml
│ │ ├── [1.3K] test-custominput-assembly.xml
│ │ ├── [1.3K] test-custom_kv_state-assembly.xml
│ │ ├── [1.3K] test-kmeans-assembly.xml
│ │ ├── [1.5K] test-plugin-a-assembly.xml
│ │ ├── [1.5K] test-plugin-b-assembly.xml
│ │ ├── [1.4K] test-streamingclassloader-assembly.xml
│ │ ├── [1.4K] test-streaming-custominput-assembly.xml
│ │ ├── [1.4K] test-streaming-state-checkpointed-classloader-assembly.xml
│ │ └── [1.4K] test-usercodetype-assembly.xml
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ ├── [4.0K] runtime
│ │ │ ├── [4.0K] jobmaster
│ │ │ │ ├── [ 15K] JobMasterStopWithSavepointIT.java
│ │ │ │ └── [9.1K] JobMasterTriggerSavepointITCase.java
│ │ │ ├── [4.0K] metrics
│ │ │ │ ├── [5.5K] JobManagerMetricsITCase.java
│ │ │ │ └── [4.9K] SystemResourcesMetricsITCase.java
│ │ │ └── [4.0K] util
│ │ │ └── [6.4K] ExceptionUtilsITCases.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] accumulators
│ │ │ ├── [6.5K] AccumulatorErrorITCase.java
│ │ │ ├── [8.4K] AccumulatorITCase.java
│ │ │ ├── [2.7K] AccumulatorIterativeITCase.java
│ │ │ └── [7.9K] AccumulatorLiveITCase.java
│ │ ├── [4.0K] actions
│ │ │ └── [3.0K] CountCollectITCase.java
│ │ ├── [4.0K] broadcastvars
│ │ │ ├── [5.8K] BroadcastBranchingITCase.java
│ │ │ ├── [2.4K] BroadcastUnionITCase.java
│ │ │ └── [3.1K] BroadcastVarInitializationITCase.java
│ │ ├── [4.0K] cancelling
│ │ │ ├── [5.5K] CancelingTestBase.java
│ │ │ ├── [8.4K] JoinCancelingITCase.java
│ │ │ └── [3.7K] MapCancelingITCase.java
│ │ ├── [4.0K] checkpointing
│ │ │ ├── [ 11K] ContinuousFileProcessingCheckpointITCase.java
│ │ │ ├── [ 13K] CoStreamCheckpointingITCase.java
│ │ │ ├── [ 14K] EventTimeAllWindowCheckpointingITCase.java
│ │ │ ├── [ 24K] EventTimeWindowCheckpointingITCase.java
│ │ │ ├── [ 13K] KeyedStateCheckpointingITCase.java
│ │ │ ├── [3.6K] LocalRecoveryITCase.java
│ │ │ ├── [ 16K] NotifyCheckpointAbortedITCase.java
│ │ │ ├── [ 17K] RegionFailoverITCase.java
│ │ │ ├── [ 30K] RescalingITCase.java
│ │ │ ├── [ 13K] ResumeCheckpointManuallyITCase.java
│ │ │ ├── [ 30K] SavepointITCase.java
│ │ │ ├── [ 12K] StateCheckpointedITCase.java
│ │ │ ├── [ 11K] StreamCheckpointingITCase.java
│ │ │ ├── [ 15K] StreamCheckpointNotifierITCase.java
│ │ │ ├── [5.6K] StreamFaultToleranceTestBase.java
│ │ │ ├── [5.1K] TimestampedFileInputSplitTest.java
│ │ │ ├── [9.4K] UdfStreamOperatorCheckpointingITCase.java
│ │ │ ├── [8.5K] UnalignedCheckpointCompatibilityITCase.java
│ │ │ ├── [ 18K] UnalignedCheckpointITCase.java
│ │ │ ├── [4.0K] utils
│ │ │ │ ├── [3.0K] AccumulatingIntegerSink.java
│ │ │ │ ├── [4.2K] CancellingIntegerSource.java
│ │ │ │ ├── [5.5K] FailingSource.java
│ │ │ │ ├── [1.1K] IntType.java
│ │ │ │ ├── [ 24K] LegacyStatefulJobSavepointMigrationITCase.java
│ │ │ │ ├── [ 11K] MigrationTestUtils.java
│ │ │ │ ├── [8.0K] SavepointMigrationTestBase.java
│ │ │ │ ├── [ 15K] StatefulJobSavepointMigrationITCase.java
│ │ │ │ ├── [ 17K] StatefulJobWBroadcastStateMigrationITCase.java
│ │ │ │ └── [3.9K] ValidatingSink.java
│ │ │ ├── [ 12K] WindowCheckpointingITCase.java
│ │ │ └── [ 18K] ZooKeeperHighAvailabilityITCase.java
│ │ ├── [4.0K] classloading
│ │ │ ├── [ 16K] ClassLoaderITCase.java
│ │ │ └── [4.0K] jar
│ │ │ ├── [4.5K] CheckpointedStreamingProgram.java
│ │ │ ├── [7.9K] CheckpointingCustomKvStateProgram.java
│ │ │ ├── [1.9K] ClassLoadingPolicyProgram.java
│ │ │ ├── [4.6K] CustomInputSplitProgram.java
│ │ │ ├── [4.2K] CustomKvStateProgram.java
│ │ │ ├── [8.5K] KMeansForTest.java
│ │ │ ├── [4.9K] StreamingCustomInputSplitProgram.java
│ │ │ ├── [2.7K] StreamingProgram.java
│ │ │ └── [2.2K] UserCodeType.java
│ │ ├── [4.0K] completeness
│ │ │ └── [2.5K] TypeInfoTestCoverageTest.java
│ │ ├── [4.0K] distributedcache
│ │ │ └── [3.2K] DistributedCacheTest.java
│ │ ├── [4.0K] example
│ │ │ ├── [4.0K] client
│ │ │ │ ├── [4.7K] JobRetrievalITCase.java
│ │ │ │ └── [4.4K] LocalExecutorITCase.java
│ │ │ ├── [4.0K] failing
│ │ │ │ ├── [5.7K] JobSubmissionFailsITCase.java
│ │ │ │ └── [3.6K] TaskFailureITCase.java
│ │ │ ├── [4.0K] java
│ │ │ │ ├── [2.1K] ConnectedComponentsITCase.java
│ │ │ │ ├── [1.6K] EnumTriangleBasicITCase.java
│ │ │ │ ├── [2.9K] PageRankITCase.java
│ │ │ │ ├── [2.0K] TransitiveClosureITCase.java
│ │ │ │ ├── [1.9K] WebLogAnalysisITCase.java
│ │ │ │ ├── [1.6K] WordCountITCase.java
│ │ │ │ ├── [3.8K] WordCountNestedPOJOITCase.java
│ │ │ │ ├── [3.0K] WordCountSimplePOJOITCase.java
│ │ │ │ ├── [4.1K] WordCountSubclassInterfacePOJOITCase.java
│ │ │ │ ├── [3.6K] WordCountSubclassPOJOITCase.java
│ │ │ │ └── [2.6K] WordCountWithCollectionITCase.java
│ │ │ └── [4.0K] scala
│ │ │ ├── [2.1K] ConnectedComponentsITCase.java
│ │ │ ├── [1.6K] EnumTriangleITCase.java
│ │ │ ├── [3.1K] PageRankITCase.java
│ │ │ ├── [2.0K] TransitiveClosureITCase.java
│ │ │ ├── [1.9K] WebLogAnalysisITCase.java
│ │ │ └── [1.6K] WordCountITCase.java
│ │ ├── [4.0K] execution
│ │ │ └── [9.0K] JobListenerITCase.java
│ │ ├── [4.0K] io
│ │ │ ├── [5.2K] CsvReaderITCase.java
│ │ │ ├── [1.7K] InputOutputITCase.java
│ │ │ └── [3.9K] RichInputOutputITCase.java
│ │ ├── [4.0K] iterative
│ │ │ ├── [4.0K] aggregators
│ │ │ │ ├── [ 11K] AggregatorConvergenceITCase.java
│ │ │ │ └── [ 16K] AggregatorsITCase.java
│ │ │ ├── [2.7K] BulkIterationWithAllReducerITCase.java
│ │ │ ├── [5.5K] CoGroupConnectedComponentsITCase.java
│ │ │ ├── [5.4K] CoGroupConnectedComponentsSecondITCase.java
│ │ │ ├── [4.1K] ConnectedComponentsITCase.java
│ │ │ ├── [5.3K] ConnectedComponentsWithDeferredUpdateITCase.java
│ │ │ ├── [4.0K] ConnectedComponentsWithObjectMapITCase.java
│ │ │ ├── [4.7K] ConnectedComponentsWithSolutionSetFirstITCase.java
│ │ │ ├── [ 12K] DanglingPageRankITCase.java
│ │ │ ├── [3.0K] DeltaIterationNotDependingOnSolutionSetITCase.java
│ │ │ ├── [8.0K] DependencyConnectedComponentsITCase.java
│ │ │ ├── [2.1K] EmptyWorksetIterationITCase.java
│ │ │ ├── [1.8K] IdentityIterationITCase.java
│ │ │ ├── [3.0K] IterationIncompleteDynamicPathConsumptionITCase.java
│ │ │ ├── [3.0K] IterationIncompleteStaticPathConsumptionITCase.java
│ │ │ ├── [2.7K] IterationTerminationWithTerminationTail.java
│ │ │ ├── [2.7K] IterationTerminationWithTwoTails.java
│ │ │ ├── [1.9K] IterationWithAllReducerITCase.java
│ │ │ ├── [3.1K] IterationWithChainingITCase.java
│ │ │ ├── [3.2K] IterationWithUnionITCase.java
│ │ │ ├── [3.5K] KMeansWithBroadcastSetITCase.java
│ │ │ ├── [2.4K] MultipleSolutionSetJoinsITCase.java
│ │ │ ├── [2.9K] SolutionSetDuplicatesITCase.java
│ │ │ ├── [2.8K] StaticlyNestedIterationsITCase.java
│ │ │ └── [2.0K] UnionStaticDynamicIterationITCase.java
│ │ ├── [4.0K] manual
│ │ │ ├── [4.2K] CheckForbiddenMethodsUsage.java
│ │ │ ├── [6.4K] HashTableRecordWidthCombinations.java
│ │ │ ├── [ 12K] MassiveStringSorting.java
│ │ │ ├── [ 13K] MassiveStringValueSorting.java
│ │ │ ├── [ 15K] OverwriteObjects.java
│ │ │ ├── [1.0K] package-info.java
│ │ │ ├── [7.2K] ReducePerformance.java
│ │ │ └── [4.8K] StreamingScalabilityAndLatency.java
│ │ ├── [4.0K] migration
│ │ │ └── [ 12K] TypeSerializerSnapshotMigrationITCase.java
│ │ ├── [4.0K] misc
│ │ │ ├── [2.4K] CustomPartitioningITCase.java
│ │ │ ├── [7.5K] CustomSerializationITCase.java
│ │ │ ├── [2.7K] GenericTypeInfoTest.java
│ │ │ ├── [4.5K] MiscellaneousIssuesITCase.java
│ │ │ └── [6.3K] SuccessAfterNetworkBuffersFailureITCase.java
│ │ ├── [4.0K] operators
│ │ │ ├── [5.2K] AggregateITCase.java
│ │ │ ├── [3.7K] CoGroupGroupSortITCase.java
│ │ │ ├── [ 32K] CoGroupITCase.java
│ │ │ ├── [ 15K] CrossITCase.java
│ │ │ ├── [ 10K] CustomDistributionITCase.java
│ │ │ ├── [ 11K] DataSinkITCase.java
│ │ │ ├── [2.4K] DataSourceITCase.java
│ │ │ ├── [9.7K] DistinctITCase.java
│ │ │ ├── [2.9K] ExecutionEnvironmentITCase.java
│ │ │ ├── [9.5K] FilterITCase.java
│ │ │ ├── [4.8K] FirstNITCase.java
│ │ │ ├── [ 11K] FlatMapITCase.java
│ │ │ ├── [ 16K] GroupCombineITCase.java
│ │ │ ├── [ 51K] GroupReduceITCase.java
│ │ │ ├── [ 32K] JoinITCase.java
│ │ │ ├── [ 16K] MapITCase.java
│ │ │ ├── [3.5K] MapPartitionITCase.java
│ │ │ ├── [6.7K] ObjectReuseITCase.java
│ │ │ ├── [ 25K] OuterJoinITCase.java
│ │ │ ├── [ 25K] PartitionITCase.java
│ │ │ ├── [2.1K] ProjectITCase.java
│ │ │ ├── [ 16K] ReduceITCase.java
│ │ │ ├── [ 11K] ReduceWithCombinerITCase.java
│ │ │ ├── [3.7K] RemoteEnvironmentITCase.java
│ │ │ ├── [4.0K] ReplicatingDataSourceITCase.java
│ │ │ ├── [6.0K] SampleITCase.java
│ │ │ ├── [ 11K] SortPartitionITCase.java
│ │ │ ├── [3.1K] SumMinMaxITCase.java
│ │ │ ├── [9.9K] TypeHintITCase.java
│ │ │ ├── [4.3K] UnionITCase.java
│ │ │ └── [4.0K] util
│ │ │ ├── [ 25K] CollectionDataSets.java
│ │ │ └── [ 30K] ValueCollectionDataSets.java
│ │ ├── [4.0K] optimizer
│ │ │ ├── [4.0K] examples
│ │ │ │ ├── [9.8K] KMeansSingleStepTest.java
│ │ │ │ ├── [ 18K] RelationalQueryCompilerTest.java
│ │ │ │ └── [4.5K] WordCountCompilerTest.java
│ │ │ ├── [4.0K] iterations
│ │ │ │ ├── [9.0K] ConnectedComponentsCoGroupTest.java
│ │ │ │ ├── [5.7K] MultipleJoinsWithSolutionSetCompilerTest.java
│ │ │ │ └── [4.6K] PageRankCompilerTest.java
│ │ │ └── [4.0K] jsonplan
│ │ │ ├── [3.9K] DumpCompiledPlanTest.java
│ │ │ ├── [ 11K] JsonJobGraphGenerationTest.java
│ │ │ └── [3.9K] PreviewPlanDumpTest.java
│ │ ├── [4.0K] planning
│ │ │ └── [2.6K] LargePlanTest.java
│ │ ├── [4.0K] plugin
│ │ │ ├── [4.0K] DefaultPluginManagerTest.java
│ │ │ ├── [4.0K] jar
│ │ │ │ ├── [4.0K] plugina
│ │ │ │ │ ├── [1.1K] DynamicClassA.java
│ │ │ │ │ └── [1.4K] TestServiceA.java
│ │ │ │ └── [4.0K] pluginb
│ │ │ │ ├── [1.1K] OtherTestServiceB.java
│ │ │ │ └── [1.1K] TestServiceB.java
│ │ │ ├── [1.0K] OtherTestSpi.java
│ │ │ ├── [3.2K] PluginLoaderTest.java
│ │ │ ├── [1.9K] PluginTestBase.java
│ │ │ └── [1013] TestSpi.java
│ │ ├── [4.0K] recovery
│ │ │ ├── [ 12K] AbstractTaskManagerProcessFailureRecoveryTest.java
│ │ │ ├── [ 22K] BatchFineGrainedRecoveryITCase.java
│ │ │ ├── [2.8K] FastFailuresITCase.java
│ │ │ ├── [ 15K] JobManagerHAProcessFailureRecoveryITCase.java
│ │ │ ├── [ 13K] ProcessFailureCancelingITCase.java
│ │ │ ├── [2.1K] SimpleRecoveryFailureRateStrategyITBase.java
│ │ │ ├── [1.9K] SimpleRecoveryFixedDelayRestartStrategyITBase.java
│ │ │ ├── [6.7K] SimpleRecoveryITCaseBase.java
│ │ │ ├── [4.2K] TaskManagerProcessFailureBatchRecoveryITCase.java
│ │ │ └── [7.9K] TaskManagerProcessFailureStreamingRecoveryITCase.java
│ │ ├── [4.0K] runtime
│ │ │ ├── [2.5K] ConsumePipelinedAndBlockingResultITCase.java
│ │ │ ├── [4.0K] entrypoint
│ │ │ │ └── [2.5K] StreamingNoop.java
│ │ │ ├── [7.2K] FileBufferReaderITCase.java
│ │ │ ├── [5.6K] IPv6HostnamesITCase.java
│ │ │ ├── [2.3K] JoinDeadlockITCase.java
│ │ │ ├── [4.0K] leaderelection
│ │ │ │ └── [7.1K] ZooKeeperLeaderElectionITCase.java
│ │ │ ├── [3.3K] NettyEpollITCase.java
│ │ │ ├── [ 11K] NetworkStackThroughputITCase.java
│ │ │ ├── [3.6K] RegisterTypeWithKryoSerializerITCase.java
│ │ │ ├── [6.4K] SchedulingITCase.java
│ │ │ ├── [3.8K] SelfJoinDeadlockITCase.java
│ │ │ ├── [7.3K] ShuffleCompressionITCase.java
│ │ │ └── [6.0K] TaskManagerLoadingDynamicPropertiesITCase.java
│ │ ├── [4.0K] state
│ │ │ ├── [8.6K] ManualWindowSpeedITCase.java
│ │ │ ├── [4.0K] operator
│ │ │ │ └── [4.0K] restore
│ │ │ │ ├── [8.8K] AbstractOperatorRestoreTestBase.java
│ │ │ │ ├── [1.3K] ExecutionMode.java
│ │ │ │ ├── [4.0K] keyed
│ │ │ │ │ ├── [2.8K] AbstractKeyedOperatorRestoreTestBase.java
│ │ │ │ │ ├── [2.0K] KeyedComplexChainTest.java
│ │ │ │ │ └── [7.9K] KeyedJob.java
│ │ │ │ ├── [ 14K] StreamOperatorSnapshotRestoreTest.java
│ │ │ │ └── [4.0K] unkeyed
│ │ │ │ ├── [3.6K] AbstractNonKeyedOperatorRestoreTestBase.java
│ │ │ │ ├── [2.7K] ChainBreakTest.java
│ │ │ │ ├── [2.5K] ChainLengthDecreaseTest.java
│ │ │ │ ├── [2.8K] ChainLengthIncreaseTest.java
│ │ │ │ ├── [2.7K] ChainLengthStatelessDecreaseTest.java
│ │ │ │ ├── [2.7K] ChainOrderTest.java
│ │ │ │ ├── [2.7K] ChainUnionTest.java
│ │ │ │ └── [6.5K] NonKeyedJob.java
│ │ │ ├── [9.2K] StatefulOperatorChainedTaskTest.java
│ │ │ └── [2.6K] StateHandleSerializationTest.java
│ │ ├── [4.0K] streaming
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [4.0K] datastream
│ │ │ │ │ ├── [3.6K] DataStreamWithSharedPartitionNodeITCase.java
│ │ │ │ │ ├── [2.8K] GetOperatorUniqueIDTest.java
│ │ │ │ │ └── [ 10K] ReinterpretDataStreamAsKeyedStreamITCase.java
│ │ │ │ ├── [4.0K] environment
│ │ │ │ │ ├── [2.4K] LocalStreamEnvironmentITCase.java
│ │ │ │ │ └── [8.3K] RemoteStreamEnvironmentTest.java
│ │ │ │ ├── [4.1K] FileReadingWatermarkITCase.java
│ │ │ │ ├── [4.0K] outputformat
│ │ │ │ │ ├── [2.0K] CsvOutputFormatITCase.java
│ │ │ │ │ └── [1.9K] TextOutputFormatITCase.java
│ │ │ │ └── [ 12K] StreamingOperatorsITCase.java
│ │ │ ├── [4.0K] experimental
│ │ │ │ └── [1.9K] CollectITCase.java
│ │ │ └── [4.0K] runtime
│ │ │ ├── [6.5K] BackPressureITCase.java
│ │ │ ├── [4.0K] BigUserProgramJobSubmitITCase.java
│ │ │ ├── [9.5K] BroadcastStateITCase.java
│ │ │ ├── [2.5K] ChainedRuntimeContextITCase.java
│ │ │ ├── [ 14K] CoGroupJoinITCase.java
│ │ │ ├── [3.7K] CoStreamITCase.java
│ │ │ ├── [6.8K] DataStreamPojoITCase.java
│ │ │ ├── [3.2K] DirectedOutputITCase.java
│ │ │ ├── [5.0K] GlobalAggregateITCase.java
│ │ │ ├── [ 14K] IntervalJoinITCase.java
│ │ │ ├── [ 23K] IterateITCase.java
│ │ │ ├── [3.8K] LatencyMarkerITCase.java
│ │ │ ├── [7.8K] MultipleInputITCase.java
│ │ │ ├── [4.7K] OutputSplitterITCase.java
│ │ │ ├── [8.8K] PartitionerITCase.java
│ │ │ ├── [3.8K] SelfConnectionITCase.java
│ │ │ ├── [ 37K] SideOutputITCase.java
│ │ │ ├── [5.0K] StateBackendITCase.java
│ │ │ ├── [5.0K] StreamTaskSelectiveReadingITCase.java
│ │ │ ├── [9.2K] StreamTaskTimerITCase.java
│ │ │ ├── [ 27K] TimestampITCase.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [1.3K] EvenOddOutputSelector.java
│ │ │ │ ├── [1.1K] NoOpIntMap.java
│ │ │ │ ├── [1.4K] ReceiveCheckNoOpSink.java
│ │ │ │ ├── [2.2K] TestListResultSink.java
│ │ │ │ └── [1.9K] TestListWrapper.java
│ │ │ └── [ 11K] WindowFoldITCase.java
│ │ ├── [4.0K] testfunctions
│ │ │ └── [1.4K] Tokenizer.java
│ │ ├── [4.0K] typeserializerupgrade
│ │ │ └── [ 18K] PojoSerializerUpgradeTest.java
│ │ ├── [4.0K] util
│ │ │ ├── [1.2K] BlockingSink.java
│ │ │ ├── [4.7K] CoordVector.java
│ │ │ ├── [8.1K] DataSetUtilsITCase.java
│ │ │ ├── [1.2K] IdentityMapFunction.java
│ │ │ ├── [1.5K] InfiniteIntegerInputFormat.java
│ │ │ ├── [1.4K] InfiniteIntegerSource.java
│ │ │ ├── [1.7K] InfiniteIntegerTupleInputFormat.java
│ │ │ ├── [2.3K] PointFormatter.java
│ │ │ ├── [3.2K] PointInFormat.java
│ │ │ ├── [1.0K] SuccessException.java
│ │ │ ├── [1.7K] TestUtils.java
│ │ │ └── [1.9K] UniformIntTupleGeneratorInputFormat.java
│ │ └── [4.0K] windowing
│ │ └── [4.0K] sessionwindows
│ │ ├── [3.7K] EventGeneratorFactory.java
│ │ ├── [2.2K] EventGenerator.java
│ │ ├── [2.7K] GeneratorConfiguration.java
│ │ ├── [1.7K] GeneratorEventFactory.java
│ │ ├── [2.4K] LongRandomGenerator.java
│ │ ├── [4.9K] ParallelSessionsEventGenerator.java
│ │ ├── [3.3K] SessionConfiguration.java
│ │ ├── [ 11K] SessionEventGeneratorImpl.java
│ │ ├── [2.4K] SessionEvent.java
│ │ ├── [2.0K] SessionGeneratorConfiguration.java
│ │ ├── [ 10K] SessionWindowITCase.java
│ │ └── [2.9K] TestEventPayload.java
│ ├── [ 12K] resources
│ │ ├── [1.3K] log4j2-test.properties
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.10-rocksdb-savepoint
│ │ │ └── [ 14K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.10-savepoint
│ │ │ └── [ 14K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.11-rocksdb-savepoint
│ │ │ └── [ 14K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.11-savepoint
│ │ │ └── [ 14K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.5-rocksdb-savepoint
│ │ │ └── [ 21K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.5-savepoint
│ │ │ └── [ 21K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.6-rocksdb-savepoint
│ │ │ └── [ 22K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.6-savepoint
│ │ │ └── [ 42K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.7-rocksdb-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.7-savepoint
│ │ │ └── [ 37K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.8-rocksdb-savepoint
│ │ │ └── [9.2K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.8-savepoint
│ │ │ └── [ 14K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.9-rocksdb-savepoint
│ │ │ └── [9.2K] _metadata
│ │ ├── [4.0K] new-stateful-broadcast-udf-migration-itcase-flink1.9-savepoint
│ │ │ └── [ 14K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.10-rocksdb-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.10-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.11-rocksdb-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.11-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.4-rocksdb-savepoint
│ │ │ └── [ 44K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.4-savepoint
│ │ │ └── [ 44K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.5-rocksdb-savepoint
│ │ │ └── [ 44K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.5-savepoint
│ │ │ └── [ 44K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.6-rocksdb-savepoint
│ │ │ └── [ 45K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.6-savepoint
│ │ │ └── [ 77K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.7-rocksdb-savepoint
│ │ │ └── [ 46K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.7-savepoint
│ │ │ └── [ 84K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.8-rocksdb-savepoint
│ │ │ └── [ 13K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.8-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.9-rocksdb-savepoint
│ │ │ └── [ 13K] _metadata
│ │ ├── [4.0K] new-stateful-udf-migration-itcase-flink1.9-savepoint
│ │ │ └── [ 17K] _metadata
│ │ ├── [4.0K] operatorstate
│ │ │ ├── [4.0K] complexKeyed-flink1.10
│ │ │ │ └── [ 18K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.11
│ │ │ │ └── [ 18K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.3
│ │ │ │ └── [160K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.4
│ │ │ │ └── [160K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.5
│ │ │ │ └── [261K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.6
│ │ │ │ └── [ 60K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.7
│ │ │ │ └── [ 61K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.8
│ │ │ │ └── [ 18K] _metadata
│ │ │ ├── [4.0K] complexKeyed-flink1.9
│ │ │ │ └── [ 18K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.10
│ │ │ │ └── [3.7K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.11
│ │ │ │ └── [3.6K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.3
│ │ │ │ └── [6.1K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.4
│ │ │ │ └── [6.1K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.5
│ │ │ │ └── [6.1K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.6
│ │ │ │ └── [7.0K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.7
│ │ │ │ └── [6.9K] _metadata
│ │ │ ├── [4.0K] nonKeyed-flink1.8
│ │ │ │ └── [3.7K] _metadata
│ │ │ └── [4.0K] nonKeyed-flink1.9
│ │ │ └── [3.7K] _metadata
│ │ ├── [4.0K] plugin-test
│ │ │ ├── [4.0K] plugin-a
│ │ │ │ └── [ 836] org.apache.flink.test.plugin.TestSpi
│ │ │ └── [4.0K] plugin-b
│ │ │ ├── [ 841] org.apache.flink.test.plugin.OtherTestSpi
│ │ │ └── [ 836] org.apache.flink.test.plugin.TestSpi
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.10-jobmanager-savepoint
│ │ │ └── [ 41K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.10-rocksdb-savepoint
│ │ │ └── [ 41K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.11-jobmanager-savepoint
│ │ │ └── [ 41K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.11-rocksdb-savepoint
│ │ │ └── [ 41K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.3-jobmanager-savepoint
│ │ │ └── [209K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.3-rocksdb-savepoint
│ │ │ └── [209K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.4-jobmanager-savepoint
│ │ │ └── [200K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.4-rocksdb-savepoint
│ │ │ └── [200K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.6-jobmanager-savepoint
│ │ │ └── [201K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.6-rocksdb-savepoint
│ │ │ └── [201K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.7-jobmanager-savepoint
│ │ │ └── [224K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.7-rocksdb-savepoint
│ │ │ └── [224K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.8-jobmanager-savepoint
│ │ │ └── [ 39K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.8-rocksdb-savepoint
│ │ │ └── [ 39K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.9-jobmanager-savepoint
│ │ │ └── [ 39K] _metadata
│ │ ├── [4.0K] stateful-scala-udf-migration-itcase-flink1.9-rocksdb-savepoint
│ │ │ └── [ 39K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.10-jobmanager-savepoint
│ │ │ └── [ 52K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.10-rocksdb-savepoint
│ │ │ └── [ 52K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.11-jobmanager-savepoint
│ │ │ └── [ 52K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.11-rocksdb-savepoint
│ │ │ └── [ 52K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.5-jobmanager-savepoint
│ │ │ └── [215K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.5-rocksdb-savepoint
│ │ │ └── [215K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.6-jobmanager-savepoint
│ │ │ └── [248K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.6-rocksdb-savepoint
│ │ │ └── [248K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.7-jobmanager-savepoint
│ │ │ └── [280K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.7-rocksdb-savepoint
│ │ │ └── [280K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.8-jobmanager-savepoint
│ │ │ └── [ 51K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.8-rocksdb-savepoint
│ │ │ └── [ 51K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.9-jobmanager-savepoint
│ │ │ └── [ 51K] _metadata
│ │ ├── [4.0K] stateful-scala-with-broadcast-udf-migration-itcase-flink1.9-rocksdb-savepoint
│ │ │ └── [ 51K] _metadata
│ │ ├── [4.0K] stateful-udf-migration-itcase-flink1.4-rocksdb-savepoint
│ │ │ └── [ 32K] _metadata
│ │ ├── [4.0K] stateful-udf-migration-itcase-flink1.4-savepoint
│ │ │ └── [ 32K] _metadata
│ │ ├── [4.0K] testdata
│ │ │ └── [ 20K] terainput.txt
│ │ ├── [ 844] test-resource
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.10-rocksdb-savepoint
│ │ │ └── [1.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.10-savepoint
│ │ │ └── [1.2K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.11-rocksdb-savepoint
│ │ │ └── [1.2K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.11-savepoint
│ │ │ └── [1.2K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.3-rocksdb-savepoint
│ │ │ └── [3.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.3-savepoint
│ │ │ └── [3.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.4-rocksdb-savepoint
│ │ │ └── [3.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.4-savepoint
│ │ │ └── [3.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.5-rocksdb-savepoint
│ │ │ └── [3.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.5-savepoint
│ │ │ └── [3.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.6-rocksdb-savepoint
│ │ │ └── [3.5K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.6-savepoint
│ │ │ └── [3.4K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.7-rocksdb-savepoint
│ │ │ └── [3.2K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.7-savepoint
│ │ │ └── [3.1K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.8-rocksdb-savepoint
│ │ │ └── [1.3K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.8-savepoint
│ │ │ └── [1.2K] _metadata
│ │ ├── [4.0K] type-serializer-snapshot-migration-itcase-flink1.9-rocksdb-savepoint
│ │ │ └── [1.3K] _metadata
│ │ └── [4.0K] type-serializer-snapshot-migration-itcase-flink1.9-savepoint
│ │ └── [1.2K] _metadata
│ └── [4.0K] scala
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] flink
│ └── [4.0K] api
│ └── [4.0K] scala
│ ├── [4.0K] actions
│ │ └── [2.3K] CountCollectITCase.scala
│ ├── [4.0K] compiler
│ │ └── [2.3K] PartitionOperatorTranslationTest.scala
│ ├── [4.0K] completeness
│ │ ├── [6.3K] BatchScalaAPICompletenessTest.scala
│ │ └── [2.9K] ScalaAPICompletenessTestBase.scala
│ ├── [4.0K] functions
│ │ └── [6.7K] ClosureCleanerITCase.scala
│ ├── [4.0K] io
│ │ └── [4.1K] ScalaCsvReaderWithPOJOITCase.scala
│ ├── [4.0K] manual
│ │ └── [6.8K] MassiveCaseClassSortingITCase.scala
│ ├── [4.0K] migration
│ │ ├── [1.2K] MigrationTestTypes.scala
│ │ ├── [6.3K] ScalaSerializersMigrationTest.scala
│ │ ├── [ 13K] StatefulJobSavepointMigrationITCase.scala
│ │ └── [ 19K] StatefulJobWBroadcastStateMigrationITCase.scala
│ ├── [4.0K] operators
│ │ ├── [3.5K] AggregateITCase.scala
│ │ ├── [3.7K] AggregateOperatorTest.scala
│ │ ├── [ 16K] CoGroupITCase.scala
│ │ ├── [ 10K] CoGroupOperatorTest.scala
│ │ ├── [9.4K] CrossITCase.scala
│ │ ├── [6.7K] DistinctITCase.scala
│ │ ├── [4.8K] DistinctOperatorTest.scala
│ │ ├── [4.7K] ExamplesITCase.scala
│ │ ├── [5.9K] FilterITCase.scala
│ │ ├── [3.2K] FirstNITCase.scala
│ │ ├── [3.7K] FirstNOperatorTest.scala
│ │ ├── [8.9K] FlatMapITCase.scala
│ │ ├── [3.0K] GroupCombineITCase.scala
│ │ ├── [7.5K] GroupingTest.scala
│ │ ├── [ 31K] GroupReduceITCase.scala
│ │ ├── [ 17K] JoinITCase.scala
│ │ ├── [ 11K] JoinOperatorTest.scala
│ │ ├── [ 10K] MapITCase.scala
│ │ ├── [8.3K] OuterJoinITCase.scala
│ │ ├── [ 11K] PartitionITCase.scala
│ │ ├── [9.2K] ReduceITCase.scala
│ │ ├── [5.4K] SampleITCase.scala
│ │ ├── [8.9K] SortPartitionITCase.scala
│ │ ├── [2.9K] SumMinMaxITCase.scala
│ │ ├── [4.0K] translation
│ │ │ ├── [2.3K] AggregateTranslationTest.scala
│ │ │ ├── [6.7K] CoGroupCustomPartitioningTest.scala
│ │ │ ├── [6.3K] CoGroupGroupSortTranslationTest.scala
│ │ │ ├── [9.0K] CustomPartitioningGroupingKeySelectorTest.scala
│ │ │ ├── [7.4K] CustomPartitioningGroupingPojoTest.scala
│ │ │ ├── [8.2K] CustomPartitioningGroupingTupleTest.scala
│ │ │ ├── [8.1K] CustomPartitioningTest.scala
│ │ │ ├── [9.2K] DeltaIterationTranslationTest.scala
│ │ │ ├── [6.9K] JoinCustomPartitioningTest.scala
│ │ │ ├── [1.3K] PartitioningTestClasses.scala
│ │ │ └── [5.9K] ReduceTranslationTest.scala
│ │ └── [4.1K] UnionITCase.scala
│ ├── [4.0K] runtime
│ │ ├── [5.2K] CaseClassNormalizedKeySortingTest.scala
│ │ └── [6.2K] ScalaSpecialTypesITCase.scala
│ └── [4.0K] util
│ ├── [ 15K] CollectionDataSets.scala
│ └── [2.8K] DataSetUtilsITCase.scala
├── [4.0K] flink-test-utils-parent
│ ├── [4.0K] flink-test-utils
│ │ ├── [4.9K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] networking
│ │ │ │ │ ├── [6.5K] NetworkFailureHandler.java
│ │ │ │ │ └── [4.6K] NetworkFailuresProxy.java
│ │ │ │ ├── [4.0K] streaming
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [2.8K] FiniteTestSource.java
│ │ │ │ │ └── [4.5K] TestStreamEnvironment.java
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] testdata
│ │ │ │ │ ├── [3.7K] ConnectedComponentsData.java
│ │ │ │ │ ├── [1.3K] EnumTriangleData.java
│ │ │ │ │ ├── [ 11K] KMeansData.java
│ │ │ │ │ ├── [1.7K] PageRankData.java
│ │ │ │ │ ├── [1.6K] TransitiveClosureData.java
│ │ │ │ │ ├── [ 22K] WebLogAnalysisData.java
│ │ │ │ │ └── [ 33K] WordCountData.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [3.3K] AbstractTestBase.java
│ │ │ │ ├── [2.3K] CollectionTestEnvironment.java
│ │ │ │ ├── [6.8K] JavaProgramTestBase.java
│ │ │ │ ├── [3.1K] MiniClusterResourceConfiguration.java
│ │ │ │ ├── [1.3K] MiniClusterResource.java
│ │ │ │ ├── [2.6K] MiniClusterWithClientResource.java
│ │ │ │ ├── [4.0K] MultipleProgramsTestBase.java
│ │ │ │ ├── [8.8K] SecureTestEnvironment.java
│ │ │ │ ├── [2.7K] ShellScript.java
│ │ │ │ ├── [ 19K] TestBaseUtils.java
│ │ │ │ ├── [5.8K] TestEnvironment.java
│ │ │ │ ├── [2.8K] TestingSecurityContext.java
│ │ │ │ └── [4.2K] TestProcessBuilder.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [4.0K] licenses
│ │ │ │ ├── [1.6K] LICENSE.base64
│ │ │ │ ├── [1.6K] LICENSE.jsr166y
│ │ │ │ ├── [1.4K] LICENSE.jzlib
│ │ │ │ └── [1.6K] LICENSE.webbit
│ │ │ └── [1.5K] NOTICE
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] networking
│ │ ├── [3.1K] EchoServer.java
│ │ └── [4.2K] NetworkFailuresProxyTest.java
│ ├── [4.0K] flink-test-utils-junit
│ │ ├── [1.9K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] flink
│ │ │ │ ├── [4.0K] core
│ │ │ │ │ └── [4.0K] testutils
│ │ │ │ │ ├── [2.7K] BlockerSync.java
│ │ │ │ │ ├── [3.9K] CheckedThread.java
│ │ │ │ │ ├── [5.7K] CommonTestUtils.java
│ │ │ │ │ ├── [2.0K] FilteredClassLoader.java
│ │ │ │ │ ├── [6.9K] FlinkMatchers.java
│ │ │ │ │ ├── [1.8K] MultiShotLatch.java
│ │ │ │ │ └── [4.0K] OneShotLatch.java
│ │ │ │ ├── [4.0K] mock
│ │ │ │ │ └── [2.4K] Whitebox.java
│ │ │ │ ├── [4.0K] testutils
│ │ │ │ │ ├── [4.0K] executor
│ │ │ │ │ │ └── [1.7K] TestExecutorResource.java
│ │ │ │ │ ├── [4.0K] junit
│ │ │ │ │ │ ├── [ 940] FailsOnJava11.java
│ │ │ │ │ │ ├── [2.0K] RetryOnException.java
│ │ │ │ │ │ ├── [1.6K] RetryOnFailure.java
│ │ │ │ │ │ └── [5.2K] RetryRule.java
│ │ │ │ │ ├── [4.0K] logging
│ │ │ │ │ │ └── [3.0K] TestLoggerResource.java
│ │ │ │ │ ├── [4.0K] oss
│ │ │ │ │ │ └── [2.8K] OSSTestCredentials.java
│ │ │ │ │ └── [4.0K] s3
│ │ │ │ │ └── [3.9K] S3TestCredentials.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [1.8K] ExternalResource.java
│ │ │ │ └── [2.7K] TestLogger.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] powermock
│ │ │ └── [4.0K] extensions
│ │ │ └── [1.0K] configuration.properties
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ ├── [4.0K] core
│ │ │ │ └── [4.0K] testutils
│ │ │ │ └── [1.7K] OneShotLatchTest.java
│ │ │ └── [4.0K] testutils
│ │ │ └── [4.0K] junit
│ │ │ ├── [2.6K] RetryOnExceptionTest.java
│ │ │ └── [2.2K] RetryOnFailureTest.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] log4j2-test.properties
│ └── [1.4K] pom.xml
├── [4.0K] flink-walkthroughs
│ ├── [4.0K] flink-walkthrough-common
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] walkthrough
│ │ └── [4.0K] common
│ │ ├── [4.0K] entity
│ │ │ ├── [1.4K] Alert.java
│ │ │ └── [2.2K] Transaction.java
│ │ ├── [4.0K] sink
│ │ │ ├── [1.4K] AlertSink.java
│ │ │ └── [1.6K] LoggerOutputFormat.java
│ │ └── [4.0K] source
│ │ ├── [3.8K] TransactionIterator.java
│ │ ├── [1.9K] TransactionRowInputFormat.java
│ │ └── [1.8K] TransactionSource.java
│ ├── [4.0K] flink-walkthrough-datastream-java
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ ├── [4.0K] archetype-resources
│ │ │ ├── [6.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ ├── [1.8K] FraudDetectionJob.java
│ │ │ │ └── [1.6K] FraudDetector.java
│ │ │ └── [4.0K] resources
│ │ │ └── [1.3K] log4j2.properties
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] maven
│ │ └── [1.4K] archetype-metadata.xml
│ ├── [4.0K] flink-walkthrough-datastream-scala
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ ├── [4.0K] archetype-resources
│ │ │ ├── [7.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [1.3K] log4j2.properties
│ │ │ └── [4.0K] scala
│ │ │ ├── [1.7K] FraudDetectionJob.scala
│ │ │ └── [1.6K] FraudDetector.scala
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] maven
│ │ └── [1.4K] archetype-metadata.xml
│ └── [2.8K] pom.xml
├── [4.0K] flink-yarn
│ ├── [6.5K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] flink
│ │ │ └── [4.0K] yarn
│ │ │ ├── [4.0K] cli
│ │ │ │ ├── [2.9K] FallbackYarnSessionCli.java
│ │ │ │ ├── [ 32K] FlinkYarnSessionCli.java
│ │ │ │ └── [3.5K] YarnApplicationStatusMonitor.java
│ │ │ ├── [4.0K] configuration
│ │ │ │ ├── [3.0K] YarnConfigOptionsInternal.java
│ │ │ │ ├── [ 15K] YarnConfigOptions.java
│ │ │ │ ├── [3.1K] YarnDeploymentTarget.java
│ │ │ │ └── [4.1K] YarnLogConfigUtil.java
│ │ │ ├── [4.0K] entrypoint
│ │ │ │ ├── [5.4K] YarnApplicationClusterEntryPoint.java
│ │ │ │ ├── [5.6K] YarnEntrypointUtils.java
│ │ │ │ ├── [3.5K] YarnJobClusterEntrypoint.java
│ │ │ │ ├── [3.6K] YarnResourceManagerFactory.java
│ │ │ │ ├── [3.2K] YarnSessionClusterEntrypoint.java
│ │ │ │ └── [2.9K] YarnWorkerResourceSpecFactory.java
│ │ │ ├── [4.0K] executors
│ │ │ │ ├── [1.9K] YarnJobClusterExecutorFactory.java
│ │ │ │ ├── [1.7K] YarnJobClusterExecutor.java
│ │ │ │ ├── [1.9K] YarnSessionClusterExecutorFactory.java
│ │ │ │ └── [1.6K] YarnSessionClusterExecutor.java
│ │ │ ├── [5.7K] RegisterApplicationMasterResponseReflector.java
│ │ │ ├── [7.1K] ResourceInformationReflector.java
│ │ │ ├── [ 20K] Utils.java
│ │ │ ├── [9.4K] WorkerSpecContainerResourceAdapter.java
│ │ │ ├── [ 16K] YarnApplicationFileUploader.java
│ │ │ ├── [2.0K] YarnClientYarnClusterInformationRetriever.java
│ │ │ ├── [3.2K] YarnClusterClientFactory.java
│ │ │ ├── [ 61K] YarnClusterDescriptor.java
│ │ │ ├── [1.2K] YarnClusterInformationRetriever.java
│ │ │ ├── [2.3K] YarnConfigKeys.java
│ │ │ ├── [4.8K] YarnLocalResourceDescriptor.java
│ │ │ ├── [ 27K] YarnResourceManager.java
│ │ │ ├── [5.9K] YarnTaskExecutorRunner.java
│ │ │ └── [1.6K] YarnWorkerNode.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] services
│ │ ├── [ 828] org.apache.flink.client.deployment.ClusterClientFactory
│ │ └── [ 909] org.apache.flink.core.execution.PipelineExecutorFactory
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] yarn
│ │ ├── [4.5K] AbstractYarnClusterTest.java
│ │ ├── [4.0K] configuration
│ │ │ └── [2.7K] YarnDeploymentTargetTest.java
│ │ ├── [4.0K] entrypoint
│ │ │ ├── [5.4K] YarnEntrypointUtilsTest.java
│ │ │ ├── [1.9K] YarnJobClusterEntrypointTest.java
│ │ │ └── [2.9K] YarnWorkerResourceSpecFactoryTest.java
│ │ ├── [2.4K] FallbackYarnSessionCliTest.java
│ │ ├── [ 23K] FlinkYarnSessionCliTest.java
│ │ ├── [5.8K] RegisterApplicationMasterResponseReflectorTest.java
│ │ ├── [6.7K] ResourceInformationReflectorTest.java
│ │ ├── [1.9K] TestingContainer.java
│ │ ├── [1.9K] TestingContainerStatus.java
│ │ ├── [6.4K] TestingYarnAMRMClientAsync.java
│ │ ├── [3.1K] TestingYarnNMClientAsync.java
│ │ ├── [2.0K] UtilsTest.java
│ │ ├── [ 10K] WorkerSpecContainerResourceAdapterTest.java
│ │ ├── [3.8K] YarnApplicationFileUploaderTest.java
│ │ ├── [2.3K] YarnClusterClientFactoryTest.java
│ │ ├── [2.8K] YarnClusterDescriptorBuilder.java
│ │ ├── [ 20K] YarnClusterDescriptorTest.java
│ │ ├── [ 12K] YarnFileStageTest.java
│ │ ├── [7.2K] YarnFileStageTestS3ITCase.java
│ │ ├── [2.6K] YarnLocalResourceDescriptionTest.java
│ │ ├── [ 34K] YarnResourceManagerTest.java
│ │ ├── [5.0K] YarnTaskExecutorRunnerTest.java
│ │ └── [3.1K] YarnTestUtils.java
│ └── [4.0K] resources
│ ├── [1.0K] flink-conf.yaml
│ ├── [ 0] krb5.keytab
│ └── [1.3K] log4j2-test.properties
├── [4.0K] flink-yarn-tests
│ ├── [ 13K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] flink
│ │ └── [4.0K] yarn
│ │ ├── [3.1K] CliFrontendRunWithYarnTest.java
│ │ ├── [1.2K] NoDataSource.java
│ │ ├── [4.0K] testjob
│ │ │ ├── [4.3K] YarnTestCacheJob.java
│ │ │ └── [3.4K] YarnTestJob.java
│ │ ├── [4.0K] util
│ │ │ ├── [1.6K] TestHadoopModuleFactory.java
│ │ │ ├── [2.0K] TestHadoopSecurityContextFactory.java
│ │ │ └── [2.6K] TestUtils.java
│ │ ├── [6.0K] UtilsTest.java
│ │ ├── [5.1K] YARNApplicationITCase.java
│ │ ├── [8.5K] YarnConfigurationITCase.java
│ │ ├── [6.4K] YARNFileReplicationITCase.java
│ │ ├── [ 15K] YARNHighAvailabilityITCase.java
│ │ ├── [7.6K] YARNITCase.java
│ │ ├── [3.0K] YarnPrioritySchedulingITCase.java
│ │ ├── [ 24K] YARNSessionCapacitySchedulerITCase.java
│ │ ├── [ 10K] YARNSessionFIFOITCase.java
│ │ ├── [7.9K] YARNSessionFIFOSecuredITCase.java
│ │ └── [ 38K] YarnTestBase.java
│ └── [4.0K] resources
│ ├── [1001] cache.properties
│ ├── [1.4K] log4j2-test.properties
│ └── [4.0K] META-INF
│ └── [4.0K] services
│ ├── [ 842] org.apache.flink.runtime.security.contexts.SecurityContextFactory
│ └── [ 833] org.apache.flink.runtime.security.modules.SecurityModuleFactory
├── [ 11K] LICENSE
├── [4.0K] licenses
│ ├── [1.7K] LICENSE.cloudpickle
│ ├── [5.0K] LICENSE.font-awesome
│ ├── [1.1K] LICENSE.jquery
│ └── [1.4K] LICENSE.py4j
├── [2.1K] NOTICE
├── [ 67K] pom.xml
├── [4.5K] README.md
└── [4.0K] tools
├── [7.9K] azure_controller.sh
├── [4.0K] azure-pipelines
│ ├── [5.0K] build-apache-repo.yml
│ ├── [4.4K] build-nightly-dist.yml
│ ├── [2.9K] build-python-wheels.yml
│ ├── [1.8K] free_disk_space.sh
│ ├── [7.9K] jobs-template.yml
│ └── [1.8K] prepare_precommit.sh
├── [1.5K] change-version.sh
├── [4.0K] ci
│ ├── [1.0K] alibaba-mirror-settings.xml
│ ├── [1.5K] deploy_nightly_to_s3.sh
│ ├── [1.2K] docs.sh
│ ├── [1.0K] google-mirror-settings.xml
│ ├── [3.8K] maven-utils.sh
│ ├── [8.5K] shade.sh
│ └── [6.7K] stage.sh
├── [4.0K] force-shading
│ └── [3.3K] pom.xml
├── [2.3K] list_deps.py
├── [3.5K] log4j-travis.properties
├── [4.0K] maven
│ ├── [ 22K] checkstyle.xml
│ ├── [7.4K] scalastyle-config.xml
│ ├── [ 10K] spotbugs-exclude.xml
│ ├── [9.9K] suppressions-core.xml
│ ├── [ 11K] suppressions-optimizer.xml
│ ├── [ 20K] suppressions-runtime.xml
│ └── [2.8K] suppressions.xml
├── [ 12K] merge_flink_pr.py
├── [1.2K] merge_pull_request.sh.template
├── [5.5K] qa-check.sh
├── [4.0K] releasing
│ ├── [2.4K] collect_license_files.sh
│ ├── [4.7K] create_binary_release.sh
│ ├── [2.4K] create_release_branch.sh
│ ├── [2.5K] create_source_release.sh
│ ├── [1.5K] deploy_staging_jars.sh
│ ├── [ 778] NOTICE-binary_PREAMBLE.txt
│ ├── [1.9K] update_branch_version.sh
│ └── [3.3K] update_japicmp_configuration.sh
├── [1.1K] test_deploy_to_maven.sh
├── [ 11K] travis_watchdog.sh
├── [1.5K] update_notice_year.sh
└── [5.7K] verify_scala_suffixes.sh
4966 directories, 15023 files
Remarks
1. It is advised to access via the original source first.
2. If the original source is unavailable, please email f.jinxu#gmail.com for a local snapshot (replace # with @).
3. Shenlong has snapshotted the POC code for you. To support long-term maintenance, please consider donating. Thank you for your support.