Vishal bharatbhai Vanpariya
09/13/2023, 9:12 AMJane Chan
09/13/2023, 9:17 AMVishal bharatbhai Vanpariya
09/13/2023, 9:21 AMVishal bharatbhai Vanpariya
09/13/2023, 9:22 AMVishal bharatbhai Vanpariya
09/13/2023, 9:26 AMJane Chan
09/13/2023, 9:55 AMi dont know how flink is storing tables?Flink is primarily a compute engine and does not directly store data. The actual data storage for tables is typically managed by connectors to external systems or storage solutions integrated with Flink, such as Apache Kafka, Apache Cassandra, or other databases. For stateful computation, Flink uses internal state backend to store intermediate result. The state backend can be configured to store the state in various ways, you can take a reference to https://nightlies.apache.org/flink/flink-docs-master/docs/dev/datastream/fault-tolerance/state/ nightlies.apache.org Working with State Working with State # In this section you will learn about the APIs that Flink provides for writing stateful programs. Please take a look at Stateful Stream Processing to learn about the concepts behind stateful stream processing. Keyed DataStream # If you want to use keyed state, you first need to specify a key on a DataStream that should be used to partition the state (and also the records in the stream themselves).
Vishal bharatbhai Vanpariya
09/13/2023, 10:01 AMVishal bharatbhai Vanpariya
09/13/2023, 10:05 AMstatevalues
for table since I am processing 1 million records of 10KB each within 6 hours.
Is there any way we can define/change the statevalue
for tables preservation time which can behave like sliding window?Jane Chan
09/13/2023, 10:10 AM